[Axapta-Knowledge-Village] Re: Container and unbounded string fields error

2007-09-10 Thread ricardodegouveia
Thank you!!! --- In Axapta-Knowledge-Village@yahoogroups.com, Michael Fruergaard Pontoppidan [EMAIL PROTECTED] wrote: You will have to change _param1 from a str to a string type with a fixed length, ie an Extended Data Type, or str 10. Michael From:

Re: [Axapta-Knowledge-Village] updating problem at production

2007-09-10 Thread Lukas Nugroho Putro
Hi Please check the data from SQL Analyser. Maybe your data contain decimal point that make BOM estimate different from BOM consumption. regards Lukas Ursula Miranda [EMAIL PROTECTED] wrote:Hi All, I am facing the same problem as well, I'd like to update a

[Axapta-Knowledge-Village] Checking of Field Names and Field Types

2007-09-10 Thread ricardodegouveia
Hi i'm trying to find out how in the emplTable or any table which fields are in the table, in other words i want to check if in code eg. field name = Race is a field in the EmplTable? as well how do you check the base type of the field like Race is it a string or enum and so on in code?

Re: [Axapta-Knowledge-Village] Checking of Field Names and Field Types

2007-09-10 Thread Agus Riyadi
Hi Ricardo, Use DictTable and DictField classes. Regards, Agus On 9/10/07, ricardodegouveia [EMAIL PROTECTED] wrote: Hi i'm trying to find out how in the emplTable or any table which fields are in the table, in other words i want to check if in code eg. field name = Race is a field in

[Axapta-Knowledge-Village] Re: Checking of Field Names and Field Types

2007-09-10 Thread ricardodegouveia
hi how would i loop through the dictTable to compare the to the table im looking for? a while select,if statement? if while select how would you do it? --- In Axapta-Knowledge-Village@yahoogroups.com, Agus Riyadi [EMAIL PROTECTED] wrote: Hi Ricardo, Use DictTable and DictField classes.

Re: [Axapta-Knowledge-Village] Checking of Field Names and Field Types

2007-09-10 Thread vijaykarthik K
Hi Ricardo, The below job explained, How we get the field details base type of fields. i had taken ' EmplTable', and check the field name 'Status'. static void FindTableColumn(Args _args) { SysDictTablesysDictTable; SysDictFieldsysDictField; int j; str tablename,fldName;

[Axapta-Knowledge-Village] EP Passing parameter to report displayed as web output content item

2007-09-10 Thread Agus Riyadi
Dear All, I have a webform which has some value that I need to send to a standard report displayed as web report upon closedOk(). Here is my code : weblink = new weblink(); webUrlMenuFunction = new WebUrlMenuFunction(weburlitemstr(myReport)); weblink.parm(my parameter);