SAP ISH_NL_VAL_BACKGROUND Function Module for
ISH_NL_VAL_BACKGROUND is a standard ish nl val background 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 val background FM, simply by entering the name ISH_NL_VAL_BACKGROUND into the relevant SAP transaction such as SE37 or SE38.
Function Group: NNLDBC_VALIDATION
Program Name: SAPLNNLDBC_VALIDATION
Main Program: SAPLNNLDBC_VALIDATION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_NL_VAL_BACKGROUND 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_VAL_BACKGROUND'".
EXPORTING
I_EINRI = "
I_TESTLAUF = "
* I_CALLED = "
* I_CPROG = "
* I_THERAP = "
* I_DBCNR_NOCHK = ' ' "
* IR_DBC = "
* I_DBCNR = "
IMPORTING
E_VALID = "
E_KZD = "
E_THERAP = "
E_DBC = "
TABLES
T_LIST = "
IMPORTING Parameters details for ISH_NL_VAL_BACKGROUND
I_EINRI -
Data type: EINRIOptional: No
Call by Reference: Yes
I_TESTLAUF -
Data type: ISH_ON_OFFOptional: No
Call by Reference: Yes
I_CALLED -
Data type: COptional: Yes
Call by Reference: Yes
I_CPROG -
Data type: SYCPROGOptional: Yes
Call by Reference: Yes
I_THERAP -
Data type: ISH_NL_THERAPOptional: Yes
Call by Reference: Yes
I_DBCNR_NOCHK -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
IR_DBC -
Data type: CL_ISH_NL_DBC_CURE_DBCOptional: Yes
Call by Reference: Yes
I_DBCNR -
Data type: ISH_NL_DBCNROptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISH_NL_VAL_BACKGROUND
E_VALID -
Data type: XFELDOptional: No
Call by Reference: No ( called with pass by value option)
E_KZD -
Data type: ISH_ON_OFFOptional: No
Call by Reference: No ( called with pass by value option)
E_THERAP -
Data type: ISH_NL_THERAPOptional: No
Call by Reference: No ( called with pass by value option)
E_DBC -
Data type: ISH_NL_DBCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISH_NL_VAL_BACKGROUND
T_LIST -
Data type: RISH_NL_VAL_LIST_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISH_NL_VAL_BACKGROUND 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: | ||||
| lt_t_list | TYPE STANDARD TABLE OF RISH_NL_VAL_LIST_TAB, " | |||
| lv_e_valid | TYPE XFELD, " | |||
| lv_i_einri | TYPE EINRI, " | |||
| lv_e_kzd | TYPE ISH_ON_OFF, " | |||
| lv_i_testlauf | TYPE ISH_ON_OFF, " | |||
| lv_e_therap | TYPE ISH_NL_THERAP, " | |||
| lv_i_called | TYPE C, " | |||
| lv_e_dbc | TYPE ISH_NL_DBC, " | |||
| lv_i_cprog | TYPE SYCPROG, " | |||
| lv_i_therap | TYPE ISH_NL_THERAP, " | |||
| lv_i_dbcnr_nochk | TYPE CHAR1, " SPACE | |||
| lv_ir_dbc | TYPE CL_ISH_NL_DBC_CURE_DBC, " | |||
| lv_i_dbcnr | TYPE ISH_NL_DBCNR. " |
|   CALL FUNCTION 'ISH_NL_VAL_BACKGROUND' " |
| EXPORTING | ||
| I_EINRI | = lv_i_einri | |
| I_TESTLAUF | = lv_i_testlauf | |
| I_CALLED | = lv_i_called | |
| I_CPROG | = lv_i_cprog | |
| I_THERAP | = lv_i_therap | |
| I_DBCNR_NOCHK | = lv_i_dbcnr_nochk | |
| IR_DBC | = lv_ir_dbc | |
| I_DBCNR | = lv_i_dbcnr | |
| IMPORTING | ||
| E_VALID | = lv_e_valid | |
| E_KZD | = lv_e_kzd | |
| E_THERAP | = lv_e_therap | |
| E_DBC | = lv_e_dbc | |
| TABLES | ||
| T_LIST | = lt_t_list | |
| . " ISH_NL_VAL_BACKGROUND | ||
ABAP code using 7.40 inline data declarations to call FM ISH_NL_VAL_BACKGROUND
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.| DATA(ld_i_dbcnr_nochk) | = ' '. | |||
Search for further information about these or an SAP related objects