[development-axapta] catch value from QueryBuildRange

2006-05-16 Thread Vanessa kajtaz
Hi, Can anyone tell me , how to catch str txt. I want to display value txt. My method is: display str txt{ return txt; // txt is in run method } public void run() { QueryBuildDataSource qbds; QueryBuildRange qr; str TXT; int i; super(); qr =

RE: [development-axapta] Digest Number 1740

2006-05-16 Thread Chwaszczewski, Jim
You're right, the synchronize should take care of this for you. You could also look at the actual table structure in the database and compare it to what Axapta thinks it should be. Could there be a problem with the owner of the table (dbo vs. bmssa)? If you see more than one owner, you may need

Re: [development-axapta] editing class method without opening the class

2006-05-16 Thread hemamalinis
Hi, Thank u. regs, Hema. S Max Belugin

[development-axapta] Re: SubQuery in Axapta

2006-05-16 Thread Anton Tjiptadi
Thanks, I already tried it and worked. :) rgds, --- In development-axapta@yahoogroups.com, moldova2axapta [EMAIL PROTECTED] wrote: Hi You can't sub query in Axapta but you can write that connection and Resultset connection connection; Statement stmt; str sqlStr; Str 3

[development-axapta] reportsection.body

2006-05-16 Thread byteway_so
How can I reach for a body in a report? Ultimately I want to set the forgroundcolor of a report body. ReportSection s; ReportSection b; ; s = element.design().SectionName('TableName'); b = s.controlName('tableName_body'); b.foregroundColor(); - but there is no forgroundcolor for a

Re: [development-axapta] editing class method without opening the class

2006-05-16 Thread hemamalinis
Hi, Thank u for ur reply. as u said, i try and get my method source using aotgetsource(). can u pls. explain how do i find '\n' s or particular line? Thank u. regs, Hema. S

[development-axapta] Ax 4.0 with SQL Reporting Services

2006-05-16 Thread Steeve Gilbert
Hi everyone, Can someone tell us about SQL Reporting Services integration in Ax 4.0? How well is it integrated? How is it to create a report that will use SQL Reporting Services in Ax 4.0? Any kind of info would be appreciated. Regards, Steeve... [Non-text portions of this

Re: [development-axapta] editing class method without opening the class

2006-05-16 Thread hemamalinis
Hi, i can get the source of method and also can find the line and column number in which the source to be inserted. but, i dont know how to insert the text source in the found line number. in aotsetsource method, there is no parameter called line number and column number. only source is there.