SAP IST_SAMPLE_T945 Function Module for IS-T-CA: Set Lock Status in Lock Proposals for IS-T Serv.in RM-CA









IST_SAMPLE_T945 is a standard ist sample t945 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-T-CA: Set Lock Status in Lock Proposals for IS-T Serv.in RM-CA processing and below is the pattern details for this FM, 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 ist sample t945 FM, simply by entering the name IST_SAMPLE_T945 into the relevant SAP transaction such as SE37 or SE38.

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



Function IST_SAMPLE_T945 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 'IST_SAMPLE_T945'"IS-T-CA:  Set Lock Status in Lock Proposals for IS-T Serv.in RM-CA
EXPORTING
I_TFK047L = "
I_FKKMAKO = "

IMPORTING
E_SUBRC = "
E_SUBRC_ACTIVE = "

TABLES
T_LOCK_PROP = "
T_FKKMAZE = "
T_FKKVKP1 = "Contract Accounts (Help Structure for View)
T_FKKEPOS = "
T_FIMSG = "

EXCEPTIONS
PROCESSING_ERROR = 1
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLIST_CA_DUNEVENT_001 IS-T-CA: Place Additional Field Values in Disconnection File

IMPORTING Parameters details for IST_SAMPLE_T945

I_TFK047L -

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

I_FKKMAKO -

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

EXPORTING Parameters details for IST_SAMPLE_T945

E_SUBRC -

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

E_SUBRC_ACTIVE -

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

TABLES Parameters details for IST_SAMPLE_T945

T_LOCK_PROP -

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

T_FKKMAZE -

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

T_FKKVKP1 - Contract Accounts (Help Structure for View)

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

T_FKKEPOS -

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

T_FIMSG -

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

EXCEPTIONS details

PROCESSING_ERROR -

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

Copy and paste ABAP code example for IST_SAMPLE_T945 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_e_subrc  TYPE SYSUBRC, "   
lv_i_tfk047l  TYPE TFK047L, "   
lt_t_lock_prop  TYPE STANDARD TABLE OF IST_LOCK_PROP_DB, "   
lv_processing_error  TYPE IST_LOCK_PROP_DB, "   
lv_i_fkkmako  TYPE FKKMAKO, "   
lt_t_fkkmaze  TYPE STANDARD TABLE OF FKKMAZE, "   
lv_e_subrc_active  TYPE SYSUBRC, "   
lt_t_fkkvkp1  TYPE STANDARD TABLE OF FKKVKP1, "   
lt_t_fkkepos  TYPE STANDARD TABLE OF FKKEPOS, "   
lt_t_fimsg  TYPE STANDARD TABLE OF FIMSG. "   

  CALL FUNCTION 'IST_SAMPLE_T945'  "IS-T-CA: Set Lock Status in Lock Proposals for IS-T Serv.in RM-CA
    EXPORTING
         I_TFK047L = lv_i_tfk047l
         I_FKKMAKO = lv_i_fkkmako
    IMPORTING
         E_SUBRC = lv_e_subrc
         E_SUBRC_ACTIVE = lv_e_subrc_active
    TABLES
         T_LOCK_PROP = lt_t_lock_prop
         T_FKKMAZE = lt_t_fkkmaze
         T_FKKVKP1 = lt_t_fkkvkp1
         T_FKKEPOS = lt_t_fkkepos
         T_FIMSG = lt_t_fimsg
    EXCEPTIONS
        PROCESSING_ERROR = 1
. " IST_SAMPLE_T945




ABAP code using 7.40 inline data declarations to call FM IST_SAMPLE_T945

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!