Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
28 views

Dynamics AX 2009 Business Connector Permissions

In direct mode, what permissions does the Business Connector use? In AX 2009, the Business Connector can run in direct or indirect mode. In indirect mode, you use LogonAs to impersonate an AX user, ...
2
votes
2answers
555 views

Using Dynamics AX's Business Conectors to Generate Sales Orders

So, just like the title says, I need to create an application that gets data from another Database, and shoves it through Dynamics AX's throat. This data comes from a portal, not Enterprise Portal, ...
1
vote
2answers
445 views

Insert dateTime field into Dynamics AX database through business connector

I have been trying to get my C# program to insert records directly into a Dynamics AX 2009 database using the .NET business connector. So far I can easly insert a string, int, int64, enum (NoYes), ...
0
votes
1answer
93 views

Dyanmics AX / AXAPTA .Net Business Connector - How to clear old exceptions

I'm writing a little tool to process AX transactions and have discovered that with each error, my exception output grows. It appears that each time an XppException happens all previous exceptions are ...
0
votes
2answers
143 views

Returning XMLDocument from Ax2009

I have a function in Axapta as follows: static client XMLDocument GetXmlData() { XMLDocument xmlReturnDoc = new XMLDocument(); // Build XML Document return xmlReturnDoc; } This ...
0
votes
1answer
968 views

In Dynamics AX, using the Business Connector, how do you call kernel functions?

I would like to know how to call kernel functions from AX using C# (.Net Business Connector). Specifically, can you call methods like fieldName2Id, tableName2Id and curUserId?
0
votes
2answers
403 views

AX / Axapta: Retrive Custom fields via SQL

I'm creating a rather "dirty" business connector of my own here, and I'm having trouble finding those "custom fields" that have been created. They show up in AX - but in the SQL-database, they are ...
0
votes
1answer
989 views

Microsoft AX and Business Connector / Enterprise Portal / Application Integration Framework

I've been working a while with a project aiming to integrate AX with the Web. The company who delivered AX has chosen to use Business Connector (BC.net) directly on my side of the backend. I've ...