SAP ISH_WP_TRANSACTION_CALL Function Module for
ISH_WP_TRANSACTION_CALL is a standard ish wp transaction call 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 wp transaction call FM, simply by entering the name ISH_WP_TRANSACTION_CALL into the relevant SAP transaction such as SE37 or SE38.
Function Group: N_WP_FRAMEWORK
Program Name: SAPLN_WP_FRAMEWORK
Main Program: SAPLN_WP_FRAMEWORK
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_WP_TRANSACTION_CALL 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_WP_TRANSACTION_CALL'".
EXPORTING
I_TCODE = "ABAP Program, Current Transaction Code
* I_VIEW_TYPE = "
* I_VIEW_FIELD = "
IMPORTING
E_EXECUTING_DONE = "
E_REFRESH_LIST = "
E_RC = "Return Code (0 = OK, 1 = Error, 2 = Cancel)
TABLES
* I_OBJECTS = "
EXCEPTIONS
NO_AUTHORITY = 1 PARAMETER_MISSING = 2 NUMBER_OF_OBJECTS_TO_HIGH = 3 TRANSACTION_NOT_DEFINE = 4
IMPORTING Parameters details for ISH_WP_TRANSACTION_CALL
I_TCODE - ABAP Program, Current Transaction Code
Data type: SY-TCODEOptional: No
Call by Reference: Yes
I_VIEW_TYPE -
Data type: NWVIEW-VIEWTYPEOptional: Yes
Call by Reference: Yes
I_VIEW_FIELD -
Data type: LVC_FNAMEOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISH_WP_TRANSACTION_CALL
E_EXECUTING_DONE -
Data type: ISH_TRUE_FALSEOptional: No
Call by Reference: Yes
E_REFRESH_LIST -
Data type: ISH_TRUE_FALSEOptional: No
Call by Reference: Yes
E_RC - Return Code (0 = OK, 1 = Error, 2 = Cancel)
Data type: ISH_METHOD_RCOptional: No
Call by Reference: Yes
TABLES Parameters details for ISH_WP_TRANSACTION_CALL
I_OBJECTS -
Data type: ISH_T_DRAG_DROP_DATAOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_AUTHORITY -
Data type:Optional: No
Call by Reference: Yes
PARAMETER_MISSING -
Data type:Optional: No
Call by Reference: Yes
NUMBER_OF_OBJECTS_TO_HIGH -
Data type:Optional: No
Call by Reference: Yes
TRANSACTION_NOT_DEFINE -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISH_WP_TRANSACTION_CALL 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_tcode | TYPE SY-TCODE, " | |||
| lt_i_objects | TYPE STANDARD TABLE OF ISH_T_DRAG_DROP_DATA, " | |||
| lv_no_authority | TYPE ISH_T_DRAG_DROP_DATA, " | |||
| lv_e_executing_done | TYPE ISH_TRUE_FALSE, " | |||
| lv_i_view_type | TYPE NWVIEW-VIEWTYPE, " | |||
| lv_e_refresh_list | TYPE ISH_TRUE_FALSE, " | |||
| lv_parameter_missing | TYPE ISH_TRUE_FALSE, " | |||
| lv_e_rc | TYPE ISH_METHOD_RC, " | |||
| lv_i_view_field | TYPE LVC_FNAME, " | |||
| lv_number_of_objects_to_high | TYPE LVC_FNAME, " | |||
| lv_transaction_not_define | TYPE LVC_FNAME. " |
|   CALL FUNCTION 'ISH_WP_TRANSACTION_CALL' " |
| EXPORTING | ||
| I_TCODE | = lv_i_tcode | |
| I_VIEW_TYPE | = lv_i_view_type | |
| I_VIEW_FIELD | = lv_i_view_field | |
| IMPORTING | ||
| E_EXECUTING_DONE | = lv_e_executing_done | |
| E_REFRESH_LIST | = lv_e_refresh_list | |
| E_RC | = lv_e_rc | |
| TABLES | ||
| I_OBJECTS | = lt_i_objects | |
| EXCEPTIONS | ||
| NO_AUTHORITY = 1 | ||
| PARAMETER_MISSING = 2 | ||
| NUMBER_OF_OBJECTS_TO_HIGH = 3 | ||
| TRANSACTION_NOT_DEFINE = 4 | ||
| . " ISH_WP_TRANSACTION_CALL | ||
ABAP code using 7.40 inline data declarations to call FM ISH_WP_TRANSACTION_CALL
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 TCODE FROM SY INTO @DATA(ld_i_tcode). | ||||
| "SELECT single VIEWTYPE FROM NWVIEW INTO @DATA(ld_i_view_type). | ||||
Search for further information about these or an SAP related objects