SAP CRS_PROD_HIER_EXTRACT Function Module for Extract hierarchy data from cutomizing tables
CRS_PROD_HIER_EXTRACT is a standard crs prod hier extract SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Extract hierarchy data from cutomizing tables 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 crs prod hier extract FM, simply by entering the name CRS_PROD_HIER_EXTRACT into the relevant SAP transaction such as SE37 or SE38.
Function Group: CRM_PROD_HIER
Program Name: SAPLCRM_PROD_HIER
Main Program: SAPLCRM_PROD_HIER
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CRS_PROD_HIER_EXTRACT 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 'CRS_PROD_HIER_EXTRACT'"Extract hierarchy data from cutomizing tables.
EXPORTING
I_OBJ_NAME = "
I_BAPICRMDH1 = "
IMPORTING
E_STATUS = "
TABLES
TI_TABLES = "
* TI_RELATION = "
* TI_RANGE = "
EXCEPTIONS
WRONG_FIELD = 1
IMPORTING Parameters details for CRS_PROD_HIER_EXTRACT
I_OBJ_NAME -
Data type: BAPICRMOBJ-OBJ_NAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_BAPICRMDH1 -
Data type: BAPICRMDH1Optional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CRS_PROD_HIER_EXTRACT
E_STATUS -
Data type: BAPICRMEXP-STATUS_EXTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CRS_PROD_HIER_EXTRACT
TI_TABLES -
Data type: CRMTABLESOptional: No
Call by Reference: Yes
TI_RELATION -
Data type: CRMRELAOptional: Yes
Call by Reference: Yes
TI_RANGE -
Data type: CRMSELSTROptional: Yes
Call by Reference: Yes
EXCEPTIONS details
WRONG_FIELD -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CRS_PROD_HIER_EXTRACT 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_e_status | TYPE BAPICRMEXP-STATUS_EXT, " | |||
| lt_ti_tables | TYPE STANDARD TABLE OF CRMTABLES, " | |||
| lv_i_obj_name | TYPE BAPICRMOBJ-OBJ_NAME, " | |||
| lv_wrong_field | TYPE BAPICRMOBJ, " | |||
| lt_ti_relation | TYPE STANDARD TABLE OF CRMRELA, " | |||
| lv_i_bapicrmdh1 | TYPE BAPICRMDH1, " | |||
| lt_ti_range | TYPE STANDARD TABLE OF CRMSELSTR. " |
|   CALL FUNCTION 'CRS_PROD_HIER_EXTRACT' "Extract hierarchy data from cutomizing tables |
| EXPORTING | ||
| I_OBJ_NAME | = lv_i_obj_name | |
| I_BAPICRMDH1 | = lv_i_bapicrmdh1 | |
| IMPORTING | ||
| E_STATUS | = lv_e_status | |
| TABLES | ||
| TI_TABLES | = lt_ti_tables | |
| TI_RELATION | = lt_ti_relation | |
| TI_RANGE | = lt_ti_range | |
| EXCEPTIONS | ||
| WRONG_FIELD = 1 | ||
| . " CRS_PROD_HIER_EXTRACT | ||
ABAP code using 7.40 inline data declarations to call FM CRS_PROD_HIER_EXTRACT
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 STATUS_EXT FROM BAPICRMEXP INTO @DATA(ld_e_status). | ||||
| "SELECT single OBJ_NAME FROM BAPICRMOBJ INTO @DATA(ld_i_obj_name). | ||||
Search for further information about these or an SAP related objects