[development-axapta] Working with measures OLAP

2006-02-01 Thread ivarayag
Hello to all I need to create several measures of different tables in Axapta, but when attempt to create a measurement of one second table, single shows the fields to me of the first table and not of the second or third table related to first.  Somebody knows as this can be done or if i

[development-axapta] Olap - Axapta 3.0

2006-02-01 Thread cohidalgo
Hi, When I click the pivot table button or item menu in some form, I get an error stating that no cubes are available. So my cubes are procesed and they have the respective axapta module in their definitions. Please help me!! Regards. SPONSORED LINKS

[development-axapta] HELP HELP HELP Query : AddRange problem in ANDing, not working.

2006-02-01 Thread Padmaja Iyingar
Hi,      Here is the lookup I using.      public void lookup() {   Query   query  = new Query();     QueryBuildDataSource    queryBuildDataSource;     QueryBuildRange queryBuildRange  ;   SysTableLookup  sysTableLookup = SysTableLookup::newPara

[development-axapta] URGENT HELP VERY URGENT: HOW TO GET THE VALUES IN A LOOKP

2006-02-01 Thread Padmaja Iyingar
Hi,      II made a form.    have a lookup on a formcontrol of this form. When I click the lookup, I get some 30 ProjIDs. from the dropdownlist  how can I capture the each projID as I scroll the mouse from the lookup      My idea is, I need to create a run time query based on the value in

[development-axapta] print marginless

2006-02-01 Thread byteway_so
Hi, What settings do I need to set to print a BMP marginless in a report? These are the settings I already set to 0 char: TopMargin    = 0.00 char BottomMargin = 0.00 char LeftMargin   = 0.00 char RightMargin  = 0.00 char Above settings are set in the following report properties: - Design -

AW: [development-axapta] Re: Determine if a module is included

2006-02-01 Thread jesper.joergensen
U can use the configurationkey to determin is a function is active, if you want to query on the licensecode try this. static void Job2(Args _args) {    Dictionary  dictionary = new Dictionary();     SysConfig   sysConfigTemp;     select sysConfigTemp     where sysConfigTemp.id =

Re: [development-axapta] Axapta Code Protection - Source Scrambling

2006-02-01 Thread Arijit
Hi Henrik,   Can you please give some more information on how to scramble axapta codes? On 2/1/06, Henrik Almind <[EMAIL PROTECTED]> wrote: > > > If you have created an Axapta module and are concerned > that others will use it for inspiration rather than > purchasing the module from you, you

[development-axapta] Re: Determine if a module is included

2006-02-01 Thread kwc_thydev
Hi, Try this function. isConfigurationKeyEnabled(configurationKeyNum(ProjAdvanced)) Best regards, thy:development Karsten Wollesen Clausen System Developer --- In development-axapta@yahoogroups.com, "Andre Klopper" <[EMAIL PROTECTED]> wrote: > > > Hi > > I want do check by code if Pro

Re: [development-axapta] Creating a class from class name

2006-02-01 Thread LIVIU STOICA
Hi,      Try this code, I hope to help you:      static void jobclass(Args _args) { Dictionary dict = new Dictionary(); Int idclass; ; idclass = dict.className2Id(classstr(MyClass)); ClassFactory.createClass(idclass); }            class Myclass {   }     void new() { ; info('new'); }   

[development-axapta] Determine if a module is included

2006-02-01 Thread Andre Klopper
Hi I want do check by code if Projects II has been installed (licensed). How can I determine this? Regards, Andre Klopper SPONSORED LINKS Computer part Programming languages

SV: [development-axapta] Creating a class from class name

2006-02-01 Thread Dahlsgaard Jan
classname2id should do the trick Fra: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] På vegne af massimoiuri Sendt: 1. februar 2006 11:01 Til: development-axapta@yahoogroups.com Emne: [development-axapta] Creating a class from class name Can I

Re: [development-axapta] Creating a class from class name

2006-02-01 Thread LIVIU STOICA
Hi,      Try this code, I hope to help you:      static void jobclass(Args _args) { Dictionary dict = new Dictionary(); Int idclass; ; idclass = dict.className2Id(classstr(MyClass)); ClassFactory.createClass(idclass);   }            class Myclass {   }     void new() { ; info('new'); }  

AW: [development-axapta] Creating a class from class name

2006-02-01 Thread jesper.joergensen
Hi Try this XUtilIdElements::find(UtilElementType::Class, 'ABCBase').id; Mit freundlichen Grüßen / Best regards / Med venlig hilsen Jesper Jørgensen / Abt. NMT-XD Entwicklung Axapta arvato systems | Technologies GmbH An der Autobahn 18 33311 Gütersloh [EMAIL PROTECTED] http://

[development-axapta] Creating a class from class name

2006-02-01 Thread massimoiuri
Can I create an instance of a class giving only the class name (a string parameter) ? I am looking for a method similar to ClassFactory.createClass(classnum(MyClass)); but I want to pass the string containing the class name. Is there any method to get the class number giving only the class na

Re: [development-axapta] Passing parameters using IAxaptaParameterList

2006-02-01 Thread LarsBMikkelsen
The paramter collection in the paramterlist will automatically be parsed into the parameters you have specified in your x++ method header. -- Original message -- From: "diliprnair27" <[EMAIL PROTECTED]> Greetings! I have a web service calling the Axapta objects via

RE : [development-axapta] add a field in the invoice report generated when posting invoice

2006-02-01 Thread Steeve Gilbert
Hi Malters, Take a look in report SalesInvoice. Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de maltmega Envoyé : 31 janvier 2006 11:50 À : development-axapta@yahoogroups.com Objet : [development-axapta] add a field in t

[development-axapta] Axapta Code Protection - Source Scrambling

2006-02-01 Thread Henrik Almind
If you have created an Axapta module and are concerned that others will use it for inspiration rather than purchasing the module from you, you may be interested in having your Axapta Source Code protected. The protection is done by scrambling the code so no one can read it, while the compiled

[development-axapta] right click lookup

2006-02-01 Thread V G
Hello There is a customized form and I right click on any of the field on the grid. It shows the find option and filter and some more option.When I click on th find option it wouldn't open the find dialog box. I assume this is because of the property of datasource - autoQuery set to *No*. Can