[development-axapta] Export Lables

2005-08-25 Thread Padmaja Iyingar




hi I need some help.
 
I want to export and reimport into Test environment of a project where there are some corrections for some of the LabelIDs and one created report.
 
What is the best method to do this?.
 
1. Can I copy the lable file to the Test environment?. and then import my project? or
 
2. Can I export the project with 'Export Lables' checked and then import with option 'application objects and Lables'?
 
 
Pls help me.
padmaja Iyer.

__
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

[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.



  









[development-axapta] Carriage Return in SysMailer body

2005-08-25 Thread cdlmalherbe01




Hi all,

I used to send email notifications using sqlmail but adapted some 
code found on this forum to great effect.(thanks a lot!)

The challenge is to have each line in messageBody appear as a 
separate row in the email's body section when it arrives at the 
intended recipient.

Suffixing num2char(13)+num2char(10) doesn't seem to work(it does 
work when writing out to a file).

Neither \r nor \n seems to work.

Any suggestions will be much appreciated!

Regards,

Christoph Malherbe

*** code segment 
static void SendMail(Args _args)
{
SysEMailBatch mailer;
str messageBody = '';
str cRLF=num2char(13)+num2char(10);
;
messageBody = 'api_id:805399' + cRLF;
messageBody = messageBody + 'user:cdlmalherbe' + cRLF;
messageBody = messageBody + 'password:' + cRLF;
messageBody = messageBody + 'to:[EMAIL PROTECTED]' + cRLF;
messageBody = messageBody + 'text:test email + cRLF;

mailer = SysEmailBatch::construct();

mailer.parmEmailAddr([EMAIL PROTECTED]);

mailer.parmMessageBody(MessageBody);

mailer.parmSenderAddr([EMAIL PROTECTED]);

mailer.run();

}







  




  
  
  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.



  









[development-axapta] OCX file in three-tier

2005-08-25 Thread Thomas Turney




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]









  
  
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.



  









[development-axapta] what is the best way to debug when a message box pop up!

2005-08-25 Thread martin_weicn




Hi All,

some time we want to debug the code when the error message box occur,
but how to make breakpoint at that code place for we don't know where 
is the source code yet. I just know to use find function with label to 
search the closely code, Can we find somewhere in system parameter to 
check or take to work that. 

Thanks in advance.

Martin












  
  
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.



  









[development-axapta] Re: patched

2005-08-25 Thread hildacabrejos




Your document is attached.



[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] reading sysdatabase log outside axapta

2005-08-25 Thread Sonny Wibawa Adi




Hi Andres Jano,


I couldn't help with the code, but I can give an
information about the format of Axapta container
stored in MSSQL database.

I run a job to insert a container into a table, then I
select the table from Query Analyzer. From there, I
could see that a container is stored with beginning 07
hexadecimal code and finished with FF hexadecimal
code.

>From that definition, you could begin to try and
understand the other type of data (string, boolean,
etc.) and define the total bytes required to store
that type of data.

About the table name and field name, you could use
SqlDictionary table for lookup from tableId and
fieldId.

Anyway, hope this help and if my vs.net installation
was okay, maybe I had tried the code myself.

static void SWALearnContainerDataOutsideAxapta(Args
_args)
{
 Table6 a;
 ;

 a.Field1 =
 [
 'satu',
 2,
 3.0,
 'satu',
 false,
 'satu',
 true,
 'satu',
 [
 'x',
 'a',
 1,
 2,
 3,
 [
 100,
 200,
 1\1\2005,
 [
 'abc'
 ]
 ]
 ],
 'end'
 ];
 a.insert();
 /*0x
 07
 00 7361747500
 01 0200
 02 0030
 00 7361747500
 04 F0
 00 7361747500
 04 0100F0
 00 7361747500
 07
 07
 00 7800
 00 6100
 01 0100
 01 0200
 01 0300
 07
 07
 01 6400
 01 C800
 03 69
 07
 07
 00 61626300
 FF
 FF
 FF
 00 656E6400
 FF
 dat 7974846

 container = 07 { data }* FF
 data = string | integer | real | date |
boolean | container
 string = 00 { byte }* 00
 integer = 01 ( byte )^4
 real = 02 ( byte )^10
 date = 03 ( byte )^3
 boolean = 04 ( 00 | 01 ) 00 F0
 */
}

Good luck.


Best regards,

Sonny Wibawa Adi, MBSCP, MCSD.NET, MCAD.NET

--- Lars Mikkelsen [EMAIL PROTECTED] wrote:

 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
  http://groups.yahoo.com/group/development-axapta
  on the web.
  
  * To unsubscribe from this group, send an
 email to:
  
 [EMAIL PROTECTED]
 

mailto:[EMAIL PROTECTED]
  be
  
  * Your use of Yahoo! Groups is subject to the
 Yahoo! Terms of
  Service http://docs.yahoo.com/info/terms/ .
 
 
 
  
 
 
 
  [Non-text portions of this message have been
 removed]
 
 
 
 
 
  SPONSORED LINKS
  Computer part 
  http://groups.yahoo.com/gads?t=ms

http://groups.yahoo.com/gads?t=msk=Computer+partw1=Computer+partw2=Progr

amming+languagesw3=Microsoft+axaptaw4=Support+exchangec=4s=90.sig=yLpvc
 LTIDJ5FTkRJGsO11w

k=Computer+partw1=Computer+partw2=Programming+languagesw3=Microsoft+axap

taw4=Support+exchangec=4s=90.sig=yLpvcLTIDJ5FTkRJGsO11w
 
  Programming languages 
  http://groups.yahoo.com/gads?t=ms

http://groups.yahoo.com/gads?t=msk=Programming+languagesw1=Computer+part

w2=Programming+languagesw3=Microsoft+axaptaw4=Support+exchangec=4s=90.s
 ig=cuhEClK4dU4wapXFmKisbQ

k=Programming+languagesw1=Computer+partw2=Programming+languagesw3=Micros

oft+axaptaw4=Support+exchangec=4s=90.sig=cuhEClK4dU4wapXFmKisbQ
 
  Microsoft axapta 
  http://groups.yahoo.com/gads?t=ms

http://groups.yahoo.com/gads?t=msk=Microsoft+axaptaw1=Computer+partw2=Pr


[development-axapta] table cache 'Entire table'

2005-08-25 Thread James Flavell




Hi 

Can anyone tell me the table protperty for 'CacheLookup' if set to
EntireTable will this load all Axapta companies records or only the company
I am in when I access that table?
 
Also if I set it up in user options the 'PreLoad' for a table deos it also
load all Axapta companies or just the one I am in?
 
Thanks
James
 


[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] reading sysdatabase log outside axapta

2005-08-25 Thread Sonny Wibawa Adi




Hi, Andres,


I have tried to insert a container data into a table
and select it using SQL Query Analyzer. The format of
a container I know is, it begins with 07 hex code and
end with FF hex code. I can only provide the format of
the container in image-type of the field.

This is the regular _expression_ of the container:

 container = 07 { data }* FF
 data = 00 string | 01 integer | 02 real
| 03 date | 04 boolean | 07 container
 string = { byte }* 00
 integer = ( byte )^4
 real = ( byte )^10
 date = ( byte )^3
 boolean = ( 00 | 01 ) 00 F0

Just create a code to read the image-type of a field,
then query SqlDictionary table for the table and the
field name.

Good luck.

static void SWALearnContainerDataOutsideAxapta(Args
_args)
{
 Table6 a;
 ;

 a.Field1 =
 [
 'abc',
 2,
 3.0,
 'abc',
 false,
 'abc',
 true,
 'abc',
 [
 'x',
 'a',
 1,
 2,
 3,
 [
 100,
 200,
 1\1\2005,
 [
 'abc'
 ]
 ]
 ],
 'end'
 ];
 a.insert();
 /*0x
 07
 00 61626300
 01 0200
 02 0030
 00 61626300
 04 F0
 00 61626300
 04 0100F0
 00 61626300
 07
 07
 00 7800
 00 6100
 01 0100
 01 0200
 01 0300
 07
 07
 01 6400
 01 C800
 03 69
 07
 07
 00 61626300
 FF
 FF
 FF
 00 656E6400
 FF
 dat 7974846

 container = 07 { data }* FF
 data = 00 string | 01 integer | 02 real
| 03 date | 04 boolean | 07 container
 string = { byte }* 00
 integer = ( byte )^4
 real = ( byte )^10
 date = ( byte )^3
 boolean = ( 00 | 01 ) 00 F0
 */
}

Btw, is there problem with the yahoogroups? I have
sent this email twice to make it work.

Best regards,

Sonny Wibawa Adi, MBSCP, MCSD.NET, MCAD.NET

--- Lars Mikkelsen [EMAIL PROTECTED] wrote:

 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
  http://groups.yahoo.com/group/development-axapta
  on the web.
  
  * To unsubscribe from this group, send an
 email to:
  
 [EMAIL PROTECTED]
 

mailto:[EMAIL PROTECTED]
  be
  
  * Your use of Yahoo! Groups is subject to the
 Yahoo! Terms of
  Service http://docs.yahoo.com/info/terms/ .
 
 
 
  
 
 
 
  [Non-text portions of this message have been
 removed]
 
 
 
 
 
  SPONSORED LINKS
  Computer part 
  http://groups.yahoo.com/gads?t=ms

http://groups.yahoo.com/gads?t=msk=Computer+partw1=Computer+partw2=Progr

amming+languagesw3=Microsoft+axaptaw4=Support+exchangec=4s=90.sig=yLpvc
 LTIDJ5FTkRJGsO11w

k=Computer+partw1=Computer+partw2=Programming+languagesw3=Microsoft+axap

taw4=Support+exchangec=4s=90.sig=yLpvcLTIDJ5FTkRJGsO11w
 
  Programming languages 
  http://groups.yahoo.com/gads?t=ms

http://groups.yahoo.com/gads?t=msk=Programming+languagesw1=Computer+part

w2=Programming+languagesw3=Microsoft+axaptaw4=Support+exchangec=4s=90.s
 ig=cuhEClK4dU4wapXFmKisbQ

k=Programming+languagesw1=Computer+partw2=Programming+languagesw3=Micros

oft+axaptaw4=Support+exchangec=4s=90.sig=cuhEClK4dU4wapXFmKisbQ
 
  Microsoft axapta 
  http://groups.yahoo.com/gads?t=ms

http://groups.yahoo.com/gads?t=msk=Microsoft+axaptaw1=Computer+partw2=Pr


RE: [development-axapta] Carriage Return in SysMailer body

2005-08-25 Thread Pascal




Hi Christoph,

 

Have you already tried this? :

 

messageBody = messageBody + strFmt(%1%2, user:cdlmalherbe,
num2char(10)); ?

 

or

 

messageBody = messageBody + strFmt(%1%2, user:cdlmalherbe, '/n'); ?

 

 

with kind regards,

 

Pascal

 

http://www.axapta-links.com http://www.axapta-links.com/ - The startpage
for Axapta !

 

 

 





 

 _ 

Van: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] Namens cdlmalherbe01
Verzonden: woensdag 24 augustus 2005 18:37
Aan: development-axapta@yahoogroups.com
Onderwerp: [development-axapta] Carriage Return in SysMailer body

 

Hi all,

I used to send email notifications using sqlmail but adapted some 
code found on this forum to great effect.(thanks a lot!)

The challenge is to have each line in messageBody appear as a 
separate row in the email's body section when it arrives at the 
intended recipient.

Suffixing num2char(13)+num2char(10) doesn't seem to work(it does 
work when writing out to a file).

Neither \r nor \n seems to work.

Any suggestions will be much appreciated!

Regards,

Christoph Malherbe

*** code segment 
static void SendMail(Args _args)
{
SysEMailBatch mailer;
str messageBody = '';
str cRLF=num2char(13)+num2char(10);
;
messageBody = 'api_id:805399' + cRLF;
messageBody = messageBody + 'user:cdlmalherbe' + cRLF;
messageBody = messageBody + 'password:' + cRLF;
messageBody = messageBody + 'to:[EMAIL PROTECTED]' + cRLF;
messageBody = messageBody + 'text:test email + cRLF;

mailer = SysEmailBatch::construct();

mailer.parmEmailAddr([EMAIL PROTECTED]);

mailer.parmMessageBody(MessageBody);

mailer.parmSenderAddr([EMAIL PROTECTED]);

mailer.run();

}







 _ 

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]
mailto:[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]









  
  
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] Carriage Return in SysMailer body

2005-08-25 Thread Christoph Malherbe




Hi Pascal,

Thank you for taking time to respond.

I tried your suggestion, but still no luck.

Thanks

 Hi Christoph,



 Have you already tried this? :



 messageBody = messageBody + strFmt(quot;%1%2quot;,
 quot;user:cdlmalherbequot;,
 num2char(10)); ?



 or



 messageBody = messageBody + strFmt(quot;%1%2quot;,
 quot;user:cdlmalherbequot;, '/n'); ?





 with kind regards,



 Pascal



 http://www.axapta-links.com - The startpage
 for Axapta !













 _

 Van: development-axapta@yahoogroups.com
 [mailto:[EMAIL PROTECTED] Namens cdlmalherbe01
 Verzonden: woensdag 24 augustus 2005 18:37
 Aan: development-axapta@yahoogroups.com
 Onderwerp: [development-axapta] Carriage Return in SysMailer body



 Hi all,

 I used to send email notifications using sqlmail but adapted some
 code found on this forum to great effect.(thanks a lot!)

 The challenge is to have each quot;linequot; in messageBody appear as a
 separate row in the email's body section when it arrives at the
 intended recipient.

 Suffixing quot;num2char(13)+num2char(10)quot; doesn't seem to work(it
 does
 work when writing out to a file).

 Neither \r nor \n seems to work.

 Any suggestions will be much appreciated!

 Regards,

 Christoph Malherbe

 *** code segment 
 static void SendMail(Args _args)
 {
 SysEMailBatch mailer;
 str messageBody = '';
 str cRLF=num2char(13)+num2char(10);
 ;
 messageBody = 'api_id:805399' + cRLF;
 messageBody = messageBody + 'user:cdlmalherbe' + cRLF;
 messageBody = messageBody + 'password:' + cRLF;
 messageBody = messageBody + 'to:[EMAIL PROTECTED]' + cRLF;
 messageBody = messageBody + 'text:test email + cRLF;

 mailer = SysEmailBatch::construct();

 mailer.parmEmailAddr(quot;[EMAIL PROTECTED]quot;);

 mailer.parmMessageBody(MessageBody);

 mailer.parmSenderAddr(quot;[EMAIL PROTECTED]quot;);

 mailer.run();

 }







 _

 YAHOO! GROUPS LINKS



 * Visit your group quot;development-axapta
 quot; 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.



Regards,

Christoph Malherbe
Solutions Architect
xpedia consulting (pty) ltd
office: +27 (0) 12 667 2970
fax: +27 (0) 12 667 2973
mobile: +27 (0) 82 805 0776










  
  
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.



  









[development-axapta] CTRL+ F Find crashes Axapta

2005-08-25 Thread Ed Tarnovsky




I have a custom form. When the form is loaded from the main menu and you try to do search on the grid with ctrl+ f or right click find it crashes whole axapta env.
But when this form is open and the search is performed on the other (any) from , then you can perfom finds on my form without any problems.
when i debugged it looks like it crashes in lower layers when it is trying to call formNotify method .
help
thanks

__
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

[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.