Quantcast
Channel: Microsoft Dynamics AX Forum - Recent Threads
Viewing all 72043 articles
Browse latest View live

Receiving warning message when trying to process a SO using WHS process during Picking list generation.

$
0
0

Hi Experts,

I am receiving this warning message when trying to process a SO using WHS process during Picking list generation.

"Dimensions location level and below have been specified on the order line. Warehouse management processing can no longer be used to process this line."

For the item on the SO, the Reservation hierarchy is as mentioned below:

Site

Warehouse

Inventory Status

Batch Number

Location

License Plate

I had mentioned the batch number on the SO line. After manual reservation, while generating Picking list, I get the above mentioned error message. If I mention the location on the SO line, and generate the picklist by ignoring the error message, I am not able to release the SO line to WH for Picking. When I look at the inventory transaction for that SO line, it has status picked.

What is wrong in my processing or set up? Please help.

Thanks,

Balaji


How to look for a Dynamics AX Job ?

$
0
0

Hi Everyone..

I am an Accountant and few months back I have decided to change my career to Dynamics AX..

I have been studying and training on AX2012 R3 Financial Module  (functional) since past couple of months and I have also taken the Certification exam and passed. I m good to start hunting for a job.

I don't understand where to look for Jobs as most of the recruitment agencies Job Titles are Functional Consultant. But I m a beginner with no full implementation cycle experience.

So how can I join an implementation team as I don't mind working as a Junior Consultant as well just to get things started but these Job positions are mostly for Senior consultants. 

Job location is preferred in UK.

Thanks 

AX V5 Executing flow gives random unknown errors

$
0
0


Hi All,

My AX system has a item import galaxy flow which uses a file to import items into the our AX system.

This flow is executing properly for small files but when i try to execute this flow with a 13 MB file i get random error messages as shown below

and some times its a different error message

Does anyone know why this happens?

No connection could be made because the target machine actively refused it...

$
0
0

Following a domain change of password, I get an error "No connection could be made because the target machine actively refused it..." on attempting to run an ssrs report from AX. Anyone had similar or can help please? We have restarted services, compiled and tried lots of options still... thank you.

Generating report in Chinese language. Need to convert the numbers into words AX 2012

$
0
0

Hi

I have report generating from general ledger ->Journals -> invoice journal -> lines -> print -> voucher.

Voucher is my customized report.

Once i click on the Voucher i am getting report. There is a field called Credit and the value is 10,000.

Now i want that 10,000 to come in words Ten thousand that too in Chinese language.

In the below image first one is credit value, second one in words (English), third one in words (Chinese)

How can i achieve this.

Thanks in advance

Divija Vemulapalli

Return orders in AX

$
0
0

Hi,

We created a return order and invoiced it from the sales orders. But after invoicing was done, it was found that the sales tax amount on the original sales order has not been reversed in the return order. Rather the sales tax amount in the return order is showing as 0.

Any idea as to why this has happened?

Method is not present in specified table

$
0
0

Hi all,

In a field's property, datasource & data method is specified. But while referring for the method in specific table, no method is present. Please help me with this issue. Please refer to below images. Thanks in advance!

But there is no "parentTitleFields" method present in the specified datasource/ its table.

Difference in view field sort order

$
0
0

Hi All,

I have designed a view based on custTrans table.

While opening the view I could see difference in sorting of column account Num field when opening through table browser and opening in SQL database.

Please see the difference below

If I am opening in AX column AccountNum is starting with 224 value but if I am opening in SQL it is showing 10002 as first value.

there is no difference in data but sorting is differing.

Can Any one let me know the reason behind this. 

Thanks,

Ramakrishna T


I want to edit the Recipient name in Payment journal

$
0
0

Hi All,

I want to edit the recipient name in payment journal when i select account type as vendor.

plz find below attachment

You cannot rename the record because the table (CustTable) is a parent distribution table.

$
0
0

Hello all,

i get this message when i try to rename customer number (no transaction on this Customer)

You cannot rename the record because the table (CustTable) is a parent distribution table.

Thank's

Customize grid

$
0
0

Hello, I need to customize grid in AX, I have something like table A and i'm looking a way to go to table B



This is my original grid:

Insufficient rights to execute FTM 2 PurchPurchaseOrder.

$
0
0

hi every one,last time i am facing a problem regarding security

" Insufficient rights to execute FTM 2 PurchPurchaseOrder"

so after R&D i found the solution that adding purch purchase order report to my role,and its work,

now i want to share my experience may helpful for some one..

Regards.

How to Create/Update existing SSAS Database in AX 2012

$
0
0

Hi all,

I started to work with SSAS database for creating report to display in enterprise portal.

I have AX 2012 R2 environment for here,

I need to know to how start work with Dynamics AX SSAS database and develop report using MDX query to display in the enter prise portal.

1. how to create new SSAS database from AX

2. How to update existing SSAS database from AX

2.1. For example i have existing dynamics ax database, further i created a custom table and table added to general ledger cube in the perspective node.

how to get this table when creating a new measure for this table in to visual studio dynamics ax analysis project.

3. How to process a cube from both SQL and AX.


If anyone work with business intelligence report and display in EP. Let me guide or share any document for the same.

Project billing rate

$
0
0

Hello,

Where I can find the billing rates for projects

X++ Object Leaks

$
0
0

Hi All, 

Today , i was facing one heap memory issue. So can anybody can tell how can i clean unused object from heap in AX 2009 version. 


how to find the sub-BOM?

$
0
0

Hello!

I'm trying to overcome with finding sub-BOM in any table. I would like to use it on my form, that is why I do not need to find it from "user level", but in particular field in some table.

Where Can I start to looking for?

LDAP attribute modification from RunBaseBatch class

$
0
0

I have a class, that modifies some users LDAP attributes, f.e. by copying one attribute to another

    InteropPermission                                   interopPermission;

    System.DirectoryServices.DirectoryEntry             directoryEntry;
    System.DirectoryServices.DirectoryEntry             userEntry;
    System.DirectoryServices.DirectorySearcher          searcher;
    System.DirectoryServices.SearchResultCollection     resultCollection;
    System.DirectoryServices.SearchResult               results;
    System.DirectoryServices.AuthenticationTypes        authenticationTypes;
    int                                                 i, userCount;
    ;


    interopPermission = new InteropPermission(InteropKind::ClrInterop);
    interopPermission.assert();

    directoryEntry      = new System.DirectoryServices.DirectoryEntry("LDAP://DC=domain,DC=local");
    try
        {
        searcher        = new System.DirectoryServices.DirectorySearcher(directoryEntry);
        searcher.set_Filter(strfmt("(&(objectCategory=Person)(objectClass=user)(%1=*))", fromField_));
        searcher.set_SearchScope(System.DirectoryServices.SearchScope::Subtree);
        resultCollection = searcher.FindAll();

        userCount   = resultCollection.get_Count();
        for(i=0; i<userCount ; i++)
            {
            results         = resultCollection.get_Item(i);
            userEntry       = new System.DirectoryServices.DirectoryEntry(results.get_Path());
            ebmLDAPTools.parmUserEntry(userEntry);

            login           = ebmLDAPTools.getUserProperty("samAccountName");
            fromFieldValue  = ebmLDAPTools.getUserProperty(fromField_);
            toFieldValue    = ebmLDAPTools.getUserProperty(toField_);
            if(fromFieldValue && fromFieldValue != toFieldValue)
                    {
                           // Setting property's toField_ value to fromFieldValue
                            userEntry.CommitChanges();
                    }
            }

        directoryEntry.Close();
        }
    catch (Exception::CLRError)
        {
        //Access the last CLR Exception
        info(CLRInterop::getLastException().ToString());
        throw error("An error occurred.");
        }

    CodeAccessPermission::revertAssert();

Everything is OK, when I'm running it on client, but when I use RunBaseBatch and it runs (I suppose) on AOS related user I'm getting an error: "Access denied" on operation userEntry.CommitChanges() line.

My Dynamics service is running on ax2009aos user (this is what I see on Services list in "Log On As" column on AOS machine) - I've set this user member of Domain administrators group, but it doesn't change situation.

I've tried to force user context by using code:

userEntry.set_Username("DOMAIN\\OtherUser");
userEntry.set_Password("Password");

before userEntry.CommitChanges() line. In a result error didn't throwed, but... in AD there wasn't done any LDAP attribute modification.

Can anyone to help and say, what should I do to solve problem?

 

Rafal

 

Can't check out C# Projects, TreeNode causes stack trace

$
0
0

This seems to be an issue since CU9.

I can't check out C# projects in the AOT because there will be a stack trace: treeNode object is not initialized.

In the class SysTreeNodeVSProjectDispatcher\checkOut a treeNode is passed to another method

if(versioncontrol.canCheckOut(node.parmTreeNode())

The parm method returns null and if you look at the canCheckOut method you can see why a stack trace appears. Besides that the parm method should not return null right there, it's really weird because I can't even add a statement like

if(!treeNode)

    return;

or

if(treeNode == null)

   return;


Even though it clearly says 'null' in the debugger, it still doesn't move into the if.

Now I tried something more: I added treeNode = null; before the if and it actually went into the if now although the variable in the debugger did not change (it was null and stayed null)

The funny thing is, if I redo the process after I executed the treeNode = null; once, the treeNode is not null anymore at this particular place! Then I get the same error in a different place (where executing treeNode = null once does not help)

I noticed one thing when setting the variable to null: The little picture disappears.

Before I set it to null (which is not really null):

After setting it to null:

Does anyone have to same problem or a possible solution/hint? Im really confused as to what is going on here...

How to create new SSRS report and display it in form AX 2012

$
0
0

Plz somebody sends me off file or any examples of the know how of it.

Release products error

$
0
0

Hi All,

Error is showing up when I try to release a product from Products and products master: 

"One or more products cannot be released. Validate open product releases in the Open product releases form to identify the reason, and try again"

 

So  when I looked into Open product release-> Info log, I see that: "Cannot create a record in Items (InventTable). Item number: XYZ67828-628, Screen. The record already exists."

 

Viewing all 72043 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>