Re: [development-axapta] How to check group of current user?

2010-08-02 Thread enkidou
Hello, you just have to check i fan association between your group and user is done in table 'UserGroupList'. Regards, Geoffrey - Mail Original - De: shamika shamik...@yahoo.com À: development-axapta@yahoogroups.com Envoyé: Jeudi 29 Juillet 2010 19:45:38 GMT +01:00 Amsterdam /

Re: [development-axapta] Can we have Serial Number in Packing Slip?

2010-03-02 Thread enkidou
It's on account receivable, I'm sure you'll have correct by yourself. Geoffrey - Mail Original - De: enki...@free.fr À: development-axapta@yahoogroups.com Envoyé: Mardi 2 Mars 2010 14:58:51 GMT +01:00 Amsterdam / Berlin / Berne / Rome / Stockholm / Vienne Objet: Re: [development-axapta]

Re: [development-axapta] Urgent: Total Discount on Sales Order Amount.

2010-03-02 Thread enkidou
Hi, did you try to set 0.00375 on total discount % on Price/Discount tab of your sales order ? Regards, Geoffrey - Mail Original - De: Khalil Rehman khalilrehm...@hotmail.com À: Knowlege Village axapta-knowledge-vill...@yahoogroups.com, Development Group

Re: [development-axapta] Can we have Serial Number in Packing Slip?

2010-03-02 Thread enkidou
Hi, concerning your first point, il you don't pass through picking list or register on your sales lines, how could the application know which serial numbers are picked from stock ? Maybe your point is to automaticaly link the packing slip generation for each picking list you validate. For the

Re: [development-axapta] Capitalize all letters in Ax2009

2010-01-28 Thread enkidou
Hi Myrl, you can use 'strUpr' function. ttsBegin; while select forUpdate myTable { myTable.Description = strUpr(myTable.Description); myTable.update(); } ttsCommit; For this purpose, you can't use update_recordset. Regards, Geoffrey - Mail Original - De: Myrl Stadnick

Re: [development-axapta] How to import Employee data into Ax 2009

2009-09-28 Thread enkidou
Hi Suneel, if you take a look at EmplTable form, you will see DirPartyTable datasource joined to EmplTable with 'InnerJOin' type. So, you need a correspondant record to your EmplTable record in DirPartyTable. According to my memory, there is a method on DirPartyTable named createNew which is

Re: [development-axapta] Reg attaching ten documents in a new tab

2009-09-28 Thread enkidou
Hi, I'm not sure to understand your problem. You want to add a new tab in your PurchTable form and then attach some files in there ? If you want to attach files to a record in AX, there is the document handling in which you will be able to add files. Doesn't it fit your gap ? Regards,

Re: [development-axapta] study material required

2009-07-28 Thread enkidou
Hi, you can find all training courses on Partner Source. Regards, Geoffrey - Mail Original - De: pri_babs pri_b...@yahoo.co.in À: development-axapta@yahoogroups.com Envoyé: Jeudi 23 Juillet 2009 10:35:04 GMT +01:00 Amsterdam / Berlin / Berne / Rome / Stockholm / Vienne Objet:

Re: [development-axapta] Problem of join Datasources on the Form

2009-07-20 Thread enkidou
Hi, This answer will be as is. I don't have DAX there to check it. If you want to use different datasources in the same grid without any data method (display or edit), you can't use passive active or delayed join. Those join refresh child source regarding the current record selected. You can try

Re: [development-axapta] AX Reporting Help...Passing criteria and 1 click printing?

2009-07-01 Thread enkidou
Hi, For the first part, you have to use a MenuItemButton on your form set on a MenuItem for your report. In the MenuItemButton you will be able to set which datasource to your report. Then in the report, you can get it from element.args().record(). You can take a look at SalesInvoice report

Re: [development-axapta] Assign Security access right to views

2009-06-26 Thread enkidou
Hi, If you take a look to others views on Inventory management module as InventItemPriceActive, you will see that you should use InventTables security key on your specific view for Invent module. Then your view will be available as other tables and views. Regards, Geoffrey - Mail

Re: [development-axapta] How do I update a db field from another field...

2009-06-18 Thread enkidou
Hi, the relation should be in DataDictionary. So, if PojInvoiceTable.ProjInvoiceProjID is on ProjInvoiceProjId and your table is only joined on this, the EDT should have a relation to ProjInvoiceTable and your ID should be on this EDT. Then you have a relation between your tables. Then, on the

Re: [development-axapta] Form

2009-06-17 Thread enkidou
Hi, you can set CreatedBy to Yes on the table and add a range to your formdatasource you will set with the current user id in the init method on the formdatasource. Regards, Geoffrey Delmée - Mail Original - De: Pooja . dyna.a...@yahoo.com À: development-axapta

RE: [development-axapta] Form

2009-06-17 Thread Enkidou
Hi, You can set ‘CreatedBy’ property to ‘Yes’ on the table and add a range on your FormDataSource in its init method and set the range’s value to the current user. Regards, Geoffrey Delmée De : development-axapta@yahoogroups.com [mailto:development-axa...@yahoogroups.com] De la part

RE: [development-axapta] Report Designing.

2009-06-17 Thread Enkidou
Hi, At first I recommend you not to use Visual report designer. You will gain time directly working on the object tree. Then, to do this, you have to add shape controls and set them separetly. Regards, Geoffrey Delmée De : development-axapta@yahoogroups.com

RE: [development-axapta] (unknown)

2009-06-17 Thread Enkidou
Hi, There are many ways to do this. Some automatic, some with code, some with specific forms. Fist, on the table your EDT has its relation, the TitleField1 and TitleField2 are the 2 fields on LookUp on control on the EDT. On your table, if you put some fields in group ‘AutoLookup’, this

Re: [development-axapta] Report Designing.

2009-06-17 Thread enkidou
Hi, first of all, I recommend you not to use the Visual Report Designer but direcly wirk from the report tree. Then, if you want different thickness you'd better add some Shape controls and set different parameters for each. Regards, Geoffrey Delmée - Mail Original - De: Khalil Rehman

Re: [development-axapta] Prob : Form Lookup (custom) with filters (cascading lookup)

2009-04-16 Thread enkidou
Dear Benoit, can you test this. You add a boolean '_canClose' value on your form and set it to 'false' during init(). You set '_canClose' to 'true' only when clicking on the grid you select the information. In form method canClose() you test your boolean value. This may work too for your multi

Re: [development-axapta] Query QueryBuildDataSource - Distinct records

2009-04-16 Thread enkidou
Dear Benoit, you just have to change the 'OrderMode' on your datasource. Regards, Geoffrey Delmée - Mail Original - De: benoit.billington benoit.billing...@yahoo.com À: development-axapta@yahoogroups.com Envoyé: Mercredi 15 Avril 2009 11:55:21 GMT +01:00 Amsterdam / Berlin / Berne /