SAP BBP_ARCH_OBJECTS_GET Function Module for
BBP_ARCH_OBJECTS_GET is a standard bbp arch objects get 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 arch objects get FM, simply by entering the name BBP_ARCH_OBJECTS_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBP_PD_ARCH_CHECK
Program Name: SAPLBBP_PD_ARCH_CHECK
Main Program: SAPLBBP_PD_ARCH_CHECK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BBP_ARCH_OBJECTS_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_ARCH_OBJECTS_GET'".
EXPORTING
* IV_PROC_TYPE = "
* IV_OBJECT_TYPE = "
IMPORTING
EV_OBJECT_TYPE = "
EV_OBJECT_DESC = "
EV_ARCH_OBJECT = "
TABLES
* ET_FIELDCATS = "
EXCEPTIONS
ARCH_OBJECT_NOT_FOUND = 1 PROCESS_TYPE_UNKOWN = 2
IMPORTING Parameters details for BBP_ARCH_OBJECTS_GET
IV_PROC_TYPE -
Data type: BBPC_PROC_TYPE-PROCESS_TYPEOptional: Yes
Call by Reference: Yes
IV_OBJECT_TYPE -
Data type: CRMD_ORDERADM_H-OBJECT_TYPEOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for BBP_ARCH_OBJECTS_GET
EV_OBJECT_TYPE -
Data type: CRMD_ORDERADM_H-OBJECT_TYPEOptional: No
Call by Reference: Yes
EV_OBJECT_DESC -
Data type: BBPC_PROC_TYPE_T-P_DESCRIPTION_20Optional: No
Call by Reference: Yes
EV_ARCH_OBJECT -
Data type: ARCH_OBJ-OBJECTOptional: No
Call by Reference: Yes
TABLES Parameters details for BBP_ARCH_OBJECTS_GET
ET_FIELDCATS -
Data type: AIND_STR1Optional: Yes
Call by Reference: Yes
EXCEPTIONS details
ARCH_OBJECT_NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
PROCESS_TYPE_UNKOWN -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for BBP_ARCH_OBJECTS_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: | ||||
| lt_et_fieldcats | TYPE STANDARD TABLE OF AIND_STR1, " | |||
| lv_iv_proc_type | TYPE BBPC_PROC_TYPE-PROCESS_TYPE, " | |||
| lv_ev_object_type | TYPE CRMD_ORDERADM_H-OBJECT_TYPE, " | |||
| lv_arch_object_not_found | TYPE CRMD_ORDERADM_H, " | |||
| lv_ev_object_desc | TYPE BBPC_PROC_TYPE_T-P_DESCRIPTION_20, " | |||
| lv_iv_object_type | TYPE CRMD_ORDERADM_H-OBJECT_TYPE, " | |||
| lv_process_type_unkown | TYPE CRMD_ORDERADM_H, " | |||
| lv_ev_arch_object | TYPE ARCH_OBJ-OBJECT. " |
|   CALL FUNCTION 'BBP_ARCH_OBJECTS_GET' " |
| EXPORTING | ||
| IV_PROC_TYPE | = lv_iv_proc_type | |
| IV_OBJECT_TYPE | = lv_iv_object_type | |
| IMPORTING | ||
| EV_OBJECT_TYPE | = lv_ev_object_type | |
| EV_OBJECT_DESC | = lv_ev_object_desc | |
| EV_ARCH_OBJECT | = lv_ev_arch_object | |
| TABLES | ||
| ET_FIELDCATS | = lt_et_fieldcats | |
| EXCEPTIONS | ||
| ARCH_OBJECT_NOT_FOUND = 1 | ||
| PROCESS_TYPE_UNKOWN = 2 | ||
| . " BBP_ARCH_OBJECTS_GET | ||
ABAP code using 7.40 inline data declarations to call FM BBP_ARCH_OBJECTS_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.| "SELECT single PROCESS_TYPE FROM BBPC_PROC_TYPE INTO @DATA(ld_iv_proc_type). | ||||
| "SELECT single OBJECT_TYPE FROM CRMD_ORDERADM_H INTO @DATA(ld_ev_object_type). | ||||
| "SELECT single P_DESCRIPTION_20 FROM BBPC_PROC_TYPE_T INTO @DATA(ld_ev_object_desc). | ||||
| "SELECT single OBJECT_TYPE FROM CRMD_ORDERADM_H INTO @DATA(ld_iv_object_type). | ||||
| "SELECT single OBJECT FROM ARCH_OBJ INTO @DATA(ld_ev_arch_object). | ||||
Search for further information about these or an SAP related objects