SAP ISH_CALL_LIST_HEAD_FOR_SCREEN Function Module for









ISH_CALL_LIST_HEAD_FOR_SCREEN is a standard ish call list head for screen 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 call list head for screen FM, simply by entering the name ISH_CALL_LIST_HEAD_FOR_SCREEN into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_CALL_LIST_HEAD_FOR_SCREEN 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_CALL_LIST_HEAD_FOR_SCREEN'"
EXPORTING
* AUSBEGDT = '00000000' "Start of evaluation period
* VERENDDT = '00000000' "
ZEIT = "Time of list creation
* AUSENDDT = '00000000' "End of evaluation period
DATUM = "Date of list creation
* EINRI = ' ' "Institution
* LINE_SIZE = 80 "No. of columns on page
* REPID = ' ' "Program name
* TITLE_LIN1 = ' ' "Heading line 1
* TITLE_LIN2 = ' ' "Heading line 2
* VERBEGDT = '00000000' "

EXCEPTIONS
INVALID_EINRI = 1
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLN000_002 IS-H: Enhancement String Standardization

IMPORTING Parameters details for ISH_CALL_LIST_HEAD_FOR_SCREEN

AUSBEGDT - Start of evaluation period

Data type: RNLISC-AUSBEGDT
Default: '00000000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

VERENDDT -

Data type: RNLISC-VERENDDT
Default: '00000000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

ZEIT - Time of list creation

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

AUSENDDT - End of evaluation period

Data type: RNLISC-AUSENDDT
Default: '00000000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

DATUM - Date of list creation

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

EINRI - Institution

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

LINE_SIZE - No. of columns on page

Data type: RNLISC-LINE_SIZE
Default: 80
Optional: Yes
Call by Reference: No ( called with pass by value option)

REPID - Program name

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

TITLE_LIN1 - Heading line 1

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

TITLE_LIN2 - Heading line 2

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

VERBEGDT -

Data type: RNLISC-VERBEGDT
Default: '00000000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

INVALID_EINRI - Institution not found

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

Copy and paste ABAP code example for ISH_CALL_LIST_HEAD_FOR_SCREEN 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_ausbegdt  TYPE RNLISC-AUSBEGDT, "   '00000000'
lv_invalid_einri  TYPE RNLISC, "   
lv_verenddt  TYPE RNLISC-VERENDDT, "   '00000000'
lv_zeit  TYPE SY-UZEIT, "   
lv_ausenddt  TYPE RNLISC-AUSENDDT, "   '00000000'
lv_datum  TYPE SY-DATUM, "   
lv_einri  TYPE RNLISC-EINRI, "   SPACE
lv_line_size  TYPE RNLISC-LINE_SIZE, "   80
lv_repid  TYPE RNLISC-REPID, "   SPACE
lv_title_lin1  TYPE RNLISC-TITLE_LIN1, "   SPACE
lv_title_lin2  TYPE RNLISC-TITLE_LIN2, "   SPACE
lv_verbegdt  TYPE RNLISC-VERBEGDT. "   '00000000'

  CALL FUNCTION 'ISH_CALL_LIST_HEAD_FOR_SCREEN'  "
    EXPORTING
         AUSBEGDT = lv_ausbegdt
         VERENDDT = lv_verenddt
         ZEIT = lv_zeit
         AUSENDDT = lv_ausenddt
         DATUM = lv_datum
         EINRI = lv_einri
         LINE_SIZE = lv_line_size
         REPID = lv_repid
         TITLE_LIN1 = lv_title_lin1
         TITLE_LIN2 = lv_title_lin2
         VERBEGDT = lv_verbegdt
    EXCEPTIONS
        INVALID_EINRI = 1
. " ISH_CALL_LIST_HEAD_FOR_SCREEN




ABAP code using 7.40 inline data declarations to call FM ISH_CALL_LIST_HEAD_FOR_SCREEN

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 AUSBEGDT FROM RNLISC INTO @DATA(ld_ausbegdt).
DATA(ld_ausbegdt) = '00000000'.
 
 
"SELECT single VERENDDT FROM RNLISC INTO @DATA(ld_verenddt).
DATA(ld_verenddt) = '00000000'.
 
"SELECT single UZEIT FROM SY INTO @DATA(ld_zeit).
 
"SELECT single AUSENDDT FROM RNLISC INTO @DATA(ld_ausenddt).
DATA(ld_ausenddt) = '00000000'.
 
"SELECT single DATUM FROM SY INTO @DATA(ld_datum).
 
"SELECT single EINRI FROM RNLISC INTO @DATA(ld_einri).
DATA(ld_einri) = ' '.
 
"SELECT single LINE_SIZE FROM RNLISC INTO @DATA(ld_line_size).
DATA(ld_line_size) = 80.
 
"SELECT single REPID FROM RNLISC INTO @DATA(ld_repid).
DATA(ld_repid) = ' '.
 
"SELECT single TITLE_LIN1 FROM RNLISC INTO @DATA(ld_title_lin1).
DATA(ld_title_lin1) = ' '.
 
"SELECT single TITLE_LIN2 FROM RNLISC INTO @DATA(ld_title_lin2).
DATA(ld_title_lin2) = ' '.
 
"SELECT single VERBEGDT FROM RNLISC INTO @DATA(ld_verbegdt).
DATA(ld_verbegdt) = '00000000'.
 


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!