[development-axapta] Business Views

2006-04-24 Thread Mike Savage
Does anyone know what the purpose and use of the 'Business views' functionality is in the Admin module? According to the help text '_dictTable.name() != 'In the Business Views form you create new business views allowing data from the database to be wrapped and translated into human readable

[development-axapta] Accessing of remotely registered DLL from Axapta

2006-04-24 Thread Amar Senapati
Hi All, I am using the COM class to access remotely registered DLL. But it throws me an error saying " COM object of class 'My DLL'could not be created.Ensure that the object has been properly registered on Comuter MYCOMPUTER" MYCOMPUTER is my local computer name and i am running the axapta

Re: [development-axapta] displaying message when the user logged in

2006-04-24 Thread Max Belugin
Write info('test') at infolog::startup see example here: http://axcoder.blogspot.com/2006/03/how-to-make-sidax-autostart.html 21.04.06 в 14:14 в своём письме писал(а): > how do i display a message when the user logged in axapta? > -- Yahoo! Groups Links <*> To visit your group on

RE : [development-axapta] Create New fields during runtime in dialog

2006-04-24 Thread Steeve Gilbert
Hi vijay, Creating fields at run time is not the best thing ever.  Still, if this is what you need you can do this :     AOTTableFieldList fields;     TreeNode myTable;     TreeNode field;     myTable = TreeNode::findNode("\\Data Dictionary\\Tables\\TheTable");     fields = myTable.AOTfindChi

[development-axapta] Grouping in Axapta Reports

2006-04-24 Thread Selva Rajesh
Hi,      Please help me how to grouping a records and how to use agregate funtions lke SUM, Count in that group in the Axapta Reports module.      waiting for your replies...      Thank You,      -Rajesh   Chennai.         - Jiyo cricket on

Re: [development-axapta] displaying message when the user logged in

2006-04-24 Thread pradeep nambiar
I guess we have to capture the LogOn Dialog OK Button .Rite?.. Guyz...Any Idea abt how to do this ?? Pradeep On 4/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi, > > how do i display a message when the user logged in axapta? > > ex: > - > i want to display reminder message bas

[development-axapta] Production Route's Feedback Tab Issue

2006-04-24 Thread cbharda
Howdy all, I have searched through the archives and have not found anything helpful so wondering if anyone could shed some light on a small issue we are having. Open up the production orders form and then click on the route button, and then click on the feedback tab. On this tab is a grid wit

Re: [development-axapta] Enterprise Portal

2006-04-24 Thread Paulius
put the code on the corresponding table: edit Str 5 setValue_1( boolean set, Str 5 _value) {     ;     if (set)    switch( _value)    {    case "A" : this.secondField = "A1"; break;    case "B" : this.secondField = "B1"; break;    default : break;    }     el

[development-axapta] ENUM Element

2006-04-24 Thread Mike Savage
Hi. How do I determine which element of an enum an enum element is in code?! I.e. LedgerAccountType::AccountRevenue = ?? Enum2Value seems to return the string not the element id!! Cheers Mike Savage Sense Enterprise Solutions Ltd [Non-text portions o

Re: [development-axapta] Grouping in Axapta Reports

2006-04-24 Thread Yavuz YILDIZ
Open reports datasources and right click on the table, select Properties and change the order mode as Group By. or write a sql query like this "select sum(DebitMST) from LedgerBalances order by transDate desc     where LedgerBalances.TransDate < PeriodStartDate).DebitMS

Re: RE : [development-axapta] Create New fields during runtime in dialog

2006-04-24 Thread Max Belugin
21.04.06 в 22:43 Steeve Gilbert в своём письме писал(а): > Creating fields at run time is not the best thing ever. Still, if this > is what you need you can do this : There is an example http://axutilities.blogspot.com/ -- http://axcoder.blogspot.com Yahoo! Groups Links <*> To visit y

Re: [development-axapta] Accessing of remotely registered DLL from Axapta

2006-04-24 Thread Max Belugin
21.04.06 в 17:07 Amar Senapati в своём письме писал(а): > Can anyone point me , what i am missing to access the > remotely registered DLL. Try to move your code to server: add a class and write: server startic void test() { COM obj=new COM('YourProgID'); ; } Yahoo! Groups Links <*>

Re: [development-axapta] ENUM Element

2006-04-24 Thread Yavuz YILDIZ
Login to Axapta as Administrator and open AOT. Select Data Dictionary\Base Enums. You can see that enum values. --- Mike Savage <[EMAIL PROTECTED]> wrote: > Hi. > >  > > How do I determine which element of an enum an enum element is in code?! > >  > > I.e. LedgerAccountType::AccountReve

[development-axapta] startuppost() not working in client

2006-04-24 Thread hemamalinis
Hi, when i write code in application startuppost() method, it is working only in server. when i logged in client, it is not working. why? what to do, if it works in client machine also? pls. provide the solution. thank u. regs, Hema. S YAHOO! GROUPS LINKS  Visit your

RE: [development-axapta] ENUM Element

2006-04-24 Thread Mike Savage
Thanks Yavuz I was thinking more of how do I do it from within a class, for example. In the class I would have LedgerAccountType::AccountRevenue, but how, from there, do I determine the element id via a function? Cheers Mike Savage Sense Enterprise Solutions Ltd -Original Message-