SAP ISH_NL_DBC_CHECKANDADJUST Function Module for









ISH_NL_DBC_CHECKANDADJUST is a standard ish nl dbc checkandadjust 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 nl dbc checkandadjust FM, simply by entering the name ISH_NL_DBC_CHECKANDADJUST into the relevant SAP transaction such as SE37 or SE38.

Function Group: NNL_API_DBC_CHECK_ADJUST
Program Name: SAPLNNL_API_DBC_CHECK_ADJUST
Main Program: SAPLNNL_API_DBC_CHECK_ADJUST
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function ISH_NL_DBC_CHECKANDADJUST 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_NL_DBC_CHECKANDADJUST'"
EXPORTING
I_EVENT = "
I_EINRI = "
* I_TEST = 'X' "

IMPORTING
E_RETMAXTYPE = "

CHANGING
I_DBC_DET = "
E_DBC_DET = "
E_DBC_PAT = "

TABLES
SS_DBC_DET = "
SS_DBC_DB = "
SS_RETURN = "

EXCEPTIONS
WRONG_EVENT = 1
.



IMPORTING Parameters details for ISH_NL_DBC_CHECKANDADJUST

I_EVENT -

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

I_EINRI -

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

I_TEST -

Data type: ISH_ON_OFF
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISH_NL_DBC_CHECKANDADJUST

E_RETMAXTYPE -

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

CHANGING Parameters details for ISH_NL_DBC_CHECKANDADJUST

I_DBC_DET -

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

E_DBC_DET -

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

E_DBC_PAT -

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

TABLES Parameters details for ISH_NL_DBC_CHECKANDADJUST

SS_DBC_DET -

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

SS_DBC_DB -

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

SS_RETURN -

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

EXCEPTIONS details

WRONG_EVENT -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_NL_DBC_CHECKANDADJUST 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_event  TYPE SYUCOMM, "   
lv_i_dbc_det  TYPE ISH_NL_S_DBC_POPUP, "   
lt_ss_dbc_det  TYPE STANDARD TABLE OF ISH_NL_T_DBC_DET, "   
lv_wrong_event  TYPE ISH_NL_T_DBC_DET, "   
lv_e_retmaxtype  TYPE NPDOK-BAPIRETMAXTY, "   
lv_i_einri  TYPE EINRI, "   
lv_e_dbc_det  TYPE ISH_NL_S_DETAIL, "   
lt_ss_dbc_db  TYPE STANDARD TABLE OF ISH_NL_T_NLDBC_005, "   
lv_i_test  TYPE ISH_ON_OFF, "   'X'
lv_e_dbc_pat  TYPE ISH_NL_S_APP, "   
lt_ss_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'ISH_NL_DBC_CHECKANDADJUST'  "
    EXPORTING
         I_EVENT = lv_i_event
         I_EINRI = lv_i_einri
         I_TEST = lv_i_test
    IMPORTING
         E_RETMAXTYPE = lv_e_retmaxtype
    CHANGING
         I_DBC_DET = lv_i_dbc_det
         E_DBC_DET = lv_e_dbc_det
         E_DBC_PAT = lv_e_dbc_pat
    TABLES
         SS_DBC_DET = lt_ss_dbc_det
         SS_DBC_DB = lt_ss_dbc_db
         SS_RETURN = lt_ss_return
    EXCEPTIONS
        WRONG_EVENT = 1
. " ISH_NL_DBC_CHECKANDADJUST




ABAP code using 7.40 inline data declarations to call FM ISH_NL_DBC_CHECKANDADJUST

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 BAPIRETMAXTY FROM NPDOK INTO @DATA(ld_e_retmaxtype).
 
 
 
 
DATA(ld_i_test) = 'X'.
 
 
 


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!