SAP TEST_CO_ISU_UTS_BNDL_REQ_OUT Function Module for









TEST_CO_ISU_UTS_BNDL_REQ_OUT is a standard test co isu uts bndl req out 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 test co isu uts bndl req out FM, simply by entering the name TEST_CO_ISU_UTS_BNDL_REQ_OUT into the relevant SAP transaction such as SE37 or SE38.

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



Function TEST_CO_ISU_UTS_BNDL_REQ_OUT 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 'TEST_CO_ISU_UTS_BNDL_REQ_OUT'"
EXPORTING
* PROFILE = '1096' "
* DATEFROM = '20060101' "
* TIMEFROM = '000000' "
* DATETO = '20060130' "
* TIMETO = '235959' "

IMPORTING
Y_MESSAGE_ID = "
.



IMPORTING Parameters details for TEST_CO_ISU_UTS_BNDL_REQ_OUT

PROFILE -

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

DATEFROM -

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

TIMEFROM -

Data type: E_EDMTIMEFROM
Default: '000000'
Optional: No
Call by Reference: Yes

DATETO -

Data type: E_EDMDATETO
Default: '20060130'
Optional: No
Call by Reference: Yes

TIMETO -

Data type: E_EDMTIMETO
Default: '235959'
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for TEST_CO_ISU_UTS_BNDL_REQ_OUT

Y_MESSAGE_ID -

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

Copy and paste ABAP code example for TEST_CO_ISU_UTS_BNDL_REQ_OUT 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_profile  TYPE E_PROFILE, "   '1096'
lv_y_message_id  TYPE SXMSMGUID, "   
lv_datefrom  TYPE E_EDMDATEFROM, "   '20060101'
lv_timefrom  TYPE E_EDMTIMEFROM, "   '000000'
lv_dateto  TYPE E_EDMDATETO, "   '20060130'
lv_timeto  TYPE E_EDMTIMETO. "   '235959'

  CALL FUNCTION 'TEST_CO_ISU_UTS_BNDL_REQ_OUT'  "
    EXPORTING
         PROFILE = lv_profile
         DATEFROM = lv_datefrom
         TIMEFROM = lv_timefrom
         DATETO = lv_dateto
         TIMETO = lv_timeto
    IMPORTING
         Y_MESSAGE_ID = lv_y_message_id
. " TEST_CO_ISU_UTS_BNDL_REQ_OUT




ABAP code using 7.40 inline data declarations to call FM TEST_CO_ISU_UTS_BNDL_REQ_OUT

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_profile) = '1096'.
 
 
DATA(ld_datefrom) = '20060101'.
 
DATA(ld_timefrom) = '000000'.
 
DATA(ld_dateto) = '20060130'.
 
DATA(ld_timeto) = '235959'.
 


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!