[development-axapta] Barcode scanning software

2004-04-21 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

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

2004-04-21 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(); } with kind regards, Pascal

RE: [development-axapta] Quarantine warehouse

2004-04-21 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] More than 3 dimensions

2004-04-21 Thread Girish Bhatkal
Title: Message this is an extra modification which you have to made and you are not activiting anything , for which licence is required. So you may not need extra licence. cheers, Girish -Original Message-From: Aksnes Eva [mailto:[EMAIL PROTECTED]Sent: 20 April 2004 15:30To:

[development-axapta] Re: tabpage

2004-04-21 Thread byteway_so
Yes I tried that too, without succes though. It seems that there is no screen update when changing from tabPage. So perhaps I should force a reread when a tabPage change takes place... Any more ideas? --- In [EMAIL PROTECTED], markskinner [EMAIL PROTECTED] wrote: Have you tried putting

[development-axapta] Code Inventory movement process

2004-04-21 Thread Charles
Title: Message Hi axapta experts, I am required to use X++ to automate the inventory movement process for certain scenarios. I realise there is great risk involved in this as I have to carefully duplicate the inventory movement process accurately to avoid any inconsistencies to the

[development-axapta] Document Handling

2004-04-21 Thread branic007
I am having a problem with enabling the Document Handling Option in Axapta. I have set the Document Handling Active option under Tools-Options but this does not enable the Document Handling Option !? Any suggestions ??? Yahoo! Groups Sponsor ADVERTISEMENT Yahoo!

RE: [development-axapta] Re: tabpage

2004-04-21 Thread Deshpande, Harry
how abt redraw? -Original Message-From: byteway_so [mailto:[EMAIL PROTECTED]Sent: Wednesday, April 21, 2004 4:44 PMTo: [EMAIL PROTECTED]Subject: [development-axapta] Re: tabpageYes I tried that too, without succes though.It seems that there is no screen update when

[development-axapta] Re: Warehouses in Master Planing

2004-04-21 Thread yifath1
Hi, Thanks for the reply, i have thought about your idea of having sub- boms for each bom for each warehouse, but it would not be feasiable as there are over 400 such warehouses... However, Harry managed to give me the code - it works perfectly - ticket 7432... Thanks again for your help

[development-axapta] Range with IN statement

2004-04-21 Thread smeagul2303
Hi, I want to make a query where I cannot work with AND or OR. I need something like an IN-operator in SQL. In SQL I would write: select * from myTable where myfield in (One, Two, Four, Hundred) Is there a way to make it with Range-object or any other? Regards Manfred Yahoo!

RE: [development-axapta] Document Handling

2004-04-21 Thread Artem Tymofyeyev \(Intl Vendor\)
In order to enable the Document Handling button you should: - mark Document Handling Active checkbox in Tools-Options; - complete all checklists: installation and update (Administration-Setup-System-Checklists); - set valid path for the documents in

AW: [development-axapta] Range with IN statement

2004-04-21 Thread Groß
Title: Nachricht hi, what's about: ... queryRange.value("One, Two, Four, Hundred"); ... ??? regards wolfgang -Ursprüngliche Nachricht-Von: smeagul2303 [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 21. April 2004 13:29An: [EMAIL PROTECTED]Betreff:

[development-axapta] PurchFormLetter.update()

2004-04-21 Thread eva_aksnes
I want to post an PackingSlip from Code - using PurchFormLetter.update (). static void Job28(Args _args) { purchformletter purchformletter; ; ttsbegin; purchformletter = PurchFormLetter::construct (DocumentStatus::PackingSlip); purchformletter.update(PurchTable::find('20067'),

[development-axapta] LedgerJournalTrans help wanted

2004-04-21 Thread Jens Fudge
Hi all I am trying to import some vouchers from a textfile into LedgerJournalTrans, allmost everything works fine. When creating a post through the LedgerJournalTrans Form, fields like PostingProfile, VAT number are automatically filled in, depending if its is a vendor or a customer.

[development-axapta] Re: Range with IN statement

2004-04-21 Thread smeagul2303
hi, thanks, it works regards Manfred --- In [EMAIL PROTECTED], Groß [EMAIL PROTECTED] wrote: hi, what's about: ... queryRange.value(One, Two, Four, Hundred); ... ??? regards wolfgang -Ursprüngliche Nachricht- Von: smeagul2303 [mailto:[EMAIL PROTECTED]

[development-axapta] Client for Windows CE

2004-04-21 Thread Steeve Gilbert
Does an Axapta WinCE thin client exist? We currently have TerminalServer for our wireless devices and are looking for alternatives. Steeve... Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ To unsubscribe from this group,

[development-axapta] display method

2004-04-21 Thread Steeve Gilbert
Purely for my knowledge, what's the use of having to put display when we want a method to be called from a control? Does the display keyword enable some optimization? Regards, Steeve... Yahoo! Groups Links To visit your group on the web, go

[development-axapta] COM Excel.Application

2004-04-21 Thread gonzalo_edo
Does anybody know where can I find any documentation about using Excel.Application COM Or anybody has an example to connect Excel with Axapta Regards Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ To unsubscribe from

RE: [development-axapta] Re: COM Excel.Application

2004-04-21 Thread Don Price
   xlApp   = new Com('Excel.Application');    xlApp.visible(true);     AppVersion  = xlApp.version();     xlBook  = xlApp.Workbooks();     wb = xlBook.Open(filename);      xlSheets    = xlApp.Worksheets(); Don -Original Message- From: Ing. Gonzalo Bastos S.

RE: [development-axapta] Document Handling

2004-04-21 Thread ooi aikchong
hi, I have the same problem too. Any one out there has any idea. Thanks From: branic007 [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [development-axapta] Document Handling Date: Wed, 21 Apr 2004 09:01:00 - I am having a problem with enabling the Document

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

2004-04-21 Thread Deshpande, Harry
hi Yifat Hope u have taken care of location etc. Since you are copying the InventDimId, the location,batch etc assigned to the finished goods will be copied over to the raw material. Perhaps what u can do as follows: (typing from memory, spelling mistakes are possible) in the

[development-axapta] Data Export/Import -- Definition groups

2004-04-21 Thread AKS
Title: Message Hi All, I am using Axapta 3.0 SP2. When I am using Data Export/Import Definition Groups Type : Excel Import Table set up The field Set up button is disabled. I am trying to Excel import to Ledger Journal Trans table from My Excel Work Book. By importing to

RE: [development-axapta] Permission group access

2004-04-21 Thread ooi aikchong
Hi Harry. Thanks for your prompt. I have to develop the coding bcos I have a form which will access by Material people and also Sales people.(bcos some of the setting for sales are based on Material setup). Both of these people are required to view/access their features. Therefore, I have