SAP ISH_CH_FIND_POINT_VALUE_SDRG Function Module for









ISH_CH_FIND_POINT_VALUE_SDRG is a standard ish ch find point value sdrg 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 find point value sdrg FM, simply by entering the name ISH_CH_FIND_POINT_VALUE_SDRG into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_CH_FIND_POINT_VALUE_SDRG 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_FIND_POINT_VALUE_SDRG'"
EXPORTING
I_EINRI = "
I_FALNR = "
I_KOMK = "
I_KOMP = "
I_ABINT = "
* I_MESSAGES_COLLECT = 'X' "
* I_MESSAGES_SHOW = 'X' "

IMPORTING
PKTWERT = "
WAERS = "

EXCEPTIONS
MISSING_EINRI = 1 MISSING_FALNR = 2 MISSING_LNRLS = 3 MISSING_ABINT = 4 TNWCH83_READ_ERROR = 5 ERROR_SPLIT = 6
.



IMPORTING Parameters details for ISH_CH_FIND_POINT_VALUE_SDRG

I_EINRI -

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

I_FALNR -

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

I_KOMK -

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

I_KOMP -

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

I_ABINT -

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

I_MESSAGES_COLLECT -

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

I_MESSAGES_SHOW -

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

EXPORTING Parameters details for ISH_CH_FIND_POINT_VALUE_SDRG

PKTWERT -

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

WAERS -

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

EXCEPTIONS details

MISSING_EINRI -

Data type:
Optional: No
Call by Reference: Yes

MISSING_FALNR -

Data type:
Optional: No
Call by Reference: Yes

MISSING_LNRLS -

Data type:
Optional: No
Call by Reference: Yes

MISSING_ABINT -

Data type:
Optional: No
Call by Reference: Yes

TNWCH83_READ_ERROR -

Data type:
Optional: No
Call by Reference: Yes

ERROR_SPLIT -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_CH_FIND_POINT_VALUE_SDRG 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_pktwert  TYPE NWCH_PKTW, "   
lv_missing_einri  TYPE NWCH_PKTW, "   
lv_waers  TYPE RI_WAERS, "   
lv_i_falnr  TYPE FALNR, "   
lv_missing_falnr  TYPE FALNR, "   
lv_i_komk  TYPE KOMK, "   
lv_missing_lnrls  TYPE KOMK, "   
lv_i_komp  TYPE KOMP, "   
lv_missing_abint  TYPE KOMP, "   
lv_i_abint  TYPE ABRART, "   
lv_tnwch83_read_error  TYPE ABRART, "   
lv_error_split  TYPE ABRART, "   
lv_i_messages_collect  TYPE NXFELD, "   'X'
lv_i_messages_show  TYPE NXFELD. "   'X'

  CALL FUNCTION 'ISH_CH_FIND_POINT_VALUE_SDRG'  "
    EXPORTING
         I_EINRI = lv_i_einri
         I_FALNR = lv_i_falnr
         I_KOMK = lv_i_komk
         I_KOMP = lv_i_komp
         I_ABINT = lv_i_abint
         I_MESSAGES_COLLECT = lv_i_messages_collect
         I_MESSAGES_SHOW = lv_i_messages_show
    IMPORTING
         PKTWERT = lv_pktwert
         WAERS = lv_waers
    EXCEPTIONS
        MISSING_EINRI = 1
        MISSING_FALNR = 2
        MISSING_LNRLS = 3
        MISSING_ABINT = 4
        TNWCH83_READ_ERROR = 5
        ERROR_SPLIT = 6
. " ISH_CH_FIND_POINT_VALUE_SDRG




ABAP code using 7.40 inline data declarations to call FM ISH_CH_FIND_POINT_VALUE_SDRG

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_messages_collect) = 'X'.
 
DATA(ld_i_messages_show) = '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!