Tagged Questions
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, ...
0
votes
1answer
94 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
144 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
969 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 ...