RE: [development-axapta] Can't create document handling note on an invoiced sales order

2004-03-24 Thread Gert Neetesonne
If I'm not mistaken you can add the salesTable to the 'Active document tables' in the basic menu to prevent the standard behaviour (if record is read-only documnet handling cannot be attached). Gert Neetesonne EDAN Business Software >From: "Steeve Gilbert" <[EMAIL PROTECTED]> >Reply-To:

Re: [development-axapta] Updating tables

2004-03-24 Thread Steffan Engholm
Hi Jay Look at Your equality operator in the where clause; You forgot double equal signs, try: Where InventSummary.ItemID == InventView.ItemId; Best Regards Steffan --- Jay Sathasivam <[EMAIL PROTECTED]> wrote: > Hi Guys, >  > I have a InventSummary table the fields are > ItemID,QtyOnHa

[development-axapta] Re: Shipping Integration - Solutions

2004-03-24 Thread bbfen
--- In [EMAIL PROTECTED], "Etien" <[EMAIL PROTECTED]> wrote: > Who has compeling solutions for control and integration of best cost > routing of outbound shipments (any and all of UPS, FEDEX, USPS, LTL). > > Axapta 2.5 and 3.0 We're also looking at partners who had developed ISV or interf

[development-axapta] Updating tables

2004-03-24 Thread Jay Sathasivam
Hi Guys,   I have a InventSummary table the fields are ItemID,QtyOnHand,StockValue,SalesQty,SalesAmount and the view name InventView and the field names itemId, SalesQty, SalesAmount When I write Update command it's not working. The syntax is   Update_recordset InventSummary Setting  SalesQty

RE: [development-axapta] Update command

2004-03-24 Thread Tony Depalo
Title: Message use Update_recordset Tony -Original Message-From: Jay Sathasivam [mailto:[EMAIL PROTECTED] Sent: Thursday, 25 March 2004 11:22 AMTo: [EMAIL PROTECTED]Subject: [development-axapta] Update command Hi Guys,   I have a table call InventSummary which c

[development-axapta] Send Email in Axapta 3.0

2004-03-24 Thread ooi aikchong
Greetings to all, I am looking for a solution in Axapta which will enable me to send the email alert directly without going through Outlook. Is there any standard class which allow me to do so? Advice are welcomed. Appreciate your assiatance. Thanks, Rgds, AC Ooi

RE: [development-axapta] How to update table from view

2004-03-24 Thread Preston A. Larimer
Hi Jay, I don’t think you can use the Update_RecordSet when updating one dataset from another, some one correct me if I’m wrong please.     You could get done what you’re going for with a while select on the view….   While select InventView {       ttsBegin;     se

[development-axapta] How to update table from view

2004-03-24 Thread Jay Sathasivam
Hi Guys,   I have a InventSummary table the fields are ItemID,QtyOnHand,StockValue,SalesQty,SalesAmount and the view name InventView and the field names itemId, SalesQty, SalesAmount When I write Update command it's not working. The syntax is   Update_recordset InventSummary Setting  SalesQty =

[development-axapta] Update command

2004-03-24 Thread Jay Sathasivam
Hi Guys,   I have a table call InventSummary which contain ItemID,InventSize,Inventcolor, QtyOnHand,StockValue,SalesQty,SalesAmount I have created view call InventTransView its shows ItemID,InventSize,InventColor,SalesQty,SalesAmount   When I try to do update it's not working. The syntax is    

[development-axapta] Re: Bjørn Gudbrand, Windows service instead of batch jobs

2004-03-24 Thread vozadali
Thank you Bjorn, I have found a workaround like this. Say my batch operation is done one 10.00 everyday. I have created a .bat file, which closes the ax32.exe client and restarts it (when it restarts it automatically begins doing the batching as you explained to me). I have added this .bar

[development-axapta] A question about Axapta licence

2004-03-24 Thread vozadali
Hi, What does it mean "600 employers" written in the licence document (the one we have). Firstly, I thought that it would be "600 employees" and the system will allow only 600 records in EmplTable, but we have much more than that number and it doesn't warn. Perhaps it means 600 employed e

[development-axapta] payroll application

2004-03-24 Thread ncgco
Who have installed payroll in AXAPTA ? Can you please send me a manuals to see how work Payroll and their relations with Human Resources, Projects, Shop Control Floor, etc. Thanks in advance for your help. Best Regards. NICOLO. Yahoo! Groups Sponsor ADVERTISEMENT

RE: [development-axapta] AX SP2 database error..

2004-03-24 Thread Preston A. Larimer
Anil, the script I sent before was in error, I really need to review better before I hit send.  This has the proper corrections if you need the script   --Start Script use Master     go     exec sp_configure 'allow updates', 1      reconfigure WITH OVERRIDE

RE: [development-axapta] AX SP2 database error..

2004-03-24 Thread Preston A. Larimer
Anil,   Look on your SQL server at the Master data base views there should be approximately 20 views with the owner listed as INFORMATION_SCHEMA, in particular the one view named VIEWS is what Axapta is trying to use,  If the owner is DBO it would be my guess you at some time accidental

RE: [development-axapta] make the graph of a bucket OLAP in

2004-03-24 Thread Morten Aasheim
Its probably easier to connect to the cube directly from Excel. Be sure to have MS Query installed. Morten -Original Message- From: ncgco [mailto:[EMAIL PROTECTED] Sent: 24. mars 2004 17:16 To: [EMAIL PROTECTED] Subject: [development-axapta] make the graph of a bucket OLAP in It is p

[development-axapta] make the graph of a bucket OLAP in

2004-03-24 Thread ncgco
It is possible to directly make the graph of a bucket OLAP in AXAPTA ??? I dont want to export the dynamic table to EXCEL. Thanks in advance for your help. Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/  To unsubscribe f

[development-axapta] __ILLEGAL_VALUE__

2004-03-24 Thread Annette Theißen
Hi everybody, I am trying to create a report that uses a table with a custom defined enum. When trying to set a filter to this enum, Axapta doesn't accept values other than the first and the second enum-entry. Everything else is replaced by __ILLEGAL_VALUE__. I do not have this problem whe

Re: [development-axapta] Query Configuration

2004-03-24 Thread Steffan Engholm
Hi 1,2: Make a report, eventually choose print to file. See almost every report/RunbaseReport Class in Axapta, try class CustReport_Cust. If You need other than the given file formats (ASCII,RTF,HTML,PDF), e.g. FixedLength, You can see how it is done in class Intrast

RE: [development-axapta] How can I determine in which field of of form the cursor/user is in ?

2004-03-24 Thread Artem Tymofyeyev \(Intl Vendor\)
You can override method selectControl on the required form like this: public boolean selectControl(FormControl _control) {     boolean ret;   // print current control     if (_control)     print _control.toString();     ret = super(_control);     return ret; } Instead of printing

RE : RE : [development-axapta] Can't create document handling note on an invoiced sales order

2004-03-24 Thread Steeve Gilbert
Right on!  Thanks Charlie! Steeve... -Message d'origine- De : Charlie Kunes [mailto:[EMAIL PROTECTED] Envoyé : 24 mars 2004 09:54 À : [EMAIL PROTECTED] Objet : Re: RE : [development-axapta] Can't create document handling note on an invoiced sales order   Check your Acc

Re: RE : [development-axapta] Can't create document handling note on an invoiced sales order

2004-03-24 Thread Charlie Kunes
Check your Accounts receivable parameters/setup and look at updates tab page.  Check your safety level of invoiced orders to make sure locked is not selected. Steeve Gilbert <[EMAIL PROTECTED]> wrote: Hmmm...  I'm not talking about lookup, or maybe I don't get your answer.  I'll put it simple :

RE: [development-axapta] AX SP2 database error..

2004-03-24 Thread Anil Ozay
Thanks for all replies.. I checked user rights on SQL Server, owner of the views is the same owner of the tables. But i can’t find any solution.   I use a clear solution, i reinstall the Axapta. No matters now..   Regards,   Anil Ozay   From: ax [mailto:[EMAIL PROTECTED]

RE: [development-axapta] Can't create document handling note on an invoiced sales order

2004-03-24 Thread Lars Holm (LHO.DK)
The reason in this case why you can't create document notes on invoice journals is that the CustInvoiceJour datasource on the CustInvoiceJournal datasource has it's AllowEdit property set to False.   Med venlig hilsen / Best regards   Lars HolmSystem Developer   -Original Message--

RE : [development-axapta] Can't create document handling note on an invoiced sales order

2004-03-24 Thread Steeve Gilbert
I just figured it out.  In DocuView it checks if the currently selected record (in my case, a sales order) can be edited (DataSource allowEdit()) and that enable or disable the creation of new document.  Thanks for the tips guys. Still, there is a weird behaviour.  If I leave the DocuView wind

Re: [development-axapta] Can't create document handling note on a n invoiced sales order

2004-03-24 Thread ax
I don't think that standard functionality prevents creation of documents on invoiced record. If i'm wrong, then first thing to try is to recreate document setup in "document types" form and if no reaction, then then try to look in DocuView forms source code,maby there is some new method wich ha

[development-axapta] How can I determine in which field of of form the cursor/user is in ?

2004-03-24 Thread HEW (Mag. Helmut Wimmer)
Hi How can I get via X++ in which field of the form the cursor currently stands? I am trying formrun.selectedcontrol() and formrun.selectedcontrol().getselection() but this is *always* returning the first control of the form (mostly the "Tab" control). So, if the cursor is in the third field

Re: RE : [development-axapta] Can't create document handling note on an invoiced sales order

2004-03-24 Thread Hemant Kumthekar
Hi Steeve,   Did you check the Document Handling option in Basic >>Setup>>Document Handling The form provides on which Tables you can manage doucments / or attach documents. Since you are abl to attach documents on other options/forms , I think you have security clearance for document Handling

RE : [development-axapta] Can't create document handling note on an invoiced sales order

2004-03-24 Thread Steeve Gilbert
Hmmm...  I'm not talking about lookup, or maybe I don't get your answer.  I'll put it simple : Why on invoiced sales order I can't create document handling note (Table DocuRef) and on others I can. Steeve... -Message d'origine- De : ax [mailto:[EMAIL PROTECTED] Envoyé : 24 mars 2004

[development-axapta] Query Configuration

2004-03-24 Thread Danny Gaethofs
Dear all,   I am trying to generate an overview of the configuration keys and their parents in the system. I am targetting at displaying which of the keys are enable and which are not. I want to have the output exported to a fle or else printed.   I have 4 main questions:   1.Can someone explai

[development-axapta] Security AX 2.5 / SP2

2004-03-24 Thread pbercher
Hello, i have a problem with the group permissions in Ax. 2.5  / SP2. There is one tree node, that has a "locked lock" symbol and i (ADMIN) can't change usergroup permissions on tree node. The problem is, that users see this menu entry even though they don't have (and don't need) any acces

RE: [development-axapta] Mystical axcom.pdb.zip

2004-03-24 Thread Kim Truelsen \(MICROSOFT BUSINESS SOLUTIONS\)
Try the password pdb or PDB   Med venlig hilsen / Best regards Kim Truelsen Specialist Engineer Microsoft Business Solutions Axapta EMEA Global Technical Support Center Direct / mobile: +45 4489 0100 / +45 2949 9958 E-mail: [EMAIL PROTECTED] Online support at: www.microsoft.com/s

AW: [development-axapta] Mystical axcom.pdb.zip

2004-03-24 Thread Groß
Title: Nachricht   hi everybody,   see text below, which was extracted from a norwegian request issue in navision service system:   When customers experience strange problems with AOS/COM, they can use a special kernel debug version. Those versions will write more information to the event v

RE: [development-axapta] How to find the position of the active record in a grid/datasource

2004-03-24 Thread Morten Aasheim
I've been trying to figure this out before, but with no success. So if you find a solution, please respond to the forum. Morten -Original Message- From: Gert Neetesonne [mailto:[EMAIL PROTECTED] Sent: 19. mars 2004 07:23 To: [EMAIL PROTECTED] Subject: [development-axapta] How to find

[development-axapta] Mystical axcom.pdb.zip

2004-03-24 Thread Soldatov Anton
Hello development-axapta, Does anyone know what password protected archive file Istallation CD/Setup/Development/Axapta COM Connector/axcom.pdb.zip contains?   -- WBR toha  mailto:[EMAIL PROTECTED] Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit

RE: [development-axapta] Re: Bjørn Gudbrand, Windows service instead of batch jobs

2004-03-24 Thread Bjørn Gudbrand Idstad
Title: Message Hi!   Have you figured out a way of solving this problem?   What does the batch-job that you are referreing to actually do? Is it used to e.g synchronize data between an Axapta database and some other database? And how often does this job start?   Anyway, I guess you connect