SAP ISCD_EVENT_V937_GET_DATE Function Module for Sample Function Module for Exit V937 (Date Calculation)
ISCD_EVENT_V937_GET_DATE is a standard iscd event v937 get date SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Sample Function Module for Exit V937 (Date Calculation) 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 iscd event v937 get date FM, simply by entering the name ISCD_EVENT_V937_GET_DATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: VKKTAXREP
Program Name: SAPLVKKTAXREP
Main Program: SAPLVKKTAXREP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISCD_EVENT_V937_GET_DATE 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 'ISCD_EVENT_V937_GET_DATE'"Sample Function Module for Exit V937 (Date Calculation).
EXPORTING
IV_AUGVD = "Value date for clearing
IS_FKKKO = "Header Data for Open Item Accounting Document
IT_FKKOP = "Table Type for FKKOP
IT_FKKOPK = "Table Type for FKKOPK
IT_FKKCL = "Table of Clearing Information
IT_OPBEL = "Number of a Contract Accounts Receivable and Payable Document
* IV_PREMIUM_OPBEL = "Number of a Contract Accounts Receivable and Payable Document
* IV_PREMIUM_OPUPK = "Item Number in Contract Account Document
IMPORTING
EV_DATE = "Value date for clearing
IMPORTING Parameters details for ISCD_EVENT_V937_GET_DATE
IV_AUGVD - Value date for clearing
Data type: AUGVD_KKOptional: No
Call by Reference: Yes
IS_FKKKO - Header Data for Open Item Accounting Document
Data type: FKKKOOptional: No
Call by Reference: Yes
IT_FKKOP - Table Type for FKKOP
Data type: FKKOP_TOptional: No
Call by Reference: Yes
IT_FKKOPK - Table Type for FKKOPK
Data type: FKKOPK_TOptional: No
Call by Reference: Yes
IT_FKKCL - Table of Clearing Information
Data type: FKKCL_TOptional: No
Call by Reference: Yes
IT_OPBEL - Number of a Contract Accounts Receivable and Payable Document
Data type: OPBEL_TOptional: No
Call by Reference: Yes
IV_PREMIUM_OPBEL - Number of a Contract Accounts Receivable and Payable Document
Data type: OPBEL_KKOptional: Yes
Call by Reference: Yes
IV_PREMIUM_OPUPK - Item Number in Contract Account Document
Data type: OPUPK_KKOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISCD_EVENT_V937_GET_DATE
EV_DATE - Value date for clearing
Data type: AUGVD_KKOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISCD_EVENT_V937_GET_DATE 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_ev_date | TYPE AUGVD_KK, " | |||
| lv_iv_augvd | TYPE AUGVD_KK, " | |||
| lv_is_fkkko | TYPE FKKKO, " | |||
| lv_it_fkkop | TYPE FKKOP_T, " | |||
| lv_it_fkkopk | TYPE FKKOPK_T, " | |||
| lv_it_fkkcl | TYPE FKKCL_T, " | |||
| lv_it_opbel | TYPE OPBEL_T, " | |||
| lv_iv_premium_opbel | TYPE OPBEL_KK, " | |||
| lv_iv_premium_opupk | TYPE OPUPK_KK. " |
|   CALL FUNCTION 'ISCD_EVENT_V937_GET_DATE' "Sample Function Module for Exit V937 (Date Calculation) |
| EXPORTING | ||
| IV_AUGVD | = lv_iv_augvd | |
| IS_FKKKO | = lv_is_fkkko | |
| IT_FKKOP | = lv_it_fkkop | |
| IT_FKKOPK | = lv_it_fkkopk | |
| IT_FKKCL | = lv_it_fkkcl | |
| IT_OPBEL | = lv_it_opbel | |
| IV_PREMIUM_OPBEL | = lv_iv_premium_opbel | |
| IV_PREMIUM_OPUPK | = lv_iv_premium_opupk | |
| IMPORTING | ||
| EV_DATE | = lv_ev_date | |
| . " ISCD_EVENT_V937_GET_DATE | ||
ABAP code using 7.40 inline data declarations to call FM ISCD_EVENT_V937_GET_DATE
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