GET_ACTION_DETAILS SAP Method Get Action Definitions by Document Category









Below is documentation, parameters and attributes of ABAP Method GET_ACTION_DETAILS within SAP class /BOFU/CL_PPF_UTILITIES. 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 /BOFU/CL_PPF_UTILITIES 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 GET_ACTION_DETAILS can also be found below:

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


Parameters of Method GET_ACTION_DETAILS

.

NameTypeData TypeDescriptionDefault Value
IT_ACTION_DEFImportingTYPE
PPFSTTTYPE
PPF: Name of Action Definition
IT_APP_KEYImportingTYPE
/BOBF/T_FRW_KEY
Application Key
IT_CAT_IDImportingTYPE
/BOFU/T_CAT_ID
IV_PROCESSEDImportingTYPE
BOOLE_D
Get Processed Actions
IV_PROC_WITH_ERRORImportingTYPE
BOOLE_D
Get Actions Processed with Errors
IV_UNPROCESSEDImportingTYPE
BOOLE_D
Get Unprocessed Actions
IV_TIME_UTCImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ET_PROCESSEDExportingTYPE
/BOFU/T_ACTION_BY_CATG
Successfully Processed Actions
ET_PROC_WITH_ERRORExportingTYPE
/BOFU/T_ACTION_BY_CATG
Actions Processed with Errors
ET_UNPROCESSEDExportingTYPE
/BOFU/T_ACTION_BY_CATG
Unprocessed Actions



Exceptions of Method GET_ACTION_DETAILS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/CL_PPF_UTILITIES.
DATA: lv_ET_PROCESSED TYPE /BOFU/T_ACTION_BY_CATG,
lv_ET_PROC_WITH_ERROR TYPE /BOFU/T_ACTION_BY_CATG,
lv_ET_UNPROCESSED TYPE /BOFU/T_ACTION_BY_CATG,
lv_IT_ACTION_DEF TYPE PPFSTTTYPE,
lv_IT_APP_KEY TYPE /BOBF/T_FRW_KEY,
lv_IT_CAT_ID TYPE /BOFU/T_CAT_ID,
lv_IV_PROCESSED TYPE BOOLE_D,
lv_IV_PROC_WITH_ERROR TYPE BOOLE_D,
lv_IV_UNPROCESSED TYPE BOOLE_D,
lv_IV_TIME_UTC TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD lo_class=>GET_ACTION_DETAILS(
EXPORTING
IT_ACTION_DEF = lv_IT_ACTION_DEF
IT_APP_KEY = lv_IT_APP_KEY
IT_CAT_ID = lv_IT_CAT_ID
IV_PROCESSED = lv_IV_PROCESSED
IV_PROC_WITH_ERROR = lv_IV_PROC_WITH_ERROR
IV_UNPROCESSED = lv_IV_UNPROCESSED
IV_TIME_UTC = lv_IV_TIME_UTC
IMPORTING
ET_PROCESSED = lv_ET_PROCESSED
ET_PROC_WITH_ERROR = lv_ET_PROC_WITH_ERROR
ET_UNPROCESSED = lv_ET_UNPROCESSED ).

Links to Related Class(s)

/BOFU/CL...
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!