SAP ISH_N2_CALL_OPTEAM_MODAL Function Module for









ISH_N2_CALL_OPTEAM_MODAL is a standard ish n2 call opteam modal 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 call opteam modal FM, simply by entering the name ISH_N2_CALL_OPTEAM_MODAL into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_N2_CALL_OPTEAM_MODAL 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_CALL_OPTEAM_MODAL'"
EXPORTING
I_ANKERLEISTUNG = "Sequence Number of Service
* I_SHOW_TASK = 'X' "Display Task Selection (ON/OFF)
I_EINRI = "Institution
I_CALLER = "Calling Program
* I_VCODE = 'UPD' "Processing Mode (INS, UPD, DIS)
* I_ENQUEUE = 'X' "
* I_DEQUEUE = 'X' "Remove Locks Concerning Patient, Case, ...
* I_INVOLV_MA = 'X' "
* I_ABLH = '*' "Include Process-Organizational Hierarchy (ON/OFF/*)
* I_SHOW_PARTNER = 'X' "Display Employee Selection (ON/OFF)
.



IMPORTING Parameters details for ISH_N2_CALL_OPTEAM_MODAL

I_ANKERLEISTUNG - Sequence Number of Service

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

I_SHOW_TASK - Display Task Selection (ON/OFF)

Data type: ISH_ON_OFF
Default: 'X'
Optional: Yes
Call by Reference: Yes

I_EINRI - Institution

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

I_CALLER - Calling Program

Data type: SY-CPROG
Optional: No
Call by Reference: Yes

I_VCODE - Processing Mode (INS, UPD, DIS)

Data type: ISH_VCODE
Default: 'UPD'
Optional: Yes
Call by Reference: Yes

I_ENQUEUE -

Data type: ISH_ON_OFF
Default: 'X'
Optional: Yes
Call by Reference: Yes

I_DEQUEUE - Remove Locks Concerning Patient, Case, ...

Data type: ISH_ON_OFF
Default: 'X'
Optional: Yes
Call by Reference: Yes

I_INVOLV_MA -

Data type: ISH_ON_OFF
Default: 'X'
Optional: Yes
Call by Reference: Yes

I_ABLH - Include Process-Organizational Hierarchy (ON/OFF/*)

Data type: ISH_ON_OFF
Default: '*'
Optional: Yes
Call by Reference: Yes

I_SHOW_PARTNER - Display Employee Selection (ON/OFF)

Data type: ISH_ON_OFF
Default: 'X'
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for ISH_N2_CALL_OPTEAM_MODAL 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_i_ankerleistung  TYPE LNRLS, "   
lv_i_show_task  TYPE ISH_ON_OFF, "   'X'
lv_i_einri  TYPE EINRI, "   
lv_i_caller  TYPE SY-CPROG, "   
lv_i_vcode  TYPE ISH_VCODE, "   'UPD'
lv_i_enqueue  TYPE ISH_ON_OFF, "   'X'
lv_i_dequeue  TYPE ISH_ON_OFF, "   'X'
lv_i_involv_ma  TYPE ISH_ON_OFF, "   'X'
lv_i_ablh  TYPE ISH_ON_OFF, "   '*'
lv_i_show_partner  TYPE ISH_ON_OFF. "   'X'

  CALL FUNCTION 'ISH_N2_CALL_OPTEAM_MODAL'  "
    EXPORTING
         I_ANKERLEISTUNG = lv_i_ankerleistung
         I_SHOW_TASK = lv_i_show_task
         I_EINRI = lv_i_einri
         I_CALLER = lv_i_caller
         I_VCODE = lv_i_vcode
         I_ENQUEUE = lv_i_enqueue
         I_DEQUEUE = lv_i_dequeue
         I_INVOLV_MA = lv_i_involv_ma
         I_ABLH = lv_i_ablh
         I_SHOW_PARTNER = lv_i_show_partner
. " ISH_N2_CALL_OPTEAM_MODAL




ABAP code using 7.40 inline data declarations to call FM ISH_N2_CALL_OPTEAM_MODAL

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.

 
DATA(ld_i_show_task) = 'X'.
 
 
"SELECT single CPROG FROM SY INTO @DATA(ld_i_caller).
 
DATA(ld_i_vcode) = 'UPD'.
 
DATA(ld_i_enqueue) = 'X'.
 
DATA(ld_i_dequeue) = 'X'.
 
DATA(ld_i_involv_ma) = 'X'.
 
DATA(ld_i_ablh) = '*'.
 
DATA(ld_i_show_partner) = 'X'.
 


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!