2007 May 01 1:47 PM
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
2007 May 01 1:52 PM
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
2007 May 01 2:05 PM
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.