[Axapta-Knowledge-Village] AOTSetPropertiesExt

2008-12-02 Thread Sonny Wibawa Adi
Hi All, Has anyone successfully change a table field's property (especially ExtendedDataType) using AOTSetPropertiesExt in AX 2009 SP0/SP1? Whenever I tried to run below job, it crashed at AOTSetPropertiesExt statement. I had experience to make it run once before, but maybe I was lucky.

Re: [Axapta-Knowledge-Village] Getting af number from a numbersequence

2006-01-04 Thread Sonny Wibawa Adi
Hi Irving,Use false as parameter value when calling newJournalNum function. It's because you use the code not in a form. If makeDecisionLater parameter is set to true and you did not commit it, then Axapta will never update the active number as used number. Thus, when Axapta clean up the number

Re: [Axapta-Knowledge-Village] Performance Issue

2005-12-19 Thread Sonny Wibawa Adi
Hi, Mohit Rajvanshy, If you want to perform a big size string operation that performance is an important role, then you should use TextBuffer class. Just call appendText method to concatenate the string.I tried the class and the result is very significant. The results are 68 seconds

RE: [Axapta-Knowledge-Village] Strange problem in scaling size when printing

2005-12-15 Thread Sonny Wibawa Adi
Hi,Sherin Francis, There are also fields in UserInfo table, reportBottomMargin, left, right, top which did not shown in the user option form, but they are really working. You may see them by modifying the user option form or use SQL Query Analyzer.The other

Re: [Axapta-Knowledge-Village] tricky query

2005-11-14 Thread Sonny Wibawa Adi
Hi, Askeryd Thomas,When writing the range criteria of the query, put the value using _expression_ in query range. For more detailed explanation about how to use _expression_ in query range, you may point to this article: http://www.axaptapedia.com/index.php/Expressions_in_query_ranges

RE: [Axapta-Knowledge-Village] SalesFormLetter.insertJournal()

2005-09-27 Thread Sonny Wibawa Adi
= ttscommit ; Transaction blocks may be nested Statements between ttsbegin and ttscommit may include one or more transaction blocks, like the example below. ttsbegin; // some statements === message truncated === Best regards, Sonny Wibawa Adi MBS Certified Professional - Axapta 3.0

Re: [Axapta-Knowledge-Village] In printer setup, how to make PDF the default file/message type?

2005-09-18 Thread Sonny Wibawa Adi
to the Hurricane Katrina relief effort. Best regards, Sonny Wibawa Adi MBS Certified Professional - Axapta 3.0 Technical MCSD.NET MCAD.NET __ Yahoo! for Good Donate to the Hurricane Katrina relief effort. http

Re: [Axapta-Knowledge-Village] In printer setup, how to make PDF the default file/message type?

2005-09-15 Thread Sonny Wibawa Adi
this is a simple change but I am just not competent enough to work it out. Thanks, Steve Best regards, Sonny Wibawa Adi MBS Certified Professional - Axapta 3.0 Technical MCSD.NET MCAD.NET __ Yahoo! Mail - PC Magazine Editors' Choice 2005

Re: [Axapta-Knowledge-Village] ctrl+ f or find crashes axapta

2005-08-26 Thread Sonny Wibawa Adi
. If not, then try to simplified the problem by deleting some controls, until it doesn't crash. Then check the deleted controls to find the cause of the crash. Good luck. Best regards, Sonny Wibawa Adi, MBSCP, MCSD.NET, MCAD.NET --- Ed Tarnovsky [EMAIL PROTECTED] wrote: I have a custom form. When

Re: [Axapta-Knowledge-Village] Localmacro help please

2005-07-11 Thread Sonny Wibawa Adi
thought. Regards, Sonny Wibawa Adi, MBSCP, MCAD.NET, MCSD.NET, MCP --- Raul Llorente Peña/OPENSOLUTIONS [EMAIL PROTECTED] wrote: Interesting, indeed!! Raúl Llorente Peña Análisis, Desarrollo e Implementación en Microsoft Bussiness Solutions-Axapta OPEN SOLUTIONS DouglasT

Re: [Axapta-Knowledge-Village] Localmacro help please

2005-07-08 Thread Sonny Wibawa Adi
] = packedClass; [#CurrentList1] = con1; [#CurrentList2] = con2; [#CurrentList3] = con3; return super(con); default : return false; } return false; } Good luck! Regards, Sonny Wibawa Adi, MBCSP, MCAD.NET, MCSD.NET, MCP

[Axapta-Knowledge-Village] EP Web- How to show personalize and blank login.

2005-06-16 Thread Sonny Wibawa Adi
that there were no login button and no editboxes (username and password). Thanks, Sonny Wibawa Adi __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com Sharing the knowledge on Axapta. Yahoo

Re: [Axapta-Knowledge-Village] Select empty date field

2005-01-03 Thread Sonny Wibawa Adi
Hi Nitesh, Use nullValue function or dateNull function. For example: select * from salesTable where salesTable.DeadLine == nullValue(salesTable.Deadline); select * from salesTable where salesTable.DeadLine == dateNull();or objRange.value(queryValue(dateNull())); Regards, Sonny Wibawa

Re: RE : [Axapta-Knowledge-Village] length of code per line and how to split it???

2004-12-22 Thread Sonny Wibawa Adi
You can try in C style, too: str strA; ; strA = "My string is \ very lnnnggg\n !\ ";print strA; //result is: My string is very lnnnggg ! Regards, Sonny Wibawa Adi Steeve Gilbert [EMAIL PROTECTED] wrote: That's a weird syntax: And if you do info(s) it will come ou

[Axapta-Knowledge-Village] Temporary Table cannot be set for security setup

2004-12-16 Thread Sonny Wibawa Adi
do to configure TmpInventBalance table security, then the user will be able to run the report ? Many thanks, Sonny Wibawa Adi Do you Yahoo!? Yahoo! Mail - Find what you need with new enhanced search. Learn more. Sharing the knowledge on Axapta. Yahoo! Groups Sponsor

RE: [Axapta-Knowledge-Village] Radio buttons

2004-12-07 Thread Sonny Wibawa Adi
assd');} 3. create a button and override clicked method. void clicked(){ FormRadioControl fc; ; super(); fc = element.design().controlName("MyRadio"); info (strFmt("%1",fc.selection()));} Hope this helps. Regards, Sonny Wibawa Adi Peng Qing Hua [EMAIL PROTECTED] wrote: Hi, As f

Re: [Axapta-Knowledge-Village] Numbering Sequence - Your opinions

2004-11-28 Thread Sonny Wibawa Adi
yahoogroups files and find the number sequence documentation. Regards, Sonny Wibawa Adi Subrahmanyam Mamidi [EMAIL PROTECTED] wrote: Hi, Axapta allows to use only one typeNumSeq to create purchase orders. This is really not a good idea to use the same sequence for different types of Purchase Types

Re: [Axapta-Knowledge-Village] Global table methods

2004-11-28 Thread Sonny Wibawa Adi
Table and MyTable2 Table: public boolean validateWrite(){ boolean ret = this.MyMap::validateWrite(); return ret;} Regards, Sonny Wibawa Adi Ahmed Ibrahim [EMAIL PROTECTED] wrote: Varden Morris, Could you please brief me about the actual use of MAP. I read the help documents reg. MAP but I want