Re: [development-axapta] Report Crashes

2005-03-13 Thread Sonny Wibawa Adi
Hi Studlee15, I have experienced before with a report that crashed. When I run the report by opening it or called it from a form, then it was ok. But, when I called it from a form that is called from a form, then it crashed. I change the code (simplified) from: display str Addr() {     str

[development-axapta] Re: axapta sp3

2005-03-13 Thread vynx_1999
anyone have another solution? Thanks Andri --- In development-axapta@yahoogroups.com, "Jason Dykeson" <[EMAIL PROTECTED]> wrote: > > Andri, > > You should be at your implementation partner! > He can help you with this issue. > Or partner guide :-) > > JasonD. > > -Oorspronkelijk be

[development-axapta] Select where with a filter

2005-03-13 Thread Padmaja Iyingar
Hi , I am trying to select Sum of  accounts's AmoustMST for that particular Voucher series. ///For example I want to sum up all accounts only for the voucher F111*. I can not do a substr in the select WHERE clause as its a database field. 'select LedgerTrans where LedgerTrans.Acco

[development-axapta] Re: Documentation

2005-03-13 Thread erpdesert
http://www.axapta-lessons-learned.blogspot.com --- In development-axapta@yahoogroups.com, "Nitesh" <[EMAIL PROTECTED]> wrote: > > hi all, > > > do any one have the information related to the Axapta technical documentation sites?? > > regards > > Nitesh > >   -- > > > email-

Re: *SPAM* [development-axapta] axapta sp3

2005-03-13 Thread vynx_1999
i need free download, i dont have access to partnersource and msdn Thanks Andri --- In development-axapta@yahoogroups.com, "Andrae, Tobias" <[EMAIL PROTECTED]> wrote: > > from partnersource ;-) > oh - and from MSDN of course. >  > hth Tobias > >   -Ursprüngliche Nachricht- >

RE: [development-axapta] axapta sp3

2005-03-13 Thread Jason Dykeson
Andri, You should be at your implementation partner! He can help you with this issue. Or partner guide :-) JasonD. -Oorspronkelijk bericht- Van: vynx_1999 [mailto:[EMAIL PROTECTED] Verzonden: zaterdag 12 maart 2005 21:13 Aan: development-axapta@yahoogroups.com Onderwerp: [developm

AW: *SPAM* [development-axapta] axapta sp3

2005-03-13 Thread Andrae, Tobias
from partnersource ;-) oh - and from MSDN of course. hth Tobias   -UrsprÃngliche Nachricht-   Von: vynx_1999 [mailto:[EMAIL PROTECTED]   Gesendet: Sa 12.03.2005 21:12   An: development-axapta@yahoogroups.com   Cc:   Betreff: *SPAM* [development

AW: [development-axapta] certification exam help

2005-03-13 Thread Andrae, Tobias
Depending on which exam you want to take - try to - visit the "official" trainings for your topic - read all help texts - if we are talking about programming: read and understand the online help as well as the development handbook and best practice handbook - have some practical experienc

RE: [development-axapta] certification exam help

2005-03-13 Thread Girish Bhatkal
Hi, These are all online exams so you may not get previous papers. But you could find a few sample questions in the partner source. Most of the questions are repeated. Good luck, Cheers, Girish -Original Message- From: namita chugh [mailto:[EMAIL PROTECTED] Sent: 12 March 2005 12:

[development-axapta] axapta sp3

2005-03-13 Thread vynx_1999
where can i download service pack 3 for axapta 3.0 ( not from partner guide ) Thanks Andri 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 t

[development-axapta] Re: Vertical barcode on report

2005-03-13 Thread compashi1
--- In development-axapta@yahoogroups.com, "vegar410" Hi buddy, This is mine first suggestion to anybody since i am also a newbie. Recently i have created a report with dynamic control. that is controls are generated on to runtime as per the requirement. i hope you can do the same becauce

[development-axapta] Text Case

2005-03-13 Thread gui_opentv
Hi guys, I'm new to this, and will probably make some silly question, forgive me. Here goes: - How can I convert, in X++ a text case, from a string variable - Is there any class that converts numbers to text representing those numbers? For the last one, I started a Class which works ok

[development-axapta] Re: using group by and calculated fields

2005-03-13 Thread flagelliumdei
Hi Ryan, You don't need to write anycode.the salesline in datasources you drag and drop the  salesid from fields to range and sort then right click salesline datasource set Order By Property to Groupby  and then right click salesline datasource Fields click SUM this is going to add a sum

[development-axapta] Report Crashes

2005-03-13 Thread studlee15
I have just created an inventory report in which I join the inventtable,inventsum,inventdim, and inevnttablemodule tables.  Exerything works fine, until the last page is being displayed, then Axapta quits.  I use a temporary table and populate it from the previously mentioned tables.  The

[development-axapta] certification exam help

2005-03-13 Thread namita chugh
hi, i am planning to appear for the certification exam.can anybody please suggest me from where to get the previous papers. thanks.     - Do you Yahoo!? Yahoo! Small Business - Try our new resources site! [Non-text portions of this message have been

Re: [development-axapta] using group by and calculated fields

2005-03-13 Thread sherif metwally
try this While SELECT SalesId FROM SalesLine GROUP BY salesID Sum(RemainSalesPhysical),sum(SalesPrice) ; {     X= salesLine.remainsalesPhysical * SalesLine.salesPrice; } rzillmer <[EMAIL PROTECTED]> wrote: Hello, I am new to Axapta so please forgive me if this is an easy question. I a

Re: [development-axapta] using group by and calculated fields

2005-03-13 Thread Nitesh
hi Ryan find this as ur solution static void Job1(Args _args) { str sql; accountNum acno1; salesId s; int i; str k; real r2; Connection Con = new Connection(); Statement Stmt = Con.createStatement(); Statement Stmt2 = Con.createStatement(); ResultSet R,R1;    sql = " SELECT Sum(SalesLin