DELETE_DRAFT_FORM SAP Method Execute the DELETE_DRAFT event
Below is documentation, parameters and attributes of ABAP Method DELETE_DRAFT_FORM within SAP class IF_HRASR00_PROCESS_EXECUTE. 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 IF_HRASR00_PROCESS_EXECUTE 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 DELETE_DRAFT_FORM can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DELETE_DRAFT_FORM
.| Name | Type | Data Type | Description | Default Value |
| IV_WI_ID | Importing | TYPE SWW_WIID | Work item ID | |
| EV_IS_OK | Exporting | TYPE ABAP_BOOL | X if processing successful, false otherwise | |
| CT_FIELD_UI_ATTRIBUTES | Changing | TYPE HRASR_UIATTRIBUTE_PARAM_TAB | Internal Service Request: UI Attributes for a Field | |
| CT_FORM_FIELD_VALUES | Changing | TYPE HRASR_SPECIAL_PARAM_TAB | Internal Service Request: Values of the Special Fields | |
| CT_INPUT_HELP_EXTENDED | Changing | TYPE HRASR00_FIELD_HELP_DATASET_TAB | Value Helps for Fields | |
| CT_INPUT_HELP_VALUES | Changing | TYPE HRASR_SPECIAL_PARAM_TAB | Internal Service Request: Values of the Special Fields | |
| CT_MESSAGE_LIST | Changing | TYPE HRASR_RETURN_TAB | Internet Service Request: Return Table |
Exceptions of Method DELETE_DRAFT_FORM
CX_HRASR00_PROCESS_EXECUTE - Exception class for process executeExample ABAP coding
DATA: lo_class TYPE REF TO IF_HRASR00_PROCESS_EXECUTE.
DATA: lv_CT_FIELD_UI_ATTRIBUTES TYPE HRASR_UIATTRIBUTE_PARAM_TAB,
lv_CT_FORM_FIELD_VALUES TYPE HRASR_SPECIAL_PARAM_TAB,
lv_CT_INPUT_HELP_EXTENDED TYPE HRASR00_FIELD_HELP_DATASET_TAB,
lv_CT_INPUT_HELP_VALUES TYPE HRASR_SPECIAL_PARAM_TAB,
lv_CT_MESSAGE_LIST TYPE HRASR_RETURN_TAB,
lv_EV_IS_OK TYPE ABAP_BOOL,
lv_IV_WI_ID TYPE SWW_WIID,
lv_other TYPE c.
CALL METHOD lo_class=>DELETE_DRAFT_FORM(
EXPORTING
IV_WI_ID = lv_IV_WI_ID
IMPORTING
EV_IS_OK = lv_EV_IS_OK
CHANGING
CT_FIELD_UI_ATTRIBUTES = lv_CT_FIELD_UI_ATTRIBUTES
CT_FORM_FIELD_VALUES = lv_CT_FORM_FIELD_VALUES
CT_INPUT_HELP_EXTENDED = lv_CT_INPUT_HELP_EXTENDED
CT_INPUT_HELP_VALUES = lv_CT_INPUT_HELP_VALUES
CT_MESSAGE_LIST = lv_CT_MESSAGE_LIST ).
Links to Related Class(s)
IF_HRASR...Full list of available SAP object classes
Search for further information about these or an SAP related objects