HR_BLP_TIMEDATA_CONTROL SAP Method Wrapper for Function Module HR_BLP_TIMEDATA_CONTROL









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

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


Parameters of Method HR_BLP_TIMEDATA_CONTROL

.

NameTypeData TypeDescriptionDefault Value
IM_ASSUME_ERR_RECORDSImportingTYPE
BOOLE_D
Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
IM_CHECK_EMPLOYEE_LOCKEDImportingTYPE
BOOLE_D
Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
IM_OPMODEImportingTYPE
TIM_TMW_DELIM_MODE
Operation Mode for Delimitation for Collisions
EX_DELIM_OKExportingTYPE
TIM_TMWBOOL
Time Management Workplace: Boolean Field
EX_DELIM_PROPOSALExportingTYPE
TIM_TMW_BLPREQUEST_TAB
BLP: Time Data Transfer Table
EX_MESSAGETABExportingTYPE
TIM_TMW_MESSAGE_TAB
TMW Message Handler: Messages Table
EX_RETCDExportingTYPE
SYSUBRC
Return Value from ABAP Statement
CH_TIME_DATAChangingTYPE
TIM_TMW_BLPREQUEST_TAB
BLP: Time Data Transfer Table



Exceptions of Method HR_BLP_TIMEDATA_CONTROL

EX_DELIM_OKExportingTYPE
TIM_TMWBOOLTime Management Workplace: Boolean FieldEX_DELIM_PROPOSALExportingTYPE
TIM_TMW_BLPREQUEST_TABBLP: Time Data Transfer TableEX_MESSAGETABExportingTYPE
TIM_TMW_MESSAGE_TABTMW Message Handler: Messages TableEX_RETCDExportingTYPE
SYSUBRCReturn Value from ABAP StatementUNEXPECTED - Unexpected Exception in Module

Example ABAP coding


DATA: lo_class TYPE REF TO IF_HRPAYAT_BLP_FACADE.
DATA: lv_CH_TIME_DATA TYPE TIM_TMW_BLPREQUEST_TAB,
lv_EX_DELIM_OK TYPE TIM_TMWBOOL,
lv_EX_DELIM_PROPOSAL TYPE TIM_TMW_BLPREQUEST_TAB,
lv_EX_MESSAGETAB TYPE TIM_TMW_MESSAGE_TAB,
lv_EX_RETCD TYPE SYSUBRC,
lv_IM_ASSUME_ERR_RECORDS TYPE BOOLE_D,
lv_IM_CHECK_EMPLOYEE_LOCKED TYPE BOOLE_D,
lv_IM_OPMODE TYPE TIM_TMW_DELIM_MODE,
lv_other TYPE c.

CALL METHOD lo_class=>HR_BLP_TIMEDATA_CONTROL(
EXPORTING
IM_ASSUME_ERR_RECORDS = lv_IM_ASSUME_ERR_RECORDS
IM_CHECK_EMPLOYEE_LOCKED = lv_IM_CHECK_EMPLOYEE_LOCKED
IM_OPMODE = lv_IM_OPMODE
IMPORTING
EX_DELIM_OK = lv_EX_DELIM_OK
EX_DELIM_PROPOSAL = lv_EX_DELIM_PROPOSAL
EX_MESSAGETAB = lv_EX_MESSAGETAB
EX_RETCD = lv_EX_RETCD
CHANGING
CH_TIME_DATA = lv_CH_TIME_DATA ).

Links to Related Class(s)

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