Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Transport entries without asking the standard popup

Former Member
0 Kudos

Hi,

ls_ko200-pgmid = 'R3TR'.

ls_ko200-object = 'TABU'.

ls_ko200-obj_name = 'TABLE1'.

ls_ko200-objfunc = 'K'.

ls_ko200-trkorr = 'ABC'.

ls_tabkey-mig_name = ls_mig_report-mig_name.

ls_tabkey-mdav = ls_mig_report-mdav_name.

ls_e071k-pgmid = 'R3TR'.

ls_e071k-object = 'TABU'.

ls_e071k-objname = 'TABLE1'.

ls_e071k-mastertype = 'TABU'.

ls_e071k-mastername = 'TABLE1'.

ls_e071k-tabkey = ls_tabkey.

APPEND ls_e071k TO lt_e071k.

CALL FUNCTION 'TR_OBJECT_CHECK'

EXPORTING

wi_ko200 = ls_ko200

iv_no_standard_editor = 'X'

IMPORTING

we_order = lv_order

we_task = lv_task

we_ko200 = ls_ko200

we_object_appendable = lv_object_appendable

es_tadir = lv_tadir

EXCEPTIONS

OTHERS = 1.

IF sy-subrc = 1.

EXIT.

ENDIF.

IF lv_object_appendable = 'X'. "is relevant

CALL FUNCTION 'TR_OBJECT_INSERT'

EXPORTING

wi_ko200 = ls_ko200

iv_no_standard_editor = 'X'

TABLES

wt_e071k = lt_e071k

EXCEPTIONS

OTHERS = 1.

endif.

This program adds in to the transport request and working fine.

Problem here i, its showing the popup to chose the transport request ,even though I have specificed the transport request number.

I dont want to show the popup...Means, I dont want to allow the user to choose the transport request number/create.

It has to be always stored in the Hardcoded tr number.

Can anyone help me on this....

1 ACCEPTED SOLUTION

Sandeep_Kumar
Product and Topic Expert
Product and Topic Expert
0 Kudos

Try this FM : TRINT_APPEND_COMM

1 REPLY 1

Sandeep_Kumar
Product and Topic Expert
Product and Topic Expert
0 Kudos

Try this FM : TRINT_APPEND_COMM