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

2009-04-16 Thread benoit.billington
Hello again :) http://img26.imageshack.us/img26/1766/greenshot20090409151059.png I made a custom lookup for my familyCode field as you can see my custom lookup contains 2 fields with each time a lookup and a grid http://img19.imageshack.us/img19/3633/greenshot20090415120249.png The grid

[development-axapta] Custom Form lookup with filters - clicking problem

2009-04-16 Thread benoit.billington
I have made a custom lookup with 3 linked tables 3 grids http://img254.imageshack.us/img254/1694/greenshot20090415165956.png When I click on an element in the grid1 (top left) it updates the grid2 (top right) and when i click on an element in that last grid2 (top right) it updates the grid3

[development-axapta] Re: Lookup on a lookup form

2009-04-16 Thread benoit.billington
--- In development-axapta@yahoogroups.com, Ciprian Ioan ioancipr...@... wrote: Hi! I have a control on a lookup form. I want this control to open another lookup form (or a drop-down list) to filter some records. When I click this the drop-down icon it closes both lookup forms so it doesn't

[development-axapta] Enterprise Portal - Access to EmplTable

2009-04-16 Thread hausi18
Hi, I'll get the following error messages in my Enterprise Portal application (AX2009 SP1 - WSS 3.0): User 'mustm' is not authorized to select a record in table 'EMPLTABLE'. Request denied. Cannot select a record in Employee (EmplTable). Access Denied: You do not have sufficient

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 /

[development-axapta] FW: Transactions of Intercompany Items.

2009-04-16 Thread Khalil Rehman
Dear All, i want to know that is there any possibility to have reference of intercompany purchase items in OPERATIONS GL Account. e.g. i want to know the items cost produce by Intercompany in OPERATIONS (GL ACCOUNT). your urgent reply will be highly appreciated. regards.

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

2009-04-16 Thread benoit.billington
Do this : qbsInventTable.orderMode(OrderMode::GroupBy); qbsAppFamily.orderMode(OrderMode::GroupBy); It didn't work cuz in fact there's no distinct record. my bad! It's only in the grid that both records are distinct, but in fact they are different cuz of some other fields which are not useful

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

2009-04-16 Thread benoit.billington
Thanks for the quick answer it worked for the multi grid lookup but not for the cascading lookup form --- In development-axapta@yahoogroups.com, enki...@... wrote: Dear Benoit, can you test this. You add a boolean '_canClose' value on your form and set it to 'false' during init(). You