Application Development and Automation 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: 
Read only

Using same transport request

Former Member
0 Likes
663

Hi ALL,

I am doing the configuration settings, updating the Z tables through ABAP, I have used IW_C_CREATE_TRANSPORT_REQUEST and BAPI_CTREQUEST_CREATE_TASKS for request and task creation when I SAVE. but this is creating the new req each time I SAVE resulting in multiple req for same change.

Need to add all the changes into one request untill the request is released.

How to do that? which FM to use and how to check whether req is released or not?

Thanx

DP

1 ACCEPTED SOLUTION
Read only

former_member150733
Contributor
0 Likes
598

Try using FM: TR_EXT_INSERT_IN_REQUEST

Table-Field E070-TRSTATUS to check the status of request.

On second thought if you want to transport Table Entries, you can manually go to the transport request and give the

Program ID: R3TR

Object Type : TABU

Object name : <YOUR TABLE NAME>

3 REPLIES 3
Read only

former_member150733
Contributor
0 Likes
599

Try using FM: TR_EXT_INSERT_IN_REQUEST

Table-Field E070-TRSTATUS to check the status of request.

On second thought if you want to transport Table Entries, you can manually go to the transport request and give the

Program ID: R3TR

Object Type : TABU

Object name : <YOUR TABLE NAME>

Read only

0 Likes
598

Thanx Anish,

Your reply was very useful, I anyway used BAPI_CTREQUEST_CREATE_TASKSto update the request if already created, by creating an task.

Read only

Former Member
0 Likes
598

Check in TMG for option "Dialog data transport details" and make sure the option "No, or user, recording routine" is selected.