App Extensibility: Process Collections Worklist
You can display additional data in the worklist.
To include an additional field in the app, the following extension objects are available in various software layers. You have to extend each of these entities according to your specific business needs:
UI | Back End/ABAP | |||
|---|---|---|---|---|
View | Extension Point | Design Time: Gateway Entity | Design Time: Extension Include (in DDIC Structure) | Runtime: Superclass/Method to Be Extended |
View: Fragment: |
|
|
| Superclass: Method: |
You can use extensions in SAP Collections Management to add columns to the worklist in the Process Collections Worklist app.
Adding Customer-Specific Fields to the Worklist
To include the customer-specific fields in SAP Collections Management, use the customer include CI_WORKLIST_ITEM
of the application table UDM_WL_ITEM
.
Furthermore, you can enhance the worklist with transient fields using the customer include CI_WORKLIST_ITEM_ATTR
of the structure UDM_S_WORKLIST_ITEM_ATTR_C
. To fill the customer-specific fields and the transient fields, first implement BAdIs UDM_WL_ITEM_CREATE_C
and UDM_WL_ITEM_DISP_C
.
For more information, see the following Customizing activities:
To use these fields in the app, perform the following steps:
From the customer include CI_WORKLIST_ITEM
, enter the fields that you want to use in the app in the extension include UDMO_S_WLITEM_INCL
.
From the customer include CI_WORKLIST_ITEM_ATTR
, enter the fields that you want to use in the app in the extension include UDMO_S_WLITEM_INCL_TRANS
.
Ensure that you use the same field names.
Add the fields of the extension include UDMO_S_WLITEM_INCL
to the CDS view V_COLL_WL_ITEM
, using the CDS extension concept EXTEND VIEW
. For more information about this extension concept, choose the online help (F1) and search for EXTEND VIEW
.
Based on the extension includes UDMO_S_WLITEM_INCL
and UDMO_S_WLITEM_INCL_TRANS
, additional properties are attached automatically to the entity WorklistItem
. All numbers are treated as measures and are aggregated as totals, other kinds of data become a dimension.
For a general description of the extensibility options and procedures, see SAP Help Portal at .