CT_ADD_SA_REPORTING_INTERFACE SAP Method Context Menu - Standard Reporting Interface









Below is documentation, parameters and attributes of ABAP Method CT_ADD_SA_REPORTING_INTERFACE within SAP class /ISDFPS/CL_FDPSA_CNTL. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /ISDFPS/CL_FDPSA_CNTL into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method CT_ADD_SA_REPORTING_INTERFACE can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CT_ADD_SA_REPORTING_INTERFACE

.

NameTypeData TypeDescriptionDefault Value
CT_DISABLEDImportingTYPE
AS4FLAG
Flag indicating function is active
CT_HIDDENImportingTYPE
AS4FLAG
Flag indicating function is active
CH_MENUChangingTYPE REF TO
CL_CTMENU
Context Menu
L_MENU_1ChangingTYPE REF TO
CL_CTMENU
Context Cascading Menu 1
L_MENU_2ChangingTYPE REF TO
CL_CTMENU
Context Cascading Menu 2
L_MENU_3ChangingTYPE REF TO
CL_CTMENU
Context Cascading Menu 3
L_MENU_4ChangingTYPE REF TO
CL_CTMENU
Context Cascading Menu 4
L_MENU_5ChangingTYPE REF TO
CL_CTMENU
Context Cascading Menu 5



Exceptions of Method CT_ADD_SA_REPORTING_INTERFACE

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lv_CH_MENU TYPE CL_CTMENU,
lv_CT_DISABLED TYPE AS4FLAG,
lv_CT_HIDDEN TYPE AS4FLAG,
lv_L_MENU_1 TYPE CL_CTMENU,
lv_L_MENU_2 TYPE CL_CTMENU,
lv_L_MENU_3 TYPE CL_CTMENU,
lv_L_MENU_4 TYPE CL_CTMENU,
lv_L_MENU_5 TYPE CL_CTMENU,
lv_other TYPE c.

CALL METHOD /ISDFPS/CL_FDPSA_CNTL=>CT_ADD_SA_REPORTING_INTERFACE(
EXPORTING
CT_DISABLED = lv_CT_DISABLED
CT_HIDDEN = lv_CT_HIDDEN
CHANGING
CH_MENU = lv_CH_MENU
L_MENU_1 = lv_L_MENU_1
L_MENU_2 = lv_L_MENU_2
L_MENU_3 = lv_L_MENU_3
L_MENU_4 = lv_L_MENU_4
L_MENU_5 = lv_L_MENU_5 ).

Links to Related Class(s)

/ISDFPS/...
Full list of available SAP object classes

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!