RE : [development-axapta] how to set range on dimension?

2004-11-30 Thread Steeve Gilbert
Do this : qbr = qbds.addRange(fieldId2Ext(fieldnum(projtable, dimension), 3)); Steeve... -Message d'origine- De : Paulius Cerniauskas [mailto:[EMAIL PROTECTED] Envoyé : 30 novembre 2004 10:17 À : [EMAIL PROTECTED] Objet : [development-axapta] how to set range on dimension? let

[development-axapta] how to use Advanced field in Ax Configuration Utiliy

2004-11-30 Thread Han Steven
Hi All, Who knows that how to use Advanced field in Axapta Configuration Utility\General Tab? Is there any document on this issue? As we know, when we connect to Axapta in 2-tiers, at the beginning, we must log into the Application server first to build a link to the application share folde

SV: [development-axapta] how to set range on dimension?

2004-11-30 Thread Tonny M. Jensen
The way to do it is:     qbr = qbds.addRange(fieldId2Ext(fieldNum(ProjTable,Dimension),3));     qbr.value("somevalue"); Tonny Jensen Fra: Paulius Cerniauskas [mailto:[EMAIL PROTECTED] Sendt: ti 30-11-2004 16:17 Til: [EMAIL PROTECTED] Emne:

[development-axapta] InventJournalCheckPost

2004-11-30 Thread Ibrahim Kilicarslan
Hi, How can i post a journal from code without using form source with only journal table data. Thanks in advance. 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/gr

[development-axapta] When inventory is updated for salesorder

2004-11-30 Thread Cenk Ince
Hi all I have a salesorder and i post packingslip and invoice on it. What time does it update inventory. In normally it's PackingSlip but if i use just invoice what happens? In which class does it update inventory? Thanks. Cenk İNCE ERP Teknik Danışmanı (Microsoft Axapta) ERP Technical Consu

SV: [development-axapta] how to set range on dimension?

2004-11-30 Thread Jacob Hjelmer Nielsen
Adding array elements like the Dimension EDT requires a special effort since addressing the array elements requires some extra functionality, consider the following example; Query query; QueryBuildDataSource qB; QueryBuildRange qR; Counter idx; Dimension dimension; ; query = new Query();

[development-axapta] how to set range on dimension?

2004-11-30 Thread Paulius Cerniauskas
let say that i need to filter projects by dimension's field's value,  when i try this: <> qbr = qbds.addRange(fieldnum(projtable, dimension)); qbr.value("someValue"); compiler does not produce an error, but the result is not what i need, when i try something like that: qb

[development-axapta] Sort algorithm

2004-11-30 Thread smeagul2303
I'm looking for a sort algorithm for a container or an array. Sorting records can be done easily with RecordsortedLIst, but i have data in a container. Is in Axapta a Sortclass or something like that with bubble sort algorithm or heap sort ? Regards Manfred Yahoo! Groups Sponso

[development-axapta] Re: How to close a form

2004-11-30 Thread affekatz
element.close(); --- In [EMAIL PROTECTED], "affekatz" <[EMAIL PROTECTED]> wrote: > > > Is there a command i can use to close a form under fx. an exit button > to close the form ? Yahoo! Groups Sponsor Get unlimited calls to U.S./Canada Yahoo! Groups Li

[development-axapta] How to close a form

2004-11-30 Thread affekatz
Is there a command i can use to close a form under fx. an exit button to close the form ? 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/  T

[development-axapta] Re: Load form from a object and return values

2004-11-30 Thread affekatz
Thanks it works fine --- In [EMAIL PROTECTED], Ahmed Ibrahim <[EMAIL PROTECTED]> wrote: > >   FormRun fr; >   Args arg = new Args(); >   ; >   arg.name(formstr('FormNAme')); >   arg.caller(this);    // Ahmed: Add this line >   fr = ClassFactory.formRunClass(arg); >   fr.init(); >   fr.run(

Re: [development-axapta] Re: Load form from a object and return values

2004-11-30 Thread Ahmed Ibrahim
FormRun fr; Args arg = new Args(); ; arg.name(formstr('FormNAme')); arg.caller(this);// Ahmed: Add this line fr = ClassFactory.formRunClass(arg); fr.init(); fr.run(); fr.detach(); fr.wait(); //this will work if you have a menuitem refers to EmpForm argsparam

[development-axapta] Re: Load form from a object and return values

2004-11-30 Thread affekatz
When i use this i can load the form from a object:   FormRun fr;   Args arg = new Args();   ;   arg.name(formstr('FormNAme'));   fr = ClassFactory.formRunClass(arg);   fr.init();   fr.run();   fr.detach();   fr.wait(); This dosn't seem to work ?   Args    parameters = new Args();  

[development-axapta] Re: What is a Lable?

2004-11-30 Thread wohegro
hi, in menubar click on "Help", then on "Microsoft Axapta Developer's Guide". click on tabpage "Search" and enter the following text in searchfield: "Labels: What" then you'll get an result named: Labels: What they are and how they work I think there's enough explanation about this issue.