SAP ISH_FPZ_SUBSCREEN_EXTERNAL Function Module for









ISH_FPZ_SUBSCREEN_EXTERNAL is a standard ish fpz subscreen external 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 fpz subscreen external FM, simply by entering the name ISH_FPZ_SUBSCREEN_EXTERNAL into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_FPZ_SUBSCREEN_EXTERNAL 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_FPZ_SUBSCREEN_EXTERNAL'"
EXPORTING
SS_EINRI = "Institution
SS_NPAT = "Patient Master Data
SS_NFAL = "Case Data
SS_NBEW = "Movement Data
* SS_VCODE_NFAL = 'DIS' "Processing Mode - Case
* SS_VCODE_NBEW = 'DIS' "Processing Mode - Movement
SS_EXTPRG = "Current Program
SS_TCODE = "Current Transaction Code
* SS_INFO = ' ' "Fill SS_INFO_TAB (on/off)

IMPORTING
SS_REPID = "Subscreen (Program)
SS_DYNNR = "Subscreen (Dynpro)
SS_CURSOR = "Cursor Position on Screen

TABLES
* SS_INFPZ = "Case-to-Person Assignments
* SS_INFO_TAB = "Short Info External Physicians

EXCEPTIONS
ERROR = 1
.



IMPORTING Parameters details for ISH_FPZ_SUBSCREEN_EXTERNAL

SS_EINRI - Institution

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

SS_NPAT - Patient Master Data

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

SS_NFAL - Case Data

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

SS_NBEW - Movement Data

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

SS_VCODE_NFAL - Processing Mode - Case

Data type: TNDYM-VCODE
Default: 'DIS'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_VCODE_NBEW - Processing Mode - Movement

Data type: TNDYM-VCODE
Default: 'DIS'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_EXTPRG - Current Program

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

SS_TCODE - Current Transaction Code

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

SS_INFO - Fill SS_INFO_TAB (on/off)

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

EXPORTING Parameters details for ISH_FPZ_SUBSCREEN_EXTERNAL

SS_REPID - Subscreen (Program)

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

SS_DYNNR - Subscreen (Dynpro)

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

SS_CURSOR - Cursor Position on Screen

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

TABLES Parameters details for ISH_FPZ_SUBSCREEN_EXTERNAL

SS_INFPZ - Case-to-Person Assignments

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

SS_INFO_TAB - Short Info External Physicians

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

EXCEPTIONS details

ERROR - Errors Occurred, Do not Display Subscreen

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_FPZ_SUBSCREEN_EXTERNAL 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_error  TYPE STRING, "   
lv_ss_einri  TYPE RNPA1-EINRI, "   
lt_ss_infpz  TYPE STANDARD TABLE OF RNFPZZ, "   
lv_ss_repid  TYPE SY-REPID, "   
lv_ss_npat  TYPE NPAT, "   
lv_ss_dynnr  TYPE SY-DYNNR, "   
lt_ss_info_tab  TYPE STANDARD TABLE OF NISH_SHORT_INFO_TAB, "   
lv_ss_nfal  TYPE NFAL, "   
lv_ss_cursor  TYPE TNDYM-CURSR, "   
lv_ss_nbew  TYPE NBEW, "   
lv_ss_vcode_nfal  TYPE TNDYM-VCODE, "   'DIS'
lv_ss_vcode_nbew  TYPE TNDYM-VCODE, "   'DIS'
lv_ss_extprg  TYPE SY-REPID, "   
lv_ss_tcode  TYPE SY-TCODE, "   
lv_ss_info  TYPE NPDOK-XFELD. "   ' '

  CALL FUNCTION 'ISH_FPZ_SUBSCREEN_EXTERNAL'  "
    EXPORTING
         SS_EINRI = lv_ss_einri
         SS_NPAT = lv_ss_npat
         SS_NFAL = lv_ss_nfal
         SS_NBEW = lv_ss_nbew
         SS_VCODE_NFAL = lv_ss_vcode_nfal
         SS_VCODE_NBEW = lv_ss_vcode_nbew
         SS_EXTPRG = lv_ss_extprg
         SS_TCODE = lv_ss_tcode
         SS_INFO = lv_ss_info
    IMPORTING
         SS_REPID = lv_ss_repid
         SS_DYNNR = lv_ss_dynnr
         SS_CURSOR = lv_ss_cursor
    TABLES
         SS_INFPZ = lt_ss_infpz
         SS_INFO_TAB = lt_ss_info_tab
    EXCEPTIONS
        ERROR = 1
. " ISH_FPZ_SUBSCREEN_EXTERNAL




ABAP code using 7.40 inline data declarations to call FM ISH_FPZ_SUBSCREEN_EXTERNAL

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 EINRI FROM RNPA1 INTO @DATA(ld_ss_einri).
 
 
"SELECT single REPID FROM SY INTO @DATA(ld_ss_repid).
 
 
"SELECT single DYNNR FROM SY INTO @DATA(ld_ss_dynnr).
 
 
 
"SELECT single CURSR FROM TNDYM INTO @DATA(ld_ss_cursor).
 
 
"SELECT single VCODE FROM TNDYM INTO @DATA(ld_ss_vcode_nfal).
DATA(ld_ss_vcode_nfal) = 'DIS'.
 
"SELECT single VCODE FROM TNDYM INTO @DATA(ld_ss_vcode_nbew).
DATA(ld_ss_vcode_nbew) = 'DIS'.
 
"SELECT single REPID FROM SY INTO @DATA(ld_ss_extprg).
 
"SELECT single TCODE FROM SY INTO @DATA(ld_ss_tcode).
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_ss_info).
DATA(ld_ss_info) = ' '.
 


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!