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: 

Funtional Modules to release Child Transports?

Former Member
0 Kudos

Is there a A Funtional module that gives me a list of all the child transport associated with a Paraent transport.

Also is there a functional module that will release a transport.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

What is Parent and Child transports?

You mean Request(parent) and Tasks(childs)

You can fetch the data from <b>E070</b>

To fetch all tasks:

select TRKORR from E070 into table itab where STRKORR = ' '.

Fetch all tasks(childs)

select TRKORR from E070 into table itab where STRKORR <> ' '.

fetch all requests.(parents)

Use the fun Module

<b>SCTS_RELEASE</b>

to release all transport requests.

Reward if useful,

Regards,

Anji

Message was edited by:

Anji Reddy Vangala

2 REPLIES 2

Former Member
0 Kudos

Peter,

Try

Use the FM TMS_MGR_READ_TRANSPORT_REQUEST. In that specify the request and get the object list from structure E071.

When u execute the FM directly,

Give the request number -> Press execute -> Goto the values inside the structure ET_REQUEST_INFOS -> Press the Expand button -> Scroll down to see the value in structure in E071.

Pls. reward if useful.

Former Member
0 Kudos

Hi,

What is Parent and Child transports?

You mean Request(parent) and Tasks(childs)

You can fetch the data from <b>E070</b>

To fetch all tasks:

select TRKORR from E070 into table itab where STRKORR = ' '.

Fetch all tasks(childs)

select TRKORR from E070 into table itab where STRKORR <> ' '.

fetch all requests.(parents)

Use the fun Module

<b>SCTS_RELEASE</b>

to release all transport requests.

Reward if useful,

Regards,

Anji

Message was edited by:

Anji Reddy Vangala