SAP ISUTM_SAMPLE_R150 Function Module for Check for Consistency Check for Transactions









ISUTM_SAMPLE_R150 is a standard isutm sample r150 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check for Consistency Check for Transactions 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 isutm sample r150 FM, simply by entering the name ISUTM_SAMPLE_R150 into the relevant SAP transaction such as SE37 or SE38.

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



Function ISUTM_SAMPLE_R150 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 'ISUTM_SAMPLE_R150'"Check for Consistency Check for Transactions
TABLES
T_TFKHVO = "
T_TFK033D_R007 = "Account Determination: Data
T_TFK033D_1010 = "Account Determination: Data
T_TFK033D_0050 = "Account Determination: Data
T_TFK033D_1091 = "Account Determination: Data
T_TFK033D_R010 = "Account Determination: Data
T_HEADER_ALV = "
T_OUTTAB_ALV = "
T_TFKTVO = "Subtransactions in Contract Accounts Receivable and Payable
T_TFKIHVOR = "Internal Main Transactions
T_TFKITVOR = "Internal Sub-Transactions
T_TFKIVV = "Assignment of Internal Transactions to External Transactions
T_TE305_EXT = "Transactions for Company Code and Division
T_TE305 = "Transactions for Company Code and Division
T_T100_EK = "Messages
T_TFK033D_R001 = "Account Determination: Data
.



TABLES Parameters details for ISUTM_SAMPLE_R150

T_TFKHVO -

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

T_TFK033D_R007 - Account Determination: Data

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

T_TFK033D_1010 - Account Determination: Data

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

T_TFK033D_0050 - Account Determination: Data

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

T_TFK033D_1091 - Account Determination: Data

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

T_TFK033D_R010 - Account Determination: Data

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

T_HEADER_ALV -

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

T_OUTTAB_ALV -

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

T_TFKTVO - Subtransactions in Contract Accounts Receivable and Payable

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

T_TFKIHVOR - Internal Main Transactions

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

T_TFKITVOR - Internal Sub-Transactions

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

T_TFKIVV - Assignment of Internal Transactions to External Transactions

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

T_TE305_EXT - Transactions for Company Code and Division

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

T_TE305 - Transactions for Company Code and Division

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

T_T100_EK - Messages

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

T_TFK033D_R001 - Account Determination: Data

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

Copy and paste ABAP code example for ISUTM_SAMPLE_R150 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:
lt_t_tfkhvo  TYPE STANDARD TABLE OF TFKHVO, "   
lt_t_tfk033d_r007  TYPE STANDARD TABLE OF TFK033D, "   
lt_t_tfk033d_1010  TYPE STANDARD TABLE OF TFK033D, "   
lt_t_tfk033d_0050  TYPE STANDARD TABLE OF TFK033D, "   
lt_t_tfk033d_1091  TYPE STANDARD TABLE OF TFK033D, "   
lt_t_tfk033d_r010  TYPE STANDARD TABLE OF TFK033D, "   
lt_t_header_alv  TYPE STANDARD TABLE OF ISCHK_ALV_HEADER, "   
lt_t_outtab_alv  TYPE STANDARD TABLE OF ISCHK_ALV_OUTTAB, "   
lt_t_tfktvo  TYPE STANDARD TABLE OF TFKTVO, "   
lt_t_tfkihvor  TYPE STANDARD TABLE OF TFKIHVOR, "   
lt_t_tfkitvor  TYPE STANDARD TABLE OF TFKITVOR, "   
lt_t_tfkivv  TYPE STANDARD TABLE OF TFKIVV, "   
lt_t_te305_ext  TYPE STANDARD TABLE OF TE305, "   
lt_t_te305  TYPE STANDARD TABLE OF TE305, "   
lt_t_t100_ek  TYPE STANDARD TABLE OF T100, "   
lt_t_tfk033d_r001  TYPE STANDARD TABLE OF TFK033D. "   

  CALL FUNCTION 'ISUTM_SAMPLE_R150'  "Check for Consistency Check for Transactions
    TABLES
         T_TFKHVO = lt_t_tfkhvo
         T_TFK033D_R007 = lt_t_tfk033d_r007
         T_TFK033D_1010 = lt_t_tfk033d_1010
         T_TFK033D_0050 = lt_t_tfk033d_0050
         T_TFK033D_1091 = lt_t_tfk033d_1091
         T_TFK033D_R010 = lt_t_tfk033d_r010
         T_HEADER_ALV = lt_t_header_alt
         T_OUTTAB_ALV = lt_t_outtab_alt
         T_TFKTVO = lt_t_tfktvo
         T_TFKIHVOR = lt_t_tfkihvor
         T_TFKITVOR = lt_t_tfkitvor
         T_TFKIVV = lt_t_tfkivv
         T_TE305_EXT = lt_t_te305_ext
         T_TE305 = lt_t_te305
         T_T100_EK = lt_t_t100_ek
         T_TFK033D_R001 = lt_t_tfk033d_r001
. " ISUTM_SAMPLE_R150




ABAP code using 7.40 inline data declarations to call FM ISUTM_SAMPLE_R150

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!