Re: [development-axapta] Locking field in SysQueryForm

2010-09-17 Thread kristanto surjadi
Hi Suki,   You can use status method in QueryBuildRange. Example:   QueryBuildRange qr;   qr = salesTable_ds.query().dataSourceTable(tablenum(salesTable)).addRange(fieldnum(salesTable,InvoiceAccount)); qr.status(rangeStatus::Locked);   With this code even if they open SysQueryForm you criteria

Re: [development-axapta] Locking field in SysQueryForm

2010-09-17 Thread SUKHNINDER SHERGILL
Hi Kristanto, Perfect! Thanks, Suki From: kristanto surjadi kristantosurj...@yahoo.com To: development-axapta@yahoogroups.com Sent: Friday, 17 September, 2010 7:14:25 Subject: Re: [development-axapta] Locking field in SysQueryForm   Hi Suki,   You can use