Questions tagged [dynamics-ax-xpo]

In Microsoft Dynamics AX, you can select one or more X++ application objects in the Application Object Tree (AOT) to export an .xpo file. The .xpo file can then be used by developers to share or transport application objects from one Microsoft Dynamics AX installation to another.

In Microsoft Dynamics AX, you can select one or more X++ application objects in the Application Object Tree (AOT) to export an .xpo file. The .xpo file can then be used by developers to share or transport application objects from one Microsoft Dynamics AX installation to another. This topic describes how to export application objects, without business data, to an .xpo file.

In Microsoft Dynamics AX 2009 and previous versions, xpo files were the main tool for exporting and importing objects and for movin objects between environments. After Microsoft Dynamics AX 2012 this task is best suited using the new models feature.

8 questions
8
votes
1 answer

AX Retail POS Login Customization

I want to make a customization into AX POS retail login module. instead of typing operator id and password, can i read externally and pass to POS with operator id and password? Regards, Rassal
3
votes
1 answer

Export AOT objects (XPO) with or without IDs?

I have this situation where we have a production Dynamics 2009 AX (RTM) environment whose AOT we used to do a code update project to RU8. So now, I have a production environment (RTM) and one that is the same but patched to RU8. The thing is that…
Francis Ducharme
  • 4,277
  • 5
  • 32
  • 66
1
vote
1 answer

Moving some Objects from Ax 2012 to Dynamics 365

How do I move a project (an XPO file), (tables, forms) from Ax 2012 R3 to Dynamics 365?
1
vote
2 answers

Menu item not available in UI if user does not have sysadmin role

I have created a form and placed it on UI by using menuitem. I imported the code in test environment. End user doesn't have sysadmin role. So he is not able to see the Form button on UI. When we give sysadmin it showing him the form UI button. How…
0
votes
1 answer

Standard Customer DIXF entity updating address with wrong city because we have same zipcodes for Different cities . Ax 2012R2

We have same zipcode for different cities zipcode1 city1 zipcode1 city2 zipcode1 city3 When i am loading address with city as City2, DIXF is loading address with City as City1. Its picking first record in that list. How can i fix this??? Any help…
0
votes
0 answers

How to recall the "Create Customer Order" form customized retail form?

I am trying to recall the Create Customer Order FORM using the following line of code from my customized form: this.Application.RunOperation(PosisOperations.ConvertCustomerOrder, null); But it is giving me following error: Object reference not set…
0
votes
1 answer

How to extend "Recall Transaction" screen in AX 2012 POS

I want to extend/customize the "Recall transaction" form. I didn't find "Recall transaction" form in SDK. Any clue/hint?
0
votes
1 answer

How to customize the Operation Triggers?

I want to customize the operation triggers in AX 2012 R3 Retail SDK. I need to catch the trigger and to write some business logic there in trigger class. Can anyone please guide how to do that? I need to use the I-Interface classes as well which…