SAP ISH_FORM_SELECT Function Module for IS-H: Individual selection of form printout function modules
ISH_FORM_SELECT is a standard ish form select SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-H: Individual selection of form printout function modules processing and below is the pattern details for this FM, 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 form select FM, simply by entering the name ISH_FORM_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: NPRT
Program Name: SAPLNPRT
Main Program: SAPLNPRT
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function ISH_FORM_SELECT 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_FORM_SELECT'"IS-H: Individual selection of form printout function modules.
EXPORTING
SS_APPLK = "Application
* SS_EINRI = ' ' "
SS_EVENT = "Event
* SS_ST_PRINT = ' ' "Standard print option ('X') or choose form print option (' ')
* SS_READ_DB = 'X' "
* SS_TERMINAL = ' ' "
TABLES
SS_NBEW = "Current movements for which forms required
SS_NFAL = "Cases for which forms required
EXCEPTIONS
ERROR_OCCURED = 1
IMPORTING Parameters details for ISH_FORM_SELECT
SS_APPLK - Application
Data type: RNEVT-APPLKOptional: No
Call by Reference: No ( called with pass by value option)
SS_EINRI -
Data type: RNPA1-EINRIDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
SS_EVENT - Event
Data type: RNEVT-EVENTOptional: No
Call by Reference: No ( called with pass by value option)
SS_ST_PRINT - Standard print option ('X') or choose form print option (' ')
Data type: NPDOK-XFELDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
SS_READ_DB -
Data type: NPDOK-XFELDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
SS_TERMINAL -
Data type: TNF07-TERMINALDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISH_FORM_SELECT
SS_NBEW - Current movements for which forms required
Data type: NBEWOptional: No
Call by Reference: No ( called with pass by value option)
SS_NFAL - Cases for which forms required
Data type: NFALOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERROR_OCCURED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISH_FORM_SELECT 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: | ||||
| lt_ss_nbew | TYPE STANDARD TABLE OF NBEW, " | |||
| lv_ss_applk | TYPE RNEVT-APPLK, " | |||
| lv_error_occured | TYPE RNEVT, " | |||
| lt_ss_nfal | TYPE STANDARD TABLE OF NFAL, " | |||
| lv_ss_einri | TYPE RNPA1-EINRI, " SPACE | |||
| lv_ss_event | TYPE RNEVT-EVENT, " | |||
| lv_ss_st_print | TYPE NPDOK-XFELD, " SPACE | |||
| lv_ss_read_db | TYPE NPDOK-XFELD, " 'X' | |||
| lv_ss_terminal | TYPE TNF07-TERMINAL. " SPACE |
|   CALL FUNCTION 'ISH_FORM_SELECT' "IS-H: Individual selection of form printout function modules |
| EXPORTING | ||
| SS_APPLK | = lv_ss_applk | |
| SS_EINRI | = lv_ss_einri | |
| SS_EVENT | = lv_ss_event | |
| SS_ST_PRINT | = lv_ss_st_print | |
| SS_READ_DB | = lv_ss_read_db | |
| SS_TERMINAL | = lv_ss_terminal | |
| TABLES | ||
| SS_NBEW | = lt_ss_nbew | |
| SS_NFAL | = lt_ss_nfal | |
| EXCEPTIONS | ||
| ERROR_OCCURED = 1 | ||
| . " ISH_FORM_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM ISH_FORM_SELECT
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 APPLK FROM RNEVT INTO @DATA(ld_ss_applk). | ||||
| "SELECT single EINRI FROM RNPA1 INTO @DATA(ld_ss_einri). | ||||
| DATA(ld_ss_einri) | = ' '. | |||
| "SELECT single EVENT FROM RNEVT INTO @DATA(ld_ss_event). | ||||
| "SELECT single XFELD FROM NPDOK INTO @DATA(ld_ss_st_print). | ||||
| DATA(ld_ss_st_print) | = ' '. | |||
| "SELECT single XFELD FROM NPDOK INTO @DATA(ld_ss_read_db). | ||||
| DATA(ld_ss_read_db) | = 'X'. | |||
| "SELECT single TERMINAL FROM TNF07 INTO @DATA(ld_ss_terminal). | ||||
| DATA(ld_ss_terminal) | = ' '. | |||
Search for further information about these or an SAP related objects