Re: [development-axapta] Item Help

2010-01-05 Thread jagjeet singh
Hi Toma,   Delete all the lines related to item you want to delete from BOM table and then delete your item.   you can do this by writing a job or executing the following script :   in X++   delete_from bom where bom.itemid == Your Item ID   in SQL   Delete from bom where itemid = your Item Id

Re: [development-axapta] Purchase Order bug

2010-01-05 Thread jagjeet singh
Hi There,   This is not a bug this is standard Ax.   The totals on purchase order only shows the total for the goods which are remaining on the purchase order i.e. if you have a PO of 100 qty and you have recived 20 the total will show you the value of 80 only and not 100.   Cheers     Jag ---

Re: [development-axapta] Dublicate labels

2010-01-04 Thread jagjeet singh
Hi there,   This was a bug in standard report and a fix is available from microsoft.   Jag --- On Sun, 3/1/10, M-Line abusa...@yahoo.com wrote: From: M-Line abusa...@yahoo.com Subject: [development-axapta] Dublicate labels To: development-axapta@yahoogroups.com Received: Sunday, 3 January,

Re: [development-axapta] Display image from AX table in SSRS

2008-11-10 Thread jagjeet singh
The image in Ax is stored as a container for displaying the image you might have to convert the image into a file and store it somewhere and then print it.   Jag --- On Thu, 11/6/08, syed baber [EMAIL PROTECTED] wrote: From: syed baber [EMAIL PROTECTED] Subject: [development-axapta] Display

Re: [development-axapta] Need help to get enum values in axapta

2008-11-10 Thread jagjeet singh
you can get the list of enum values by using the following code.   static void Job1(Args _args) {     AccountChoice abc;     accountchoice x;     int i;     ;     for(i=0;i=enumcnt(AccountChoice)-1;i++)     {     x = i;     info(enum2str(x));     } } --- On Thu, 11/6/08, Phuc Cao [EMAIL

Re: [development-axapta] batch processing

2008-03-28 Thread jagjeet singh
Create a class extends from runbasebatch. Execute your report from a class and then add that class in the batch. for examplee class reportinbatch extends runbasebatch { classdeclaration { } static void main(args _args) { reportinbatch batchreport = new

Re: [development-axapta] String format

2005-05-27 Thread jagjeet singh
Use num2str0 command. --- Matt Benic [EMAIL PROTECTED] wrote: Hi all, Another (possibly) basic question. X++ includes a strfmt function, but it is quite limited compared to the c equivalent, how would one format integer and real numbers into strings of a particular length? For example

RE: [development-axapta] Change InvoiceId on an invoice generated

2005-05-27 Thread jagjeet singh
Try using rename primary key function. change the invoice id in your table and call this function. tablename.renameprimarykey(); --- Elías Manchón López [EMAIL PROTECTED] wrote: Sorry but I don't change the name of field, I want change the content of the data on this field and that this

Re: [development-axapta] is there any where to check that a dimension value on inventorytrans

2004-08-26 Thread jagjeet singh
Have a look on inventory dimension group on item card. you can set which dimension you want to be mandatory over there in all over the system. Ta --- James Flavell [EMAIL PROTECTED] wrote: I hope someone can help me, Whenever an inventtrans is created/updated etc I want to check that one

Re: [development-axapta] Bar Codes/Bar Coding

2004-08-25 Thread jagjeet singh
have a look on bill of lading printing. This will print barcode on report and also have a look on barcode class. --- mud_mullet [EMAIL PROTECTED] wrote: Hi All Could Any one point me in the Right direction on how to set up bar coding in axapta / Or does any one know of anywhere i

Re: [development-axapta] Very Urgent: How to find the report name

2004-08-24 Thread jagjeet singh
have a look at ledgerbalancesheetprint class. under this class look for method runreport. you will find your answer. For finding the report name in axapa right click on dialog box and select setup. then click on information tab you will find the way to search. Cheers --- ottawa_m2003 [EMAIL

Re: [development-axapta] Hiding record

2004-08-12 Thread jagjeet singh
Did you tried datasource_ds.refresh() command; where datasource is your table you are using in a grid. --- taeguskevin [EMAIL PROTECTED] wrote: I am trying to hide/show records on a grid. I used the function CacheRemoveRecords(), which works fine to hide those records, but how do I