[Axapta-Knowledge-Village] Show Item Name and save Item ID

2011-05-10 Thread V G
Hi All I have a requirement where we have to show the item name on the production order and save as item id in the table. This needs to be one field showing itemname and saving itemId. Any help is greatly appreciated. Thanks VG

Re: [Axapta-Knowledge-Village] Show Item Name and save Item ID

2011-05-10 Thread Iin Dewi
Hi VG, Create a display method on ProdTable table as shown below : display ItemName getItemName() {   return InventTable::find(this.ItemId).ItemName; } after that drag the method into the grid on ProdTable form, and fill out the datasource property into ProdTable. That's it !! Regards,

Re: [Axapta-Knowledge-Village] Show Item Name and save Item ID

2011-05-10 Thread somanna gl
use a form lookup and say close select item ID From: V G learnaxa...@gmail.com To: axapta-Knowledge-Village@yahoogroups.com; development-axa...@yahoogroups.com Sent: Tue, May 10, 2011 12:55:04 PM Subject: [Axapta-Knowledge-Village] Show Item Name and save Item