SAP RKE_POST_CB_ACT_DATA_S001 Function Module for









RKE_POST_CB_ACT_DATA_S001 is a standard rke post cb act data s001 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 rke post cb act data s001 FM, simply by entering the name RKE_POST_CB_ACT_DATA_S001 into the relevant SAP transaction such as SE37 or SE38.

Function Group: KEEX_BCT
Program Name: SAPLKEEX_BCT
Main Program: SAPLKEEX_BCT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled + BasXML supported
Update:



Function RKE_POST_CB_ACT_DATA_S001 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 'RKE_POST_CB_ACT_DATA_S001'"
EXPORTING
* I_TESTRUN = 'X' "
* I_DERIVE = 'X' "
* I_VALUATE = 'X' "
* I_CHECK_CHARACTERISTICS = 'X' "
* I_CHECK_ORG_UNITS = 'X' "
* I_ADD_MISSING_LEDGER = 'X' "
* I_TRACE_ITEM = 0 "

TABLES
XT_CE1 = "
ET_ERROR = "

EXCEPTIONS
ERROR_OCCURED = 1
.



IMPORTING Parameters details for RKE_POST_CB_ACT_DATA_S001

I_TESTRUN -

Data type: FLAG
Default: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)

I_DERIVE -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VALUATE -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CHECK_CHARACTERISTICS -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CHECK_ORG_UNITS -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ADD_MISSING_LEDGER -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TRACE_ITEM -

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

TABLES Parameters details for RKE_POST_CB_ACT_DATA_S001

XT_CE1 -

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

ET_ERROR -

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

EXCEPTIONS details

ERROR_OCCURED -

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

Copy and paste ABAP code example for RKE_POST_CB_ACT_DATA_S001 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:
lt_xt_ce1  TYPE STANDARD TABLE OF CE1S001, "   
lv_i_testrun  TYPE FLAG, "   'X'
lv_error_occured  TYPE FLAG, "   
lt_et_error  TYPE STANDARD TABLE OF RKE_YS_POST_LOG, "   
lv_i_derive  TYPE FLAG, "   'X'
lv_i_valuate  TYPE FLAG, "   'X'
lv_i_check_characteristics  TYPE FLAG, "   'X'
lv_i_check_org_units  TYPE FLAG, "   'X'
lv_i_add_missing_ledger  TYPE FLAG, "   'X'
lv_i_trace_item  TYPE INT4. "   0

  CALL FUNCTION 'RKE_POST_CB_ACT_DATA_S001'  "
    EXPORTING
         I_TESTRUN = lv_i_testrun
         I_DERIVE = lv_i_derive
         I_VALUATE = lv_i_valuate
         I_CHECK_CHARACTERISTICS = lv_i_check_characteristics
         I_CHECK_ORG_UNITS = lv_i_check_org_units
         I_ADD_MISSING_LEDGER = lv_i_add_missing_ledger
         I_TRACE_ITEM = lv_i_trace_item
    TABLES
         XT_CE1 = lt_xt_ce1
         ET_ERROR = lt_et_error
    EXCEPTIONS
        ERROR_OCCURED = 1
. " RKE_POST_CB_ACT_DATA_S001




ABAP code using 7.40 inline data declarations to call FM RKE_POST_CB_ACT_DATA_S001

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_testrun) = 'X'.
 
 
 
DATA(ld_i_derive) = 'X'.
 
DATA(ld_i_valuate) = 'X'.
 
DATA(ld_i_check_characteristics) = 'X'.
 
DATA(ld_i_check_org_units) = 'X'.
 
DATA(ld_i_add_missing_ledger) = 'X'.
 
 


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!