DEFAULT_PERIOD SAP Method Default Appraisal Period
Below is documentation, parameters and attributes of ABAP Method DEFAULT_PERIOD within SAP class IF_EX_HRHAP00_DOC_DEF_DV. 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_EX_HRHAP00_DOC_DEF_DV 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 DEFAULT_PERIOD can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DEFAULT_PERIOD
.| Name | Type | Data Type | Description | Default Value |
| DISPLAY_VALIDITY_PERIOD | Importing | TYPE HAP_OUTPUT_MODE | Output Mode | |
| FLT_VAL | Importing | TYPE HAP_AP_EXIT | Parameter FLT_VAL of Method DEFAULT_PERIOD | |
| PLAN_VERSION | Importing | TYPE HAP_PLAN_VERSION | Plan Version | |
| SET_DATE | Importing | TYPE HAP_AP_DATE_SET | Appraisal date | |
| TEMPLATE_ID | Importing | TYPE HAP_TEMPLATE_ID | Appraisal Template | |
| T_HEADER_APPRAISEE | Importing | TYPE HAP_T_HEADER_APPRAISEE | Header - Appraisee | |
| T_HEADER_APPRAISER | Importing | TYPE HAP_T_HEADER_APPRAISER | Header - Appraiser | |
| NO_STANDARD_DEFAULTING | Exporting | TYPE CHAR1 | No Standard Default Function | |
| S_PERIOD_VALIDITY | Changing | TYPE HAP_S_PERIOD_VALIDITY | Validity Period |
Exceptions of Method DEFAULT_PERIOD
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_HRHAP00_DOC_DEF_DV.
DATA: lv_DISPLAY_VALIDITY_PERIOD TYPE HAP_OUTPUT_MODE,
lv_FLT_VAL TYPE HAP_AP_EXIT,
lv_NO_STANDARD_DEFAULTING TYPE CHAR1,
lv_PLAN_VERSION TYPE HAP_PLAN_VERSION,
lv_SET_DATE TYPE HAP_AP_DATE_SET,
lv_S_PERIOD_VALIDITY TYPE HAP_S_PERIOD_VALIDITY,
lv_TEMPLATE_ID TYPE HAP_TEMPLATE_ID,
lv_T_HEADER_APPRAISEE TYPE HAP_T_HEADER_APPRAISEE,
lv_T_HEADER_APPRAISER TYPE HAP_T_HEADER_APPRAISER,
lv_other TYPE c.
CALL METHOD lo_class=>DEFAULT_PERIOD(
EXPORTING
DISPLAY_VALIDITY_PERIOD = lv_DISPLAY_VALIDITY_PERIOD
FLT_VAL = lv_FLT_VAL
PLAN_VERSION = lv_PLAN_VERSION
SET_DATE = lv_SET_DATE
TEMPLATE_ID = lv_TEMPLATE_ID
T_HEADER_APPRAISEE = lv_T_HEADER_APPRAISEE
T_HEADER_APPRAISER = lv_T_HEADER_APPRAISER
IMPORTING
NO_STANDARD_DEFAULTING = lv_NO_STANDARD_DEFAULTING
CHANGING
S_PERIOD_VALIDITY = lv_S_PERIOD_VALIDITY ).
Links to Related Class(s)
IF_EX_HR...Full list of available SAP object classes
Search for further information about these or an SAP related objects