SAP ISH_CH_NEHC_DIV_READ_EHC_KVG Function Module for
ISH_CH_NEHC_DIV_READ_EHC_KVG is a standard ish ch nehc div read ehc kvg 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 ch nehc div read ehc kvg FM, simply by entering the name ISH_CH_NEHC_DIV_READ_EHC_KVG into the relevant SAP transaction such as SE37 or SE38.
Function Group: NWCH_NEHC_DIV
Program Name: SAPLNWCH_NEHC_DIV
Main Program: SAPLNWCH_NEHC_DIV
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_CH_NEHC_DIV_READ_EHC_KVG 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_CH_NEHC_DIV_READ_EHC_KVG'".
EXPORTING
* I_TERMINAL_ID = ' ' "
* I_INVOKE_DEFAULT = 'X' "
IMPORTING
ES_DATA = "
E_DEFAULT = "
E_FCT_CRD = "
E_FCT_INQ = "
E_FCT_SDA = "
E_FCT_NME = "
E_CRD_TRM = "
E_TERMINAL_ID = "
EXCEPTIONS
NO_TERMINAL = 1 NOT_FOUND = 2
IMPORTING Parameters details for ISH_CH_NEHC_DIV_READ_EHC_KVG
I_TERMINAL_ID -
Data type: XUTERMINALDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_INVOKE_DEFAULT -
Data type: ISH_ON_OFFDefault: 'X'
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISH_CH_NEHC_DIV_READ_EHC_KVG
ES_DATA -
Data type: TNWCH_EHC_KVGOptional: No
Call by Reference: Yes
E_DEFAULT -
Data type: ISH_ON_OFFOptional: No
Call by Reference: Yes
E_FCT_CRD -
Data type: NWCH_EHC_FCT_CRDOptional: No
Call by Reference: Yes
E_FCT_INQ -
Data type: NWCH_EHC_FCT_INQOptional: No
Call by Reference: Yes
E_FCT_SDA -
Data type: NWCH_EHC_FCT_SDAOptional: No
Call by Reference: Yes
E_FCT_NME -
Data type: NWCH_EHC_FCT_MANOptional: No
Call by Reference: Yes
E_CRD_TRM -
Data type: NWCH_EHC_CRD_TRMOptional: No
Call by Reference: Yes
E_TERMINAL_ID -
Data type: XUTERMINALOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_TERMINAL -
Data type:Optional: No
Call by Reference: Yes
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISH_CH_NEHC_DIV_READ_EHC_KVG 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_es_data | TYPE TNWCH_EHC_KVG, " | |||
| lv_no_terminal | TYPE TNWCH_EHC_KVG, " | |||
| lv_i_terminal_id | TYPE XUTERMINAL, " SPACE | |||
| lv_e_default | TYPE ISH_ON_OFF, " | |||
| lv_not_found | TYPE ISH_ON_OFF, " | |||
| lv_i_invoke_default | TYPE ISH_ON_OFF, " 'X' | |||
| lv_e_fct_crd | TYPE NWCH_EHC_FCT_CRD, " | |||
| lv_e_fct_inq | TYPE NWCH_EHC_FCT_INQ, " | |||
| lv_e_fct_sda | TYPE NWCH_EHC_FCT_SDA, " | |||
| lv_e_fct_nme | TYPE NWCH_EHC_FCT_MAN, " | |||
| lv_e_crd_trm | TYPE NWCH_EHC_CRD_TRM, " | |||
| lv_e_terminal_id | TYPE XUTERMINAL. " |
|   CALL FUNCTION 'ISH_CH_NEHC_DIV_READ_EHC_KVG' " |
| EXPORTING | ||
| I_TERMINAL_ID | = lv_i_terminal_id | |
| I_INVOKE_DEFAULT | = lv_i_invoke_default | |
| IMPORTING | ||
| ES_DATA | = lv_es_data | |
| E_DEFAULT | = lv_e_default | |
| E_FCT_CRD | = lv_e_fct_crd | |
| E_FCT_INQ | = lv_e_fct_inq | |
| E_FCT_SDA | = lv_e_fct_sda | |
| E_FCT_NME | = lv_e_fct_nme | |
| E_CRD_TRM | = lv_e_crd_trm | |
| E_TERMINAL_ID | = lv_e_terminal_id | |
| EXCEPTIONS | ||
| NO_TERMINAL = 1 | ||
| NOT_FOUND = 2 | ||
| . " ISH_CH_NEHC_DIV_READ_EHC_KVG | ||
ABAP code using 7.40 inline data declarations to call FM ISH_CH_NEHC_DIV_READ_EHC_KVG
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_terminal_id) | = ' '. | |||
| DATA(ld_i_invoke_default) | = 'X'. | |||
Search for further information about these or an SAP related objects