[development-axapta] Assembly Microsoft.Dynamics.BusinessConnectorNet.dll

2007-05-10 Thread Daniel Selles
Hi All,
 
I'm using the SQL-2005. I've created a new dll (C#) that uses the 
Microsoft.Dynamics.BusinessConnectorNet.dll but when I try to assembly my dll, 
the sql gives me an error:
 
CREATE ASSEMBLY for assembly 'ClassFundoFixo' failed because assembly 
'microsoft.dynamics.businessconnectornet' is malformed or not a pure .NET 
assembly. 

Unverifiable PE Header/native stub.

Because it, I've already tried to use the DllImport statement on my dll to 
import only the methods that I need to use on BusinessConnectorNet.dll, but I 
can't use this dll because my dll doesn't recognize the method Logon and gives 
me the error message:
 
System.EntryPointNotFoundException: Unable to find an entry point named 'Logon' 
in DLL 'Microsoft.Dynamics.BusinessConnectorNet.dll'.
 
   Below, my class:
 
using System;

using System.Collections.Generic;

using System.Text;

using System.Data;

using Microsoft.SqlServer.Server;

using System.Data.SqlTypes;

using System.Runtime.InteropServices;

 

namespace ClassFundoFixo

{

public class FundoFixo

{

 

[DllImport(Microsoft.Dynamics.BusinessConnectorNet.dll, CharSet = 
CharSet.Auto)]

public static extern void Logon(string company, string language, 

string objectServer, string 
configuration);

 

[DllImport(Microsoft.Dynamics.BusinessConnectorNet.dll, EntryPoint = 
Logoff, CharSet=CharSet.Unicode, ExactSpelling=true,

CallingConvention=CallingConvention.StdCall)]

public static extern bool Logoff();

 

[DllImport(Microsoft.Dynamics.BusinessConnectorNet.dll, EntryPoint = 
CallStaticClassMethod)]

public static extern object CallStaticClassMethod(

string className, string methodName, 

params object[] paramList);

 

public void Run(string IdIntranet, string Modulo)

{

 

Logon(null, null, null, null);

CallStaticClassMethod(GsInsereDiario_FundoFixo, Run, 
IdIntranet, Modulo);

Logoff();

}

}

}

 
I need that sql assembly or my class uses the Statement DllImport. Does 
anyone have another idea or know why the classes doesn't work?
 
Thanks in advance, 
 
Daniel Selles | Dynamics Ax Developer | Systems Advisers Group Brazil
 
Tel: +55 11 3345 5001Fax: +55 11 5103 0255
Mob: +55 16 8117 7954  Web: www.systemsadvisers.com/brazil
 
Systems Advisers Group: We provide global solutions and services around 
Microsoft Dynamics AX, Microsoft Dynamics GP and SunSystems.  As one of the 
fastest growing Microsoft Dynamics partners globally we are currently 1 of 
only3 global power vendors to Microsoft for Microsoft Dynamics services. With 
experience in global implementations in over 47 countries, the group has 
Centres of Excellence in Asia Pac., Europe and Latin America for 
onshore-offshore capabilities to suit the needs of your organisation.
 
Offices in: Belgium | Brazil | France | Germany | India | The Netherlands | UAE 
| United Kingdom | USA
 
For more information visit us at www.systemsadvisers.com 
http://www.systemsadvisers.com/  or write [EMAIL PROTECTED] mailto:[EMAIL 
PROTECTED] 


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



RES: [development-axapta] Business Connector

2007-05-10 Thread Daniel Selles
Hi Arijit,
 
Yes, I have referenced the AX .NET Business Connector in Visual Studio. The 
problem was the AX Business Connector instalation. I have uninstaled the 
US-Business Connector and instaled another BR-Business Connector and my system 
works.
 
Thanks you,
 
Daniel Selles | Dynamics Ax Developer | Systems Advisers Group Brazil
 
Tel: +55 11 3345 5001Fax: +55 11 5103 0255
Mob: +55 16 8117 7954  Web: www.systemsadvisers.com/brazil
 
Systems Advisers Group: We provide global solutions and services around 
Microsoft Dynamics AX, Microsoft Dynamics GP and SunSystems.  As one of the 
fastest growing Microsoft Dynamics partners globally we are currently 1 of 
only3 global power vendors to Microsoft for Microsoft Dynamics services. With 
experience in global implementations in over 47 countries, the group has 
Centres of Excellence in Asia Pac., Europe and Latin America for 
onshore-offshore capabilities to suit the needs of your organisation.
 
Offices in: Belgium | Brazil | France | Germany | India | The Netherlands | UAE 
| United Kingdom | USA
 
For more information visit us at www.systemsadvisers.com 
http://www.systemsadvisers.com/  or write [EMAIL PROTECTED] mailto:[EMAIL 
PROTECTED] 



De: development-axapta@yahoogroups.com em nome de Arijit Basu
Enviada: qui 10/5/2007 01:16
Para: development-axapta@yahoogroups.com
Assunto: Re: [development-axapta] Business Connector



Hi Daniel,
Have you referenced the AX .NET Business Connector in Visual Studio?

On 5/9/07, Daniel Selles [EMAIL PROTECTED] 
mailto:DanielS%40systemsadvisers.com  wrote:

 Hi Arijit,

 When I execute this statement below the error occurs because I can`t use
 the logon or logonAs statement. I have tried many things, change user who
 logon on AX, type another user different, etc. I seems that any thing is not
 installed correctly in my CPU.

 AX.Logon(null, null, null, null);

 Thank you,

 Daniel Selles | Dynamics Ax Developer | Systems Advisers Group Brazil

 Tel: +55 11 3345 5001 Fax: +55 11 5103 0255
 Mob: +55 16 8117 7954 Web: www.systemsadvisers.com/brazil

 Systems Advisers Group: We provide global solutions and services around
 Microsoft Dynamics AX, Microsoft Dynamics GP and SunSystems. As one of the
 fastest growing Microsoft Dynamics partners globally we are currently 1 of
 only3 global power vendors to Microsoft for Microsoft Dynamics services.
 With experience in global implementations in over 47 countries, the group
 has Centres of Excellence in Asia Pac., Europe and Latin America for
 onshore-offshore capabilities to suit the needs of your organisation.

 Offices in: Belgium | Brazil | France | Germany | India | The Netherlands
 | UAE | United Kingdom | USA

 For more information visit us at www.systemsadvisers.com 
 http://www.systemsadvisers.com/ http://www.systemsadvisers.com/  or write 
 [EMAIL PROTECTED] mailto:info%40systemsadvisers.com 
 info%40systemsadvisers.commailto:
 [EMAIL PROTECTED] mailto:info%40systemsadvisers.com  
 info%40systemsadvisers.com

 

 De: development-axapta@yahoogroups.com 
 mailto:development-axapta%40yahoogroups.com 
 development-axapta%40yahoogroups.comem nome de Arijit Basu
 Enviada: qua 9/5/2007 05:19
 Para: development-axapta@yahoogroups.com 
 mailto:development-axapta%40yahoogroups.com 
 development-axapta%40yahoogroups.com
 Assunto: Re: [development-axapta] Business Connector


 Hi,
 It looks like Authentication Error.In your code, you have loggedon as
 Current Windows Account. Is that configured as a user in AX? Try using the
 LogonAs() method. I have created a C# code which logs on to AX. See the
 code. Its workin fine.

 Axapta AX = new Axapta();
 try
 {
 AX.Logon(null, null, null, null);
 {
 Object AXVersion,AXPOToday,AXPOTodayValue;
 Object AXPOLastWeek, AXPOLastWeekValue;
 String VendAccountNumberField = AccountNum;
 Object VendAccountNum;
 String VendNameField = Name;
 Object VendName;
 String VendCurrencyField = Currency;
 Object VendCurrencyNum;
 String VendEMailField = EMail;
 Object VendEMailNum;

 //Top Purchase Order Group which fetches PO Details
 groupAXVersion.Visible = true;
 AXVersion = AX.CallStaticClassMethod
 (AXPurchStatistics,ApplicationVersion);
 textAXVersion.Text = AXVersion.ToString();
 AXPOToday = AX.CallStaticClassMethod(AXPurchStatistics,
 PORaisedToday);
 textPOGeneratedToday.Text = AXPOToday.ToString();
 AXPOTodayValue =
 AX.CallStaticClassMethod(AXPurchStatistics,
 PORaisedTodayValue);
 textPOGeneratedTodayValue.Text = AXPOTodayValue.ToString
 ();
 AXPOLastWeek =
 AX.CallStaticClassMethod(AXPurchStatistics,
 PORaisedLastWeek);
 textPOGeneratedLastWeek.Text = AXPOLastWeek.ToString();
 AXPOLastWeekValue =
 AX.CallStaticClassMethod(AXPurchStatistics,
 PORaisedLastWeekValue);
 textPOGeneratedLastWeekValue.Text =
 AXPOLastWeekValue.ToString();
 //Lists vendors in the List Control
 AxaptaRecord AXRecord = AX.CreateAxaptaRecord
 (VendTable

[development-axapta] Business Connector

2007-05-09 Thread Daniel Selles
Hi all,
 
I'm trying to use the Business Connector to execute my class. I've created 
a dll to call on sql 2005 assembly. But my C# class can't access the axapta and 
give the follow error message on the Ax. Logon statment:
 
My class:
public void Run(string IdIntranet, string Modulo)

{

  Axapta ax; 

  ax = new Axapta();

  ax.Logon(null, null, null, null);

  ax.CallStaticClassMethod(GsInsereDiario_FundoFixo, Run, IdIntranet, 
Modulo);

  ax.Logoff();

}

Error Message:
Microsoft.Dynamics.BusinessConnectorNet.LogonFailedException: 

at Microsoft.Dynamics.BusinessConnectorNet.Axapta.Logon(BC_PROXY_ACCOUNT_INFO* 
pBCProxyAccountInfo, String company, String language, String objectServer, 
String configuration)

at Microsoft.Dynamics.BusinessConnectorNet.Axapta.Logon(String company, String 
language, String objectServer, String configuration)

at ClassFundoFixo.FundoFixo.Run(String IdIntranet, String Modulo) in 
C:\Documents and Settings\deselles\My Documents\Visual Studio 
2005\Projects\ClassLibrary1\ClassLibrary1\ClassFundoFixo.cs:line 20

at TesteFundoFixo.Form1.button1_Click(Object sender, EventArgs e) in 
C:\Documents and Settings\deselles\My Documents\Visual Studio 
2005\Projects\TesteFundoFixo\TesteFundoFixo\Form1.cs:line 25

Thanks in advance,
 
Daniel Selles | Dynamics Ax Developer | Systems Advisers Group Brazil
 
Tel: +55 11 3345 5001Fax: +55 11 5103 0255
Mob: +55 16 8117 7954  Web: www.systemsadvisers.com/brazil
 
Systems Advisers Group: We provide global solutions and services around 
Microsoft Dynamics AX, Microsoft Dynamics GP and SunSystems.  As one of the 
fastest growing Microsoft Dynamics partners globally we are currently 1 of 
only3 global power vendors to Microsoft for Microsoft Dynamics services. With 
experience in global implementations in over 47 countries, the group has 
Centres of Excellence in Asia Pac., Europe and Latin America for 
onshore-offshore capabilities to suit the needs of your organisation.
 
Offices in: Belgium | Brazil | France | Germany | India | The Netherlands | UAE 
| United Kingdom | USA
 
For more information visit us at www.systemsadvisers.com 
http://www.systemsadvisers.com/  or write [EMAIL PROTECTED] mailto:[EMAIL 
PROTECTED] 


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



RES: [development-axapta] Business Connector

2007-05-09 Thread Daniel Selles
Hi Agus,
 
I have already tried it does't work. I think there are anything wrong with 
the Axapta instalation in my CPU because I'm following the statements on Axapta 
book and it does't work properly.
 
Thank you for help,
 
Daniel Selles | Dynamics Ax Developer | Systems Advisers Group Brazil
 
Tel: +55 11 3345 5001Fax: +55 11 5103 0255
Mob: +55 16 8117 7954  Web: www.systemsadvisers.com/brazil
 
Systems Advisers Group: We provide global solutions and services around 
Microsoft Dynamics AX, Microsoft Dynamics GP and SunSystems.  As one of the 
fastest growing Microsoft Dynamics partners globally we are currently 1 of 
only3 global power vendors to Microsoft for Microsoft Dynamics services. With 
experience in global implementations in over 47 countries, the group has 
Centres of Excellence in Asia Pac., Europe and Latin America for 
onshore-offshore capabilities to suit the needs of your organisation.
 
Offices in: Belgium | Brazil | France | Germany | India | The Netherlands | UAE 
| United Kingdom | USA
 
For more information visit us at www.systemsadvisers.com 
http://www.systemsadvisers.com/  or write [EMAIL PROTECTED] mailto:[EMAIL 
PROTECTED] 



De: development-axapta@yahoogroups.com em nome de Agus Riyadi
Enviada: qua 9/5/2007 07:18
Para: development-axapta@yahoogroups.com
Assunto: Re: [development-axapta] Business Connector



Hi Daniel,

I never use sql 2005 assembly but maybe you can try this :

In what security context does your sql 2005 assembly works ? You can capture
that with System.Security.Principal.WindowsIdentity.GetCurrent().Name()
method.
It must be in the security context of windows domain user registered in the
Axapta instance.
There also must be valid configuration for the user if you use logon method.

In sql side, maybe you also need to set proper 'permission set' properties.

Regards,

Agus

On 5/9/07, Daniel Selles [EMAIL PROTECTED] 
mailto:DanielS%40systemsadvisers.com  wrote:

 Hi all,

 I'm trying to use the Business Connector to execute my class. I've created
 a dll to call on sql 2005 assembly. But my C# class can't access the axapta
 and give the follow error message on the Ax. Logon statment:

 My class:
 public void Run(string IdIntranet, string Modulo)

 {

 Axapta ax;

 ax = new Axapta();

 ax.Logon(null, null, null, null);

 ax.CallStaticClassMethod(GsInsereDiario_FundoFixo, Run, IdIntranet,
 Modulo);

 ax.Logoff();

 }

 Error Message:
 Microsoft.Dynamics.BusinessConnectorNet.LogonFailedException:

 at Microsoft.Dynamics.BusinessConnectorNet.Axapta.Logon(BC_PROXY_ACCOUNT_INFO*
 pBCProxyAccountInfo, String company, String language, String objectServer,
 String configuration)

 at Microsoft.Dynamics.BusinessConnectorNet.Axapta.Logon(String company,
 String language, String objectServer, String configuration)

 at ClassFundoFixo.FundoFixo.Run(String IdIntranet, String Modulo) in
 C:\Documents and Settings\deselles\My Documents\Visual Studio
 2005\Projects\ClassLibrary1\ClassLibrary1\ClassFundoFixo.cs:line 20

 at TesteFundoFixo.Form1.button1_Click(Object sender, EventArgs e) in
 C:\Documents and Settings\deselles\My Documents\Visual Studio
 2005\Projects\TesteFundoFixo\TesteFundoFixo\Form1.cs:line 25

 Thanks in advance,

 Daniel Selles | Dynamics Ax Developer | Systems Advisers Group Brazil

 Tel: +55 11 3345 5001 Fax: +55 11 5103 0255
 Mob: +55 16 8117 7954 Web: www.systemsadvisers.com/brazil

 Systems Advisers Group: We provide global solutions and services around
 Microsoft Dynamics AX, Microsoft Dynamics GP and SunSystems. As one of the
 fastest growing Microsoft Dynamics partners globally we are currently 1 of
 only3 global power vendors to Microsoft for Microsoft Dynamics services.
 With experience in global implementations in over 47 countries, the group
 has Centres of Excellence in Asia Pac., Europe and Latin America for
 onshore-offshore capabilities to suit the needs of your organisation.

 Offices in: Belgium | Brazil | France | Germany | India | The Netherlands
 | UAE | United Kingdom | USA

 For more information visit us at www.systemsadvisers.com 
 http://www.systemsadvisers.com/ http://www.systemsadvisers.com/  or write 
 [EMAIL PROTECTED] mailto:info%40systemsadvisers.com 
 info%40systemsadvisers.commailto:
 [EMAIL PROTECTED] mailto:info%40systemsadvisers.com  
 info%40systemsadvisers.com

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

 


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



 


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



RES: [development-axapta] Business Connector

2007-05-09 Thread Daniel Selles
Hi Arijit,
 
   When I execute this statement below the error occurs because I can`t use the 
logon or logonAs statement. I have tried many things, change user who logon on 
AX, type another user different, etc. I seems that any thing is not installed 
correctly in my CPU.
 
AX.Logon(null, null, null, null);
 
Thank you,
 
Daniel Selles | Dynamics Ax Developer | Systems Advisers Group Brazil
 
Tel: +55 11 3345 5001Fax: +55 11 5103 0255
Mob: +55 16 8117 7954  Web: www.systemsadvisers.com/brazil
 
Systems Advisers Group: We provide global solutions and services around 
Microsoft Dynamics AX, Microsoft Dynamics GP and SunSystems.  As one of the 
fastest growing Microsoft Dynamics partners globally we are currently 1 of 
only3 global power vendors to Microsoft for Microsoft Dynamics services. With 
experience in global implementations in over 47 countries, the group has 
Centres of Excellence in Asia Pac., Europe and Latin America for 
onshore-offshore capabilities to suit the needs of your organisation.
 
Offices in: Belgium | Brazil | France | Germany | India | The Netherlands | UAE 
| United Kingdom | USA
 
For more information visit us at www.systemsadvisers.com 
http://www.systemsadvisers.com/  or write [EMAIL PROTECTED] mailto:[EMAIL 
PROTECTED] 



De: development-axapta@yahoogroups.com em nome de Arijit Basu
Enviada: qua 9/5/2007 05:19
Para: development-axapta@yahoogroups.com
Assunto: Re: [development-axapta] Business Connector



Hi,
It looks like Authentication Error.In your code, you have loggedon as
Current Windows Account. Is that configured as a user in AX? Try using the
LogonAs() method. I have created a C# code which logs on to AX. See the
code. Its workin fine.

Axapta AX = new Axapta();
try
{
AX.Logon(null, null, null, null);
{
Object AXVersion,AXPOToday,AXPOTodayValue;
Object AXPOLastWeek, AXPOLastWeekValue;
String VendAccountNumberField = AccountNum;
Object VendAccountNum;
String VendNameField = Name;
Object VendName;
String VendCurrencyField = Currency;
Object VendCurrencyNum;
String VendEMailField = EMail;
Object VendEMailNum;

//Top Purchase Order Group which fetches PO Details
groupAXVersion.Visible = true;
AXVersion = AX.CallStaticClassMethod
(AXPurchStatistics,ApplicationVersion);
textAXVersion.Text = AXVersion.ToString();
AXPOToday = AX.CallStaticClassMethod(AXPurchStatistics,
PORaisedToday);
textPOGeneratedToday.Text = AXPOToday.ToString();
AXPOTodayValue =
AX.CallStaticClassMethod(AXPurchStatistics,
PORaisedTodayValue);
textPOGeneratedTodayValue.Text = AXPOTodayValue.ToString
();
AXPOLastWeek =
AX.CallStaticClassMethod(AXPurchStatistics,
PORaisedLastWeek);
textPOGeneratedLastWeek.Text = AXPOLastWeek.ToString();
AXPOLastWeekValue =
AX.CallStaticClassMethod(AXPurchStatistics,
PORaisedLastWeekValue);
textPOGeneratedLastWeekValue.Text =
AXPOLastWeekValue.ToString();
//Lists vendors in the List Control
AxaptaRecord AXRecord = AX.CreateAxaptaRecord
(VendTable);
AXRecord.ExecuteStmt(Select * from %1 );
while (AXRecord.Found)
{
VendAccountNum = AXRecord.get_Field
(VendAccountNumberField);
VendName = AXRecord.get_Field(VendNameField);
VendCurrencyNum = AXRecord.get_Field
(VendCurrencyField);
VendEMailNum = AXRecord.get_Field(VendEMailField);
//Console.WriteLine(VendName);
listVendors.Items.Add(VendAccountNum +  \t
+VendName+  -  + VendCurrencyNum +  -  + VendEMailNum);
AXRecord.Next();
}
AXRecord.Dispose();

}
groupPurchaseOrder.Show();
listVendors.Show();
label7.Show();

}
catch (Exception)
{
MessageBox.Show(Login failed due to unknown error);
}
AX.Logoff();
}

Arijit Basu

On 5/9/07, Daniel Selles [EMAIL PROTECTED] 
mailto:DanielS%40systemsadvisers.com  wrote:

 Hi all,

 I'm trying to use the Business Connector to execute my class. I've created
 a dll to call on sql 2005 assembly. But my C# class can't access the axapta
 and give the follow error message on the Ax. Logon statment:

 My class:
 public void Run(string IdIntranet, string Modulo)

 {

 Axapta ax;

 ax = new Axapta();

 ax.Logon(null, null, null, null);

 ax.CallStaticClassMethod(GsInsereDiario_FundoFixo, Run, IdIntranet,
 Modulo);

 ax.Logoff();

 }

 Error Message:
 Microsoft.Dynamics.BusinessConnectorNet.LogonFailedException:

 at Microsoft.Dynamics.BusinessConnectorNet.Axapta.Logon(BC_PROXY_ACCOUNT_INFO*
 pBCProxyAccountInfo, String company, String language, String objectServer,
 String configuration)

 at Microsoft.Dynamics.BusinessConnectorNet.Axapta.Logon(String company,
 String language, String objectServer, String configuration)

 at ClassFundoFixo.FundoFixo.Run(String IdIntranet, String Modulo) in
 C:\Documents and Settings\deselles\My Documents\Visual Studio
 2005\Projects\ClassLibrary1\ClassLibrary1\ClassFundoFixo.cs:line 20

 at TesteFundoFixo.Form1.button1_Click(Object sender, EventArgs e) in
 C:\Documents and Settings\deselles\My Documents\Visual Studio
 2005\Projects\TesteFundoFixo\TesteFundoFixo\Form1.cs:line 25

 Thanks in advance,

 Daniel Selles

[development-axapta] Payment Transfer

2007-03-29 Thread Daniel Selles
Hi All,
 
I'm trying to do a Payment Transfer (Account Receive/Journal/Payment), 
using the CustVendPaymReconciliationPost class. Anyone know how can I do it?
 
Thanks in advance,
 
Daniel E. Selles | AX Developer| Systems Advisers Group Brazil
[EMAIL PROTECTED]
tel | 55.16.3968.8822  .RP
   55.11.3345.5001  .SP

Escritórios na França, Reino Unido, Holanda, Bélgica, India, Estados Unidos e 
Brasil.

Systems Advisers Group: 
Sendo um dos 3 principais fornecedores globais de serviços Axapta para a 
Microsoft, nós oferecemos a voce soluçoes corporativas de nível internacional 
para o Microsoft Dynamics AX. Reconhecido como um dos parceiros Axapta de mais 
rápido crescimento mundial, através de nossos centros de excelência na Ásia, 
Europa e América Latina nossa atuaçao global proporciona serviços de 
implementaçao e suporte em qualquer local em que sua empresa esteja presente. 
Para mais informaçoes, visite www.systemsadvisers.com.br 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
  ou mande um e-mail para [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 



De: development-axapta@yahoogroups.com em nome de V G
Enviada: qua 28/3/2007 12:14
Para: development-axapta@yahoogroups.com
Cc: Axapta-Knowledge-Village@yahoogroups.com
Assunto: [development-axapta] Range in report



Hi
I have some parameters for the reports(ranges). How is it possible to make
some of the parameters mandotory(user has to fill in those Parameters)
Thanks in advance

VG

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



 


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



RES: RES: [development-axapta] Attach file

2007-03-06 Thread Daniel Selles
Ok Mudit. Thanks for help me.
 
Daniel E. Selles | AX Developer| Systems Advisers Group Brazil
[EMAIL PROTECTED]
tel | 55.16.3968.8822  .RP
   55.11.3345.5001  .SP

Escritórios na França, Reino Unido, Holanda, Bélgica, India, Estados Unidos e 
Brasil.

Systems Advisers Group: 
Sendo um dos 3 principais fornecedores globais de serviços Axapta para a 
Microsoft, nós oferecemos a voce soluçoes corporativas de nível internacional 
para o Microsoft Dynamics AX. Reconhecido como um dos parceiros Axapta de mais 
rápido crescimento mundial, através de nossos centros de excelência na Ásia, 
Europa e América Latina nossa atuaçao global proporciona serviços de 
implementaçao e suporte em qualquer local em que sua empresa esteja presente. 
Para mais informaçoes, visite www.systemsadvisers.com.br 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
  ou mande um e-mail para [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 



De: development-axapta@yahoogroups.com em nome de mudit mittal
Enviada: sex 2/3/2007 13:51
Para: development-axapta@yahoogroups.com
Assunto: Re: RES: [development-axapta] Attach file




Here is what u can do -

1. You can use Resource node in AOT to attach files , you can import/export 
resource node as normal xpos.
2. Document managment have a option to store files in Database also. In that 
case you need to export/import data in Docu* tables.

Regards
Mudit
Daniel Selles [EMAIL PROTECTED] mailto:DanielS%40systemsadvisers.com  wrote:
Hi Anandhi, 

Thanks for the answer. But I want to attach a file (doc, xls, pdf, etc) on a 
project. I can attach a file on a table using the Basic Module = Setup = 
Document Management, however, the file must be stored in a physical directory 
on server. 

* I want to attach that files on a project instead of a table. 
* If it's possible, I would like to store the files (pdf, doc, xls, etc) on any 
AX file in application file instead of a physical directory on server;

Thanks in advance,

Daniel E. Selles | AX Developer| Systems Advisers Group Brazil
[EMAIL PROTECTED] mailto:daniels%40systemsadvisers.com 
tel | 55.16.3968.8822 .RP
55.11.3345.5001 .SP

Escritórios na França, Reino Unido, Holanda, Bélgica, India, Estados Unidos e 
Brasil.

Systems Advisers Group: 
Sendo um dos 3 principais fornecedores globais de serviços Axapta para a 
Microsoft, nós oferecemos a voce soluçoes corporativas de nível internacional 
para o Microsoft Dynamics AX. Reconhecido como um dos parceiros Axapta de mais 
rápido crescimento mundial, através de nossos centros de excelência na Ásia, 
Europa e América Latina nossa atuaçao global proporciona serviços de 
implementaçao e suporte em qualquer local em que sua empresa esteja presente. 
Para mais informaçoes, visite www.systemsadvisers.com.br 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
  ou mande um e-mail para [EMAIL PROTECTED] 
mailto:info%40systemsadvisers.com  mailto:[EMAIL PROTECTED] 
mailto:info%40systemsadvisers.com  



De: development-axapta@yahoogroups.com 
mailto:development-axapta%40yahoogroups.com  em nome de Anandhi Venkatramana
Enviada: seg 19/2/2007 05:30
Para: development-axapta@yahoogroups.com 
mailto:development-axapta%40yahoogroups.com 
Assunto: Re: [development-axapta] Attach file

Hi Daniel,
I think your query is not clear. As u know Project consists of your related AOT 
objects and this can be taken as a separate .xpo file using right click 
'Export' option of a Project.

Daniel Selles [EMAIL PROTECTED] mailto:DanielS%40systemsadvisers.com  
mailto:DanielS%40systemsadvisers.com  wrote:
Hi All,

How can I attach a file in a table or project? The main idea is to send the 
project to customer with the files attached.

Thanks in advance,

Daniel E. Selles | AX Developer| Systems Advisers Group Brazil
[EMAIL PROTECTED] mailto:daniels%40systemsadvisers.com  
mailto:daniels%40systemsadvisers.com 
tel | 55.16.3968.8822 .RP
55.11.3345.5001 .SP

Escritórios na França, Reino Unido, Holanda, Bélgica, India, Estados Unidos e 
Brasil.

Systems Advisers Group: 
Sendo um dos 3 principais fornecedores globais de serviços Axapta para a 
Microsoft, nós oferecemos a voce soluçoes corporativas de nível internacional 
para o Microsoft Dynamics AX. Reconhecido como um dos parceiros Axapta de mais 
rápido crescimento mundial, através de nossos centros de excelência na Ásia, 
Europa e América Latina nossa atuaçao global proporciona serviços de 
implementaçao e suporte em qualquer local em que sua empresa esteja presente. 
Para mais informaçoes, visite www.systemsadvisers.com.br 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
  
https

RES: [development-axapta] Attach file

2007-02-26 Thread Daniel Selles
Hi Anandhi, 
 
Thanks for the answer. But I want to attach a file (doc, xls, pdf, etc) on 
a project. I can attach a file on a table using the Basic Module = Setup = 
Document Management, however, the file must be stored in a physical directory 
on server. 

*   I want to attach that files on a project instead of a table. 
*   If it's possible, I would like to store the files (pdf, doc, xls, etc) 
on any AX file in application file instead of a physical directory on server;

Thanks in advance,
 
Daniel E. Selles | AX Developer| Systems Advisers Group Brazil
[EMAIL PROTECTED]
tel | 55.16.3968.8822  .RP
   55.11.3345.5001  .SP

Escritórios na França, Reino Unido, Holanda, Bélgica, India, Estados Unidos e 
Brasil.

Systems Advisers Group: 
Sendo um dos 3 principais fornecedores globais de serviços Axapta para a 
Microsoft, nós oferecemos a voce soluçoes corporativas de nível internacional 
para o Microsoft Dynamics AX. Reconhecido como um dos parceiros Axapta de mais 
rápido crescimento mundial, através de nossos centros de excelência na Ásia, 
Europa e América Latina nossa atuaçao global proporciona serviços de 
implementaçao e suporte em qualquer local em que sua empresa esteja presente. 
Para mais informaçoes, visite www.systemsadvisers.com.br 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
  ou mande um e-mail para [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 



De: development-axapta@yahoogroups.com em nome de Anandhi Venkatramana
Enviada: seg 19/2/2007 05:30
Para: development-axapta@yahoogroups.com
Assunto: Re: [development-axapta] Attach file



Hi Daniel,
I think your query is not clear. As u know Project consists of your related AOT 
objects and this can be taken as a separate .xpo file using right click 
'Export' option of a Project.


Daniel Selles [EMAIL PROTECTED] mailto:DanielS%40systemsadvisers.com  wrote:
Hi All,

How can I attach a file in a table or project? The main idea is to send the 
project to customer with the files attached.

Thanks in advance,

Daniel E. Selles | AX Developer| Systems Advisers Group Brazil
[EMAIL PROTECTED] mailto:daniels%40systemsadvisers.com 
tel | 55.16.3968.8822 .RP
55.11.3345.5001 .SP

Escritórios na França, Reino Unido, Holanda, Bélgica, India, Estados Unidos e 
Brasil.

Systems Advisers Group: 
Sendo um dos 3 principais fornecedores globais de serviços Axapta para a 
Microsoft, nós oferecemos a voce soluçoes corporativas de nível internacional 
para o Microsoft Dynamics AX. Reconhecido como um dos parceiros Axapta de mais 
rápido crescimento mundial, através de nossos centros de excelência na Ásia, 
Europa e América Latina nossa atuaçao global proporciona serviços de 
implementaçao e suporte em qualquer local em que sua empresa esteja presente. 
Para mais informaçoes, visite www.systemsadvisers.com.br 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
  ou mande um e-mail para [EMAIL PROTECTED] 
mailto:info%40systemsadvisers.com  mailto:[EMAIL PROTECTED] 
mailto:info%40systemsadvisers.com  

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


-
Inbox full of unwanted email? Get leading protection and 1GB storage with All 
New Yahoo! Mail.

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



 


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



[development-axapta] Attach file

2007-02-16 Thread Daniel Selles
 Hi All,

 

How can I attach a file in a table or project? The main idea is to 
send the project to customer with the files attached.

 

Thanks in advance,

 
Daniel E. Selles | AX Developer| Systems Advisers Group Brazil
[EMAIL PROTECTED]
tel | 55.16.3968.8822  .RP
   55.11.3345.5001  .SP

Escritórios na França, Reino Unido, Holanda, Bélgica, India, Estados Unidos e 
Brasil.

Systems Advisers Group: 
Sendo um dos 3 principais fornecedores globais de serviços Axapta para a 
Microsoft, nós oferecemos a voce soluçoes corporativas de nível internacional 
para o Microsoft Dynamics AX. Reconhecido como um dos parceiros Axapta de mais 
rápido crescimento mundial, através de nossos centros de excelência na Ásia, 
Europa e América Latina nossa atuaçao global proporciona serviços de 
implementaçao e suporte em qualquer local em que sua empresa esteja presente. 
Para mais informaçoes, visite www.systemsadvisers.com.br 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
  ou mande um e-mail para [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


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



[development-axapta] Error 100: Cannot create another system semaphore

2007-02-08 Thread Daniel Selles
Christoph,
 
Copy the directory ..\appl\Microsoft Dynamics AX\40\Server\Instance from 
CPU that the instance works to the Server CPU where the error ocurrs. It will 
works!
 
Daniel E. Selles | AX Developer| Systems Advisers Group Brazil
[EMAIL PROTECTED]
tel | 55.16.3968.8822  .RP
   55.11.3345.5001  .SP

Escritórios na França, Reino Unido, Holanda, Bélgica, India, Estados Unidos e 
Brasil.

Systems Advisers Group: 
Sendo um dos 3 principais fornecedores globais de serviços Axapta para a 
Microsoft, nós oferecemos a voce soluçoes corporativas de nível internacional 
para o Microsoft Dynamics AX. Reconhecido como um dos parceiros Axapta de mais 
rápido crescimento mundial, através de nossos centros de excelência na Ásia, 
Europa e América Latina nossa atuaçao global proporciona serviços de 
implementaçao e suporte em qualquer local em que sua empresa esteja presente. 
Para mais informaçoes, visite www.systemsadvisers.com.br 
https://mail.systemsadvisers.com/exchweb/bin/redir.asp?URL=http://www.systemsadvisers.com.br/
  ou mande um e-mail para [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
 
Hi all,

We have 2 identical(drive letters, file systems etc) environments
(although one is a VPC and the other has a physical host). We want to 
move the application and database from the one to the other on a 
regular basis.

We consistently receive the above-mentioned error message when trying 
to start up the AOS.

Any ideas regarding the purpose, type(file, registry etc) and location 
(path, key etc) will be highly appreciated.

Regards,

Christoph Malherbe



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