SAP TRINT_MOVE_OBJECTS Function Module for









TRINT_MOVE_OBJECTS is a standard trint move objects 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 trint move objects FM, simply by entering the name TRINT_MOVE_OBJECTS into the relevant SAP transaction such as SE37 or SE38.

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



Function TRINT_MOVE_OBJECTS 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 'TRINT_MOVE_OBJECTS'"
EXPORTING
IT_E071 = "
* IV_TESTMODE = ' ' "

CHANGING
CS_REQUEST_FROM = "
CS_REQUEST_TO_HEADER = "

EXCEPTIONS
DATABASE_ACCESS_ERROR = 1 EMPTY_LOCKKEY = 10 FOREIGN_LOCK = 11 REQUEST_TYPES_NOT_CONSISTENT = 12 TARGET_REQUEST_NOT_DIFFERENT = 13 NO_AUTHORIZATION = 2 REQUEST_FROM_OTHER_SYSTEM = 3 REQUEST_ALREADY_RELEASED = 4 WRONG_SOURCE_CLIENT = 5 USER_NOT_OWNER = 6 NO_MOVE_OF_CORR_ENTRY = 7 OBJECT_ENTRY_DOESNT_EXIST = 8 DUPLICATE_ENTRY = 9
.



IMPORTING Parameters details for TRINT_MOVE_OBJECTS

IT_E071 -

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

IV_TESTMODE -

Data type: TRPARI-FLAG
Default: ' '
Optional: Yes
Call by Reference: Yes

CHANGING Parameters details for TRINT_MOVE_OBJECTS

CS_REQUEST_FROM -

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

CS_REQUEST_TO_HEADER -

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

EXCEPTIONS details

DATABASE_ACCESS_ERROR -

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

EMPTY_LOCKKEY -

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

FOREIGN_LOCK -

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

REQUEST_TYPES_NOT_CONSISTENT -

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

TARGET_REQUEST_NOT_DIFFERENT -

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

NO_AUTHORIZATION -

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

REQUEST_FROM_OTHER_SYSTEM -

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

REQUEST_ALREADY_RELEASED -

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

WRONG_SOURCE_CLIENT -

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

USER_NOT_OWNER -

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

NO_MOVE_OF_CORR_ENTRY -

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

OBJECT_ENTRY_DOESNT_EXIST -

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

DUPLICATE_ENTRY -

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

Copy and paste ABAP code example for TRINT_MOVE_OBJECTS 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_it_e071  TYPE TR_OBJECTS, "   
lv_cs_request_from  TYPE TRWBO_REQUEST, "   
lv_database_access_error  TYPE TRWBO_REQUEST, "   
lv_empty_lockkey  TYPE TRWBO_REQUEST, "   
lv_foreign_lock  TYPE TRWBO_REQUEST, "   
lv_request_types_not_consistent  TYPE TRWBO_REQUEST, "   
lv_target_request_not_different  TYPE TRWBO_REQUEST, "   
lv_iv_testmode  TYPE TRPARI-FLAG, "   ' '
lv_no_authorization  TYPE TRPARI, "   
lv_cs_request_to_header  TYPE TRWBO_REQUEST_HEADER, "   
lv_request_from_other_system  TYPE TRWBO_REQUEST_HEADER, "   
lv_request_already_released  TYPE TRWBO_REQUEST_HEADER, "   
lv_wrong_source_client  TYPE TRWBO_REQUEST_HEADER, "   
lv_user_not_owner  TYPE TRWBO_REQUEST_HEADER, "   
lv_no_move_of_corr_entry  TYPE TRWBO_REQUEST_HEADER, "   
lv_object_entry_doesnt_exist  TYPE TRWBO_REQUEST_HEADER, "   
lv_duplicate_entry  TYPE TRWBO_REQUEST_HEADER. "   

  CALL FUNCTION 'TRINT_MOVE_OBJECTS'  "
    EXPORTING
         IT_E071 = lv_it_e071
         IV_TESTMODE = lv_iv_testmode
    CHANGING
         CS_REQUEST_FROM = lv_cs_request_from
         CS_REQUEST_TO_HEADER = lv_cs_request_to_header
    EXCEPTIONS
        DATABASE_ACCESS_ERROR = 1
        EMPTY_LOCKKEY = 10
        FOREIGN_LOCK = 11
        REQUEST_TYPES_NOT_CONSISTENT = 12
        TARGET_REQUEST_NOT_DIFFERENT = 13
        NO_AUTHORIZATION = 2
        REQUEST_FROM_OTHER_SYSTEM = 3
        REQUEST_ALREADY_RELEASED = 4
        WRONG_SOURCE_CLIENT = 5
        USER_NOT_OWNER = 6
        NO_MOVE_OF_CORR_ENTRY = 7
        OBJECT_ENTRY_DOESNT_EXIST = 8
        DUPLICATE_ENTRY = 9
. " TRINT_MOVE_OBJECTS




ABAP code using 7.40 inline data declarations to call FM TRINT_MOVE_OBJECTS

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 FLAG FROM TRPARI INTO @DATA(ld_iv_testmode).
DATA(ld_iv_testmode) = ' '.
 
 
 
 
 
 
 
 
 
 


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!