SAP ISH_N2_RAD_SHOW_PROC_WL_ENTRY Function Module for









ISH_N2_RAD_SHOW_PROC_WL_ENTRY is a standard ish n2 rad show proc wl entry 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 rad show proc wl entry FM, simply by entering the name ISH_N2_RAD_SHOW_PROC_WL_ENTRY into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_N2_RAD_SHOW_PROC_WL_ENTRY 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_RAD_SHOW_PROC_WL_ENTRY'"
EXPORTING
* S_PNAME = "IS-H*MED: Patient Name
* S_DOKTL = "Document Part
* S_LFDDOK = "
* S_DTKB = "Document Category Identifier
* S_STUDYID = "IS-H*MED: RAD DICOM Study ID
* S_STUDYUID = "IS-H*MED: RAD DICOM Study Instance UID
* S_IEXAMID = "IS-H*MED: RAD - Modality Internal Examination ID
* S_ACCNR = "IS-H*MED: RAD - DICOM Accession Number
* S_PATNR = "IS-H: Patient Number
* S_LNRLS = "IS-H: Service Sequence Number
* S_LEIST = "IS-H: Service in Service Catalog
* S_LEISTKTXT = "IS-H: First Short Text for Service
* S_ANFID = "IS-H*MED: Identification of a Request (Number)
* S_DOKAR = "Document Type
* S_DOKNR = "Document Number
* S_DOKVR = "Document Part
.



IMPORTING Parameters details for ISH_N2_RAD_SHOW_PROC_WL_ENTRY

S_PNAME - IS-H*MED: Patient Name

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

S_DOKTL - Document Part

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

S_LFDDOK -

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

S_DTKB - Document Category Identifier

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

S_STUDYID - IS-H*MED: RAD DICOM Study ID

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

S_STUDYUID - IS-H*MED: RAD DICOM Study Instance UID

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

S_IEXAMID - IS-H*MED: RAD - Modality Internal Examination ID

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

S_ACCNR - IS-H*MED: RAD - DICOM Accession Number

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

S_PATNR - IS-H: Patient Number

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

S_LNRLS - IS-H: Service Sequence Number

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

S_LEIST - IS-H: Service in Service Catalog

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

S_LEISTKTXT - IS-H: First Short Text for Service

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

S_ANFID - IS-H*MED: Identification of a Request (Number)

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

S_DOKAR - Document Type

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

S_DOKNR - Document Number

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

S_DOKVR - Document Part

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

Copy and paste ABAP code example for ISH_N2_RAD_SHOW_PROC_WL_ENTRY 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_s_pname  TYPE N2_PATNAM, "   
lv_s_doktl  TYPE DOKTL_D, "   
lv_s_lfddok  TYPE LFDDOK, "   
lv_s_dtkb  TYPE N2_DTKB, "   
lv_s_studyid  TYPE N2RADSTUDYID, "   
lv_s_studyuid  TYPE N2STUDYIUID, "   
lv_s_iexamid  TYPE N2RADIEXAMID, "   
lv_s_accnr  TYPE N2RADACCNR, "   
lv_s_patnr  TYPE PATNR, "   
lv_s_lnrls  TYPE LNRLS, "   
lv_s_leist  TYPE TARLS, "   
lv_s_leistktxt  TYPE TARKTXT1, "   
lv_s_anfid  TYPE ANFID, "   
lv_s_dokar  TYPE DOKAR, "   
lv_s_doknr  TYPE DOKNR, "   
lv_s_dokvr  TYPE DOKVR. "   

  CALL FUNCTION 'ISH_N2_RAD_SHOW_PROC_WL_ENTRY'  "
    EXPORTING
         S_PNAME = lv_s_pname
         S_DOKTL = lv_s_doktl
         S_LFDDOK = lv_s_lfddok
         S_DTKB = lv_s_dtkb
         S_STUDYID = lv_s_studyid
         S_STUDYUID = lv_s_studyuid
         S_IEXAMID = lv_s_iexamid
         S_ACCNR = lv_s_accnr
         S_PATNR = lv_s_patnr
         S_LNRLS = lv_s_lnrls
         S_LEIST = lv_s_leist
         S_LEISTKTXT = lv_s_leistktxt
         S_ANFID = lv_s_anfid
         S_DOKAR = lv_s_dokar
         S_DOKNR = lv_s_doknr
         S_DOKVR = lv_s_dokvr
. " ISH_N2_RAD_SHOW_PROC_WL_ENTRY




ABAP code using 7.40 inline data declarations to call FM ISH_N2_RAD_SHOW_PROC_WL_ENTRY

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!