SAP ISU_TIMEAVALIBLE_CHECK Function Module for INTERNAL: Check Time Available
ISU_TIMEAVALIBLE_CHECK is a standard isu timeavalible check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for INTERNAL: Check Time Available processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for isu timeavalible check FM, simply by entering the name ISU_TIMEAVALIBLE_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEWA_RESPL
Program Name: SAPLEEWA_RESPL
Main Program: SAPLEEWA_RESPL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_TIMEAVALIBLE_CHECK pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'ISU_TIMEAVALIBLE_CHECK'"INTERNAL: Check Time Available.
EXPORTING
* X_PERNR = "Personnel Number
X_STARTDATE = "Start date for determining availability
X_ENDDATE = "End date for determining availability
X_PLANED_START = "
X_PLANED_END = "
IMPORTING
Y_VALID = "Single-Character Indicator
TABLES
* X_PERSON = "Transfer Structure 7002 / Personnel Numbers
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLEEWA_RESPL_001 Enhancement of Employee Attendance Status
EXIT_SAPLEEWA_RESPL_002 Enhancement for Checking Vehicle Use
EXIT_SAPLEEWA_RESPL_003
IMPORTING Parameters details for ISU_TIMEAVALIBLE_CHECK
X_PERNR - Personnel Number
Data type: PERNR_DOptional: Yes
Call by Reference: Yes
X_STARTDATE - Start date for determining availability
Data type: BAPI7002_3-STARTDATEOptional: No
Call by Reference: Yes
X_ENDDATE - End date for determining availability
Data type: BAPI7002_3-ENDDATEOptional: No
Call by Reference: Yes
X_PLANED_START -
Data type: EWASTARTOptional: No
Call by Reference: Yes
X_PLANED_END -
Data type: EWAENDOptional: No
Call by Reference: Yes
EXPORTING Parameters details for ISU_TIMEAVALIBLE_CHECK
Y_VALID - Single-Character Indicator
Data type: CHAR1Optional: No
Call by Reference: Yes
TABLES Parameters details for ISU_TIMEAVALIBLE_CHECK
X_PERSON - Transfer Structure 7002 / Personnel Numbers
Data type: BAPI7002_2Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for ISU_TIMEAVALIBLE_CHECK Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_x_pernr | TYPE PERNR_D, " | |||
| lv_y_valid | TYPE CHAR1, " | |||
| lt_x_person | TYPE STANDARD TABLE OF BAPI7002_2, " | |||
| lv_x_startdate | TYPE BAPI7002_3-STARTDATE, " | |||
| lv_x_enddate | TYPE BAPI7002_3-ENDDATE, " | |||
| lv_x_planed_start | TYPE EWASTART, " | |||
| lv_x_planed_end | TYPE EWAEND. " |
|   CALL FUNCTION 'ISU_TIMEAVALIBLE_CHECK' "INTERNAL: Check Time Available |
| EXPORTING | ||
| X_PERNR | = lv_x_pernr | |
| X_STARTDATE | = lv_x_startdate | |
| X_ENDDATE | = lv_x_enddate | |
| X_PLANED_START | = lv_x_planed_start | |
| X_PLANED_END | = lv_x_planed_end | |
| IMPORTING | ||
| Y_VALID | = lv_y_valid | |
| TABLES | ||
| X_PERSON | = lt_x_person | |
| . " ISU_TIMEAVALIBLE_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM ISU_TIMEAVALIBLE_CHECK
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single STARTDATE FROM BAPI7002_3 INTO @DATA(ld_x_startdate). | ||||
| "SELECT single ENDDATE FROM BAPI7002_3 INTO @DATA(ld_x_enddate). | ||||
Search for further information about these or an SAP related objects