SAP AIPJ_SELECTION_UNIQUE_DETERMIN Function Module for
AIPJ_SELECTION_UNIQUE_DETERMIN is a standard aipj selection unique determin 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 aipj selection unique determin FM, simply by entering the name AIPJ_SELECTION_UNIQUE_DETERMIN into the relevant SAP transaction such as SE37 or SE38.
Function Group: AIPJ
Program Name: SAPLAIPJ
Main Program: SAPLAIPJ
Appliation area: A
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function AIPJ_SELECTION_UNIQUE_DETERMIN 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 'AIPJ_SELECTION_UNIQUE_DETERMIN'".
EXPORTING
IT_SEL = "
I_FNAM = "
IMPORTING
E_FLG_SEL_FOUND = "
E_FLG_SEL_UNIQUE = "
E_UNIQUE_VALUE = "
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_SAPLAIPJ_001 Inv. Prog. Drilldowns: Read Texts for User-Defined Characteristics
EXIT_SAPLAIPJ_002 Inv. Prog. Drilldowns: Check Values for User-Defined Characteristics
EXIT_SAPLAIPJ_003 App. Req. Drilldown: Read Texts for User-Defined Characteristics
EXIT_SAPLAIPJ_004 App. Req. Drilldown: Check Values for User-Defined Characteristics
EXIT_SAPLAIPJ_005 IM Summarization: Read Texts for User-Defined Characteristics
EXIT_SAPLAIPJ_006 IM Summarization: Check Values for User-Defined Characteristics
IMPORTING Parameters details for AIPJ_SELECTION_UNIQUE_DETERMIN
IT_SEL -
Data type: IMIS_TYPE_T_CEDSTOptional: No
Call by Reference: No ( called with pass by value option)
I_FNAM -
Data type: CEDST-FNAMOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for AIPJ_SELECTION_UNIQUE_DETERMIN
E_FLG_SEL_FOUND -
Data type: IMIS_TYPE_FLGOptional: No
Call by Reference: No ( called with pass by value option)
E_FLG_SEL_UNIQUE -
Data type: IMIS_TYPE_FLGOptional: No
Call by Reference: No ( called with pass by value option)
E_UNIQUE_VALUE -
Data type: CEDST-LOWOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for AIPJ_SELECTION_UNIQUE_DETERMIN 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_it_sel | TYPE IMIS_TYPE_T_CEDST, " | |||
| lv_e_flg_sel_found | TYPE IMIS_TYPE_FLG, " | |||
| lv_i_fnam | TYPE CEDST-FNAM, " | |||
| lv_e_flg_sel_unique | TYPE IMIS_TYPE_FLG, " | |||
| lv_e_unique_value | TYPE CEDST-LOW. " |
|   CALL FUNCTION 'AIPJ_SELECTION_UNIQUE_DETERMIN' " |
| EXPORTING | ||
| IT_SEL | = lv_it_sel | |
| I_FNAM | = lv_i_fnam | |
| IMPORTING | ||
| E_FLG_SEL_FOUND | = lv_e_flg_sel_found | |
| E_FLG_SEL_UNIQUE | = lv_e_flg_sel_unique | |
| E_UNIQUE_VALUE | = lv_e_unique_value | |
| . " AIPJ_SELECTION_UNIQUE_DETERMIN | ||
ABAP code using 7.40 inline data declarations to call FM AIPJ_SELECTION_UNIQUE_DETERMIN
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 FNAM FROM CEDST INTO @DATA(ld_i_fnam). | ||||
| "SELECT single LOW FROM CEDST INTO @DATA(ld_e_unique_value). | ||||
Search for further information about these or an SAP related objects