RE: [development-axapta] Re: Axapta ComConnector

2006-01-18 Thread Lars Mikkelsen




Null is not interpreted. If you specify "Null" the interop layer will use
"Null" as parameter value and that is not always a valid parameter value.

 

If you specify System.Type.Missing the interop layer will call the method
with a correct default parameter value based on the type library. 

 

 

You can try the following

 

Call the logon2 method as follows

 

Object missingType = System.Type.Missing;

axapta2.Logon2(missingType, missingType,missingType, 

   missingType, missingType, missingType,

   missingType,missingType,missingType,missingType);

 

this will use the default configuration for logon.

 

 

and then try doing this.

 

axapta2.Logon2(null,null,null,null,null,null,null,null,null,null);

 

Calling logon2 with null's as paramter will fail with an "Invalid argument"
exception.

 

This is because "Null" is not a valid paramter value for several of the
parameters in the "Logon2" method.

 

br

 

Lars

 

  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Andreas
Rudischhauser
Sent: Wednesday, January 18, 2006 12:31 AM
To: development-axapta@yahoogroups.com
Subject: AW: [development-axapta] Re: Axapta ComConnector

 

What's the problem with null? How is that interpreted?





Von: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Im Auftrag von Lars
Mikkelsen
Gesendet: Mittwoch, 18. Januar 2006 03:43
An: development-axapta@yahoogroups.com
Betreff: RE: [development-axapta] Re: Axapta ComConnector



When doing com interop with C# and you want to omit an optional
parameter
you should always use the C# special type System.Type.Missing



In this case you should change your statement to



Object missingType = System.Type.Missing;

AxaptaQuery = axapta.CreateObject("query", missingType, missingType,
missingType, missingType, missingType, missingType);



The advantage of doing this is that the com interop layer automatically
specifies the missing parameters for you.



This is the same as in VB.NET where you can write 



AxaptaQuery = axapta.CreateObject("query")



Br



Lars





  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Martin
Sujkowski
Sent: Monday, January 16, 2006 12:03 PM
To: development-axapta@yahoogroups.com
Subject: [development-axapta] Re: Axapta ComConnector



Which line in your c sharp code produces the error?
For starters i would replace all the empty string arguments you're 
using in your axapta calls with null arguments like this:

change:
AxaptaQuery = axapta.CreateObject("Query","","","","","","");

TO:

AxaptaQuery = axapta.CreateObject
("Query",null,null,null,null,null,null);


--- In development-axapta@yahoogroups.com, "Andreas Rudischhauser" 
<[EMAIL PROTECTED]> wrote:
>
> I want to create an .Net application that needs to fetch all the 
> records in the emplTable. 
> 
>  
> 
>  
> 
> Add one field with no value 
> 
>  
> 
> Further the application will have to 
> delete all records in a "work table". My first question is how do 
I 
> delete records from an Axapta table?
> 
>  
> 
> Use ExecuteStatement or something for sql ... or use the Dictionary
> Methods from AOT like this
> 
>  
> 
> IAxaptaObject axDictionary =
> this.AxNetMapper.Axapta.CreateObject
("Dictionary",null,null,null,null,nu
> ll,null);
> 
> object o =
> axDictionary.Call("tableObject",this.Id,null,null,null,null,null);
> 
>   if (o != null) 
> 
>   {
> 
> IAxaptaObject axTable = (IAxaptaObject)o;
> 
> return axTable;
> 
>   } 
> 
>   else 
> 
>   {
> 
> throw new Exception("Die Tabelle " + 
this.Name +
> " konnte nicht geladen werden");
> 
>   }
> 
>  
> 
> 
> 
> My second question is why I get the following error when the 
> application exits:
> 
> "Runtime error!"
> program: "AXCOM\AXCOM.vshost.exe
> R6025
> - Pure Virtual Function call
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> YAHOO! GROUPS LINKS 
> 
>  
> 
> *  Visit your group "development-axapta
> <http://groups.yahoo.com/group/development-axapta> " on the web.
> 
> *  To unsubscribe from this group, send an email to:
>   [EMAIL PROTECTED]
> 
subject=Unsubscri
> be> 
> 
> *  Your use of Yahoo! Groups is subject to the Yahoo! Term

RE: [development-axapta] Re: Axapta ComConnector

2006-01-17 Thread Lars Mikkelsen




When doing com interop with C# and you want to omit an optional parameter
you should always use the C# special type System.Type.Missing

 

In this case you should change your statement to

 

Object missingType = System.Type.Missing;

AxaptaQuery = axapta.CreateObject("query", missingType, missingType,
missingType, missingType, missingType, missingType);

 

The advantage of doing this is that the com interop layer automatically
specifies the missing parameters for you.

 

This is the same as in VB.NET where you can write 

 

AxaptaQuery = axapta.CreateObject("query")

 

Br

 

Lars

 

 

  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Martin Sujkowski
Sent: Monday, January 16, 2006 12:03 PM
To: development-axapta@yahoogroups.com
Subject: [development-axapta] Re: Axapta ComConnector

 

Which line in your c sharp code produces the error?
For starters i would replace all the empty string arguments you're 
using in your axapta calls with null arguments like this:

change:
AxaptaQuery = axapta.CreateObject("Query","","","","","","");

TO:

AxaptaQuery = axapta.CreateObject
("Query",null,null,null,null,null,null);


--- In development-axapta@yahoogroups.com, "Andreas Rudischhauser" 
<[EMAIL PROTECTED]> wrote:
>
> I want to create an .Net application that needs to fetch all the 
> records in the emplTable. 
> 
>  
> 
>  
> 
> Add one field with no value 
> 
>  
> 
> Further the application will have to 
> delete all records in a "work table". My first question is how do 
I 
> delete records from an Axapta table?
> 
>  
> 
> Use ExecuteStatement or something for sql ... or use the Dictionary
> Methods from AOT like this
> 
>  
> 
> IAxaptaObject axDictionary =
> this.AxNetMapper.Axapta.CreateObject
("Dictionary",null,null,null,null,nu
> ll,null);
> 
> object o =
> axDictionary.Call("tableObject",this.Id,null,null,null,null,null);
> 
>   if (o != null) 
> 
>   {
> 
> IAxaptaObject axTable = (IAxaptaObject)o;
> 
> return axTable;
> 
>   } 
> 
>   else 
> 
>   {
> 
> throw new Exception("Die Tabelle " + 
this.Name +
> " konnte nicht geladen werden");
> 
>   }
> 
>  
> 
> 
> 
> My second question is why I get the following error when the 
> application exits:
> 
> "Runtime error!"
> program: "AXCOM\AXCOM.vshost.exe
> R6025
> - Pure Virtual Function call
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> YAHOO! GROUPS LINKS 
> 
>  
> 
> *  Visit your group "development-axapta
>  " on the web.
> 
> *  To unsubscribe from this group, send an email to:
>   [EMAIL PROTECTED]
> 
subject=Unsubscri
> be> 
> 
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service  . 
> 
>  
> 
> 
> 
> 
> 
> [Non-text portions of this message have been removed]
>









  _  

YAHOO! GROUPS LINKS 

 

*   Visit your group "development-axapta
 " on the web.
  
*   To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 
  
*   Your use of Yahoo! Groups is subject to the Yahoo!
  Terms of Service. 

 

  _  



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









  
  
SPONSORED LINKS
  
  
  

Computer part
  
  
Programming languages
  
  
Microsoft axapta
  
  


Support exchange
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "development-axapta" on the web. 
   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] OCX file in three-tier

2005-08-28 Thread Lars Mikkelsen




It depends on where your X++ code is executed. If it executes on the server
the OCX needs to be installed on the server and if it executes on the client
the OCX must be installed here as well. 

 

If you wrap your call to the OCX in a class and makes sure that this class
always executes on the server, you only need to install on your AOS servers.

 

If you do this you cannot execute code that calls your OCX in 2 tier mode,
unless the client is started from one of your AOS servers.

 

  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Thomas Turney
Sent: Wednesday, August 24, 2005 1:02 PM
To: development-axapta@yahoogroups.com
Subject: [development-axapta] OCX file in three-tier

 

Hello,



  We have an OCX file that I need to merge into our environment and wanted
to know where it should go in a three-tier thin environment.  Does it go on
the AOS server(s), where the application is stored or (hopefully not) on
each users desktop.



Thanks,

Tom T.



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






  _  

YAHOO! GROUPS LINKS 

 

*   Visit your group "development-axapta
 " on the web.
  
*   To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 
  
*   Your use of Yahoo! Groups is subject to the Yahoo!
  Terms of Service. 

 

  _  



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









  
  
SPONSORED LINKS
  
  
  

Microsoft business solution
  
  
Microsoft axapta
  
  
Basic programming language
  
  


Computer programming languages
  
  
Programming languages
  
  
Java programming language
  
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "development-axapta" on the web. 
   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] reading sysdatabase log outside axapta

2005-08-23 Thread Lars Mikkelsen




Yes. It is a serialized container of containers. You can see how it is
serialized in method SysDataBaseLog.SetData and deserialized in method
SysDataBaseLog.GetDataAsList.

 

It is probably difficult to figure out the format of a serialized container,
so it will be difficult to create an external algorithm for doing this,
unless someone else has done this and is willing to publish the code.

 

You have a couple of other options.

 

Make a call through the COM connector and let a method in Axapta return the
information in a format you can use.

 

Overwrite Insert/update methods of SysDataBaseLog and store the information
in a format that is easy for you to read and interpret.

This could be in another table or in a new field in SysDataBaseLog in
whatever format you may choose.

 

 

 

 

  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Andres Janno
Sent: Tuesday, August 23, 2005 2:49 AM
To: development-axapta@yahoogroups.com
Subject: Re: [development-axapta] reading sysdatabase log outside axapta

 

No, I mean that sysdatabaselog data field is somehow crypted or 
something. It is container type of field.
Is there any outside algorithm to decode this data field?

Regards,
Andres

Erik Hansen wrote:

> You might need to install a ODBC driver on the computer, but otherwise
> use the ODBCConnection in Axapta.
>
>
>
> Best regard
>
> Erik
>
>
>
> 
>
> From: development-axapta@yahoogroups.com
> [mailto:[EMAIL PROTECTED] On Behalf Of Andres Janno
> Sent: 23. august 2005 10:30
> To: development-axapta@yahoogroups.com
> Subject: [development-axapta] reading sysdatabase log outside axapta
>
>
>
> Hello!
>
> Is there any possibilities to read sysdatabaselog data container outside
>
> axapta?
> >From sql query analyzer directly for example?
>
> Regards,
> Andres
>
>
>
>
>
> 
>
> YAHOO! GROUPS LINKS
>
>
>
> *  Visit your group "development-axapta
>  " on the web.
>    
> *  To unsubscribe from this group, send an email to:
>   [EMAIL PROTECTED]
> 
> be>
>    
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service  .
>
>
>
> 
>
>
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
> SPONSORED LINKS
> Computer part 
> 
&k=Computer+part&w1=Computer+part&w2=Programming+languages&w3=Microsoft+axap
ta&w4=Support+exchange&c=4&s=90&.sig=yLpvcLTIDJ5FTkRJGsO11w> 
>   Programming languages 
> 
&k=Programming+languages&w1=Computer+part&w2=Programming+languages&w3=Micros
oft+axapta&w4=Support+exchange&c=4&s=90&.sig=cuhEClK4dU4wapXFmKisbQ> 
>   Microsoft axapta 
> 
&k=Microsoft+axapta&w1=Computer+part&w2=Programming+languages&w3=Microsoft+a
xapta&w4=Support+exchange&c=4&s=90&.sig=yfeG_U6QaLfPOZZIud02Fg> 
>
> Support exchange 
> 
&k=Support+exchange&w1=Computer+part&w2=Programming+languages&w3=Microsoft+a
xapta&w4=Support+exchange&c=4&s=90&.sig=hy8yRGMzrmxdphyITTUeqA> 
>
>
>
> 
> YAHOO! GROUPS LINKS
>
> *  Visit your group "development-axapta
>   " on the web.
>    
> *  To unsubscribe from this group, send an email to:
>    [EMAIL PROTECTED]
>

>    
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>   Service .
>
>
> 
>






SPONSORED LINKS 


Computer
  part 

Programming
  languages 

Microsoft


RE: [development-axapta] ChangeCompany on business connector?

2005-08-22 Thread Lars Mikkelsen




You should not instantiate it. You just call it.

 

If you want to see ax example off how this is used through COM, then take a
look at class WebSession method SetSite.

 

  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Matt Benic
Sent: Friday, August 19, 2005 12:18 AM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] ChangeCompany on business connector?

 

Thanks, I'll try to instantiate it through the COM..

Regards,

Matt Benic - .Net/Axapta Analyst Developer
UTi Sun Couriers Division | Cnr Olievenhout Rd & Brakfontein Rd, Centurion,
0061
[EMAIL PROTECTED]   | O 012-6732288 | F 012-6732344


-Original Message-
From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Behalf Of Lars Mikkelsen
Sent: 19 August 2005 01:13 AM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] ChangeCompany on business connector?


It is a global variable of class Application, so you only need to write
appl.SetDefaultCompany('xxx');



  _

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Matt Benic
Sent: Thursday, August 18, 2005 12:29 AM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] ChangeCompany on business connector?



What is appl?

Regards,

Matt Benic - .Net/Axapta Analyst Developer
UTi Sun Couriers Division | Cnr Olievenhout Rd & Brakfontein Rd, Centurion,
0061
[EMAIL PROTECTED]   | O 012-6732288 | F 012-6732344


-Original Message-
From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Behalf Of Lars Mikkelsen
Sent: 18 August 2005 12:26 AM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] ChangeCompany on business connector?


Try appl.SetDefaultCompany



  _

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Matt Benic
Sent: Tuesday, August 16, 2005 4:33 AM
To: Axapta Dev
Subject: [development-axapta] ChangeCompany on business connector?



Hi all,
Is there any way to change the current company when working through the
Axapta Business Connector, other than logging off and logging back in? I am
doing development that involves getting data from various companies, and
because I will be calling a fetch mathod on a table, I would rather not add
a changecompany call to the method itself (though using the current company
as a default parameter is one rather messy option).

Regards,

Matt Benic - .Net/Axapta Analyst Developer
UTi Sun Couriers Division | Cnr Olievenhout Rd & Brakfontein Rd, Centurion,
0061
[EMAIL PROTECTED] | O 012-6732288 | F 012-6732344






  _

YAHOO! GROUPS LINKS



*  Visit your group "development-axapta
<http://groups.yahoo.com/group/development-axapta> " on the web.

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


*  Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/>  Terms of Service.



  _



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







Yahoo! Groups Links












SPONSORED LINKS


Computer
<http://groups.yahoo.com/gads?t=ms
<http://groups.yahoo.com/gads?t=ms&k=Computer+part&w1=Computer+part&w2=Progr
> &k=Computer+part&w1=Computer+part&w2=Progr
amming+languages&w3=Microsoft+axapta&w4=Support+exchange&c=4&s=90&.sig=yLpvc
LTIDJ5FTkRJGsO11w>  part

Programming
<http://groups.yahoo.com/gads?t=ms
<http://groups.yahoo.com/gads?t=ms&k=Programming+languages&w1=Computer+part&
> &k=Programming+languages&w1=Computer+part&
w2=Programming+languages&w3=Microsoft+axapta&w4=Support+exchange&c=4&s=90&.s
ig=cuhEClK4dU4wapXFmKisbQ>  languages

Microsoft
<http://groups.yahoo.com/gads?t=ms
<http://groups.yahoo.com/gads?t=ms&k=Microsoft+axapta&w1=Computer+part&w2=Pr
> &k=Microsoft+axapta&w1=Computer+part&w2=Pr
ogramming+languages&w3=Microsoft+axapta&w4=Support+exchange&c=4&s=90&.sig=yf
eG_U6QaLfPOZZIud02Fg>  axapta


Support
<http://groups.yahoo.com/gads?t=ms
<http://groups.yahoo.com/gads?t=ms&k=Support+exchange&w1=Computer+part&w2=Pr
> &k=Support+exchange&w1=Computer+part&w2=Pr
ogramming+languages&w3=Microsoft+axapta&w4=Support+exchange&c=4&s=90&.sig=hy
8yRGMzrmxdphyITTUeqA>  exchange







  _

YAHOO! GROUPS LINKS



*  Visit your group "development-axapta
<http://groups.yahoo.com/group/development-axapta> " on the web.

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


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

RE: [development-axapta] ChangeCompany on business connector?

2005-08-18 Thread Lars Mikkelsen




It is a global variable of class Application, so you only need to write
appl.SetDefaultCompany('xxx');

 

  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Matt Benic
Sent: Thursday, August 18, 2005 12:29 AM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] ChangeCompany on business connector?

 

What is appl?

Regards,

Matt Benic - .Net/Axapta Analyst Developer
UTi Sun Couriers Division | Cnr Olievenhout Rd & Brakfontein Rd, Centurion,
0061
[EMAIL PROTECTED]   | O 012-6732288 | F 012-6732344


-Original Message-
From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Behalf Of Lars Mikkelsen
Sent: 18 August 2005 12:26 AM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] ChangeCompany on business connector?


Try appl.SetDefaultCompany



  _

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Matt Benic
Sent: Tuesday, August 16, 2005 4:33 AM
To: Axapta Dev
Subject: [development-axapta] ChangeCompany on business connector?



Hi all,
Is there any way to change the current company when working through the
Axapta Business Connector, other than logging off and logging back in? I am
doing development that involves getting data from various companies, and
because I will be calling a fetch mathod on a table, I would rather not add
a changecompany call to the method itself (though using the current company
as a default parameter is one rather messy option).

Regards,

Matt Benic - .Net/Axapta Analyst Developer
UTi Sun Couriers Division | Cnr Olievenhout Rd & Brakfontein Rd, Centurion,
0061
[EMAIL PROTECTED] | O 012-6732288 | F 012-6732344






  _

YAHOO! GROUPS LINKS



*  Visit your group "development-axapta
<http://groups.yahoo.com/group/development-axapta> " on the web.

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


*  Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/>  Terms of Service.



  _



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







Yahoo! Groups Links












SPONSORED LINKS 


Computer
<http://groups.yahoo.com/gads?t=ms&k=Computer+part&w1=Computer+part&w2=Progr
amming+languages&w3=Microsoft+axapta&w4=Support+exchange&c=4&s=90&.sig=yLpvc
LTIDJ5FTkRJGsO11w>  part 

Programming
<http://groups.yahoo.com/gads?t=ms&k=Programming+languages&w1=Computer+part&
w2=Programming+languages&w3=Microsoft+axapta&w4=Support+exchange&c=4&s=90&.s
ig=cuhEClK4dU4wapXFmKisbQ>  languages 

Microsoft
<http://groups.yahoo.com/gads?t=ms&k=Microsoft+axapta&w1=Computer+part&w2=Pr
ogramming+languages&w3=Microsoft+axapta&w4=Support+exchange&c=4&s=90&.sig=yf
eG_U6QaLfPOZZIud02Fg>  axapta 


Support
<http://groups.yahoo.com/gads?t=ms&k=Support+exchange&w1=Computer+part&w2=Pr
ogramming+languages&w3=Microsoft+axapta&w4=Support+exchange&c=4&s=90&.sig=hy
8yRGMzrmxdphyITTUeqA>  exchange 

 

 

 

  _  

YAHOO! GROUPS LINKS 

 

*   Visit your group "development-axapta
<http://groups.yahoo.com/group/development-axapta> " on the web.
  
*   To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 
  
*   Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/>  Terms of Service. 

 

  _  



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






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "development-axapta" on the web. 
   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] ChangeCompany on business connector?

2005-08-18 Thread Lars Mikkelsen




Try appl.SetDefaultCompany

 

  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Matt Benic
Sent: Tuesday, August 16, 2005 4:33 AM
To: Axapta Dev
Subject: [development-axapta] ChangeCompany on business connector?

 

Hi all,
Is there any way to change the current company when working through the
Axapta Business Connector, other than logging off and logging back in? I am
doing development that involves getting data from various companies, and
because I will be calling a fetch mathod on a table, I would rather not add
a changecompany call to the method itself (though using the current company
as a default parameter is one rather messy option).

Regards,

Matt Benic - .Net/Axapta Analyst Developer
UTi Sun Couriers Division | Cnr Olievenhout Rd & Brakfontein Rd, Centurion,
0061
[EMAIL PROTECTED] | O 012-6732288 | F 012-6732344






  _  

YAHOO! GROUPS LINKS 

 

*   Visit your group "development-axapta
 " on the web.
  
*   To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 
  
*   Your use of Yahoo! Groups is subject to the Yahoo!
  Terms of Service. 

 

  _  



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









  
  
SPONSORED LINKS
  
  
  

Computer part
  
  
Programming languages
  
  
Microsoft axapta
  
  


Support exchange
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "development-axapta" on the web. 
   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] Re: Enterprise Portal and printing

2005-06-16 Thread Lars Mikkelsen




You can stream it directly to the IIS Response object. By doing this you can
store the documents where ever you want or just let them exists temporarily.

 

Here is an ASP.NET example that could inspire you
http://www.ezdevcomponents.com/ezdev/artstream.aspx

 

 

 

  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of hany abodoma
Sent: Wednesday, June 15, 2005 2:42 AM
To: development-axapta@yahoogroups.com
Subject: Re: [development-axapta] Re: Enterprise Portal and printing

 

u  can make link from web form that can download the pdf

but if u need to explorer the bdf then i don't know any way


opussolution_pk <[EMAIL PROTECTED]> wrote: 
Hi Hany

Isabelle meant inside web portal (f. ex. Enterprise portal). Is 
there a way to create PDF document and send them to the users's 
browser without caching on public directories?

Any hints are welcome.

Thank you in advance
Regards
Patrick

--- In development-axapta@yahoogroups.com, hany abodoma 
<[EMAIL PROTECTED]> wrote:
> do u mean from portal website out of axapta or portal inside axapte
>  
> [EMAIL PROTECTED]
>  
> we can chat to got the easy way
> 
> Geissmann Isabelle <[EMAIL PROTECTED]> wrote:
> What is the easiest way to print a list in the pdf format from an
> enterprise portal site. For example invoice or order.
> 
> Isabelle Geissmann
> 
> 
> [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 the Yahoo! Terms of 
Service. 
> 
> 
> 
> -
> Discover Yahoo!
>  Find restaurants, movies, travel & more fun for the weekend. 
Check it out!
> 
> [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 the Yahoo! Terms of Service. 



    
-
Yahoo! Mail
Stay connected, organized, and protected. Take the tour

[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 the Yahoo!
  Terms of Service. 



[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 the Yahoo! Terms of Service.










RE: [development-axapta] COM interface

2005-05-11 Thread Lars Mikkelsen




Hi

 

Try out form SysCOMClassWrapperWizard. It will build class wrappers for your
COM component.

 

Or you could use a com class explorer. Microsoft OleView is an example of
such a tool.

 

 

 

  _  

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Wolfgang Puttinger
Sent: Tuesday, May 10, 2005 4:25 AM
To: development-axapta@yahoogroups.com
Subject: [development-axapta] COM interface

 

Hi,

how can i get information from the com 1 interface.

With a button, i want to get the weight from my scale.

Thanks for any help

Wolfi




[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 the Yahoo!
  Terms of Service. 



[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 the Yahoo! Terms of Service.










RE: [development-axapta] XML

2005-04-06 Thread Lars Mikkelsen





You could do this if you are planning to use the BizTalk interface. If you
just want to read and parse an xml file, the BizTalk interface is way to
difficult to use. There is really no need to write a schema or write
classes/methods in order to parse an xml document.

 

Axapta has a wrapper for the Microsoft MSXML parser. This parser can be used
to read or create xml documents. The wrapper for this parser can be found in
the class tree node prefixed with "XML".  The main class is "XmlDocument"
and you can search the AOT for usage of this class. 

 

You can also search the internet for samples of using MSXML. It should be
pretty easy to translate VB samples if you can't find any Axapta samples.

 

 

  _  

From: Sandeep Kr. Shukla [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 8:49 AM
To: development-axapta@yahoogroups.com
Subject: RE: [development-axapta] XML

 



Hello,

For this you will have to write the schema for that XML file and after
that you will have to write the classes\methods for each node in Axapta
to read the data from the XML file. After that you will have to attach
the methods to the nodes in the XML schema that you have specified in
the Axapta. When you process the in the gateway queue then the data will
be imported in the Axapta.

Regards, 
Sandeep Kr. Shukla 


-Original Message-
From: studlee15 [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 04, 2005 7:04 PM
To: development-axapta@yahoogroups.com
Subject: [development-axapta] XML




I have the task of importing data using an XML file.  I have done this 
before at me previous job, but I cannot recall quite how I did it.  
Does anyone of any example of how to read through an XML file?

Thanks.









Yahoo! Groups Links








  --


email-body was scanned and no virus found


[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 the Yahoo!
  Terms of Service. 



[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 the Yahoo! Terms of Service.