SAP FKKCLERK_CM_GET_OBJECTIDS_USER Function Module for
FKKCLERK_CM_GET_OBJECTIDS_USER is a standard fkkclerk cm get objectids user 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 fkkclerk cm get objectids user FM, simply by entering the name FKKCLERK_CM_GET_OBJECTIDS_USER into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKKCLERKS
Program Name: SAPLFKKCLERKS
Main Program: SAPLFKKCLERKS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKKCLERK_CM_GET_OBJECTIDS_USER 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 'FKKCLERK_CM_GET_OBJECTIDS_USER'".
EXPORTING
I_USER = "User Name
* I_MODE = 'A' "
* I_WITH_POSITION = 'X' "
* I_WLITYPE = "
IMPORTING
E_CENTER = "
ET_CENTER = "
ET_UNIT = "Groups
E_POSITION = "
E_AGENT = "
ET_COMBI = "
EXCEPTIONS
NOT_UNIQUE = 1 NO_ACTIVE_PLVAR = 2 NO_UNIT = 3 NO_CENTER = 4 NO_MANAGER = 5
IMPORTING Parameters details for FKKCLERK_CM_GET_OBJECTIDS_USER
I_USER - User Name
Data type: UNAMEOptional: No
Call by Reference: Yes
I_MODE -
Data type: CDefault: 'A'
Optional: Yes
Call by Reference: Yes
I_WITH_POSITION -
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
I_WLITYPE -
Data type: WLITYPE_CM_KKOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FKKCLERK_CM_GET_OBJECTIDS_USER
E_CENTER -
Data type: CENTER_KKOptional: No
Call by Reference: Yes
ET_CENTER -
Data type: FKKCLERK_OBJECT12_TOptional: No
Call by Reference: Yes
ET_UNIT - Groups
Data type: FKKCLERK_OBJECT12_TOptional: No
Call by Reference: Yes
E_POSITION -
Data type: POSITION_KKOptional: No
Call by Reference: Yes
E_AGENT -
Data type: AGENT_KKOptional: No
Call by Reference: Yes
ET_COMBI -
Data type: FKKCLERK_CM_COMBI_TOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_UNIQUE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_ACTIVE_PLVAR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_UNIT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_CENTER -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_MANAGER -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FKKCLERK_CM_GET_OBJECTIDS_USER 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_user | TYPE UNAME, " | |||
| lv_e_center | TYPE CENTER_KK, " | |||
| lv_not_unique | TYPE CENTER_KK, " | |||
| lv_i_mode | TYPE C, " 'A' | |||
| lv_et_center | TYPE FKKCLERK_OBJECT12_T, " | |||
| lv_no_active_plvar | TYPE FKKCLERK_OBJECT12_T, " | |||
| lv_et_unit | TYPE FKKCLERK_OBJECT12_T, " | |||
| lv_no_unit | TYPE FKKCLERK_OBJECT12_T, " | |||
| lv_i_with_position | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_i_wlitype | TYPE WLITYPE_CM_KK, " | |||
| lv_no_center | TYPE WLITYPE_CM_KK, " | |||
| lv_e_position | TYPE POSITION_KK, " | |||
| lv_e_agent | TYPE AGENT_KK, " | |||
| lv_no_manager | TYPE AGENT_KK, " | |||
| lv_et_combi | TYPE FKKCLERK_CM_COMBI_T. " |
|   CALL FUNCTION 'FKKCLERK_CM_GET_OBJECTIDS_USER' " |
| EXPORTING | ||
| I_USER | = lv_i_user | |
| I_MODE | = lv_i_mode | |
| I_WITH_POSITION | = lv_i_with_position | |
| I_WLITYPE | = lv_i_wlitype | |
| IMPORTING | ||
| E_CENTER | = lv_e_center | |
| ET_CENTER | = lv_et_center | |
| ET_UNIT | = lv_et_unit | |
| E_POSITION | = lv_e_position | |
| E_AGENT | = lv_e_agent | |
| ET_COMBI | = lv_et_combi | |
| EXCEPTIONS | ||
| NOT_UNIQUE = 1 | ||
| NO_ACTIVE_PLVAR = 2 | ||
| NO_UNIT = 3 | ||
| NO_CENTER = 4 | ||
| NO_MANAGER = 5 | ||
| . " FKKCLERK_CM_GET_OBJECTIDS_USER | ||
ABAP code using 7.40 inline data declarations to call FM FKKCLERK_CM_GET_OBJECTIDS_USER
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.| DATA(ld_i_mode) | = 'A'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_with_position). | ||||
| DATA(ld_i_with_position) | = 'X'. | |||
Search for further information about these or an SAP related objects