AW: [development-axapta] How to find the data type of the field

2006-04-27 Thread jesper.joergensen
Hi Try this: static void Job1(Args _args) { SysDictTable dictTable; SysDictField dictField; SysDictType dictType; SysDictEnum dictEnum; str baseType; Counter fieldCounter; Counter arrayCounter; ; dictTable = new SysDictTable(TableNum(CustTable)); for (fieldCounter =

RE: [development-axapta] AxaptaCOMConnector: Getting Existing Tables

2006-04-27 Thread Rudi Hansen
Just a quick tip, look at UtilElement where recordtype = tables -Original Message- From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of eya_parungao Sent: 26. april 2006 11:25 To: development-axapta@yahoogroups.com Subject: [development-axapta]

AW: [development-axapta] AxaptaCOMConnector: Getting Existing Tables

2006-04-27 Thread Andreas Rudischhauser
Use DicTable Object in axapta Von: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von eya_parungao Gesendet: Mittwoch, 26. April 2006 11:25 An: development-axapta@yahoogroups.com Betreff: [development-axapta] AxaptaCOMConnector:

[development-axapta] Importing text file into InventTable BOMTable

2006-04-27 Thread shergillsuki
Hi, I'm new to Axapta. I'm developing an import. I've got my text file handling logic working. But can find any examples of populating the InventTable and BOMTables. Can someone send me an example. Thanks, Suki YAHOO! GROUPS LINKS Visit your group

RE: [development-axapta] creating password field

2006-04-27 Thread Mayle, Michael
Hema, There is a property on the stringEdit of whatever field you are displaying called Password Style. Set that to Yes and you should be set. --Michael -Original Message- From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday,

RE: [development-axapta] Export record to text file

2006-04-27 Thread Irwan Mulia
Hi Agus, Thanks for the reply. Yes, i've already used the IO class. And it's working fine. Rgds, Irwan -Original Message- From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Agus Riyadi Sent: Tuesday, April 25, 2006 11:44 AM To:

Re: [development-axapta] AxaptaCOMConnector: Getting Existing Tables

2006-04-27 Thread Anil Ozay
Hi Eya, You can read Axapta Help Documentation, also you can find example about COM Connector on MSDN. Firstly, you must register AxaptaCOMConnector, after that you must add reference to your project. *try {* *Axapta axaptaApp = new AxaptaClass() * // Create Axapta object to connect to

[development-axapta] Pump data into Excel file

2006-04-27 Thread hakzaikei
Hi, Currectly I am looking a way to pump Axapta invoice data into a excel file, saying that the invoice format is followed. For each transaction, multiple invoices may pump into the same excel sheet and a new excel workbook is created. Can any suggest on what is the better way to do so from

RE: [development-axapta] Optimistic Concurrency Checking/RecVersion

2006-04-27 Thread James Flavell
Thanks for sharing that Lennart, I am sure it has saved me a lot of searching in the future -Original Message- From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lennart Conrad Sent: 24 April 2006 22:45 To: development-axapta@yahoogroups.com Subject: RE:

RE: [development-axapta] Business Views

2006-04-27 Thread Mike Savage
James The way I have done that in the past is to write an actual SQL statement, execute it and retrieve the record set and report on that. Something like: static void Job3(Args _args) { Connection con; Statement statement; ResultSet resultSet; Str sqlSelect; ; con = new Connection();

RE: [development-axapta] How to find the data type of the field

2006-04-27 Thread Lennart Conrad
Some inspiration: static void detectFieldTypes(Args _args) { DictField d; DictField d_status; ; d = new DictField(tableNum(inventTrans),fieldNum(InventTrans,inventTransId)); info(Strfmt(Base type %1, Type %2, Enum %3,d.baseType(),d.typeId(),d.enumId() )); info(strfmt(EDT