SAP ISH_N2_RAD_FINDING_WORKPLACE Function Module for









ISH_N2_RAD_FINDING_WORKPLACE is a standard ish n2 rad finding workplace 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 finding workplace FM, simply by entering the name ISH_N2_RAD_FINDING_WORKPLACE into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_N2_RAD_FINDING_WORKPLACE 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_FINDING_WORKPLACE'"
EXPORTING
SS_REPID = "
SS_DOKTYP = "
SS_DTVERS = "
SS_EINRI = "
SS_ORGDO = "
SS_MITARB = "
* SS_PACKAGE = ' ' "
* SS_PACSID = "
T_RSPARAMS = "

TABLES
* T_DOCSTAT = "
* T_ERBOE = "
* T_ERB_LEIST = "
* T_ERMITARB = "
* T_AUFGABE = "
* T_UPDATE = "
* T_ANFOE = "

EXCEPTIONS
CNT_CREATE_ERROR = 1
.



IMPORTING Parameters details for ISH_N2_RAD_FINDING_WORKPLACE

SS_REPID -

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

SS_DOKTYP -

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

SS_DTVERS -

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

SS_EINRI -

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

SS_ORGDO -

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

SS_MITARB -

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

SS_PACKAGE -

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

SS_PACSID -

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

T_RSPARAMS -

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

TABLES Parameters details for ISH_N2_RAD_FINDING_WORKPLACE

T_DOCSTAT -

Data type:
Optional: Yes
Call by Reference: Yes

T_ERBOE -

Data type:
Optional: Yes
Call by Reference: Yes

T_ERB_LEIST -

Data type:
Optional: Yes
Call by Reference: Yes

T_ERMITARB -

Data type:
Optional: Yes
Call by Reference: Yes

T_AUFGABE -

Data type:
Optional: Yes
Call by Reference: Yes

T_UPDATE -

Data type:
Optional: Yes
Call by Reference: Yes

T_ANFOE -

Data type:
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

CNT_CREATE_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_N2_RAD_FINDING_WORKPLACE 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_ss_repid  TYPE SY-REPID, "   
lt_t_docstat  TYPE STANDARD TABLE OF SY, "   
lv_cnt_create_error  TYPE SY, "   
lt_t_erboe  TYPE STANDARD TABLE OF SY, "   
lv_ss_doktyp  TYPE N2_DTID, "   
lv_ss_dtvers  TYPE N2_VERS, "   
lt_t_erb_leist  TYPE STANDARD TABLE OF N2_VERS, "   
lv_ss_einri  TYPE TN01-EINRI, "   
lt_t_ermitarb  TYPE STANDARD TABLE OF TN01, "   
lv_ss_orgdo  TYPE ORGID, "   
lt_t_aufgabe  TYPE STANDARD TABLE OF ORGID, "   
lt_t_update  TYPE STANDARD TABLE OF ORGID, "   
lv_ss_mitarb  TYPE NDOC-MITARB, "   
lt_t_anfoe  TYPE STANDARD TABLE OF NDOC, "   
lv_ss_package  TYPE FLAG, "   SPACE
lv_ss_pacsid  TYPE TN1PACS-PACSID, "   
lv_t_rsparams  TYPE ISHMED_T_RSPARAMS. "   

  CALL FUNCTION 'ISH_N2_RAD_FINDING_WORKPLACE'  "
    EXPORTING
         SS_REPID = lv_ss_repid
         SS_DOKTYP = lv_ss_doktyp
         SS_DTVERS = lv_ss_dtvers
         SS_EINRI = lv_ss_einri
         SS_ORGDO = lv_ss_orgdo
         SS_MITARB = lv_ss_mitarb
         SS_PACKAGE = lv_ss_package
         SS_PACSID = lv_ss_pacsid
         T_RSPARAMS = lv_t_rsparams
    TABLES
         T_DOCSTAT = lt_t_docstat
         T_ERBOE = lt_t_erboe
         T_ERB_LEIST = lt_t_erb_leist
         T_ERMITARB = lt_t_ermitarb
         T_AUFGABE = lt_t_aufgabe
         T_UPDATE = lt_t_update
         T_ANFOE = lt_t_anfoe
    EXCEPTIONS
        CNT_CREATE_ERROR = 1
. " ISH_N2_RAD_FINDING_WORKPLACE




ABAP code using 7.40 inline data declarations to call FM ISH_N2_RAD_FINDING_WORKPLACE

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 REPID FROM SY INTO @DATA(ld_ss_repid).
 
 
 
 
 
 
 
"SELECT single EINRI FROM TN01 INTO @DATA(ld_ss_einri).
 
 
 
 
 
"SELECT single MITARB FROM NDOC INTO @DATA(ld_ss_mitarb).
 
 
DATA(ld_ss_package) = ' '.
 
"SELECT single PACSID FROM TN1PACS INTO @DATA(ld_ss_pacsid).
 
 


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!