SAP ANALYZE_REFERENCE_CONFIG Function Module for NOTRANSL: Analyse auf Konfigurations-Referenz in Objektliste
ANALYZE_REFERENCE_CONFIG is a standard analyze reference config SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Analyse auf Konfigurations-Referenz in Objektliste 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 analyze reference config FM, simply by entering the name ANALYZE_REFERENCE_CONFIG into the relevant SAP transaction such as SE37 or SE38.
Function Group: IPW1
Program Name: SAPLIPW1
Main Program: SAPLIPW1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ANALYZE_REFERENCE_CONFIG 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 'ANALYZE_REFERENCE_CONFIG'"NOTRANSL: Analyse auf Konfigurations-Referenz in Objektliste.
EXPORTING
KEY_DATA = "
CHECK_CUOBJ = "
EXCEPTIONS
NO_REFERENCE = 1 KEY_PARAMETER_ERROR = 2 NO_SUPPORTED_ACCESS = 3 NO_DATA_FOUND = 4
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLIPW1_001 Automatic Serial Number Assignment
EXIT_SAPLIPW1_002 Check on Copying Object List
EXIT_SAPLIPW1_003 Serial Numbers, User Exit for Additional Fields
EXIT_SAPLIPW1_004 Serial Numbers, User Exit After Exiting the Serial Screen
EXIT_SAPLIPW1_008 Check of Serial Number - Character String
IMPORTING Parameters details for ANALYZE_REFERENCE_CONFIG
KEY_DATA -
Data type: RSEROBOptional: No
Call by Reference: Yes
CHECK_CUOBJ -
Data type: EQUI-CUOBJOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_REFERENCE -
Data type:Optional: No
Call by Reference: Yes
KEY_PARAMETER_ERROR -
Data type:Optional: No
Call by Reference: Yes
NO_SUPPORTED_ACCESS -
Data type:Optional: No
Call by Reference: Yes
NO_DATA_FOUND - No data available
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ANALYZE_REFERENCE_CONFIG 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_key_data | TYPE RSEROB, " | |||
| lv_no_reference | TYPE RSEROB, " | |||
| lv_check_cuobj | TYPE EQUI-CUOBJ, " | |||
| lv_key_parameter_error | TYPE EQUI, " | |||
| lv_no_supported_access | TYPE EQUI, " | |||
| lv_no_data_found | TYPE EQUI. " |
|   CALL FUNCTION 'ANALYZE_REFERENCE_CONFIG' "NOTRANSL: Analyse auf Konfigurations-Referenz in Objektliste |
| EXPORTING | ||
| KEY_DATA | = lv_key_data | |
| CHECK_CUOBJ | = lv_check_cuobj | |
| EXCEPTIONS | ||
| NO_REFERENCE = 1 | ||
| KEY_PARAMETER_ERROR = 2 | ||
| NO_SUPPORTED_ACCESS = 3 | ||
| NO_DATA_FOUND = 4 | ||
| . " ANALYZE_REFERENCE_CONFIG | ||
ABAP code using 7.40 inline data declarations to call FM ANALYZE_REFERENCE_CONFIG
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 CUOBJ FROM EQUI INTO @DATA(ld_check_cuobj). | ||||
Search for further information about these or an SAP related objects