SAP ISH_WS_BDT_START_TRANS Function Module for









ISH_WS_BDT_START_TRANS is a standard ish ws bdt start trans 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 ws bdt start trans FM, simply by entering the name ISH_WS_BDT_START_TRANS into the relevant SAP transaction such as SE37 or SE38.

Function Group: N_WS_AMASYS
Program Name: SAPLN_WS_AMASYS
Main Program: SAPLN_WS_AMASYS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function ISH_WS_BDT_START_TRANS 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_WS_BDT_START_TRANS'"
EXPORTING
* I_SYSID = SY-SYSID "Name of the SAP System
* I_CLIENT = SY-MANDT "Client
I_KVNUM = "IS-H: Identification of Physician (e.g. Panel Phy. Assoc.No)
I_QUARTER = "
* I_TESTRUN = 'X' "Test Mode

IMPORTING
ET_ERROR = "Technical Error
ES_RETURN = "
E_SESSIONID = "Session ID Amasys
.



IMPORTING Parameters details for ISH_WS_BDT_START_TRANS

I_SYSID - Name of the SAP System

Data type: SYSYSID
Default: SY-SYSID
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CLIENT - Client

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

I_KVNUM - IS-H: Identification of Physician (e.g. Panel Phy. Assoc.No)

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

I_QUARTER -

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

I_TESTRUN - Test Mode

Data type: ISH_ON_OFF
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISH_WS_BDT_START_TRANS

ET_ERROR - Technical Error

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

ES_RETURN -

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

E_SESSIONID - Session ID Amasys

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

Copy and paste ABAP code example for ISH_WS_BDT_START_TRANS 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_sysid  TYPE SYSYSID, "   SY-SYSID
lv_et_error  TYPE ISH_BAPIRET2_TAB_TYPE, "   
lv_i_client  TYPE MANDT, "   SY-MANDT
lv_es_return  TYPE BAPIRET2, "   
lv_i_kvnum  TYPE NPER-ARZTN, "   
lv_e_sessionid  TYPE ISH_SESSIONID_WS, "   
lv_i_quarter  TYPE NBEW-BWIDT, "   
lv_i_testrun  TYPE ISH_ON_OFF. "   'X'

  CALL FUNCTION 'ISH_WS_BDT_START_TRANS'  "
    EXPORTING
         I_SYSID = lv_i_sysid
         I_CLIENT = lv_i_client
         I_KVNUM = lv_i_kvnum
         I_QUARTER = lv_i_quarter
         I_TESTRUN = lv_i_testrun
    IMPORTING
         ET_ERROR = lv_et_error
         ES_RETURN = lv_es_return
         E_SESSIONID = lv_e_sessionid
. " ISH_WS_BDT_START_TRANS




ABAP code using 7.40 inline data declarations to call FM ISH_WS_BDT_START_TRANS

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_sysid) = SY-SYSID.
 
 
DATA(ld_i_client) = SY-MANDT.
 
 
"SELECT single ARZTN FROM NPER INTO @DATA(ld_i_kvnum).
 
 
"SELECT single BWIDT FROM NBEW INTO @DATA(ld_i_quarter).
 
DATA(ld_i_testrun) = '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!