In Dynamics Ax 2009, we want a field that will be calculated based off another field in the same table.
I have a function in Axapta as follows: static client XMLDocument GetXmlData() { XMLDocument xmlReturnDoc = new XMLDocument();
When an exception ocurrs in my .NET code, the X++ code just stops executing and drops out. It doesn\'t displa开发者_如何学Cy any error message at all, it simply stops working.
Can anyone explain the following behaviour to me? When a field type in an AX Table is set to an Enum, you can select any of the Enum values as a value for the field.
When using [Dynamics] [AX] is there a system function that can be used to determine which module the user was in开发者_运维问答 when the program was called?
I need to calculate sum of InvnetTrans\'es that have specific physicial 开发者_JAVA技巧dimensions[inventTransPosting.Dimension] on specific date. I.e. I need analogue of
static void Job5(Args _args) { int i; System.DateTime netDttm; System.Int32 intnet; ; netDttm = new System.DateTime(2011,03,20 ,13,44,55);
static void vall(Args _args) { real value1=90077404192159.75; real value2=90077254918474.73; real valueSum;
I have a requirement in which I have create customer into external system, When i create it in AX. first solution which came to my mind, was too consume the external party web service into AX.
I don\'t understand why it is a best practice to use positive logic开发者_运维百科 in an if block