SAP BBP_PD_CONV_BBPKEY_TO_OBJKEY Function Module for
BBP_PD_CONV_BBPKEY_TO_OBJKEY is a standard bbp pd conv bbpkey to objkey SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 pd conv bbpkey to objkey FM, simply by entering the name BBP_PD_CONV_BBPKEY_TO_OBJKEY into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBP_PDH_OR
Program Name: SAPLBBP_PDH_OR
Main Program: SAPLBBP_PDH_OR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BBP_PD_CONV_BBPKEY_TO_OBJKEY 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_PD_CONV_BBPKEY_TO_OBJKEY'".
EXPORTING
* I_GUID = "
* I_OBJECT_ID = "
* I_OBJ_ITEM = "
* I_PACKNO = "
* I_INTROW = "
* I_SRVMAPKEY = "
IMPORTING
E_OBJKEY = "
IMPORTING Parameters details for BBP_PD_CONV_BBPKEY_TO_OBJKEY
I_GUID -
Data type: BBP_GUIDOptional: Yes
Call by Reference: Yes
I_OBJECT_ID -
Data type: BE_OBJECT_IDOptional: Yes
Call by Reference: Yes
I_OBJ_ITEM -
Data type: BE_OBJ_ITEMOptional: Yes
Call by Reference: Yes
I_PACKNO -
Data type: PACKNOOptional: Yes
Call by Reference: Yes
I_INTROW -
Data type: BBP_INTROWOptional: Yes
Call by Reference: Yes
I_SRVMAPKEY -
Data type: BBP_SRVMAPKEYOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for BBP_PD_CONV_BBPKEY_TO_OBJKEY
E_OBJKEY -
Data type: SWO_TYPEIDOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BBP_PD_CONV_BBPKEY_TO_OBJKEY 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_i_guid | TYPE BBP_GUID, " | |||
| lv_e_objkey | TYPE SWO_TYPEID, " | |||
| lv_i_object_id | TYPE BE_OBJECT_ID, " | |||
| lv_i_obj_item | TYPE BE_OBJ_ITEM, " | |||
| lv_i_packno | TYPE PACKNO, " | |||
| lv_i_introw | TYPE BBP_INTROW, " | |||
| lv_i_srvmapkey | TYPE BBP_SRVMAPKEY. " |
|   CALL FUNCTION 'BBP_PD_CONV_BBPKEY_TO_OBJKEY' " |
| EXPORTING | ||
| I_GUID | = lv_i_guid | |
| I_OBJECT_ID | = lv_i_object_id | |
| I_OBJ_ITEM | = lv_i_obj_item | |
| I_PACKNO | = lv_i_packno | |
| I_INTROW | = lv_i_introw | |
| I_SRVMAPKEY | = lv_i_srvmapkey | |
| IMPORTING | ||
| E_OBJKEY | = lv_e_objkey | |
| . " BBP_PD_CONV_BBPKEY_TO_OBJKEY | ||
ABAP code using 7.40 inline data declarations to call FM BBP_PD_CONV_BBPKEY_TO_OBJKEY
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.Search for further information about these or an SAP related objects