RE : [development-axapta] Re: How to access enum values in loop

2004-01-02 Thread Joannick Bacon
I'm not sure if it's what you want, but maybe you could use the function enum2str(enumtype) and insert this value into the string field? Bacon Joannick Stagiaire Informatique / IT trainee B O A - F R A N C | M I R A G E T

RE : [development-axapta] Re: How to move up section on SalesInvoice

2004-01-02 Thread Joannick Bacon
There's also another way to hide those fields without saving the space, use the .visible(false) function in place of the .hide() After, if you need to display them again, use the .visible() or .visible(true) property public void executeSection() { if (element.page() != 1) {

[development-axapta] 2 report from salespickinglistjournal

2004-01-02 Thread Joannick Bacon
Hi all, I have a little problem with the salespickinglistjournal report. We had to change some of the standard functionality of Axapta to add our own. We would like to create a new report with the same old function (that validate the picking) and launch after our own. I've override the

[development-axapta]

2004-01-02 Thread Joannick Bacon
Hi all, I have a grid with the data I want, now I want to send a report related to one(or many) line in the grid, how can I do that? Bacon Joannick Stagiaire Informatique / IT trainee B O A - F R A N C | M I R A G E T 418.227.1181

RE : RE : [development-axapta] (unknown)

2004-01-02 Thread Joannick Bacon
: [EMAIL PROTECTED] Objet : RE: RE : [development-axapta] (unknown) Hi Try to override showQueryValues on class from which you call report. I hope it helps. -Original Message- From: Joannick Bacon [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 07, 2003 3:58 PM To: [EMAIL PROTECTED

RE : [development-axapta] (unknown)

2004-01-02 Thread Joannick Bacon
); } } Best of luck Thomas Poulsen AXDATA A/S --- In [EMAIL PROTECTED], Joannick Bacon [EMAIL PROTECTED] wrote: Hi all, I have a grid with the data I want, now I want to send a report related to one(or many) line in the grid, how can I do

RE : [development-axapta] datafield property of section group

2004-01-02 Thread Joannick Bacon
You set the datafield property to a fieldname when you want to make a break between different records values For exemple Name : SectionGroup_SalesLine Table : SalesLine DataField : SalesId Will do something like that SalesId

[development-axapta] Haf a cheque - Half a question

2004-01-02 Thread Joannick Bacon
Hi all, I'm actually looking to modify the display order of the cheque. I found the report Cheque_US, but the problem is that what is print is not only that report, there is also a section on the upper page where the detail information is printed (customer, invoice date, currency) I would like to

RE : [development-axapta] How to know the selected Language.

2004-01-02 Thread Joannick Bacon
Infolog.language() Bacon Joannick Stagiaire Informatique / IT trainee B O A - F R A N C | M I R A G E T 418.227.1181 #2313 F 418.227.1188 www.boa-franc.com

RE : [development-axapta] Adjustment

2004-01-02 Thread Joannick Bacon
I'm not sure, but there's maybe a way to do it. You could update the rightjustify field of SQLDictionary to true. tts begin; SELECT FORUPDATE SQLDictionary WHERE SQLDictionary.tableId == ?? SQLDictionary.FieldId == ?? ; RightJustify = true; SQLDictionary.update() tts commit;

[development-axapta] Cost of inventory

2004-01-02 Thread Joannick Bacon
Hi everyone, In the table InventTrans, they are 6 costAmount fields (Posted, STD, settled, physical, adjustment, operations). I want to make a report that compute the value of the inventory( selling cost, buying cost ). When looking in the Inventory Management Items

[development-axapta] date query bug

2004-01-02 Thread Joannick Bacon
Hi again everybody, we've encounter a bug lately in axapta When we're making a queryRun and adding date value with the date2str() function, that date isn't recognize. We've trace the problem to the source, the regional settings of Windows. The real problem is : we're using the

[development-axapta] inventOnHand report modifications

2004-01-02 Thread Joannick Bacon
Hi all, I'd like to make some change to the inventOnHand report to be able to sort it by itemGroupId and itemName(or the equivalent in inventTxt) For that, I need to add inventTable and inventTxt table in the query. Is there any way to do it by code by updating the fetch method, or do I have