Re: [development-axapta] Add DialogField in report

2004-12-06 Thread Max Belugin
Hello anton_tjiptadi, ïîíåäåëüíèê, 6 äåêàáðÿ 2004 ã., you wrote: a I'm trying to add dialog field to my report, code is below : a public Object dialog() a { a DialogRunBase dialog = super(); a ; a dialog.addGroup(Range); a dialogTaxInvNo = dialog.addField(typeid a

RE: [development-axapta] Query Dimension

2004-12-06 Thread Michael Niemeyer
Hi, try this: this.query().dataSourceNo(2).addRange(fieldId2Ext(fieldnum(ProdBOM,Dimension),1)).value(QueryValue('SubCon')); Michael From: kamchung322 [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [development-axapta] Query Dimension Date: Mon, 06 Dec 2004

[development-axapta] Re: Add DialogField in report

2004-12-06 Thread anton_tjiptadi
Wow, thanks man, it works... :)) uhmm.. one more thing, can the column in the autolookup dress up a bit, 'cause the data seems to truncate for just a view character even if I only show two columns. ex : Vouc.. | Amount.. | CPP_4..| 4598.. | CPX_4..| 124567.. | O yeah.. the data show did

Re: [development-axapta] Re: Add DialogField in report

2004-12-06 Thread Max Belugin
Hello anton_tjiptadi, ïîíåäåëüíèê, 6 äåêàáðÿ 2004 ã., you wrote: a Wow, thanks man, it works... :)) a uhmm.. one more thing, can the column in the autolookup dress up a a bit, 'cause the data seems to truncate for just a view character a even if I only show two columns. a ex : a Vouc.. |

Re: [development-axapta] Executing a report from a self made form

2004-12-06 Thread Ahmed Ibrahim
if the class extend from runbasereport class then go for the following : Next steps 1- in your class you should overrdie lastValueElementName as the following public identifiername lastValueElementName() { return reportStr(CustAccountStatementExt); // CustAccountStatementExt is

[development-axapta] Re: Add DialogField in report

2004-12-06 Thread anton_tjiptadi
eh.. sorry Max, couldn't find DisplayWidth property, there's only DisplayHeight and DisplayLength in EDT property ? (nb I'm using Axapta ver3.0 SP3) ..and what is fields AFAIR ? :) ps : even when I double the stringsize of the EDT, still the lookup as it was (small) thanks, --- In

[development-axapta] Decimal, delimiter problems on AOS

2004-12-06 Thread Jens Strandberg
Hello there, We are having some problems displaying numbers correctly. Default, Axapta would display one million as 1,000,000.00 (let's call that default display) However, we need to switch , and ., so that 1.000.000,00 (let's call that custom display) The settings on the AOS server looks

Re: [development-axapta] Axapta 2.5 SP2, Win XP SP2 , Office XP / Outlook

2004-12-06 Thread Danny Gaethofs
Hi Pirmin, Apparently you have swithed on the outlook synchronization field on the tab outlook of the employees. it can also be that you did not have the configuration key outlook synchronization under CRM Series enabled before and you did not. regards, Danny --- pbercher [EMAIL

RE: [development-axapta] problem: COM - MSWORD

2004-12-06 Thread Dee S
Hey Mca To achieve the below mentioned points you will have to use COM objects the below mentioned points are acheive in the CRM modules w.r. to quotations thing For direct reference just peek on to the following classes 1) smmDocuActionCOM_Word_Quotation 2) DocuActionCOM_Word.

[development-axapta] table to XML

2004-12-06 Thread RHODPR
Hi all, I have to write some field of a table to an XML document. The elements in the XML document are not the actual field names, so right now I manually create the XML document : I create an element, and I put the data from the table between its starting and closing tag. Is it

[development-axapta] Re: Axapta 2.5 SP2, Win XP SP2 , Office XP / Outlook

2004-12-06 Thread pbercher
Hi Danny, thx 4 u answer, but.. - all users / empl have outlook synchronizatin off and i tried with the Admin user , so the CRM security shouldnt be the prob. Any other idea(s)? THX Pirmin --- In [EMAIL PROTECTED], Danny Gaethofs [EMAIL PROTECTED] wrote: Hi Pirmin, Apparently

[development-axapta] Re: Axapta 2.5 SP2, Win XP SP2 , Office XP / Outlook

2004-12-06 Thread pbercher
Hi Danny hmm .. Outlook synchronization is switched off 4 all empl. I tried with the admin user, so the CRM security shouldn't be the prob. Any other ideas? Thx Pirmin --- In [EMAIL PROTECTED], Danny Gaethofs [EMAIL PROTECTED] wrote: Hi Pirmin, Apparently you have swithed on

[development-axapta] A call to South African Axapta technical users

2004-12-06 Thread Matt Benic
To all South African Axapta technical users, We (the Axapta implementation and development team at UTi Sun couriers) feel that the technical users at all Axapta sites in South Africa could benefit from creating a local Axapta user community. We envision such a community learning from each

Re: [development-axapta] Re: Axapta 2.5 SP2, Win XP SP2 , Office XP / Outlook

2004-12-06 Thread Danny Gaethofs
I ran out of options, but for what it is worth. The classes that execute the synchronize are: smmInit.initFromServer called from class Application smmInit.initFromClinet called by initFromServer smmInit.initEMailEventHandler called from initFromClient. It is this method that checks for the

[development-axapta] empty select statement

2004-12-06 Thread RHODPR
Hi, how can I make sure that a select statement is not empty? For example if I make a statement select firstonly from inventTable where inventTable.itemID = It001; how can I know whether inventTable is containing any records? If the record It001 doesn't exist yet, I should create it.

RE : [development-axapta] empty select statement

2004-12-06 Thread Steeve Gilbert
If (inventTable) { //A record is selected } Steeve... -Message d'origine- De : RHODPR [mailto:[EMAIL PROTECTED] Envoyé : 6 décembre 2004 12:44 À : [EMAIL PROTECTED] Objet : [development-axapta] empty select statement Hi, how can I make sure that a select statement is not