SAP BBP_WFL_DIN_APP_OBJ_GET Function Module for Füllen der Tabelle für das Approval-Objekt
BBP_WFL_DIN_APP_OBJ_GET is a standard bbp wfl din app obj get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Füllen der Tabelle für das Approval-Objekt processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for bbp wfl din app obj get FM, simply by entering the name BBP_WFL_DIN_APP_OBJ_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBP_PDH_WFL
Program Name: SAPLBBP_PDH_WFL
Main Program: SAPLBBP_PDH_WFL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BBP_WFL_DIN_APP_OBJ_GET pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'BBP_WFL_DIN_APP_OBJ_GET'"Füllen der Tabelle für das Approval-Objekt.
EXPORTING
SC_GUID = "Globally Unique Identifier
CRITERION1 = "Gruppiereungskriterium im Genehmigungsobjekt
* CRITERION2 = '' "Gruppiereungskriterium im Genehmigungsobjekt
* CRITERION3 = '' "Gruppiereungskriterium im Genehmigungsobjekt
* VALUE1 = '' "Ausprägung des Gruppierungskriteriums
* VALUE2 = '' "Ausprägung des Gruppierungskriteriums
* VALUE3 = '' "Ausprägung des Gruppierungskriteriums
IMPORTING
APPROVAL_OBJ_GUID = "Globally Unique Identifier in 32-Char-Darstellung
IS_NEW_APPROVAL_OBJECT = "boolsche Variable (X=true, -=false, space=unknown)
TABLES
ITEM_APP_OBJ = "Struktur für positionsbasierte Genehmigungsobjekte
IMPORTING Parameters details for BBP_WFL_DIN_APP_OBJ_GET
SC_GUID - Globally Unique Identifier
Data type: BBP_GUIDOptional: No
Call by Reference: No ( called with pass by value option)
CRITERION1 - Gruppiereungskriterium im Genehmigungsobjekt
Data type: BBP_WFL_APP_CRITERIONOptional: No
Call by Reference: No ( called with pass by value option)
CRITERION2 - Gruppiereungskriterium im Genehmigungsobjekt
Data type: BBP_WFL_APP_CRITERIONDefault: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
CRITERION3 - Gruppiereungskriterium im Genehmigungsobjekt
Data type: BBP_WFL_APP_CRITERIONDefault: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
VALUE1 - Ausprägung des Gruppierungskriteriums
Data type: BBP_WFL_APP_PROPERTYDefault: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
VALUE2 - Ausprägung des Gruppierungskriteriums
Data type: BBP_WFL_APP_PROPERTYDefault: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
VALUE3 - Ausprägung des Gruppierungskriteriums
Data type: BBP_WFL_APP_PROPERTYDefault: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for BBP_WFL_DIN_APP_OBJ_GET
APPROVAL_OBJ_GUID - Globally Unique Identifier in 32-Char-Darstellung
Data type: BBP_GUID_32Optional: No
Call by Reference: Yes
IS_NEW_APPROVAL_OBJECT - boolsche Variable (X=true, -=false, space=unknown)
Data type: BOOLEANOptional: No
Call by Reference: Yes
TABLES Parameters details for BBP_WFL_DIN_APP_OBJ_GET
ITEM_APP_OBJ - Struktur für positionsbasierte Genehmigungsobjekte
Data type: BBPS_WFL_ITEM_APPROVAL_OBJOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BBP_WFL_DIN_APP_OBJ_GET Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_sc_guid | TYPE BBP_GUID, " | |||
| lt_item_app_obj | TYPE STANDARD TABLE OF BBPS_WFL_ITEM_APPROVAL_OBJ, " | |||
| lv_approval_obj_guid | TYPE BBP_GUID_32, " | |||
| lv_criterion1 | TYPE BBP_WFL_APP_CRITERION, " | |||
| lv_is_new_approval_object | TYPE BOOLEAN, " | |||
| lv_criterion2 | TYPE BBP_WFL_APP_CRITERION, " '' | |||
| lv_criterion3 | TYPE BBP_WFL_APP_CRITERION, " '' | |||
| lv_value1 | TYPE BBP_WFL_APP_PROPERTY, " '' | |||
| lv_value2 | TYPE BBP_WFL_APP_PROPERTY, " '' | |||
| lv_value3 | TYPE BBP_WFL_APP_PROPERTY. " '' |
|   CALL FUNCTION 'BBP_WFL_DIN_APP_OBJ_GET' "Füllen der Tabelle für das Approval-Objekt |
| EXPORTING | ||
| SC_GUID | = lv_sc_guid | |
| CRITERION1 | = lv_criterion1 | |
| CRITERION2 | = lv_criterion2 | |
| CRITERION3 | = lv_criterion3 | |
| VALUE1 | = lv_value1 | |
| VALUE2 | = lv_value2 | |
| VALUE3 | = lv_value3 | |
| IMPORTING | ||
| APPROVAL_OBJ_GUID | = lv_approval_obj_guid | |
| IS_NEW_APPROVAL_OBJECT | = lv_is_new_approval_object | |
| TABLES | ||
| ITEM_APP_OBJ | = lt_item_app_obj | |
| . " BBP_WFL_DIN_APP_OBJ_GET | ||
ABAP code using 7.40 inline data declarations to call FM BBP_WFL_DIN_APP_OBJ_GET
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_criterion2) | = ''. | |||
| DATA(ld_criterion3) | = ''. | |||
| DATA(ld_value1) | = ''. | |||
| DATA(ld_value2) | = ''. | |||
| DATA(ld_value3) | = ''. | |||
Search for further information about these or an SAP related objects