SAP RSSB_SET_PROPERTIES Function Module for Reporting Authorizations: Set Check Properties









RSSB_SET_PROPERTIES is a standard rssb set properties SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Reporting Authorizations: Set Check Properties 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 rssb set properties FM, simply by entering the name RSSB_SET_PROPERTIES into the relevant SAP transaction such as SE37 or SE38.

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



Function RSSB_SET_PROPERTIES 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 'RSSB_SET_PROPERTIES'"Reporting Authorizations: Set Check Properties
EXPORTING
* I_SET_COMPAT_ATRNAV = RS_C_FALSE "Set this indicator
* I_COMPAT_ANABUFFER_VAR = RS_C_FALSE "New Buffer for Values from Customer Exit
* I_COMPAT_ATRNAV = RS_C_FALSE "Compatibility: Navigation Attributes
* I_SET_COMPAT_IOBJREF = RS_C_FALSE "Set this indicator
* I_COMPAT_IOBJREF = RS_C_FALSE "Compatibility for Referencing Characteristics
* I_SET_COMPAT_BUFFER_VAR = RS_C_FALSE "Set this indicator
* I_COMPAT_BUFFER_VAR = RS_C_FALSE "Compatibility: Buffer for Values from Customer Exit
* I_SET_COMPAT_CHANGEABLE = RS_C_FALSE "Set this indicator
* I_COMPAT_CHANGEABLE = RS_C_FALSE "Compatibility: RSSM/System Changeability
* I_SET_COMPAT_ANABUFFER_VAR = RS_C_FALSE "Set this indicator
.



IMPORTING Parameters details for RSSB_SET_PROPERTIES

I_SET_COMPAT_ATRNAV - Set this indicator

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

I_COMPAT_ANABUFFER_VAR - New Buffer for Values from Customer Exit

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: No
Call by Reference: Yes

I_COMPAT_ATRNAV - Compatibility: Navigation Attributes

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

I_SET_COMPAT_IOBJREF - Set this indicator

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

I_COMPAT_IOBJREF - Compatibility for Referencing Characteristics

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

I_SET_COMPAT_BUFFER_VAR - Set this indicator

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

I_COMPAT_BUFFER_VAR - Compatibility: Buffer for Values from Customer Exit

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

I_SET_COMPAT_CHANGEABLE - Set this indicator

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

I_COMPAT_CHANGEABLE - Compatibility: RSSM/System Changeability

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

I_SET_COMPAT_ANABUFFER_VAR - Set this indicator

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for RSSB_SET_PROPERTIES 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_set_compat_atrnav  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_compat_anabuffer_var  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_compat_atrnav  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_set_compat_iobjref  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_compat_iobjref  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_set_compat_buffer_var  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_compat_buffer_var  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_set_compat_changeable  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_compat_changeable  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_set_compat_anabuffer_var  TYPE RS_BOOL. "   RS_C_FALSE

  CALL FUNCTION 'RSSB_SET_PROPERTIES'  "Reporting Authorizations: Set Check Properties
    EXPORTING
         I_SET_COMPAT_ATRNAV = lv_i_set_compat_atrnav
         I_COMPAT_ANABUFFER_VAR = lv_i_compat_anabuffer_var
         I_COMPAT_ATRNAV = lv_i_compat_atrnav
         I_SET_COMPAT_IOBJREF = lv_i_set_compat_iobjref
         I_COMPAT_IOBJREF = lv_i_compat_iobjref
         I_SET_COMPAT_BUFFER_VAR = lv_i_set_compat_buffer_var
         I_COMPAT_BUFFER_VAR = lv_i_compat_buffer_var
         I_SET_COMPAT_CHANGEABLE = lv_i_set_compat_changeable
         I_COMPAT_CHANGEABLE = lv_i_compat_changeable
         I_SET_COMPAT_ANABUFFER_VAR = lv_i_set_compat_anabuffer_var
. " RSSB_SET_PROPERTIES




ABAP code using 7.40 inline data declarations to call FM RSSB_SET_PROPERTIES

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_set_compat_atrnav) = RS_C_FALSE.
 
DATA(ld_i_compat_anabuffer_var) = RS_C_FALSE.
 
DATA(ld_i_compat_atrnav) = RS_C_FALSE.
 
DATA(ld_i_set_compat_iobjref) = RS_C_FALSE.
 
DATA(ld_i_compat_iobjref) = RS_C_FALSE.
 
DATA(ld_i_set_compat_buffer_var) = RS_C_FALSE.
 
DATA(ld_i_compat_buffer_var) = RS_C_FALSE.
 
DATA(ld_i_set_compat_changeable) = RS_C_FALSE.
 
DATA(ld_i_compat_changeable) = RS_C_FALSE.
 
DATA(ld_i_set_compat_anabuffer_var) = RS_C_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!