SAP ISH_N2_DYNP_VALUES_READ Function Module for









ISH_N2_DYNP_VALUES_READ is a standard ish n2 dynp values read 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 n2 dynp values read FM, simply by entering the name ISH_N2_DYNP_VALUES_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_N2_DYNP_VALUES_READ 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_N2_DYNP_VALUES_READ'"
EXPORTING
DYNAME = "
DYNUMB = "
* TRANSLATE_TO_UPPER = ' ' "
* CONVERSION = 'X' "

TABLES
DYNPFIELDS = "

EXCEPTIONS
INVALID_ABAPWORKAREA = 1 INVALID_DYNPROFIELD = 2 INVALID_DYNPRONAME = 3 INVALID_DYNPRONUMMER = 4 INVALID_REQUEST = 5 NO_FIELDDESCRIPTION = 6 UNDEFIND_ERROR = 7
.



IMPORTING Parameters details for ISH_N2_DYNP_VALUES_READ

DYNAME -

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

DYNUMB -

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

TRANSLATE_TO_UPPER -

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

CONVERSION -

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

TABLES Parameters details for ISH_N2_DYNP_VALUES_READ

DYNPFIELDS -

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

EXCEPTIONS details

INVALID_ABAPWORKAREA -

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

INVALID_DYNPROFIELD -

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

INVALID_DYNPRONAME -

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

INVALID_DYNPRONUMMER -

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

INVALID_REQUEST -

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

NO_FIELDDESCRIPTION -

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

UNDEFIND_ERROR -

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

Copy and paste ABAP code example for ISH_N2_DYNP_VALUES_READ 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_dyname  TYPE D020S-PROG, "   
lt_dynpfields  TYPE STANDARD TABLE OF DYNPREAD, "   
lv_invalid_abapworkarea  TYPE DYNPREAD, "   
lv_dynumb  TYPE D020S-DNUM, "   
lv_invalid_dynprofield  TYPE D020S, "   
lv_invalid_dynproname  TYPE D020S, "   
lv_translate_to_upper  TYPE D020S, "   SPACE
lv_conversion  TYPE D020S, "   'X'
lv_invalid_dynpronummer  TYPE D020S, "   
lv_invalid_request  TYPE D020S, "   
lv_no_fielddescription  TYPE D020S, "   
lv_undefind_error  TYPE D020S. "   

  CALL FUNCTION 'ISH_N2_DYNP_VALUES_READ'  "
    EXPORTING
         DYNAME = lv_dyname
         DYNUMB = lv_dynumb
         TRANSLATE_TO_UPPER = lv_translate_to_upper
         CONVERSION = lv_conversion
    TABLES
         DYNPFIELDS = lt_dynpfields
    EXCEPTIONS
        INVALID_ABAPWORKAREA = 1
        INVALID_DYNPROFIELD = 2
        INVALID_DYNPRONAME = 3
        INVALID_DYNPRONUMMER = 4
        INVALID_REQUEST = 5
        NO_FIELDDESCRIPTION = 6
        UNDEFIND_ERROR = 7
. " ISH_N2_DYNP_VALUES_READ




ABAP code using 7.40 inline data declarations to call FM ISH_N2_DYNP_VALUES_READ

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 PROG FROM D020S INTO @DATA(ld_dyname).
 
 
 
"SELECT single DNUM FROM D020S INTO @DATA(ld_dynumb).
 
 
 
DATA(ld_translate_to_upper) = ' '.
 
DATA(ld_conversion) = '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!