[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();

}

... but think of synchronizing :-)

Regards,
Onno















Yahoo! Groups Sponsor


  Get unlimited calls to 	U.S./Canada  












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[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 Operand types are not 
compatible with the operator

I suppose it's necessary to do some data conversion ?

thank you in advance















Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[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. What do I need to do to get all the applicable
charges printed or can this even be done using a method.

display MarkupTransTxt60 mMarkupTransTxt()
 {
 MarkupTrans markupTrans;
 ;
 select txt from markupTrans where markupTrans.Voucher ==
this.LedgerVoucher;
 return markupTrans.Txt;
}

 Thanks,
Bob



Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










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 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 Operand types are not 
 compatible with the operator
 
 I suppose it's necessary to do some data conversion ?
 
 thank you in advance
 
 
 
 
 
 
 
 
 
 
 Yahoo! Groups Links
 
 
 
 
 
 
 
 To: [EMAIL PROTECTED]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










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
 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: 12. november 2004 14:43
To: [EMAIL PROTECTED]
Subject: [development-axapta] Printing Multiple Misc Charges on a Sales
Order
 

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. What do I need to do to get all the
applicable
charges printed or can this even be done using a method.

display MarkupTransTxt60 mMarkupTransTxt()
 {
 MarkupTrans markupTrans;
 ;
 select txt from markupTrans where markupTrans.Voucher ==
this.LedgerVoucher;
 return markupTrans.Txt;
}

Thanks,
Bob



Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]




Yahoo! Groups Sponsor
ADVERTISEMENT
click here
http://us.ard.yahoo.com/SIG=129tg80b8/M=298184.5584357.6650215.3001176/
D=groups/S=1705006764:HM/EXP=1100349914/A=2426682/R=0/SIG=11edksnhv/*htt
p:/www.netflix.com/Default?mqso=60185402 
 
http://us.adserver.yahoo.com/l?M=298184.5584357.6650215.3001176/D=group
s/S=:HM/A=2426682/rand=578728564 
 


Yahoo! Groups Links
* To visit your group on the web, go to:
 http://groups.yahoo.com/group/development-axapta/
  
* To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
be 
  
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service http://docs.yahoo.com/info/terms/ . 


[Non-text portions of this message have been removed]










Yahoo! Groups Sponsor


  Get unlimited calls to 	U.S./Canada  












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[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 greatly appreciated.

Yifat















Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.