GET_ADDITIONAL_TASK_DATA SAP Method Delivers Validity, Assignment Ratio, and Status for Task









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

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


Parameters of Method GET_ADDITIONAL_TASK_DATA

.

NameTypeData TypeDescriptionDefault Value
IV_API_STRUCTURE_ONLYImportingTYPE
BOOLE_D
Only API-Data from Retrieve
IV_OBJECT_GUIDImportingTYPE
DPR_TV_GUID_BAPI
Unique Object Key (CHAR32)
IV_TEMPLATE_MODEImportingTYPE
WDY_BOOLEAN
Operational or Template?
EV_API_TASK_DATA_OExportingTYPE
DPR_TS_API_TASK_O
API: Attributes of Task
EV_API_TASK_DATA_TExportingTYPE
DPR_TS_API_TASK_T
API: Attributes of Task
EV_ASGS_EXISTExportingTYPE
BOOLE_D
Assignments exist
EV_BEG_DATEExportingTYPE
D
Start Date
EV_EFFORT_TEXTExportingTYPE
STRING
Required Capacity Information
EV_END_DATEExportingTYPE
D
Finish date
EV_PARENT_TASK_GUIDExportingTYPE
DPR_TV_GUID_BAPI
Unique Object Key (CHAR32)
EV_PARENT_TASK_SUMMARYExportingTYPE
BOOLE_D
Parent Task Is Summary Task
EV_STATUS_ICON_SOURCEExportingTYPE
STRING
Icon Path
EV_STATUS_ICON_TOOLTIPExportingTYPE
STRING
Quick Info for Icon
EV_SUBTASKS_EXISTExportingTYPE
BOOLE_D
Subtasks Exist



Exceptions of Method GET_ADDITIONAL_TASK_DATA

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: lo_class TYPE REF TO CL_DPR_UI_LOG_ROL_TSK.
DATA: lv_EV_API_TASK_DATA_O TYPE DPR_TS_API_TASK_O,
lv_EV_API_TASK_DATA_T TYPE DPR_TS_API_TASK_T,
lv_EV_ASGS_EXIST TYPE BOOLE_D,
lv_EV_BEG_DATE TYPE D,
lv_EV_EFFORT_TEXT TYPE STRING,
lv_EV_END_DATE TYPE D,
lv_EV_PARENT_TASK_GUID TYPE DPR_TV_GUID_BAPI,
lv_EV_PARENT_TASK_SUMMARY TYPE BOOLE_D,
lv_EV_STATUS_ICON_SOURCE TYPE STRING,
lv_EV_STATUS_ICON_TOOLTIP TYPE STRING,
lv_EV_SUBTASKS_EXIST TYPE BOOLE_D,
lv_IV_API_STRUCTURE_ONLY TYPE BOOLE_D,
lv_IV_OBJECT_GUID TYPE DPR_TV_GUID_BAPI,
lv_IV_TEMPLATE_MODE TYPE WDY_BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>GET_ADDITIONAL_TASK_DATA(
EXPORTING
IV_API_STRUCTURE_ONLY = lv_IV_API_STRUCTURE_ONLY
IV_OBJECT_GUID = lv_IV_OBJECT_GUID
IV_TEMPLATE_MODE = lv_IV_TEMPLATE_MODE
IMPORTING
EV_API_TASK_DATA_O = lv_EV_API_TASK_DATA_O
EV_API_TASK_DATA_T = lv_EV_API_TASK_DATA_T
EV_ASGS_EXIST = lv_EV_ASGS_EXIST
EV_BEG_DATE = lv_EV_BEG_DATE
EV_EFFORT_TEXT = lv_EV_EFFORT_TEXT
EV_END_DATE = lv_EV_END_DATE
EV_PARENT_TASK_GUID = lv_EV_PARENT_TASK_GUID
EV_PARENT_TASK_SUMMARY = lv_EV_PARENT_TASK_SUMMARY
EV_STATUS_ICON_SOURCE = lv_EV_STATUS_ICON_SOURCE
EV_STATUS_ICON_TOOLTIP = lv_EV_STATUS_ICON_TOOLTIP
EV_SUBTASKS_EXIST = lv_EV_SUBTASKS_EXIST ).

Links to Related Class(s)

CL_DPR_U...
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!