Display Case Number in Fulfilment Workbench and Material Request Queue

Hi,
I need to display case number attached to sales order in Fulfillment Workbench and Material Request Queue for specific order

Any idea on how to accomplish this?

Have you performed a trace to analyze which business objects (BO) and methods are being called?

Determining which method is called via BO will help you design a BPM that can be used to populate a User Define field.

You will also need to know that to look-up the case number you will need to determine how the SO Header table is linked to the HDCase table.

The OrderNum table is link to the HDCaseHed table in this way:

Use EpicorERPTest
select OrderNum, HDCaseNum from Erp.OrderHed
where OrderNum != 0

You can use LINQ to lookup the table column then populate the UD field.

Another option is to use a Foreign Key sub-data view.