Skip to main content

Resolved :The Web Part page was not created correctly on the site

Problem:
While deploying EP form getting business connector error.
Error  “The Web Part page  was not created correctly on the site. No .NET Business Connector session could be found.”
. No .NET Business Connector session could be found

 deploying EP form


Solution :

You can  try this and check.

1. Uncheck the Anonymous user of "IIS \ Directory Security \ Authentication and access control "
2. Add the BCProxy user to the local Administration group on the IIS server.
3. Then restart IIS and AX.

Popular posts from this blog

X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )

Below is sample X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )      Args                       args = new Args();     CustInvoiceJour            custInvoiceJour;     SalesInvoiceJournalPrint   salesInvoiceJournalPrint;       select firstonly custInvoiceJour where custInvoiceJour.SalesId != '';       // Add record to be printed.     // In order to have the context table we need to set args.record().     args.record(custInvoiceJour);       salesInvoiceController = new SalesInvoiceController();     salesInvoiceController.parmReportName(         PrintMgmtDocType::construct(PrintMgmtDocumentType::SalesOrderInvoice).getDefaultReportFormat());       salesInvoiceContract = salesInvoiceController.parmReportContrac...