RE : [development-axapta] changing Formdatasource field allowedit property from code

2006-11-24 Thread Steeve Gilbert
Hi Ramazan, You were almost there. Here's what you need : InventTable_ds.object(fieldNum(InventTable, ItemId)).allowEdit(false); Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Ramazan GÝRGÝN Envoyé

RE: [development-axapta] Re: Inserting data from other application.REc id generate...

2006-11-24 Thread Serge Boomsma
Hi, I'm very interested in this also. Can you send me the example too. Thanks in advance! regards, Serge Boomsma -Oorspronkelijk bericht- Van: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] MBS Axapta Verzonden: Wednesday, November 22, 2006 9:39 AM Aan: development-axapta

[development-axapta] Re: Export Meta-data from a table in axapta (dynamics ax)

2006-11-24 Thread ivankashperuk
Hi, Henrik. You can do this by using the SysDictType class. it has a method noOfDecimals() and setNoOfDecimals() to view and modify the precision of the type. Good luck! --- In development-axapta@yahoogroups.com, "Henrik Laurell" <[EMAIL PROTECTED]> wrote: > > I try to write a small utility for

[development-axapta] Dynamics AX 3.0 and FRx 6.7

2006-11-24 Thread axapta_soporte
Hi everyone, I am new with FRx and I want to use it with Dynamics AX 3.0. I install the FRx 6.7 version from the partner source and I have checked the installation manual but I still don't know how to use the FRx module with the Dynamics Ax 3.0 database. When I try to dimension wizard for FRx I

Re: [development-axapta] changing Formdatasource field allowedit property from code

2006-11-24 Thread Sailendran Rajan
Hi Ramazang, just try this, datasoursename.object(fieldid).allowEdit(false) will do. eg, custTable_ds.object(fieldNum(CustTable, Name)).allowEdit(false); regards Sailendran Rajan Ramazan GÝRGÝN <[EMAIL PROTECTED]> wrote: Hi all, How can I change datasource field pr

RE: [development-axapta] Making enum element invisible

2006-11-24 Thread Harry Deshpande
Sysdictenum.treeNode().AOTfindChild("Name of the element").AOTdelete(); //deleting the element from the Enum SysDictEnum.treeNode().AOTcompile(1); //compile SysDictEnum.treeNode().AOTsave(); //Saving the baseenum *lol* From: development-axapta@yahoogroups.com