SAP ISH_KV_CHECK_ITEM_DATE_FUTURE Function Module for









ISH_KV_CHECK_ITEM_DATE_FUTURE is a standard ish kv check item date future 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 ish kv check item date future FM, simply by entering the name ISH_KV_CHECK_ITEM_DATE_FUTURE into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_KV_CHECK_ITEM_DATE_FUTURE 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 'ISH_KV_CHECK_ITEM_DATE_FUTURE'"
EXPORTING
I_EINRI = "
I_PROC_DATE = "
I_NFAL_DATE = "
* I_PROC_ID = "
* I_LEIST_ID = "Service Number
* I_SCHEIN_ID = "

CHANGING
CT_RETURN = "Return Table

EXCEPTIONS
NFAL_DATE_WRONG = 1
.




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_SAPLNBDT_001 IS-H: User Exit for Determining BDT Fields

IMPORTING Parameters details for ISH_KV_CHECK_ITEM_DATE_FUTURE

I_EINRI -

Data type: EINRI
Optional: No
Call by Reference: No ( called with pass by value option)

I_PROC_DATE -

Data type: ISH_BEGDT_ICP
Optional: No
Call by Reference: No ( called with pass by value option)

I_NFAL_DATE -

Data type: ENDDT_FAL
Optional: No
Call by Reference: No ( called with pass by value option)

I_PROC_ID -

Data type: ICPM_LS
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_LEIST_ID - Service Number

Data type: TARLS
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_SCHEIN_ID -

Data type: KS_BELNR
Optional: Yes
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for ISH_KV_CHECK_ITEM_DATE_FUTURE

CT_RETURN - Return Table

Data type: ISH_BAPIRET2_TAB_TYPE
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NFAL_DATE_WRONG -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_KV_CHECK_ITEM_DATE_FUTURE 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_einri  TYPE EINRI, "   
lv_ct_return  TYPE ISH_BAPIRET2_TAB_TYPE, "   
lv_nfal_date_wrong  TYPE ISH_BAPIRET2_TAB_TYPE, "   
lv_i_proc_date  TYPE ISH_BEGDT_ICP, "   
lv_i_nfal_date  TYPE ENDDT_FAL, "   
lv_i_proc_id  TYPE ICPM_LS, "   
lv_i_leist_id  TYPE TARLS, "   
lv_i_schein_id  TYPE KS_BELNR. "   

  CALL FUNCTION 'ISH_KV_CHECK_ITEM_DATE_FUTURE'  "
    EXPORTING
         I_EINRI = lv_i_einri
         I_PROC_DATE = lv_i_proc_date
         I_NFAL_DATE = lv_i_nfal_date
         I_PROC_ID = lv_i_proc_id
         I_LEIST_ID = lv_i_leist_id
         I_SCHEIN_ID = lv_i_schein_id
    CHANGING
         CT_RETURN = lv_ct_return
    EXCEPTIONS
        NFAL_DATE_WRONG = 1
. " ISH_KV_CHECK_ITEM_DATE_FUTURE




ABAP code using 7.40 inline data declarations to call FM ISH_KV_CHECK_ITEM_DATE_FUTURE

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



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!