SAP RPT_D_FORMAT_SET Function Module for









RPT_D_FORMAT_SET is a standard rpt d format set 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 rpt d format set FM, simply by entering the name RPT_D_FORMAT_SET into the relevant SAP transaction such as SE37 or SE38.

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



Function RPT_D_FORMAT_SET 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 'RPT_D_FORMAT_SET'"
EXPORTING
ELEMENT = "
TRANSPOSED = "
* NUMBER_CHANGED = RP_FALSE "
* SIGN_CHANGED = RP_FALSE "
* COLOR_CHANGED = RP_FALSE "
* ZERO_CHANGED = RP_FALSE "
* FORMULA_PRIO_CHANGED = RP_FALSE "
.



IMPORTING Parameters details for RPT_D_FORMAT_SET

ELEMENT -

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

TRANSPOSED -

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

NUMBER_CHANGED -

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

SIGN_CHANGED -

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

COLOR_CHANGED -

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

ZERO_CHANGED -

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

FORMULA_PRIO_CHANGED -

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

Copy and paste ABAP code example for RPT_D_FORMAT_SET 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_element  TYPE RP_ELEMENT_HANDLE, "   
lv_transposed  TYPE RP_BOOL, "   
lv_number_changed  TYPE RP_BOOL, "   RP_FALSE
lv_sign_changed  TYPE RP_BOOL, "   RP_FALSE
lv_color_changed  TYPE RP_BOOL, "   RP_FALSE
lv_zero_changed  TYPE RP_BOOL, "   RP_FALSE
lv_formula_prio_changed  TYPE RP_BOOL. "   RP_FALSE

  CALL FUNCTION 'RPT_D_FORMAT_SET'  "
    EXPORTING
         ELEMENT = lv_element
         TRANSPOSED = lv_transposed
         NUMBER_CHANGED = lv_number_changed
         SIGN_CHANGED = lv_sign_changed
         COLOR_CHANGED = lv_color_changed
         ZERO_CHANGED = lv_zero_changed
         FORMULA_PRIO_CHANGED = lv_formula_prio_changed
. " RPT_D_FORMAT_SET




ABAP code using 7.40 inline data declarations to call FM RPT_D_FORMAT_SET

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_number_changed) = RP_FALSE.
 
DATA(ld_sign_changed) = RP_FALSE.
 
DATA(ld_color_changed) = RP_FALSE.
 
DATA(ld_zero_changed) = RP_FALSE.
 
DATA(ld_formula_prio_changed) = RP_FALSE.
 


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!