AW: [development-axapta] Printing BarCode Vertically in Report. Urgent!!!

2008-07-02 Thread jesper.joergensen
HI, Have fun. You can not print Vertical and horizontal on the same report within Ax. I solved the problem by writing on a plain text printer, sending the native printer codes to a barcode printer. Not a nice solution, but it worked. The best solution is to look for a barcode printing

[development-axapta] Re: help with Invalid NumeralsToTxt Result

2008-07-02 Thread eta2892a2
In short, it is a bug in the design of this method. We are using v3sp3, so I'm seeing the same thing. The result you are getting back is the upper bound of the int type (2^31-1). If you look at the code in the numeralsToTxt global method, it uses int type primitives to split up and process the

[development-axapta] Re: Report error

2008-07-02 Thread eta2892a2
Hi Asit, Set your report up to run as a batch job. cheers, Jim --- In development-axapta@yahoogroups.com, asit nayak [EMAIL PROTECTED] wrote: Hi All, I have a report where i need to run this report automatically on everyday on a specific time. Please let me know how can

[development-axapta] Re: What are Maps and what's the use of them?

2008-07-02 Thread eta2892a2
--- In development-axapta@yahoogroups.com, Vamsi Praneeth [EMAIL PROTECTED] wrote: Hello guys...I just wanna know...what actually are Maps in Dynamics AX 4.0 what are they used for? I have read in the e-books of Microsoft but couldn't figure out what actually are those.Can someone explain

[development-axapta] Re: help with Invalid NumeralsToTxt Result

2008-07-02 Thread ggodman
It will only return to a limit of int ie +/- 2147483647 --- In development-axapta@yahoogroups.com, Wahyudin Zakie [EMAIL PROTECTED] wrote: hi, I've a problem with NumeralsToTxt function. i have invoice amount = IDR 31,131,178,729. i want to convert it to says number, i'm using numeralstotxt

[development-axapta] move a SET variable (set(type: record)) from a class to a form

2008-07-02 Thread Ovidiu
Hi folks, Here is my issue: I have a class in which I parse a table and extract some of its records through query objects into a SET variable. At the end of parsing I want to pass this SET variable to a form and use it for further query in form's fetch method. Do you have any idea on how to

Re: [development-axapta] Re: help with Invalid NumeralsToTxt Result

2008-07-02 Thread david santoso
Hi Wahyu. I'm using Axapta 3.0 SP 6 and it works fine for that function. I'm sure that the cause is convert into max integer value. For example if you declare int i =31131178729; ; info(strfmt(%1, i)); //-- 2147483647 it will return 2147483647 not 31131178729 perhaps you

RE: [development-axapta] What are Maps and what's the use of them?

2008-07-02 Thread Malcolm Burtt
Hi Maps are an abstraction layer for Tables. They allow you to place code for tables that have comparable functions in a single place rather than having to duplicate the code for each table. This makes them a powerful and very useful feature within AX. For example, SalesLine and PurchLine are

Re: [development-axapta] Importing data into Invent table.

2008-07-02 Thread david santoso
Hi Tri, The cause, probably because of : - On InventTableModule Table you should create 3 module type (Inventory, Purchase Order, SalesOrder) for each item. - On InventItemLocation Table you should create item with default inventdimid (in ax 3.0 is Axapta) If you still can't find the item in