App Extensibility: Process Collections Worklist

 

You can display additional data in the worklist.

Extension Objects

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: CustomerList

Fragment: fscm.col.mycollcalllist.view.extWorkList (contains the extension point)

fscm.col.mycollcalllist.extWorkList

WorklistItem

UDMO_S_WLITEM_INCL

Superclass: CL_UDMO_COLL_WORKLIST_RT_EXT

Method: WORKLISTITEM_GET_ENTITYSET

Activities in the Back End to Include Additional Fields

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:

  • Start of the navigation path Financial Supply Chain Management Next navigation step Collections Management Next navigation step Basic Settings for Collections Management Next navigation step Worklist Next navigation step BAdI: Enhancement of Worklist Items on Creation End of the navigation path

  • Start of the navigation path Financial Supply Chain Management Next navigation step Collections Management Next navigation step Basic Settings for Collections Management Next navigation step Worklist Next navigation step BAdI: Enhancement of Worklist Items on Display End of the navigation path

To use these fields in the app, perform the following steps:

  1. 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.

  2. 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.

Additional Information

For a general description of the extensibility options and procedures, see SAP Help Portal at Start of the navigation path http://help.sap.com/fiori_implementationInformation published on SAP site Next navigation step Extensibility Information for SAP Fiori Next navigation step With SAP NetWeaver 7.5 Next navigation step English Next navigation step Extensibility End of the navigation path.