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

Transport tool

Former Member
0 Likes
469

hi all,

Hi all,

I got one requirement as mentioned below.

Selection Screen:

Object name: Program, Function modules,tables,Includes(User Exit) or any other ABAP object.

Based on the object name entered, this program will scan through all the Y and Z objects till first level used by the main program and list down the open transports in quality for all of them.

Output:

Main Object Dependent objects Transport No.(Open in Quality) Created by Date/time

A 1 T1 U1

2 T2 U2

Please give me some guide lines. How i wil proceed.

regards,

srinivasarao oleti

hi all,

Hi all,

I got one requirement as mentioned below.

Selection Screen:

Object name: Program, Function modules,tables,Includes(User Exit) or any other ABAP object.

Based on the object name entered, this program will scan through all the Y and Z objects till first level used by the main program and list down the open transports in quality for all of them.

Output:

Main Object Dependent objects Transport No.(Open in Quality) Created by Date/time

A 1 T1 U1

2 T2 U2

Please give me some guide lines. How i wil proceed.

regards,

srinivasarao oleti

2 REPLIES 2
Read only

Former Member
0 Likes
425

YOu have to query the table E071 for open requests based on the object name.

select e071~ TRKORR from e071 inner join e071 on

e071TRKORR = e070TRKORR

into table itab

where e071~OBJ_NAME in s_object

and e070~TRSTATUS in ( 'D' , 'L' ).

Regards,

Ravi

Read only

Former Member
0 Likes
425

use below code...

SELECT atrkorr bas4text

atrfunction atrstatus akorrdev aas4user a~as4date

a~as4time

cmandt csourcemand ctstamp cfinal_stat

FROM e070 AS a

JOIN e07t AS b

ON atrkorr = btrkorr

AND b~langu = syst-langu

LEFT OUTER JOIN cccflow AS c

ON atrkorr = ccomfile

INTO CORRESPONDING FIELDS OF TABLE i_getlist

WHERE a~trkorr IN s_trkorr

AND a~trfunction IN s_trfunc

AND a~trstatus IN s_trstat

AND a~korrdev IN s_kdev

AND a~strkorr = space.