RE: [Axapta-Knowledge-Village] Serial No. allocation in SO

2007-12-05 Thread Thomas Rivera Jensen
Hi Abhjay Jain Automatic allocation of serial numbers only works on receipts, as the serial numbers on the issues should match a serial number on a receipt. So if you make a credit note I SO it should work. If you want to modify this you should take a look at the writeInventTransAutoDim method

[Axapta-Knowledge-Village] Re: Create Report

2007-12-05 Thread ricardodegouveia
Hi Barunava I have not used this before do you have a code examlpe i could look at? Ricardo --- In Axapta-Knowledge-Village@yahoogroups.com, Barunava Pal <[EMAIL PROTECTED]> wrote: > > Hi Ricardo, > If your report needs complex queries where various tables have to be used, it's better to use

[Axapta-Knowledge-Village] Axapta4.0 Mobile Applications

2007-12-05 Thread luvuprasad
Hi All, Have any guys worked on Mobile Applications for Axapta.. I need the prerequisites and a few examples to start working on them Thanks & Regards Prasad

Re: [Axapta-Knowledge-Village] Create Report

2007-12-05 Thread Barunava Pal
Hi Ricardo, If your report needs complex queries where various tables have to be used, it's better to use Programmable Section instead of body . Write all your queries in fetch method of the report and pass the variables to the programmable section. If you have not used this before, let me kno

[Axapta-Knowledge-Village] Reading comma io files

2007-12-05 Thread paulinavk
Hopefully last question from me regarding this. The file I am importing does not have a standard record delimiter. It is an unprintable character in notepad and if I look in the debug, the record delimiters are "0A". (Zero A) How do I define this for the infile.inRecordDelimiter(?) ?? Thanks

Re: [Axapta-Knowledge-Village] Visual Morphxplorer

2007-12-05 Thread Aji Sarosa
Hi Setiaji, Moving local variable declarations in methods to a class scope is not a wise action, if it is only intended to be recognized by the Visual MorphXplorer (VE). But I will give you a hint on how you could overcome that situation. As you should see, methods which use that table are act

Re: [Axapta-Knowledge-Village] Print Reort in Exel

2007-12-05 Thread Barunava Pal
Hi Febin, Do you want to print the report in excel instead of viewing it in screen or print it in some printer? You can do that through code but in that case every time that report will be printed in excel you can not view it in screen or printer. Tell specifically about the requirement. Barun

Re: [Axapta-Knowledge-Village] Displaying an image from a specified path

2007-12-05 Thread Barunava Pal
Thanx karthik, it works. Barunava - Original Message From: karthik kumar <[EMAIL PROTECTED]> To: Axapta-Knowledge-Village@yahoogroups.com Sent: Tuesday, 4 December, 2007 9:07:17 AM Subject: Re: [Axapta-Knowledge-Village] Displaying an image from a specified path

Re: [Axapta-Knowledge-Village] Strings and Enum Type

2007-12-05 Thread Barunava Pal
Hi Ricardo, SubStr, StrDel etc will not solve your problem. You have to use Stralpha and StrRem. Follow this example. str 100 a; ; a = "'ascakld3243rf-=p0]2[el'2./d.c,mdslkdj230ei'"; info(strrem(stralpha(a),'1234567890')); The output will be "ascakldrfpeldcmdslkdjei", what

Re: [Axapta-Knowledge-Village] Displaying an image from a specified path

2007-12-05 Thread Barunava Pal
Hi Sumit, The image is available or not is not my concern. If you know how to do what I have wanted for, please tell me. Barunava - Original Message From: Sumit Loya <[EMAIL PROTECTED]> To: Axapta-Knowledge-Village@yahoogroups.com Sent: Tuesday, 4 December, 2007 8:48:44 AM Subject: Re:

Re: [Axapta-Knowledge-Village] Displaying an image from a specified path

2007-12-05 Thread Barunava Pal
Not at all. I have clearly told that the image must not be saved in the database. What you are telling is, the image is saved in CompanyImage table with reference tableId and RecId. Barunava - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: Axapta-Knowledge-Village@y

[Axapta-Knowledge-Village] Report Section Error

2007-12-05 Thread Siva kumar
Hi, When I am running Purchpurchaseorder report Iam getting error as " Section in the report is higher than the actual page allow size". Has anyone come across such error. If so, Please let me what your suggeston to solve this issue? Thanks, MGS

[Axapta-Knowledge-Village] Re: Document grouping conditions

2007-12-05 Thread Steeve Gilbert
I should have mentionned that I'm running Ax3.0 SP3 and that's why it's different I guess. --- In Axapta-Knowledge- [EMAIL PROTECTED], "Subrahmanyam,Mamidi" <[EMAIL PROTECTED]> wrote: > > Actually, AX4.0/SP1, the display menu item for this is > > SalesFormLetterSortingParameters and the fo

[Axapta-Knowledge-Village] Create Report

2007-12-05 Thread ricardodegouveia
Hi i am trying to create a report that will have 3 different datasources. Do the 3 reports have to be related? Does anyone have a code example of using more than one unrelated datasource? Thanking you in advance Ricardo