SAP FPB_PERS_CHECK_AUTH Function Module for
FPB_PERS_CHECK_AUTH is a standard fpb pers check auth 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 fpb pers check auth FM, simply by entering the name FPB_PERS_CHECK_AUTH into the relevant SAP transaction such as SE37 or SE38.
Function Group: FCOM_PERS
Program Name: SAPLFCOM_PERS
Main Program: SAPLFCOM_PERS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FPB_PERS_CHECK_AUTH 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 'FPB_PERS_CHECK_AUTH'".
EXPORTING
ID_APPLID = "
* IT_CONTEXT_POSTING = "
ID_FIELDNAME = "
* ID_PERSKEYTP = 'U' "
* ID_PERSKEY = "
* ID_DATEFROM = "
* ID_DATETO = "
* ID_FRONTEND = ' ' "
IT_PERS_DATA = "
IT_CONTEXT_DATABASE = "
IMPORTING
ET_WRONG_DATA = "
EXCEPTIONS
KOKRS_NOT_FOUND = 1 NOT_AUTHORIZED = 2
IMPORTING Parameters details for FPB_PERS_CHECK_AUTH
ID_APPLID -
Data type: FPB_APPIDOptional: No
Call by Reference: Yes
IT_CONTEXT_POSTING -
Data type: FPB_T_CONTEXT_DATAOptional: Yes
Call by Reference: Yes
ID_FIELDNAME -
Data type: FIELDNAMEOptional: No
Call by Reference: Yes
ID_PERSKEYTP -
Data type: FPB_KEYTPDefault: 'U'
Optional: Yes
Call by Reference: Yes
ID_PERSKEY -
Data type: FPB_KEYOptional: Yes
Call by Reference: Yes
ID_DATEFROM -
Data type: DATABOptional: Yes
Call by Reference: Yes
ID_DATETO -
Data type: DATBIOptional: Yes
Call by Reference: Yes
ID_FRONTEND -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
IT_PERS_DATA -
Data type: FPB_T_PERS_DATAOptional: No
Call by Reference: Yes
IT_CONTEXT_DATABASE -
Data type: FPB_T_CONTEXT_DATAOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FPB_PERS_CHECK_AUTH
ET_WRONG_DATA -
Data type: FPB_T_ERROROptional: No
Call by Reference: Yes
EXCEPTIONS details
KOKRS_NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
NOT_AUTHORIZED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FPB_PERS_CHECK_AUTH 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_id_applid | TYPE FPB_APPID, " | |||
| lv_et_wrong_data | TYPE FPB_T_ERROR, " | |||
| lv_kokrs_not_found | TYPE FPB_T_ERROR, " | |||
| lv_it_context_posting | TYPE FPB_T_CONTEXT_DATA, " | |||
| lv_id_fieldname | TYPE FIELDNAME, " | |||
| lv_not_authorized | TYPE FIELDNAME, " | |||
| lv_id_perskeytp | TYPE FPB_KEYTP, " 'U' | |||
| lv_id_perskey | TYPE FPB_KEY, " | |||
| lv_id_datefrom | TYPE DATAB, " | |||
| lv_id_dateto | TYPE DATBI, " | |||
| lv_id_frontend | TYPE CHAR1, " SPACE | |||
| lv_it_pers_data | TYPE FPB_T_PERS_DATA, " | |||
| lv_it_context_database | TYPE FPB_T_CONTEXT_DATA. " |
|   CALL FUNCTION 'FPB_PERS_CHECK_AUTH' " |
| EXPORTING | ||
| ID_APPLID | = lv_id_applid | |
| IT_CONTEXT_POSTING | = lv_it_context_posting | |
| ID_FIELDNAME | = lv_id_fieldname | |
| ID_PERSKEYTP | = lv_id_perskeytp | |
| ID_PERSKEY | = lv_id_perskey | |
| ID_DATEFROM | = lv_id_datefrom | |
| ID_DATETO | = lv_id_dateto | |
| ID_FRONTEND | = lv_id_frontend | |
| IT_PERS_DATA | = lv_it_pers_data | |
| IT_CONTEXT_DATABASE | = lv_it_context_database | |
| IMPORTING | ||
| ET_WRONG_DATA | = lv_et_wrong_data | |
| EXCEPTIONS | ||
| KOKRS_NOT_FOUND = 1 | ||
| NOT_AUTHORIZED = 2 | ||
| . " FPB_PERS_CHECK_AUTH | ||
ABAP code using 7.40 inline data declarations to call FM FPB_PERS_CHECK_AUTH
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_id_perskeytp) | = 'U'. | |||
| DATA(ld_id_frontend) | = ' '. | |||
Search for further information about these or an SAP related objects