WRF_PPW_WORKLIST_EXTEND is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name WRF_PPW_WORKLIST_EXTEND into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
WRF_PPW02
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'WRF_PPW_WORKLIST_EXTEND' "Enrichment of PPW Worklist
EXPORTING
* it_guids = " wrf_ppw_guid_tty Tabelle für GUIDs der wiederaufzubereitenden ABS-Vorschläge
* ir_range = " cl_wrf_ppw_range Price Planning Workbench Selection Criteria
i_datum = " sy-datum Datum zu dem die Konditionen angelegt werden sollen
* i_delete_old_sisters = 'X' " xfeld 'X': zugeh. veraltete Schwesterartikel werden gelöscht
* i_no_budget = SPACE " wrf_ppw_no_budget Do Not Use Planning Figures from Budget
IMPORTING
et_messages = " bal_t_msg Error Messages
e_external_number = " balhdr-extnumber Schlüssels des erzeugten Application logs
. " WRF_PPW_WORKLIST_EXTEND
The ABAP code below is a full code listing to execute function module WRF_PPW_WORKLIST_EXTEND including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_et_messages | TYPE BAL_T_MSG , |
| ld_e_external_number | TYPE BALHDR-EXTNUMBER . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_et_messages | TYPE BAL_T_MSG , |
| ld_it_guids | TYPE WRF_PPW_GUID_TTY , |
| ld_e_external_number | TYPE BALHDR-EXTNUMBER , |
| ld_ir_range | TYPE CL_WRF_PPW_RANGE , |
| ld_i_datum | TYPE SY-DATUM , |
| ld_i_delete_old_sisters | TYPE XFELD , |
| ld_i_no_budget | TYPE WRF_PPW_NO_BUDGET . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name WRF_PPW_WORKLIST_EXTEND or its description.
WRF_PPW_WORKLIST_EXTEND - Enrichment of PPW Worklist WRF_PPW_WL_SEARCH - Find Worklist Entries WRF_PPW_WL_ENRICHMENT - Enrichment of ABS Worklist Entries WRF_PPW_WL_CHANGE - Changing of Worklist Entries WRF_PPW_WF_TBX_PRGNAME_PUT_PBO - Sets Data for Budget Monitor on Header Tabstrip WRF_PPW_WA_POPUP_RELATED_ART - Display and Selection of Related Markdown Proposals