GET_ACTION_BY_CATG SAP Method Get Action Definitions by Document Category(Obsolete)
Below is documentation, parameters and attributes of ABAP Method GET_ACTION_BY_CATG 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_BY_CATG can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_ACTION_BY_CATG
.| Name | Type | Data Type | Description | Default Value |
| IV_ACTION_DEF | Importing | TYPE PPFDTT | PPF: Name of Action Definition | |
| IV_APP_KEY | Importing | TYPE PPFDAPPKEY | Semantic Key of Application Object | |
| IV_CATG_ID | Importing | TYPE /BOFU/CAT_ID | Document Category Identifier | |
| IV_PROCESSED | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_PROC_WITH_ERROR | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_UNPROCESSED | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| ET_PROCESSED | Exporting | TYPE /BOFU/T_ACTION_BY_CATG | Action Details by Document Category | |
| ET_PROC_WITH_ERROR | Exporting | TYPE /BOFU/T_ACTION_BY_CATG | Action Details by Document Category | |
| ET_UNPROCESSED | Exporting | TYPE /BOFU/T_ACTION_BY_CATG | Action Details by Document Category |
Exceptions of Method GET_ACTION_BY_CATG
This method does not have any exceptionsExample 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_IV_ACTION_DEF TYPE PPFDTT,
lv_IV_APP_KEY TYPE PPFDAPPKEY,
lv_IV_CATG_ID TYPE /BOFU/CAT_ID,
lv_IV_PROCESSED TYPE BOOLE_D,
lv_IV_PROC_WITH_ERROR TYPE BOOLE_D,
lv_IV_UNPROCESSED TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD lo_class=>GET_ACTION_BY_CATG(
EXPORTING
IV_ACTION_DEF = lv_IV_ACTION_DEF
IV_APP_KEY = lv_IV_APP_KEY
IV_CATG_ID = lv_IV_CATG_ID
IV_PROCESSED = lv_IV_PROCESSED
IV_PROC_WITH_ERROR = lv_IV_PROC_WITH_ERROR
IV_UNPROCESSED = lv_IV_UNPROCESSED
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