SAP EXIT_RPTEDT00_001 Function Module for Modification of Cluster B2 Data After Import In RPTEDT00









EXIT_RPTEDT00_001 is a standard exit rptedt00 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Modification of Cluster B2 Data After Import In RPTEDT00 processing and below is the pattern details for this FM, 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 exit rptedt00 001 FM, simply by entering the name EXIT_RPTEDT00_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_RPTEDT00_001 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 'EXIT_RPTEDT00_001'"Modification of Cluster B2 Data After Import In RPTEDT00
EXPORTING
GET_PERNR = "
GET_PABRJ = "
GET_PABRP = "
GET_FORML = "Form Name

TABLES
GET_WPBP = "
GET_VS = "
GET_CVS = "
GET_PT = "
* GET_FEHLER = "
* GET_VERT = "
* GET_SKO = "
* GET_MEHR = "
* GET_RUFB = "
* GET_ALP = "
* GET_C1 = "
GET_AB = "
GET_SALDO = "
GET_ZES = "
GET_ABWKONTI = "
GET_PSP = "
GET_ANWKONTI = "
GET_ANWES = "
GET_ZL = "
.



IMPORTING Parameters details for EXIT_RPTEDT00_001

GET_PERNR -

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

GET_PABRJ -

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

GET_PABRP -

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

GET_FORML - Form Name

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

TABLES Parameters details for EXIT_RPTEDT00_001

GET_WPBP -

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

GET_VS -

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

GET_CVS -

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

GET_PT -

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

GET_FEHLER -

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

GET_VERT -

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

GET_SKO -

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

GET_MEHR -

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

GET_RUFB -

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

GET_ALP -

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

GET_C1 -

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

GET_AB -

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

GET_SALDO -

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

GET_ZES -

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

GET_ABWKONTI -

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

GET_PSP -

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

GET_ANWKONTI -

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

GET_ANWES -

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

GET_ZL -

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

Copy and paste ABAP code example for EXIT_RPTEDT00_001 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_get_wpbp  TYPE STANDARD TABLE OF PC205, "   
lv_get_pernr  TYPE PERNR-PERNR, "   
lt_get_vs  TYPE STANDARD TABLE OF PC2BH, "   
lt_get_cvs  TYPE STANDARD TABLE OF PC2BI, "   
lt_get_pt  TYPE STANDARD TABLE OF PDCPT, "   
lt_get_fehler  TYPE STANDARD TABLE OF PC2B8, "   
lt_get_vert  TYPE STANDARD TABLE OF PC2B4, "   
lt_get_sko  TYPE STANDARD TABLE OF PC2B3, "   
lt_get_mehr  TYPE STANDARD TABLE OF PC2BC, "   
lt_get_rufb  TYPE STANDARD TABLE OF PC2BE, "   
lt_get_alp  TYPE STANDARD TABLE OF PC20E, "   
lt_get_c1  TYPE STANDARD TABLE OF PC25X, "   
lt_get_ab  TYPE STANDARD TABLE OF PC20I, "   
lv_get_pabrj  TYPE T549Q-PABRJ, "   
lv_get_pabrp  TYPE T549Q-PABRP, "   
lt_get_saldo  TYPE STANDARD TABLE OF PC2B5, "   
lt_get_zes  TYPE STANDARD TABLE OF PC2B6, "   
lv_get_forml  TYPE T512P-FORML, "   
lt_get_abwkonti  TYPE STANDARD TABLE OF PC2B9, "   
lt_get_psp  TYPE STANDARD TABLE OF PC2BA, "   
lt_get_anwkonti  TYPE STANDARD TABLE OF PC2BB, "   
lt_get_anwes  TYPE STANDARD TABLE OF PC2BD, "   
lt_get_zl  TYPE STANDARD TABLE OF PC2BF. "   

  CALL FUNCTION 'EXIT_RPTEDT00_001'  "Modification of Cluster B2 Data After Import In RPTEDT00
    EXPORTING
         GET_PERNR = lv_get_pernr
         GET_PABRJ = lv_get_pabrj
         GET_PABRP = lv_get_pabrp
         GET_FORML = lv_get_forml
    TABLES
         GET_WPBP = lt_get_wpbp
         GET_VS = lt_get_vs
         GET_CVS = lt_get_cvs
         GET_PT = lt_get_pt
         GET_FEHLER = lt_get_fehler
         GET_VERT = lt_get_vert
         GET_SKO = lt_get_sko
         GET_MEHR = lt_get_mehr
         GET_RUFB = lt_get_rufb
         GET_ALP = lt_get_alp
         GET_C1 = lt_get_c1
         GET_AB = lt_get_ab
         GET_SALDO = lt_get_saldo
         GET_ZES = lt_get_zes
         GET_ABWKONTI = lt_get_abwkonti
         GET_PSP = lt_get_psp
         GET_ANWKONTI = lt_get_anwkonti
         GET_ANWES = lt_get_anwes
         GET_ZL = lt_get_zl
. " EXIT_RPTEDT00_001




ABAP code using 7.40 inline data declarations to call FM EXIT_RPTEDT00_001

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 PERNR FROM PERNR INTO @DATA(ld_get_pernr).
 
 
 
 
 
 
 
 
 
 
 
 
"SELECT single PABRJ FROM T549Q INTO @DATA(ld_get_pabrj).
 
"SELECT single PABRP FROM T549Q INTO @DATA(ld_get_pabrp).
 
 
 
"SELECT single FORML FROM T512P INTO @DATA(ld_get_forml).
 
 
 
 
 
 


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!