ADJUST_AC_RESULTS SAP Method Adjust authorization check results









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

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


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

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

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


Parameters of Method ADJUST_AC_RESULTS

.

NameTypeData TypeDescriptionDefault Value
IR_DATAImportingTYPE REF TO
DATA
Instance data of current BO node
IT_DATAImportingTYPE
/SCMTMS/IF_DATA_CRAWLER=>TT_DATA
AC instance data table
IT_KEYImportingTYPE
/BOBF/T_FRW_KEY
Instance key table for IV_NODE_KEY
IV_ACT_KEYImportingTYPE
/BOBF/CONF_KEY
Action Key
IV_AC_TRIGGERImportingTYPE
/SCMTMS/AC_TRIGGER
Authority Check Trigger
IV_NODE_KEYImportingTYPE
/BOBF/OBM_NODE_KEY
Node for which service manager method is called
IV_NO_MSGImportingTYPE
ABAP_BOOL
Do not create messages for failed AC
IV_SRVMGR_METHImportingTYPE
SEOCPDNAME
Service manager method name
IV_STATICImportingTYPE
ABAP_BOOL
Static or instance based check
IV_USERImportingTYPE
SYUNAME
User Name
CO_MESSAGEChangingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object
CT_AC_RESULTChangingTYPE
TT_AC_RESULT
Authority Check Results



Exceptions of Method ADJUST_AC_RESULTS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMTMS/CL_AC_SUPER.
DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_CT_AC_RESULT TYPE TT_AC_RESULT,
lv_IR_DATA TYPE DATA,
lv_IT_DATA TYPE /SCMTMS/IF_DATA_CRAWLER=>TT_DATA,
lv_IT_KEY TYPE /BOBF/T_FRW_KEY,
lv_IV_ACT_KEY TYPE /BOBF/CONF_KEY,
lv_IV_AC_TRIGGER TYPE /SCMTMS/AC_TRIGGER,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_IV_NO_MSG TYPE ABAP_BOOL,
lv_IV_SRVMGR_METH TYPE SEOCPDNAME,
lv_IV_STATIC TYPE ABAP_BOOL,
lv_IV_USER TYPE SYUNAME,
lv_other TYPE c.

CALL METHOD lo_class=>ADJUST_AC_RESULTS(
EXPORTING
IR_DATA = lv_IR_DATA
IT_DATA = lv_IT_DATA
IT_KEY = lv_IT_KEY
IV_ACT_KEY = lv_IV_ACT_KEY
IV_AC_TRIGGER = lv_IV_AC_TRIGGER
IV_NODE_KEY = lv_IV_NODE_KEY
IV_NO_MSG = lv_IV_NO_MSG
IV_SRVMGR_METH = lv_IV_SRVMGR_METH
IV_STATIC = lv_IV_STATIC
IV_USER = lv_IV_USER
CHANGING
CO_MESSAGE = lv_CO_MESSAGE
CT_AC_RESULT = lv_CT_AC_RESULT ).

Links to Related Class(s)

/SCMTMS/...
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!