SAP RP_ARCHIVE_CHECK_CALC_TIME_TRA Function Module for









RP_ARCHIVE_CHECK_CALC_TIME_TRA is a standard rp archive check calc time tra 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 rp archive check calc time tra FM, simply by entering the name RP_ARCHIVE_CHECK_CALC_TIME_TRA into the relevant SAP transaction such as SE37 or SE38.

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



Function RP_ARCHIVE_CHECK_CALC_TIME_TRA 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 'RP_ARCHIVE_CHECK_CALC_TIME_TRA'"
EXPORTING
PRTRAVEL = "
ARCALC = "
ARTIME = "
ARTRAVEL = "

IMPORTING
ERROR_TYPE = "
ERROR_NUMBER = "
PRCALC_CHANGED = "
PRTIME_CHANGED = "

CHANGING
PRCALC = "
PRTIME = "
.



IMPORTING Parameters details for RP_ARCHIVE_CHECK_CALC_TIME_TRA

PRTRAVEL -

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

ARCALC -

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

ARTIME -

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

ARTRAVEL -

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

EXPORTING Parameters details for RP_ARCHIVE_CHECK_CALC_TIME_TRA

ERROR_TYPE -

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

ERROR_NUMBER -

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

PRCALC_CHANGED -

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

PRTIME_CHANGED -

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

CHANGING Parameters details for RP_ARCHIVE_CHECK_CALC_TIME_TRA

PRCALC -

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

PRTIME -

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

Copy and paste ABAP code example for RP_ARCHIVE_CHECK_CALC_TIME_TRA 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_prcalc  TYPE T51B2-PR_CALC, "   
lv_prtravel  TYPE T51B2-PR_TRAV, "   
lv_error_type  TYPE C, "   
lv_arcalc  TYPE T51B2-AR_CALC, "   
lv_prtime  TYPE T51B2-PR_TIME, "   
lv_error_number  TYPE T100-MSGNR, "   
lv_artime  TYPE T51B2-AR_TIME, "   
lv_prcalc_changed  TYPE C, "   
lv_artravel  TYPE T51B2-AR_TRAV, "   
lv_prtime_changed  TYPE C. "   

  CALL FUNCTION 'RP_ARCHIVE_CHECK_CALC_TIME_TRA'  "
    EXPORTING
         PRTRAVEL = lv_prtravel
         ARCALC = lv_arcalc
         ARTIME = lv_artime
         ARTRAVEL = lv_artravel
    IMPORTING
         ERROR_TYPE = lv_error_type
         ERROR_NUMBER = lv_error_number
         PRCALC_CHANGED = lv_prcalc_changed
         PRTIME_CHANGED = lv_prtime_changed
    CHANGING
         PRCALC = lv_prcalc
         PRTIME = lv_prtime
. " RP_ARCHIVE_CHECK_CALC_TIME_TRA




ABAP code using 7.40 inline data declarations to call FM RP_ARCHIVE_CHECK_CALC_TIME_TRA

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 PR_CALC FROM T51B2 INTO @DATA(ld_prcalc).
 
"SELECT single PR_TRAV FROM T51B2 INTO @DATA(ld_prtravel).
 
 
"SELECT single AR_CALC FROM T51B2 INTO @DATA(ld_arcalc).
 
"SELECT single PR_TIME FROM T51B2 INTO @DATA(ld_prtime).
 
"SELECT single MSGNR FROM T100 INTO @DATA(ld_error_number).
 
"SELECT single AR_TIME FROM T51B2 INTO @DATA(ld_artime).
 
 
"SELECT single AR_TRAV FROM T51B2 INTO @DATA(ld_artravel).
 
 


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!