SAP ISH_NL_CLASS_GETLIST Function Module for









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

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



Function ISH_NL_CLASS_GETLIST 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_CLASS_GETLIST'"
EXPORTING
I_EINRI = "
I_FALNR = "
* I_BEGDT = "

IMPORTING
E_KOSTR = "
E_UZOVI = "
E_PRIO = "
E_CLASS = "
E_T_NCIR = "

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for ISH_NL_CLASS_GETLIST

I_EINRI -

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

I_FALNR -

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

I_BEGDT -

Data type: ISH_NL_DBC_BEGDT
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for ISH_NL_CLASS_GETLIST

E_KOSTR -

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

E_UZOVI -

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

E_PRIO -

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

E_CLASS -

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

E_T_NCIR -

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

EXCEPTIONS details

NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_NL_CLASS_GETLIST 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_e_kostr  TYPE KH_KOSTR, "   
lv_i_einri  TYPE EINRI, "   
lv_not_found  TYPE EINRI, "   
lv_e_uzovi  TYPE KKSNR, "   
lv_i_falnr  TYPE FALNR, "   
lv_e_prio  TYPE ISH_PRIO, "   
lv_i_begdt  TYPE ISH_NL_DBC_BEGDT, "   
lv_e_class  TYPE ISH_CLASS, "   
lv_e_t_ncir  TYPE ISH_YT_NCIR. "   

  CALL FUNCTION 'ISH_NL_CLASS_GETLIST'  "
    EXPORTING
         I_EINRI = lv_i_einri
         I_FALNR = lv_i_falnr
         I_BEGDT = lv_i_begdt
    IMPORTING
         E_KOSTR = lv_e_kostr
         E_UZOVI = lv_e_uzovi
         E_PRIO = lv_e_prio
         E_CLASS = lv_e_class
         E_T_NCIR = lv_e_t_ncir
    EXCEPTIONS
        NOT_FOUND = 1
. " ISH_NL_CLASS_GETLIST




ABAP code using 7.40 inline data declarations to call FM ISH_NL_CLASS_GETLIST

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.

 
 
 
 
 
 
 
 
 


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!