How to call a non static method from Axapta in Dynamics Report Project.
For static methods I use :
AxaptaWrapper Ax = SessionManager.GetSession();
string customerName = "";
customerName = (string)Ax.CallStaticClassMethod("CustTableSSRSClass", "testMethodSSRS",accountNum);
return customerName;
And how to call methods from Tables?
For example in Axapta exists method bankAccountNum in CustTable
display BankAccount bankAccountNum()
{
return CustBankAccount::find(this.AccountNum, this.BankAccount).AccountNum;
}
How to call this method? and what will be "this" here, if I call this method from Dynamics Report Project?
*This post is locked for comments
I have the same question (0)