Skip to main content

Posts

Showing posts from September, 2015

Resolved - Workflow error during Order approval in MSD Axapta

Error Details:- Today I faced following error . Workflow instance:xxxxxxx was terminated for the following reason: No .NET Business Connector session could be found.. Due to this workflow work item not created after submission to workflow. Solution :To resolve this issue I did the following. 1.Compile application. 2.Resetting of IIS. 3. Reset Dotnet framework version on IIS if its changed by someone. 4. Recreate business connector configuration from Ax client configuration. This issue happen in Ax 2009 version and issue is now resolved .

Print Report in PDF in EP Site in MSD axapta 2009,4.0

If you are trying to print and display report in Enterprise portal in axapta then you need to add some code in class EPSenddocument on new method. case tablenum(CustPackingSlipJour): mailAddress = SalesTable::find(record.(fieldnum(CustPackingSlipJour,SalesId))).Email; if (record.(fieldnum(CustPackingSlipJour,InvoiceAccount))) StrVarialble1 = record.(fieldnum(CustPackingSlipJour,InvoiceAccount)); else StrVarialble1= record.(fieldnum(CustPackingSlipJour,OrderAccount)); documentTitle = fileName("SalesPKSLP"); reportName = reportstr(SalesPackingSlip); break; Here its example of sales packing slip report print . You need to add new case in switch statement.