SAP ISU_TIMESLICE_SEC_CONCAT Function Module for INTERNAL: Merge Two Time Slices (Date Time)









ISU_TIMESLICE_SEC_CONCAT is a standard isu timeslice sec concat 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: Merge Two Time Slices (Date Time) 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 timeslice sec concat FM, simply by entering the name ISU_TIMESLICE_SEC_CONCAT into the relevant SAP transaction such as SE37 or SE38.

Function Group: ET04U
Program Name: SAPLET04U
Main Program: SAPLET04U
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISU_TIMESLICE_SEC_CONCAT 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_TIMESLICE_SEC_CONCAT'"INTERNAL: Merge Two Time Slices (Date Time)
EXPORTING
X_CT_DATEFROM1 = "
X_CT_DATETO1 = "
X_CT_DATEFROM2 = "
X_CT_DATETO2 = "
X_CT_TIMEFROM1 = "
X_CT_TIMETO1 = "
X_CT_TIMEFROM2 = "
X_CT_TIMETO2 = "

IMPORTING
Y_CON_DATEFROM = "
Y_CON_DATETO = "
Y_CON_TIMEFROM = "
Y_CON_TIMETO = "
Y_RETCODE = "
.



IMPORTING Parameters details for ISU_TIMESLICE_SEC_CONCAT

X_CT_DATEFROM1 -

Data type: ISU_TIMESL_SEC-DATEFROM
Optional: No
Call by Reference: Yes

X_CT_DATETO1 -

Data type: ISU_TIMESL_SEC-DATETO
Optional: No
Call by Reference: Yes

X_CT_DATEFROM2 -

Data type: ISU_TIMESL_SEC-DATEFROM
Optional: No
Call by Reference: Yes

X_CT_DATETO2 -

Data type: ISU_TIMESL_SEC-DATETO
Optional: No
Call by Reference: Yes

X_CT_TIMEFROM1 -

Data type: ISU_TIMESL_SEC-TIMEFROM
Optional: No
Call by Reference: Yes

X_CT_TIMETO1 -

Data type: ISU_TIMESL_SEC-TIMETO
Optional: No
Call by Reference: Yes

X_CT_TIMEFROM2 -

Data type: ISU_TIMESL_SEC-TIMEFROM
Optional: No
Call by Reference: Yes

X_CT_TIMETO2 -

Data type: ISU_TIMESL_SEC-TIMETO
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for ISU_TIMESLICE_SEC_CONCAT

Y_CON_DATEFROM -

Data type: ISU_TIMESL_SEC-DATEFROM
Optional: No
Call by Reference: Yes

Y_CON_DATETO -

Data type: ISU_TIMESL_SEC-DATETO
Optional: No
Call by Reference: Yes

Y_CON_TIMEFROM -

Data type: ISU_TIMESL_SEC-TIMEFROM
Optional: No
Call by Reference: Yes

Y_CON_TIMETO -

Data type: ISU_TIMESL_SEC-TIMETO
Optional: No
Call by Reference: Yes

Y_RETCODE -

Data type: SY-SUBRC
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISU_TIMESLICE_SEC_CONCAT 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_ct_datefrom1  TYPE ISU_TIMESL_SEC-DATEFROM, "   
lv_y_con_datefrom  TYPE ISU_TIMESL_SEC-DATEFROM, "   
lv_x_ct_dateto1  TYPE ISU_TIMESL_SEC-DATETO, "   
lv_y_con_dateto  TYPE ISU_TIMESL_SEC-DATETO, "   
lv_x_ct_datefrom2  TYPE ISU_TIMESL_SEC-DATEFROM, "   
lv_y_con_timefrom  TYPE ISU_TIMESL_SEC-TIMEFROM, "   
lv_x_ct_dateto2  TYPE ISU_TIMESL_SEC-DATETO, "   
lv_y_con_timeto  TYPE ISU_TIMESL_SEC-TIMETO, "   
lv_y_retcode  TYPE SY-SUBRC, "   
lv_x_ct_timefrom1  TYPE ISU_TIMESL_SEC-TIMEFROM, "   
lv_x_ct_timeto1  TYPE ISU_TIMESL_SEC-TIMETO, "   
lv_x_ct_timefrom2  TYPE ISU_TIMESL_SEC-TIMEFROM, "   
lv_x_ct_timeto2  TYPE ISU_TIMESL_SEC-TIMETO. "   

  CALL FUNCTION 'ISU_TIMESLICE_SEC_CONCAT'  "INTERNAL: Merge Two Time Slices (Date Time)
    EXPORTING
         X_CT_DATEFROM1 = lv_x_ct_datefrom1
         X_CT_DATETO1 = lv_x_ct_dateto1
         X_CT_DATEFROM2 = lv_x_ct_datefrom2
         X_CT_DATETO2 = lv_x_ct_dateto2
         X_CT_TIMEFROM1 = lv_x_ct_timefrom1
         X_CT_TIMETO1 = lv_x_ct_timeto1
         X_CT_TIMEFROM2 = lv_x_ct_timefrom2
         X_CT_TIMETO2 = lv_x_ct_timeto2
    IMPORTING
         Y_CON_DATEFROM = lv_y_con_datefrom
         Y_CON_DATETO = lv_y_con_dateto
         Y_CON_TIMEFROM = lv_y_con_timefrom
         Y_CON_TIMETO = lv_y_con_timeto
         Y_RETCODE = lv_y_retcode
. " ISU_TIMESLICE_SEC_CONCAT




ABAP code using 7.40 inline data declarations to call FM ISU_TIMESLICE_SEC_CONCAT

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 DATEFROM FROM ISU_TIMESL_SEC INTO @DATA(ld_x_ct_datefrom1).
 
"SELECT single DATEFROM FROM ISU_TIMESL_SEC INTO @DATA(ld_y_con_datefrom).
 
"SELECT single DATETO FROM ISU_TIMESL_SEC INTO @DATA(ld_x_ct_dateto1).
 
"SELECT single DATETO FROM ISU_TIMESL_SEC INTO @DATA(ld_y_con_dateto).
 
"SELECT single DATEFROM FROM ISU_TIMESL_SEC INTO @DATA(ld_x_ct_datefrom2).
 
"SELECT single TIMEFROM FROM ISU_TIMESL_SEC INTO @DATA(ld_y_con_timefrom).
 
"SELECT single DATETO FROM ISU_TIMESL_SEC INTO @DATA(ld_x_ct_dateto2).
 
"SELECT single TIMETO FROM ISU_TIMESL_SEC INTO @DATA(ld_y_con_timeto).
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_y_retcode).
 
"SELECT single TIMEFROM FROM ISU_TIMESL_SEC INTO @DATA(ld_x_ct_timefrom1).
 
"SELECT single TIMETO FROM ISU_TIMESL_SEC INTO @DATA(ld_x_ct_timeto1).
 
"SELECT single TIMEFROM FROM ISU_TIMESL_SEC INTO @DATA(ld_x_ct_timefrom2).
 
"SELECT single TIMETO FROM ISU_TIMESL_SEC INTO @DATA(ld_x_ct_timeto2).
 


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!