[development-axapta] Re: add new element in EDT by X++ Code??

2004-11-12 Thread onnobid
Hi, try this ... static void Job36(Args _args) { TreeNode TN; ; TN = TreeNode::findNode(Data Dictionary\\Extended Data Types\\AXUMyType\\Array Elements); TN.AOTadd(Element01); TN = TreeNode::findNode(Data Dictionary\\Extended Data Types\\AXUMyType); TN.AOTcompile(); TN.AOTsave();

[development-axapta] return sqlstatement to user

2004-11-12 Thread affekatz
Im using the command S.executeQuery(Here should the SQL statement be); is it possible to return the value from the statement fx. a select statement to a string ? something like this: str RV; RV = S.executeQuery(Here should the SQL statement be); If i write this i get the error message

[development-axapta] Printing Multiple Misc Charges on a Sales Order

2004-11-12 Thread bob . brinker
Hi Everybody, I need help on the following: I have created a method to print the miscellaneous charges from table MarkupTrans onto the SalesInvoiceUS report but I am only getting 1 line printed even if there are several rows of charges in the table. The method I am using is printed below.

Re: [development-axapta] return sqlstatement to user

2004-11-12 Thread jesper.joergensen
You get a resultset(Class) from a statement. You extract a string with the method getstring. /Jesper Original Message Subject: [development-axapta] return sqlstatement to user (12-Nov-2004 13:33) From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Im using the command

RE: [development-axapta] Printing Multiple Misc Charges on a Sales Order

2004-11-12 Thread Karsten Wollesen
Hi, You need to something like this. Str retStr = ; ; While select * from markuptrans Where .. { If (retStr != ) retStr += \n; retStr += markupTrans.txt; } Return retStr; Regards, Karsten Wollesen Clausen Thy Data Center Development A/S

[development-axapta] inventory aging report by dimensions

2004-11-12 Thread yifath1
Hi all, It appears that every time i run the above report and specify a dimension, the report is empty. I have tried this with several of my clients... and it is all the same. Has anyone run into this problem? ... is there a fix? it appears to be a bug in the report... Your help is