[Axapta-Knowledge-Village] AX2009 RTM includes full Australia localisation?

2009-05-07 Thread James Flavell
Hi everyone, I am trying to understand whether AX2009 RTM includes the full Australia localisation so would apprecaite anyone who can advise. The AX2009 roadmap has GA wave 1 to 4 and Australia is GA 4 but I cannot figure out is GA 4 realted to RTM or SP1. I assume AX2009 was not made

[Axapta-Knowledge-Village] Fwd: Re: Navigation Pane issue!!

2009-05-07 Thread kardo_ax
In the AOT i found that the Main Menu folder has the property access to : no access. Once i changed to view it the modules appeared in the navigation pane. Now how come it happenned that by default it is set to no access? Any idea? --- In Axapta-Knowledge-Village@yahoogroups.com, r_ssh

[Axapta-Knowledge-Village] Fwd: Re: Navigation Pane issue!!

2009-05-07 Thread Ali Ýhsan Aðca
In default it must be No Access. There is no problem with that. Because no access means that , there is no permission requires for that object. Permission of main menu is managed with the nodes (eg General Ledger or Inventory Management menu references) Ali Ihsan Agca --- In

[Axapta-Knowledge-Village] BusinessLogic Execution on External Database

2009-05-07 Thread balasubramanian kumaran
Hi All,   Is there any way/trick to execute the business logic on the external database at 'run time' as we do DDL and DML operations by connecting using LoginProperties?  Please avoid reply like/such as violating architecture, impossible etc.    Thanks in advance, Balasubramanian Kumaran.     

[Axapta-Knowledge-Village] Ceiling function in X++

2009-05-07 Thread Tom Scott
Hi, I was wondering if there is a ceiling (i.e. round up) function in X++. I have tried playing with the round() function but I haven't managed to make it behave as I want it. I want to round up to the nearest integer, i.e.: a = 5.2; b = 5.5; c = 5.0; ceiling(a) = 6 ceiling(b) = 6 ceiling(c) =

[Axapta-Knowledge-Village] Scrap

2009-05-07 Thread narendra singh
Hi Friends, Can any one help me where scrap % age or amount can be defined.Suppose I want to make a finish product say FG and for making FG I need raw material RM1 RM2.During FG item manufacturing some amount(%age or amount) of scrap is generated also from RM1 RM2 some scrap is generated.

[Axapta-Knowledge-Village] TTSBEGIN/TTSCOMMIT ERROR

2009-05-07 Thread anton_tjiptadi
Hi all, Can someone help me to fix this error? It happened when I open a dialog after some routine in my code. An unbalanced X++ TTSBEGIN/TTSCOMMIT pair has been detected. a) Cause of this includes too many/few TTSBEGIN or TTSCOMMIT. b) Return calls within TTSBEGIN/TTSCOMMIT. c) User

[Axapta-Knowledge-Village] Re: Ceiling function in X++

2009-05-07 Thread Ali Ýhsan Aðca
Hi Tom, You can use below expression: void ceil(real a) { return (trunc(a) == a ? a : trunc(a)+1); } Ali Ihsan Agca --- In Axapta-Knowledge-Village@yahoogroups.com, Tom Scott tom.sc...@... wrote: Hi, I was wondering if there is a ceiling (i.e. round up) function in X++. I have tried

[Axapta-Knowledge-Village] Re: Ceiling function in X++

2009-05-07 Thread Ali Ýhsan Aðca
And yes, as I know there is no function in AX which does what you want. --- In Axapta-Knowledge-Village@yahoogroups.com, Tom Scott tom.sc...@... wrote: Hi, I was wondering if there is a ceiling (i.e. round up) function in X++. I have tried playing with the round() function but I haven't

[Axapta-Knowledge-Village] Re: TTSBEGIN/TTSCOMMIT ERROR

2009-05-07 Thread Ali Ýhsan Aðca
Hi Anton, You can not show dialog in tts routine as message says in (c). You have to commit transaction first and open dialog, after getting value from user, then you can open a transaction again. --- In Axapta-Knowledge-Village@yahoogroups.com, anton_tjiptadi anton_tjipt...@... wrote: Hi

[Axapta-Knowledge-Village] Re: TTSBEGIN/TTSCOMMIT ERROR

2009-05-07 Thread anton_tjiptadi
Hi, thanks for the reply. one more question.. is there any function to know if we haven't commit the transaction yet? so if I know there is open trasaction, I will add ttscomit first in order to show dialog. thanks in advance, Anton --- In Axapta-Knowledge-Village@yahoogroups.com, Ali Ýhsan

[Axapta-Knowledge-Village] Re: TTSBEGIN/TTSCOMMIT ERROR

2009-05-07 Thread r_ssh
Hi Anton, TTS level '1' usually leaves your Ax session in an unusable state that you can't close properly. Solution: Open the AOT and run this job: static void resetTTS(Args _args) { while (appl.ttsLevel() 0) ttsAbort; } It simply rolls back any pending transactions until

Re: [Axapta-Knowledge-Village] Ceiling function in X++

2009-05-07 Thread Agus Riyadi
Hi, Use Global::roundup() or just roundup() Regards, Agus On Thu, May 7, 2009 at 5:43 PM, Tom Scott tom.sc...@britishceramictile.comwrote: Hi, I was wondering if there is a ceiling (i.e. round up) function in X++. I have tried playing with the round() function but I haven't managed to