SAP ISHMED_CALC_DATE_TIME_DIFF Function Module for
ISHMED_CALC_DATE_TIME_DIFF is a standard ishmed calc date time diff SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 ishmed calc date time diff FM, simply by entering the name ISHMED_CALC_DATE_TIME_DIFF into the relevant SAP transaction such as SE37 or SE38.
Function Group: N1ME_AMB_ORDER
Program Name: SAPLN1ME_AMB_ORDER
Main Program: SAPLN1ME_AMB_ORDER
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISHMED_CALC_DATE_TIME_DIFF 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 'ISHMED_CALC_DATE_TIME_DIFF'".
EXPORTING
I_BEGDT = "
I_BEGTM = "
I_ENDDT = "
I_ENDTM = "
IMPORTING
E_DIFF_DAY = "IS-H*MED: Medication, Order - Order Duration
E_ENDDT_EARLY = "IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
E_RC = "IS-H: Return Code for Method Calls
CHANGING
* CR_ERRORHANDLER = "ISHMED: Class for Error Handling
IMPORTING Parameters details for ISHMED_CALC_DATE_TIME_DIFF
I_BEGDT -
Data type: DOptional: No
Call by Reference: No ( called with pass by value option)
I_BEGTM -
Data type: TOptional: No
Call by Reference: No ( called with pass by value option)
I_ENDDT -
Data type: DOptional: No
Call by Reference: No ( called with pass by value option)
I_ENDTM -
Data type: TOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISHMED_CALC_DATE_TIME_DIFF
E_DIFF_DAY - IS-H*MED: Medication, Order - Order Duration
Data type: N1ME_ORDUROptional: No
Call by Reference: Yes
E_ENDDT_EARLY - IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
Data type: ISH_ON_OFFOptional: No
Call by Reference: Yes
E_RC - IS-H: Return Code for Method Calls
Data type: ISH_METHOD_RCOptional: No
Call by Reference: Yes
CHANGING Parameters details for ISHMED_CALC_DATE_TIME_DIFF
CR_ERRORHANDLER - ISHMED: Class for Error Handling
Data type: CL_ISHMED_ERRORHANDLINGOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for ISHMED_CALC_DATE_TIME_DIFF 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_i_begdt | TYPE D, " | |||
| lv_e_diff_day | TYPE N1ME_ORDUR, " | |||
| lv_cr_errorhandler | TYPE CL_ISHMED_ERRORHANDLING, " | |||
| lv_i_begtm | TYPE T, " | |||
| lv_e_enddt_early | TYPE ISH_ON_OFF, " | |||
| lv_e_rc | TYPE ISH_METHOD_RC, " | |||
| lv_i_enddt | TYPE D, " | |||
| lv_i_endtm | TYPE T. " |
|   CALL FUNCTION 'ISHMED_CALC_DATE_TIME_DIFF' " |
| EXPORTING | ||
| I_BEGDT | = lv_i_begdt | |
| I_BEGTM | = lv_i_begtm | |
| I_ENDDT | = lv_i_enddt | |
| I_ENDTM | = lv_i_endtm | |
| IMPORTING | ||
| E_DIFF_DAY | = lv_e_diff_day | |
| E_ENDDT_EARLY | = lv_e_enddt_early | |
| E_RC | = lv_e_rc | |
| CHANGING | ||
| CR_ERRORHANDLER | = lv_cr_errorhandler | |
| . " ISHMED_CALC_DATE_TIME_DIFF | ||
ABAP code using 7.40 inline data declarations to call FM ISHMED_CALC_DATE_TIME_DIFF
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.Search for further information about these or an SAP related objects