SAP ISH_CHECK_INPUT_FIELD_DEBITOR Function Module for









ISH_CHECK_INPUT_FIELD_DEBITOR is a standard ish check input field debitor 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 check input field debitor FM, simply by entering the name ISH_CHECK_INPUT_FIELD_DEBITOR into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_CHECK_INPUT_FIELD_DEBITOR 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_CHECK_INPUT_FIELD_DEBITOR'"
EXPORTING
* EINRI = '0001' "
* EVENT = 'DEB004' "
FIELD_NAME = "Field name in non-SAP system
KONTOGRUPPE = "
* VCODE_DEBITOR = 'DIS' "

IMPORTING
MODIFY_FIELD = "Modification attributes of field name

EXCEPTIONS
FIELD_NOT_FOUND = 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_SAPLN007_001 IS-H: Split Concatenated Customer Address and Name

IMPORTING Parameters details for ISH_CHECK_INPUT_FIELD_DEBITOR

EINRI -

Data type: TN02A-EINRI
Default: '0001'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EVENT -

Data type: TN02E-EVENT
Default: 'DEB004'
Optional: Yes
Call by Reference: No ( called with pass by value option)

FIELD_NAME - Field name in non-SAP system

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

KONTOGRUPPE -

Data type: RNG12-KTOKD
Optional: No
Call by Reference: No ( called with pass by value option)

VCODE_DEBITOR -

Data type: RNG10-VCODE
Default: 'DIS'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISH_CHECK_INPUT_FIELD_DEBITOR

MODIFY_FIELD - Modification attributes of field name

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

EXCEPTIONS details

FIELD_NOT_FOUND - Field not defined in non-SAP system

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

Copy and paste ABAP code example for ISH_CHECK_INPUT_FIELD_DEBITOR 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_einri  TYPE TN02A-EINRI, "   '0001'
lv_modify_field  TYPE TN02A, "   
lv_field_not_found  TYPE TN02A, "   
lv_event  TYPE TN02E-EVENT, "   'DEB004'
lv_field_name  TYPE TN02E, "   
lv_kontogruppe  TYPE RNG12-KTOKD, "   
lv_vcode_debitor  TYPE RNG10-VCODE. "   'DIS'

  CALL FUNCTION 'ISH_CHECK_INPUT_FIELD_DEBITOR'  "
    EXPORTING
         EINRI = lv_einri
         EVENT = lv_event
         FIELD_NAME = lv_field_name
         KONTOGRUPPE = lv_kontogruppe
         VCODE_DEBITOR = lv_vcode_debitor
    IMPORTING
         MODIFY_FIELD = lv_modify_field
    EXCEPTIONS
        FIELD_NOT_FOUND = 1
. " ISH_CHECK_INPUT_FIELD_DEBITOR




ABAP code using 7.40 inline data declarations to call FM ISH_CHECK_INPUT_FIELD_DEBITOR

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 EINRI FROM TN02A INTO @DATA(ld_einri).
DATA(ld_einri) = '0001'.
 
 
 
"SELECT single EVENT FROM TN02E INTO @DATA(ld_event).
DATA(ld_event) = 'DEB004'.
 
 
"SELECT single KTOKD FROM RNG12 INTO @DATA(ld_kontogruppe).
 
"SELECT single VCODE FROM RNG10 INTO @DATA(ld_vcode_debitor).
DATA(ld_vcode_debitor) = 'DIS'.
 


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!