RE: [development-axapta] Regarding Forms

2004-03-08 Thread abinsam
Title: Meddelelse hi, make the link type of the datasource passive and override the active method on the datasource. hope this helps ! aks -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: Monday, March 08, 2004 12:34 PMTo: [EMAIL

RE: [development-axapta] Data Dictionary

2004-03-08 Thread Bjørn Gudbrand Idstad
Title: Message Hi! I have a problem with the filter-functionality using the SmmBusRelTable-form (CRM). IfI open the form and then want to fiter the data,I press ctrl+F3 and open the filter-dialog. Now I add an additional datasource to the Business relations table, e.g. CustTable, add a

[development-axapta] enter dialogfield

2004-03-08 Thread byteway_so
Hi all, Is it possible to create a method in a self made dialog, so that when I enter a dialogfield I can set some initial value? for example: I have to implement the enter-method of a stringedit i have added to a dialog. But how? This is not bases on a new form, but on a dialog class

RE: [development-axapta] Regarding Forms

2004-03-08 Thread Anil Ozay
Title: Meddelelse Hi Mikael, I attach a sample code for you.. Two forms in it: SampleMainForm SampleRefForm Firstly run SampleMainForm, and click Run button. This opens SampleRefForm. When its clicked, it writes to MainForm.. The form is Object type. So, you can get

[development-axapta] Re: enter dialogfield

2004-03-08 Thread byteway_so
I love it how it works in Axapta! The way to get it to work is: dialog.allowUpdateOnSelectCtrl(true); and then: public void dialogSelectCtrl() { ; super(); if ((DialogFieldName1.value()==) { DialogFieldName1.value( DialogFieldName2.value() ); } } This is all to get another value

[development-axapta] Logoff OCI properly

2004-03-08 Thread Pieter Wijnen
Probably You might use ADO instead as ADO has a close method Pieter -Opprinnelig melding- Fra: Darren Khoo [mailto:[EMAIL PROTECTED] Sendt: 8. mars 2004 06:32 Til: [EMAIL PROTECTED] Emne: [development-axapta] Logoff OCI properly Hi guys, I m having an issue on using

SV: [development-axapta] using number sequences

2004-03-08 Thread Pieter Wijnen
In SQL Server Create the field with the IDENTITY attribute i.e INT ID IDENTITY(1,1) In Oracle Create a Sequence CREATE SEQUENCE SEQID; Add a trigger (before insert) Select the sequences NextVal into the ID Field CREATE OR REPLACE TRIGGER TRG_MYTABLE BEFORE INSERT ON MYTABLE

[development-axapta] Removing Proforma PackingSlip

2004-03-08 Thread Claudia Göries
Hi everybody, I have to store the informations of a proforma packingslip WITHOUT any bookings on invent or sales. But if I comment the whole code in class/SalesFormLetter_PackingSlip/ removeProforma(), the delivered quantity in SalesLine is not correct. Debugging shows, that at the end of a

[development-axapta] problem with DDE client

2004-03-08 Thread Tomasz Dudek
Hello, I'm working with Axapta 3.0 SP2. I'm trying to connect to external program in Axapta form through DDE client class with following: c = new DDEClient(appl,subject); and get data from server: c.execute('appl',1000); return c.request('appl',2000); but when I go

RE: [development-axapta] Logic in Axapta or MS SQL any comments

2004-03-08 Thread Shahzad.Butt
How would you loop over the result set. Looping within SQL or using arrays/linked list in Axapta? Shaz From: Pieter Wijnen [mailto:[EMAIL PROTECTED] Sent: 08 March 2004 11:30 To: [EMAIL PROTECTED] Subject: [development-axapta] Logic in Axapta or MS SQL any comments

RE: [development-axapta] Logic in Axapta or MS SQL any comments

2004-03-08 Thread Morten Aasheim
Axapta has a resultset-object which you can loop. Mvh, Morten From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: 8. mars 2004 17:31 To: [EMAIL PROTECTED] Subject: RE: [development-axapta] Logic in Axapta or MS SQL any comments How would you loop over the result