SAP K_RACCT_VALUES_GET Function Module for









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

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



Function K_RACCT_VALUES_GET 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 'K_RACCT_VALUES_GET'"
EXPORTING
* I_KOKRS = "
* I_KATYP_TO = ' ' "
* I_MSEHI = ' ' "
* I_TEXTFLAG = ' ' "
* I_BUFFER_TYPE = ' ' "
* I_BUKRS = "
* I_SETNAME = "
* I_RACCT_FROM = "
* I_RACCT_TO = "
* I_SPRAS = "
* I_PDATUM = ' ' "
* I_XBILK = ' ' "
* I_KATYP_FROM = ' ' "

TABLES
T_KONTO = "
* T_SELOPT = "

EXCEPTIONS
NO_VALUES_FOUND = 1
.



IMPORTING Parameters details for K_RACCT_VALUES_GET

I_KOKRS -

Data type: GLPCT-KOKRS
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_KATYP_TO -

Data type: CSKB-KATYP
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_MSEHI -

Data type: CSKB-MSEHI
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TEXTFLAG -

Data type: SY-DATAR
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BUFFER_TYPE -

Data type: SY-FTYPE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BUKRS -

Data type: GLPCA-RBUKRS
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_SETNAME -

Data type: RKMAH-HNAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_RACCT_FROM -

Data type: GLPCT-RACCT
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_RACCT_TO -

Data type: GLPCT-RACCT
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_SPRAS -

Data type: CSKU-SPRAS
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PDATUM -

Data type: CSKB-DATBI
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XBILK -

Data type: SKA1-XBILK
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_KATYP_FROM -

Data type: CSKB-KATYP
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for K_RACCT_VALUES_GET

T_KONTO -

Data type: RPCAK
Optional: No
Call by Reference: No ( called with pass by value option)

T_SELOPT -

Data type: PC22_T_ACCT_RANGE
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

NO_VALUES_FOUND -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for K_RACCT_VALUES_GET 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_kokrs  TYPE GLPCT-KOKRS, "   
lt_t_konto  TYPE STANDARD TABLE OF RPCAK, "   
lv_no_values_found  TYPE RPCAK, "   
lv_i_katyp_to  TYPE CSKB-KATYP, "   SPACE
lv_i_msehi  TYPE CSKB-MSEHI, "   SPACE
lv_i_textflag  TYPE SY-DATAR, "   SPACE
lv_i_buffer_type  TYPE SY-FTYPE, "   SPACE
lv_i_bukrs  TYPE GLPCA-RBUKRS, "   
lt_t_selopt  TYPE STANDARD TABLE OF PC22_T_ACCT_RANGE, "   
lv_i_setname  TYPE RKMAH-HNAME, "   
lv_i_racct_from  TYPE GLPCT-RACCT, "   
lv_i_racct_to  TYPE GLPCT-RACCT, "   
lv_i_spras  TYPE CSKU-SPRAS, "   
lv_i_pdatum  TYPE CSKB-DATBI, "   SPACE
lv_i_xbilk  TYPE SKA1-XBILK, "   SPACE
lv_i_katyp_from  TYPE CSKB-KATYP. "   SPACE

  CALL FUNCTION 'K_RACCT_VALUES_GET'  "
    EXPORTING
         I_KOKRS = lv_i_kokrs
         I_KATYP_TO = lv_i_katyp_to
         I_MSEHI = lv_i_msehi
         I_TEXTFLAG = lv_i_textflag
         I_BUFFER_TYPE = lv_i_buffer_type
         I_BUKRS = lv_i_bukrs
         I_SETNAME = lv_i_setname
         I_RACCT_FROM = lv_i_racct_from
         I_RACCT_TO = lv_i_racct_to
         I_SPRAS = lv_i_spras
         I_PDATUM = lv_i_pdatum
         I_XBILK = lv_i_xbilk
         I_KATYP_FROM = lv_i_katyp_from
    TABLES
         T_KONTO = lt_t_konto
         T_SELOPT = lt_t_selopt
    EXCEPTIONS
        NO_VALUES_FOUND = 1
. " K_RACCT_VALUES_GET




ABAP code using 7.40 inline data declarations to call FM K_RACCT_VALUES_GET

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 KOKRS FROM GLPCT INTO @DATA(ld_i_kokrs).
 
 
 
"SELECT single KATYP FROM CSKB INTO @DATA(ld_i_katyp_to).
DATA(ld_i_katyp_to) = ' '.
 
"SELECT single MSEHI FROM CSKB INTO @DATA(ld_i_msehi).
DATA(ld_i_msehi) = ' '.
 
"SELECT single DATAR FROM SY INTO @DATA(ld_i_textflag).
DATA(ld_i_textflag) = ' '.
 
"SELECT single FTYPE FROM SY INTO @DATA(ld_i_buffer_type).
DATA(ld_i_buffer_type) = ' '.
 
"SELECT single RBUKRS FROM GLPCA INTO @DATA(ld_i_bukrs).
 
 
"SELECT single HNAME FROM RKMAH INTO @DATA(ld_i_setname).
 
"SELECT single RACCT FROM GLPCT INTO @DATA(ld_i_racct_from).
 
"SELECT single RACCT FROM GLPCT INTO @DATA(ld_i_racct_to).
 
"SELECT single SPRAS FROM CSKU INTO @DATA(ld_i_spras).
 
"SELECT single DATBI FROM CSKB INTO @DATA(ld_i_pdatum).
DATA(ld_i_pdatum) = ' '.
 
"SELECT single XBILK FROM SKA1 INTO @DATA(ld_i_xbilk).
DATA(ld_i_xbilk) = ' '.
 
"SELECT single KATYP FROM CSKB INTO @DATA(ld_i_katyp_from).
DATA(ld_i_katyp_from) = ' '.
 


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!