Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I use report objects if Epicor does not support the creation of Adapters for reports?

Status
Not open for further replies.

n_23

Programmer
Aug 31, 2016
1
0
0
US
I want to say:

[pre]
PrintReportAdapter = new PrintReportAdapter(args);
PrintReportAdapter.PrintARInvoice(args);
[/pre]
But all I have to work with is a BO:

[pre]
boPrintReport
[/pre]
ERP10 discourages the direct use of BOs. I cannot say:

[pre]
boPrintReport = new PrintReportImpl(args);
[/pre]
In ERP10, arguments for an Impl cannot simply be passed a connection pool as in ERP8 like this:

[pre]
boPrintReport = new Epicor.Mfg.BO.MyPrintReport(boSession.ConnectionPool);
[/pre]
What can I do?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top