SAP CKAPP03_GET_PERS Function Module for









CKAPP03_GET_PERS is a standard ckapp03 get pers 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 ckapp03 get pers FM, simply by entering the name CKAPP03_GET_PERS into the relevant SAP transaction such as SE37 or SE38.

Function Group: CKAPP03PERS
Program Name: SAPLCKAPP03PERS
Main Program: SAPLCKAPP03PERS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CKAPP03_GET_PERS 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 'CKAPP03_GET_PERS'"
EXPORTING
I_USER = "

CHANGING
C_MAXSEL = "

TABLES
CT_SERNAM = "
CT_SAUART = "
CT_SVBELN = "
CT_SMATNR = "
CT_SWERKS = "
CT_SKALVAR = "
CT_SPRCTR = "
CT_SZSCHL_K = "
CT_SKALSM_K = "
CT_SERDAT = "
CT_SGSBER = "
CT_SSPART = "
CT_SVKBUR = "
CT_SVKGRP = "
CT_SVKORG = "
CT_SVTWEG = "
CT_SKUNNR = "
.



IMPORTING Parameters details for CKAPP03_GET_PERS

I_USER -

Data type: SY-UNAME
Optional: No
Call by Reference: Yes

CHANGING Parameters details for CKAPP03_GET_PERS

C_MAXSEL -

Data type: SY-TABIX
Optional: No
Call by Reference: Yes

TABLES Parameters details for CKAPP03_GET_PERS

CT_SERNAM -

Data type:
Optional: No
Call by Reference: Yes

CT_SAUART -

Data type:
Optional: No
Call by Reference: Yes

CT_SVBELN -

Data type:
Optional: No
Call by Reference: Yes

CT_SMATNR -

Data type:
Optional: No
Call by Reference: Yes

CT_SWERKS -

Data type:
Optional: No
Call by Reference: Yes

CT_SKALVAR -

Data type:
Optional: No
Call by Reference: Yes

CT_SPRCTR -

Data type:
Optional: No
Call by Reference: Yes

CT_SZSCHL_K -

Data type:
Optional: No
Call by Reference: Yes

CT_SKALSM_K -

Data type:
Optional: No
Call by Reference: Yes

CT_SERDAT -

Data type:
Optional: No
Call by Reference: Yes

CT_SGSBER -

Data type:
Optional: No
Call by Reference: Yes

CT_SSPART -

Data type:
Optional: No
Call by Reference: Yes

CT_SVKBUR -

Data type:
Optional: No
Call by Reference: Yes

CT_SVKGRP -

Data type:
Optional: No
Call by Reference: Yes

CT_SVKORG -

Data type:
Optional: No
Call by Reference: Yes

CT_SVTWEG -

Data type:
Optional: No
Call by Reference: Yes

CT_SKUNNR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CKAPP03_GET_PERS 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 SY-UNAME, "   
lv_c_maxsel  TYPE SY-TABIX, "   
lt_ct_sernam  TYPE STANDARD TABLE OF SY, "   
lt_ct_sauart  TYPE STANDARD TABLE OF SY, "   
lt_ct_svbeln  TYPE STANDARD TABLE OF SY, "   
lt_ct_smatnr  TYPE STANDARD TABLE OF SY, "   
lt_ct_swerks  TYPE STANDARD TABLE OF SY, "   
lt_ct_skalvar  TYPE STANDARD TABLE OF SY, "   
lt_ct_sprctr  TYPE STANDARD TABLE OF SY, "   
lt_ct_szschl_k  TYPE STANDARD TABLE OF SY, "   
lt_ct_skalsm_k  TYPE STANDARD TABLE OF SY, "   
lt_ct_serdat  TYPE STANDARD TABLE OF SY, "   
lt_ct_sgsber  TYPE STANDARD TABLE OF SY, "   
lt_ct_sspart  TYPE STANDARD TABLE OF SY, "   
lt_ct_svkbur  TYPE STANDARD TABLE OF SY, "   
lt_ct_svkgrp  TYPE STANDARD TABLE OF SY, "   
lt_ct_svkorg  TYPE STANDARD TABLE OF SY, "   
lt_ct_svtweg  TYPE STANDARD TABLE OF SY, "   
lt_ct_skunnr  TYPE STANDARD TABLE OF SY. "   

  CALL FUNCTION 'CKAPP03_GET_PERS'  "
    EXPORTING
         I_USER = lv_i_user
    CHANGING
         C_MAXSEL = lv_c_maxsel
    TABLES
         CT_SERNAM = lt_ct_sernam
         CT_SAUART = lt_ct_sauart
         CT_SVBELN = lt_ct_svbeln
         CT_SMATNR = lt_ct_smatnr
         CT_SWERKS = lt_ct_swerks
         CT_SKALVAR = lt_ct_skaltar
         CT_SPRCTR = lt_ct_sprctr
         CT_SZSCHL_K = lt_ct_szschl_k
         CT_SKALSM_K = lt_ct_skalsm_k
         CT_SERDAT = lt_ct_serdat
         CT_SGSBER = lt_ct_sgsber
         CT_SSPART = lt_ct_sspart
         CT_SVKBUR = lt_ct_svkbur
         CT_SVKGRP = lt_ct_svkgrp
         CT_SVKORG = lt_ct_svkorg
         CT_SVTWEG = lt_ct_svtweg
         CT_SKUNNR = lt_ct_skunnr
. " CKAPP03_GET_PERS




ABAP code using 7.40 inline data declarations to call FM CKAPP03_GET_PERS

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 UNAME FROM SY INTO @DATA(ld_i_user).
 
"SELECT single TABIX FROM SY INTO @DATA(ld_c_maxsel).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!