RE: [development-axapta] XP SP2

2004-12-05 Thread Don Price
Thanks Matt and Jens - I upgraded to SP2 and checked a few things and everything seems well. Thanks much. - Just needed a push :) Don -Original Message- From: Jens Strandberg [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 9:55 AM To: [EMAIL PROTECTED] Subject: SV:

[development-axapta] Report Design.

2004-12-05 Thread mbsdeveloper
Dears, How can I change the paper size of the report in reportdesign. regards Ahmed 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

[development-axapta] Executing a report from a self made form

2004-12-05 Thread anton_tjiptadi
Hi, I want to run a report from Form, which I made it earlier, The Form supposed to cater user criteria first and then they click OK button, then the report runs. ps : I just created a Class to run the form and it can display the form, but I have no idea to do next ? btw, What is the

[development-axapta] Add DialogField in report

2004-12-05 Thread anton_tjiptadi
Hi all, I'm trying to add dialog field to my report, code is below : public Object dialog() { DialogRunBase dialog = super(); ; dialog.addGroup(Range); dialogTaxInvNo = dialog.addField(typeid (MLR_LedgerJournalTrans),Tax Invoice :,Tax Invoice Number); return dialog; } I've created

[development-axapta] Query Dimension

2004-12-05 Thread kamchung322
Hi All, How can I only query Dimension[1] value = 'SubCon'. I try to use the following code but it will filter Dimension[1] = 'SubCon', Dimension [2] = 'SubCon' and Dimension[3] = 'SubCon' this.query().dataSourceNo(2).addRange(FieldNum(ProdBOM, Dimension)).value(QueryValue('SubCon'));