RE: [development-axapta] Quarantine warehouse

2004-04-20 Thread Charles
Thank for the tip James.    Regards, Charles  -Original Message-From: James Flavell [mailto:[EMAIL PROTECTED]Sent: Wednesday, April 21, 2004 12:41 PMTo: [EMAIL PROTECTED]Subject: RE: [development-axapta] Quarantine warehouse Not sure which manual/doc it might be in (I guess

Re: [development-axapta] Re: How to Insert record

2004-04-20 Thread Pascal Dutour Geerling
Hi Jay, Maybe you can do it like this: While select ItemId, GroupId, Qty, amount From InventTransJournal where GroupId == 'CH254' {   if (amount < 0)     temp.amount = abs(amount);   else     temp.amount = -1 * amount;   temp.insert(); }

[development-axapta] Barcode scanning software

2004-04-20 Thread daylep2003
Hi All, Does anyone have any recommendations regarding Barcode scanning software that can be interfaced / integrated with then Fixed Assets module? Dayle Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/  To unsubscribe f

RE: [development-axapta] Quarantine warehouse

2004-04-20 Thread James Flavell
Not sure which manual/doc it might be in (I guess the AP...).   Its fairly straight forward in AP/Journals/Tax Invoice their is Invoice Register and Invoice approval (check the online help for these screens)   First you create a record in invoice register of the amount and then when you fi

RE: [development-axapta] Quarantine warehouse

2004-04-20 Thread Charles
Hi James, Thanks for the quick reply. Where can I find more information on how to go about doing the Invoice Register and invoice Approval.   Regards, Charles -Original Message-From: James Flavell [mailto:[EMAIL PROTECTED]Sent: Wednesday, April 21, 2004 10:24 AMTo: [EMAIL P

RE: [development-axapta] AOC File

2004-04-20 Thread Charles
Thanks for the prompt reply. -Original Message-From: Steve Wright [mailto:[EMAIL PROTECTED]Sent: Wednesday, April 21, 2004 12:28 PMTo: '[EMAIL PROTECTED]'Subject: RE: [development-axapta] AOC File The .aoc files are cache files for Axapta.  You will see your Axapta u

RE: [development-axapta] AOC File

2004-04-20 Thread Steve Wright
The .aoc files are cache files for Axapta.  You will see your Axapta userid is a part of each filename as well as the AOS you are connecting to.   Axapta will cache menus, forms etc whenever you run Axapta.   This is for performance in a wan situation where you don't want to download stati

[development-axapta] AOC File

2004-04-20 Thread Charles
Hi all,   There are several *.aoc file residing in my C:\Documents and Settings\user\Local Settings\Application Data folder. I notice it grows everytime I log off from axapta. Do you have any idea what it is and how I can prevent axapta from creating these files? It is occupying alot of u

RE: [development-axapta] Quarantine warehouse

2004-04-20 Thread James Flavell
If you only need to register the financial amount (I take it meaning ledger only) without affecting inventory why do you not use Invoice Register and tehn Invoice Approval?   -Original Message-From: Charles [mailto:[EMAIL PROTECTED]Sent: Wednesday, April 21, 2004 12:14 PMTo

[development-axapta] Quarantine warehouse

2004-04-20 Thread Charles
Hi axapta experts,   I have a scenario whereby the Purchase Orders are posted for GRN but the goods are still in transit and have not yet arrive at the warehouse. The reason why the PO has to be posted for GRN before the physical arrival of goods is due to financial requirements. However,

RE: [development-axapta] Permission group access

2004-04-20 Thread Deshpande, Harry
hi Acooi   curious. Why do you want to do this thru code? Why not just set the security key?   regards   harry   -Original Message-From: ooi aikchong [mailto:[EMAIL PROTECTED]Sent: Wednesday, April 21, 2004 10:35 AMTo: [EMAIL PROTECTED]Subject: [development-axapta] Permis

[development-axapta] Permission group access

2004-04-20 Thread ooi aikchong
Hi all, I have few forms which will only allow to be accessed by a particular permission group. This group has multiple users. So, my question is How can i control the form to be accessed by the specified group only in my code? Is there any function in Axapta which allow me to do so? I am u

RE: [development-axapta] Re: Warehouses in Master Planing

2004-04-20 Thread Deshpande, Harry
hi Yifat,   this is a one line modification.   change method 'createBOM' on table 'reqTrans'. Put the following line somewhere in the 'Search' loop inside this method (say when the quantity is assigned to the BOM.)       reqTransBOM.CovInventDimId  =  _reqPo.CovInventDimId;   th

[development-axapta] Re: Warehouses in Master Planing

2004-04-20 Thread ole_richardt
Hi Yifat, The reason why the master scheduling does not populate the warehouse for the raw material is that the default BOM has WH blank on the BOM lines. Axapta therefore goes back to the default, namely the default WH on the Item master. If you have a WH on the BOM line Axapta will use t

Re: [development-axapta] Re: How to Insert record

2004-04-20 Thread Jay Sathasivam
Hi Pascal and Claudia Thanks for that but my problem is I have a temp table and 1000 records of InventTransJournal table in the InventTransJournal I have + Amount and - Amount so If I do this way it is not working Insert_recordset Temp(ItemId, GroupID, Qty, Amount) Select ItemId, GroupId, Qty,

RE: [development-axapta] More than 3 dimensions

2004-04-20 Thread Aksnes Eva
Title: Message   Thank you. Found the document. Is it possible to do this without the lisence? I can't see anything in the document that should suggest that a lisence is needed. But maybe it's just a nice way to get some money?   Eva Aksnes -Original Message-From: Lars Holm

SV: [development-axapta] More than 3 dimensions

2004-04-20 Thread Lars Holm (LHO.DK)
Create them in the AOT :-) Follow guidelines from MBS technet. //Lars   -Oprindelig meddelelse-   Fra: eva_aksnes [mailto:[EMAIL PROTECTED]   Sendt: ti 20-04-2004 15:54   Til: [EMAIL PROTECTED]   Cc:   Emne: [development-axapta] More than 3 dimensions    

[development-axapta] More than 3 dimensions

2004-04-20 Thread eva_aksnes
We have more than 3 licenses in our partner-license. But how do we activate more than 3? Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]  Your use of Yaho

Re: [development-axapta] Re: How to Insert record

2004-04-20 Thread Pascal Dutour Geerling
Hi Jay, You can also use the function abs(-amount) this will return a positive amount. (see system documentation --> functions) with kind regards, Pascal    Claudia Göries

[development-axapta] Re: How to Insert record

2004-04-20 Thread Claudia Göries
Hi Jay, tempTable.amount = InventJournalTrans.Amount * -1; tempTable.insert(); cu Claudia --- In [EMAIL PROTECTED], Jay Sathasivam <[EMAIL PROTECTED]> wrote: > > Hi Guys > >  > > I want to Insert into temp table some records from InventJournalTrans there I have > >  (-) amount so how

[development-axapta] County functionalities in sys-layer

2004-04-20 Thread elianill
Hallo, can anybody tell me which country functionalities are in the SYS layer - I remember that there were six countries named, where an installation of dis-layer is not necessary for 3.0. Many thanks in advance!!! Elia Yahoo! Groups Links To visit your group on the web, go to