How to load Supplier price list import export form from dashboard?

Hi All,

I’m trying to load SupplierPriceListImportExport form from a dashboard. I tried using processcaller launchform but I’m getting error message that .dll can not found. I looked at the dll in Just decompile and it seems like Epicor calls an internal method to load the form.

Can anyone one please suggest if there is a way to call this form from other entry screens on button click?

Currently, I tried using following code:
ProcessCaller.LaunchForm(this.oTrans, “Erp.UI.SupplierPriceListImportExportForm”, lfo);

Thanks
Mateen

@Ma33n,
You can use DMT to upload supplier price list.
Why dashboard ?

Thanks for the response. It’s part of clients requirement that’s why. Currently they are using DMT.

Develop a custom screen to upload Excel and write adapter code behind the screen.

1 Like

Yeah I guess I have to go down that path. Thanks

Why not use the standard Import/Export feature from the Actions menu in Supplier Price List?

The workflow is designed differently. Client requires a dashboard which will have bunch of other functionality including Price list import. So, I thought if would be quicker if I can call the same form from dashboard as well. Otherwise, I have to reinvent the wheel by recreating the exact same form.