[development-axapta] Re: Date problem in direct sql

2005-02-27 Thread Claudia Göries







Hi,
this works:

static void Job4711(Args _args)
{
 Connection Con = new Connection();
 Statement Stmt = Con.createStatement();
 ResultSet R;
 str a,b,sql;
 transdate tarih1,tarih2;
 ;
 tarih1 = 01\06\2004;
 tarih2 = 03\06\2004;
 // SQL needs YYDDMM !
 a= date2str(tarih1,312,2,3,2,3,4) ;
 b= date2str(tarih2,312,2,3,2,3,4);
 sql = SELECT TRANSDATE, * FROM LEDGERJOURNALTRANS WHERE 
TRANSDATE  \' + a +  00:00:00\'
 +  AND TRANSDATE  \' + b +  00:00:00\';
 print sql;
 pause;
 R = Stmt.executeQuery(sql);
 while (R.next())
 {
 print R.getString(1);
 pause;
 }
}



--- In development-axapta@yahoogroups.com, onnobid [EMAIL PROTECTED] 
wrote:
 
 
 Hi,
 
  tarih2 = STR2DATE(31.12.2004,123);
  tarih1 = STR2DATE(01.01.2004,123);
  R = Stmt.executeQuery('SELECT * FROM LEDGERJOURNALTRANS WHERE 
  TRANSDATE = '+tarih2+'');
 
 you can't concatenate date variables to a string. Use string
 representation of date instead.
 
 Regards,
 Onno















Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] LabelTabLeader

2005-02-27 Thread Ernst Meijer


Hello there
 
Could anybody tell me if and how I can change ( by code perhaps ) the 
LabelTabLeader property of a reportfield , so it does not
use ‘append….:’ , but a newly created ‘append:’
( spaces instead of . )
 
Thx
 
Ernst Meijer

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 266.4.0 - Release Date: 22-2-2005
 


[Non-text portions of this message have been removed]






 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 






RE: [development-axapta] Dynamic form changes possible?

2005-02-27 Thread James Flavell






HI Barry,
 
Thanks for your help, I was under the impression the syssetup class was not
called a record level so was looking at other places like Docu and Common
(and am still poking around), thanks for the confirmation.
 
I think maybe the group posting does not allow attached docs so could you
send me the doc directly?
 
Thanks
James

-Original Message-
From: Bayliss, Barry [mailto:[EMAIL PROTECTED] 
Sent: 25 February 2005 17:00
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] Dynamic form changes possible?




Hello James,


>From your original description of what you are trying to do, the
sysSetupFormRun class is unable to do what you want.

As you want the effect to be record based, you need to use the active()
method on the datasource. Alternatively, you can use a lower level
call.

By modifying Docu\reSearch, you can partially achieve what you are
trying to do. I have attached a word document given screen shots
showing the effect in action (using the below code modification to the
Docu class).


This is just a starting point for you. Let me know if you get stuck.


Barry.


void reSearch(FormRun formRun)
{
 Common common;
 FormDataSource formDataSource;
 boolean notePressed;
 FormDesign formDesign;
 int t;

 void disableNoteButton()
 {
 infolog.formNoteButton(false, false);
 }
;

 Standard code deleted


 // If datasource has no name = not valid
 formDataSource = common.dataSource();

 if (common.RecId == 12358860) {
 if (FormRun.design().controlName(btHide)) {
 FormRun.design().controlName(btHide).visible(false);
 }
 } else {
 if (FormRun.design().controlName(btHide)) {
 FormRun.design().controlName(btHide).visible(True);
 }
 }

 standard code deleted

}


-Original Message-
From: James Flavell [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 19 February 2005 12:51 PM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] Dynamic form changes possible?



Thanks Carsten,

I have been debuggin alot in all these classes but I meant I could not
find
the line(s) of code that change the form layout (like what I managed to
find
for the security) even in the SysSaveSetup class.

I will go back and look some more.

Thanks for the job example I think that will make debugging a little
easier

Thanks a lot
James

-Original Message-
From: Carsten F. Frandsen [mailto:[EMAIL PROTECTED] 
Sent: 16 February 2005 18:45
To: development-axapta@yahoogroups.com
Subject: SV: [development-axapta] Dynamic form changes possible?



There is another class SysSaveSetup which are used by the
SysSetupFormRun
class - SysSaveSetup class are used for saving and retrieving a user
defined
design... 

Also SysSetupFormRun class are used by any form in Axapta - AFAIR it is
the
SysSetupFormRun class which actually executes the form !

Try entering the follwing job with a break-point - the use the debugger
to
investigate how the form is activated.

static void job1(Args _args)
{
 Args args = new Args(formStr(InventItemGroup));
 FormRun formRun;
 ;

 formRun = ClassFactory::formRunClassOnClient(args); //
break-point
on this line.

 formRun.init();
 formRun.run();
 formRun.wait();
}

HTH


Best regards

Carsten F. Frandsen



Fra: James Flavell [mailto:[EMAIL PROTECTED]
Sendt: ti 15-02-2005 14:42
Til: development-axapta@yahoogroups.com
Emne: RE: [development-axapta] Dynamic form changes possible?





Thanks Carsten,

I have been trying to make some sense of the SysSetupFrom classes but
still
dont seem to be able to find where the code for hidding a control the
user
has hidden previously is (i.e. where is it that the users setup gets
applied
to the form), any chance you could give me somewhere where I can see it
in
action?

I spotted in SysSecurityFormSetup.loadSecurity some examples of the
security
settings being applied, such as:

 formControl =
SysSecurityFormSetup::getFormControl(_formRun,
mapIterator.key());
 formControl.userSecurityLevel(accessType + 1);

which gives me an idea of how I can control the form using access right
levels but I think I want to know how to control the form via direct
enable/disable (partly I am not sure if I use access rights whether I
need
to do some processor intensive 'redraw' of the form???  the access
to
the controls will change with each record the user selects or modifies
so I
need I think I need to be careful not to make a hog of a solution ...)

Thanks
James







-Original Message-
From: Carsten F. Frandsen [mailto:[EMAIL PROTECTED]
Sent: 15 February 2005 18:09
To: development-axapta@yahoogroups.com
Subject: SV: [development-axapta] Dynamic form changes possible?



Take a look at the class SysSetupFormRun

This class is used to e.g. retrieve a user defined design for a form...

Regards

Carsten F. Frandsen




Fra: James Flavell [mailto:[EMAIL PROTECTED]
Sendt: ti 15-02-2005 01:15
Til: development-axapta@yahoogroups.com
Emne: RE: [development-axapta] 

[development-axapta] Product builder, how to execute user entered X++

2005-02-27 Thread James Flavell






Hi I am not a true X++ programmer and need some guideance to see how user
entered X++ logic can be executed (like what can be done in the product
builder).
 
Is it need into some kind of AOT object or compiled and run on the fly? Is
there performance issue to worry abut?
 
Thanks
James
 

-Original Message-
From: Bayliss, Barry [mailto:[EMAIL PROTECTED] 
Sent: 25 February 2005 17:00
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] Dynamic form changes possible?




Hello James,


>From your original description of what you are trying to do, the
sysSetupFormRun class is unable to do what you want.

As you want the effect to be record based, you need to use the active()
method on the datasource. Alternatively, you can use a lower level
call.

By modifying Docu\reSearch, you can partially achieve what you are
trying to do. I have attached a word document given screen shots
showing the effect in action (using the below code modification to the
Docu class).


This is just a starting point for you. Let me know if you get stuck.


Barry.


void reSearch(FormRun formRun)
{
 Common common;
 FormDataSource formDataSource;
 boolean notePressed;
 FormDesign formDesign;
 int t;

 void disableNoteButton()
 {
 infolog.formNoteButton(false, false);
 }
;

 Standard code deleted


 // If datasource has no name = not valid
 formDataSource = common.dataSource();

 if (common.RecId == 12358860) {
 if (FormRun.design().controlName(btHide)) {
 FormRun.design().controlName(btHide).visible(false);
 }
 } else {
 if (FormRun.design().controlName(btHide)) {
 FormRun.design().controlName(btHide).visible(True);
 }
 }

 standard code deleted

}


-Original Message-
From: James Flavell [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 19 February 2005 12:51 PM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] Dynamic form changes possible?



Thanks Carsten,

I have been debuggin alot in all these classes but I meant I could not
find
the line(s) of code that change the form layout (like what I managed to
find
for the security) even in the SysSaveSetup class.

I will go back and look some more.

Thanks for the job example I think that will make debugging a little
easier

Thanks a lot
James

-Original Message-
From: Carsten F. Frandsen [mailto:[EMAIL PROTECTED] 
Sent: 16 February 2005 18:45
To: development-axapta@yahoogroups.com
Subject: SV: [development-axapta] Dynamic form changes possible?



There is another class SysSaveSetup which are used by the
SysSetupFormRun
class - SysSaveSetup class are used for saving and retrieving a user
defined
design... 

Also SysSetupFormRun class are used by any form in Axapta - AFAIR it is
the
SysSetupFormRun class which actually executes the form !

Try entering the follwing job with a break-point - the use the debugger
to
investigate how the form is activated.

static void job1(Args _args)
{
 Args args = new Args(formStr(InventItemGroup));
 FormRun formRun;
 ;

 formRun = ClassFactory::formRunClassOnClient(args); //
break-point
on this line.

 formRun.init();
 formRun.run();
 formRun.wait();
}

HTH


Best regards

Carsten F. Frandsen



Fra: James Flavell [mailto:[EMAIL PROTECTED]
Sendt: ti 15-02-2005 14:42
Til: development-axapta@yahoogroups.com
Emne: RE: [development-axapta] Dynamic form changes possible?





Thanks Carsten,

I have been trying to make some sense of the SysSetupFrom classes but
still
dont seem to be able to find where the code for hidding a control the
user
has hidden previously is (i.e. where is it that the users setup gets
applied
to the form), any chance you could give me somewhere where I can see it
in
action?

I spotted in SysSecurityFormSetup.loadSecurity some examples of the
security
settings being applied, such as:

 formControl =
SysSecurityFormSetup::getFormControl(_formRun,
mapIterator.key());
 formControl.userSecurityLevel(accessType + 1);

which gives me an idea of how I can control the form using access right
levels but I think I want to know how to control the form via direct
enable/disable (partly I am not sure if I use access rights whether I
need
to do some processor intensive 'redraw' of the form???  the access
to
the controls will change with each record the user selects or modifies
so I
need I think I need to be careful not to make a hog of a solution ...)

Thanks
James







-Original Message-
From: Carsten F. Frandsen [mailto:[EMAIL PROTECTED]
Sent: 15 February 2005 18:09
To: development-axapta@yahoogroups.com
Subject: SV: [development-axapta] Dynamic form changes possible?



Take a look at the class SysSetupFormRun

This class is used to e.g. retrieve a user defined design for a form...

Regards

Carsten F. Frandsen




Fra: James Flavell [mailto:[EMAIL PROTECTED]
Sendt: ti 15-02-2005 01:15
Til: development-axapta@yahoogroups.com
Emne: RE: [development-axapta] Dynamic form changes possible?





Thanks Malcom 

[development-axapta] Where does recor dlevel security get checked?

2005-02-27 Thread James Flavell






Anyone can tell me where in the AOT I can see the record level security
settings being checked and applied? I guess this might be a system class
and off limits to me?
 
Thanks
James
 

-Original Message-
From: Bayliss, Barry [mailto:[EMAIL PROTECTED] 
Sent: 25 February 2005 17:00
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] Dynamic form changes possible?




Hello James,


>From your original description of what you are trying to do, the
sysSetupFormRun class is unable to do what you want.

As you want the effect to be record based, you need to use the active()
method on the datasource. Alternatively, you can use a lower level
call.

By modifying Docu\reSearch, you can partially achieve what you are
trying to do. I have attached a word document given screen shots
showing the effect in action (using the below code modification to the
Docu class).


This is just a starting point for you. Let me know if you get stuck.


Barry.


void reSearch(FormRun formRun)
{
 Common common;
 FormDataSource formDataSource;
 boolean notePressed;
 FormDesign formDesign;
 int t;

 void disableNoteButton()
 {
 infolog.formNoteButton(false, false);
 }
;

 Standard code deleted


 // If datasource has no name = not valid
 formDataSource = common.dataSource();

 if (common.RecId == 12358860) {
 if (FormRun.design().controlName(btHide)) {
 FormRun.design().controlName(btHide).visible(false);
 }
 } else {
 if (FormRun.design().controlName(btHide)) {
 FormRun.design().controlName(btHide).visible(True);
 }
 }

 standard code deleted

}


-Original Message-
From: James Flavell [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 19 February 2005 12:51 PM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] Dynamic form changes possible?



Thanks Carsten,

I have been debuggin alot in all these classes but I meant I could not
find
the line(s) of code that change the form layout (like what I managed to
find
for the security) even in the SysSaveSetup class.

I will go back and look some more.

Thanks for the job example I think that will make debugging a little
easier

Thanks a lot
James

-Original Message-
From: Carsten F. Frandsen [mailto:[EMAIL PROTECTED] 
Sent: 16 February 2005 18:45
To: development-axapta@yahoogroups.com
Subject: SV: [development-axapta] Dynamic form changes possible?



There is another class SysSaveSetup which are used by the
SysSetupFormRun
class - SysSaveSetup class are used for saving and retrieving a user
defined
design... 

Also SysSetupFormRun class are used by any form in Axapta - AFAIR it is
the
SysSetupFormRun class which actually executes the form !

Try entering the follwing job with a break-point - the use the debugger
to
investigate how the form is activated.

static void job1(Args _args)
{
 Args args = new Args(formStr(InventItemGroup));
 FormRun formRun;
 ;

 formRun = ClassFactory::formRunClassOnClient(args); //
break-point
on this line.

 formRun.init();
 formRun.run();
 formRun.wait();
}

HTH


Best regards

Carsten F. Frandsen



Fra: James Flavell [mailto:[EMAIL PROTECTED]
Sendt: ti 15-02-2005 14:42
Til: development-axapta@yahoogroups.com
Emne: RE: [development-axapta] Dynamic form changes possible?





Thanks Carsten,

I have been trying to make some sense of the SysSetupFrom classes but
still
dont seem to be able to find where the code for hidding a control the
user
has hidden previously is (i.e. where is it that the users setup gets
applied
to the form), any chance you could give me somewhere where I can see it
in
action?

I spotted in SysSecurityFormSetup.loadSecurity some examples of the
security
settings being applied, such as:

 formControl =
SysSecurityFormSetup::getFormControl(_formRun,
mapIterator.key());
 formControl.userSecurityLevel(accessType + 1);

which gives me an idea of how I can control the form using access right
levels but I think I want to know how to control the form via direct
enable/disable (partly I am not sure if I use access rights whether I
need
to do some processor intensive 'redraw' of the form???  the access
to
the controls will change with each record the user selects or modifies
so I
need I think I need to be careful not to make a hog of a solution ...)

Thanks
James







-Original Message-
From: Carsten F. Frandsen [mailto:[EMAIL PROTECTED]
Sent: 15 February 2005 18:09
To: development-axapta@yahoogroups.com
Subject: SV: [development-axapta] Dynamic form changes possible?



Take a look at the class SysSetupFormRun

This class is used to e.g. retrieve a user defined design for a form...

Regards

Carsten F. Frandsen




Fra: James Flavell [mailto:[EMAIL PROTECTED]
Sendt: ti 15-02-2005 01:15
Til: development-axapta@yahoogroups.com
Emne: RE: [development-axapta] Dynamic form changes possible?





Thanks Malcom that helps to give me some other areas to investigate and
clear up the concern on performance but is there 

Re: [development-axapta] failed logins

2005-02-27 Thread Michael Troelsen






Hi,

There is no way of doing this. You should put in a request to MBS 
https://mbs.microsoft.com/suggestion/suggestionlookup.aspx

Regards
Michael
- Original Message - 
From: Matt Benic [EMAIL PROTECTED]
To: Axapta Dev development-axapta@yahoogroups.com
Sent: Friday, February 25, 2005 11:55 AM
Subject: [development-axapta] failed logins


 
 
 Hi all,
 I am trying to determine when unsuccessful login attempts occurred for a
 particular user. Is there any way to retrieve this data? The user log
 enquiry allows me to see successful logins and changed passwords, but not
 failed logins.
 
 Regards,
 
 Matt Benic
 Axapta and .Net Developer
 UTi Sun Couriers Division
 
 The universal aptitude for ineptitude
 makes any human accomplishment an incredible miracle.
 - Col. John P. Stapp
 www.smallfrymobile.com
 
 
 
 
 
 
 
 Yahoo! Groups Links
 
 
 
 
 
 
 














Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Getting a number from a number sequence

2005-02-27 Thread astro_viking







Hello,
We are running Axapta 2.5. I am creating a new module and would like 
one of the filds in a form to be filled out with a number from a 
number sequence. I have created the sequence, an EDT, and a reference 
between the sequence and the EDT. 

Now my question is what code should I use to get a number from the 
number sequence and insert this number in the field holding the EDT?















Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta]

2005-02-27 Thread Rocco Giumelli






Hi All.
 
I was Switching servers from a Play to a live and in the live environment 
 
When I access the webpage link I get this after logon
AxaptaCOMConnector.Axapta.1 error '80042041' 

Error executing code: empty class object not initialised. Stack trace:
\Classes\unknown\itemTxt \Classes\WebSession\ParseArgs - line 109 Error
executing code: empty class object not initialised. Stack trace:
\Classes\unknown\itemTxt \Classes\WebSession\ParseArgs - line 109 

/enterpriseportal/i_axapta.asp, line 4 

 

I have tried to revert all things associated back to sys layer, But no
Good,Any Help please !

Rocco



[Non-text portions of this message have been removed]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] Product builder, how to execute user entered X++

2005-02-27 Thread Hemant Kumthekar






Hi James,
 
There are lot of things you can do in the Product Builder X++ code , like you can check for the responses entered by user and calculate / manipulate data based on the input, if you see the nodes you can attache the If / else, Loop (for While) or X++ code. You can have array elements too. Have a look at the sample Advance Lamp Model in Demo Data, I hope you find your answers there.
 
Everything thing gets embedded in the Model when you compile, and the forms are loaded, you can control the display of elements on the form by Visible / invisible properties, the model once compiled runs very well in Rich/ thin client as well as Web. 
 
But check on one thing that the sales ordered configured on the web using Product builder doesn't get recorded as what was configured, so when you go back to the rich client and open up the Sales order and check it you will not find the configuration. I think this is a known bug not yet addressed. 
 
Regards,
 
HK

James Flavell [EMAIL PROTECTED] wrote:

Hi I am not a true X++ programmer and need some guideance to see how user
entered X++ logic can be executed (like what can be done in the product
builder).

Is it need into some kind of AOT object or compiled and run on the fly? Is
there performance issue to worry abut?

Thanks
James


-Original Message-
From: Bayliss, Barry [mailto:[EMAIL PROTECTED] 
Sent: 25 February 2005 17:00
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] Dynamic form changes possible?




Hello James,


>From your original description of what you are trying to do, the
sysSetupFormRun class is unable to do what you want.

As you want the effect to be record based, you need to use the active()
method on the datasource. Alternatively, you can use a lower level
call.

By modifying Docu\reSearch, you can partially achieve what you are
trying to do. I have attached a word document given screen shots
showing the effect in action (using the below code modification to the
Docu class).


This is just a starting point for you. Let me know if you get stuck.


Barry.


void reSearch(FormRun formRun)
{
 Common common;
 FormDataSource formDataSource;
 boolean notePressed;
 FormDesign formDesign;
 int t;

 void disableNoteButton()
 {
 infolog.formNoteButton(false, false);
 }
;

 Standard code deleted


 // If datasource has no name = not valid
 formDataSource = common.dataSource();

 if (common.RecId == 12358860) {
 if (FormRun.design().controlName(btHide)) {
 FormRun.design().controlName(btHide).visible(false);
 }
 } else {
 if (FormRun.design().controlName(btHide)) {
 FormRun.design().controlName(btHide).visible(True);
 }
 }

 standard code deleted

}


-Original Message-
From: James Flavell [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 19 February 2005 12:51 PM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] Dynamic form changes possible?



Thanks Carsten,

I have been debuggin alot in all these classes but I meant I could not
find
the line(s) of code that change the form layout (like what I managed to
find
for the security) even in the SysSaveSetup class.

I will go back and look some more.

Thanks for the job example I think that will make debugging a little
easier

Thanks a lot
James

-Original Message-
From: Carsten F. Frandsen [mailto:[EMAIL PROTECTED] 
Sent: 16 February 2005 18:45
To: development-axapta@yahoogroups.com
Subject: SV: [development-axapta] Dynamic form changes possible?



There is another class SysSaveSetup which are used by the
SysSetupFormRun
class - SysSaveSetup class are used for saving and retrieving a user
defined
design... 

Also SysSetupFormRun class are used by any form in Axapta - AFAIR it is
the
SysSetupFormRun class which actually executes the form !

Try entering the follwing job with a break-point - the use the debugger
to
investigate how the form is activated.

static void job1(Args _args)
{
 Args args = new Args(formStr(InventItemGroup));
 FormRun formRun;
 ;

 formRun = ClassFactory::formRunClassOnClient(args); //
break-point
on this line.

 formRun.init();
 formRun.run();
 formRun.wait();
}

HTH


Best regards

Carsten F. Frandsen



Fra: James Flavell [mailto:[EMAIL PROTECTED]
Sendt: ti 15-02-2005 14:42
Til: development-axapta@yahoogroups.com
Emne: RE: [development-axapta] Dynamic form changes possible?





Thanks Carsten,

I have been trying to make some sense of the SysSetupFrom classes but
still
dont seem to be able to find where the code for hidding a control the
user
has hidden previously is (i.e. where is it that the users setup gets
applied
to the form), any chance you could give me somewhere where I can see it
in
action?

I spotted in SysSecurityFormSetup.loadSecurity some examples of the
security
settings being applied, such as:

 formControl =
SysSecurityFormSetup::getFormControl(_formRun,
mapIterator.key());
 formControl.userSecurityLevel(accessType + 1);

which gives me an idea of how I can 

Re: [development-axapta]

2005-02-27 Thread Frank Werner-Vohrer






Hi Rocco,
I think you´ve restarted all the services, but did you mentioned the passwords? Are they all the samein all envoirements? Did you reboot the AOS-Server?
 
Greatz 
Frank

Rocco Giumelli [EMAIL PROTECTED] wrote:

Hi All.

I was Switching servers from a Play to a live and in the live environment 

When I access the webpage link I get this after logon
AxaptaCOMConnector.Axapta.1 error '80042041' 

Error executing code: empty class object not initialised. Stack trace:
\Classes\unknown\itemTxt \Classes\WebSession\ParseArgs - line 109 Error
executing code: empty class object not initialised. Stack trace:
\Classes\unknown\itemTxt \Classes\WebSession\ParseArgs - line 109 

/enterpriseportal/i_axapta.asp, line 4 



I have tried to revert all things associated back to sys layer, But no
Good,Any Help please !

Rocco



[Non-text portions of this message have been removed]





Yahoo! Groups SponsorADVERTISEMENT


-
Yahoo! Groups Links

 To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
 
 To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


  
-
Gesendet von Yahoo! Mail - Jetzt mit 250MB kostenlosem Speicher

[Non-text portions of this message have been removed]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: RE : [development-axapta] Different invoice per CustGroup

2005-02-27 Thread David Castro Guzmán






SalesInvoice

method changeDesign();


On Fri, 18 Feb 2005 08:03:02 -0500, Steeve Gilbert
[EMAIL PROTECTED] wrote:
 
 First of all, make sure that CustInvoice is the right report, 'cause there's
 SalesInvoice that is also a customer invoice. You also have to consider
 that you can't change design on the fly while the report is printing so you
 can't print different customers at the same time if they need different
 design layout. You can change the design that the report will use by
 calling element.design(NameOfDesign). Make sure that you use either
 CustInvoice or SalesInvoice, after that we will help you choose the best
 place to make the check.
 
 Regards,
 
 Steeve... 
 
 
 -Message d'origine-
 De : mud_mullet [mailto:[EMAIL PROTECTED] 
 Envoyé : 18 février 2005 06:20
 À : development-axapta@yahoogroups.com
 Objet : [development-axapta] Different invoice per CustGroup
 
 
 
 
 
 Hi All 
 
 I am trying to give the customer a different Invoice depending on 
 the Customer group he is in, I have genereted the 2 different 
 designs ,and put them onto the report CustInvoice(which i think is 
 correct so far) .Now i just need to say something like if 
 custgroup='X'; then print X Design.
 Does anyone have an ideas on where to put this and What to write ???
 
 Thanks in Advence
 Jason
 
 
 
 
 
 
 
 
 
 Yahoo! Groups Links
 
 
 
 
 
 
 
 
 
 
 
 
 Yahoo! Groups Links
 To visit your group on the web, go to:
 http://groups.yahoo.com/group/development-axapta/
 
 To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.












Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/
To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.