2008 Mar 13 5:26 AM
Hi,
My requirement is to develop a program, if i can give the progam name in the selection screen i should get the TR(Transport Request No)..Can anybody please send me a sample code.
Regards
Jyothi
2008 Mar 13 6:01 AM
Hi Jyothi,
Table E071 stores the transport number and object name.
Reward if helpful.
Rgrd,
Mandeep
Hi,
Request information is stored in tables E070, E071 So,You can implement your logic by useing the table.
Regards
Kiran Sure
2008 Mar 13 5:54 AM
Hi Jyoti
You try this logic in your program using table tstc :
From TSTC table you can get the list of transaction codes and associated programs. from the program name you can fetch its transport request.
try it may be it help.
2008 Mar 13 6:01 AM
2008 Mar 13 6:01 AM
Hi Jyothi,
Table E071 stores the transport number and object name.
Reward if helpful.
Rgrd,
Mandeep
2008 Mar 13 6:02 AM
you can develop the program using the table E071.
Query on the table E071 and show the Rquest.
2008 Mar 13 6:02 AM
Hi,
Request information is stored in tables E070, E071 So,You can implement your logic by useing the table.
Regards
Kiran Sure
2008 Mar 13 6:19 AM
Hi,
Please see the code sample
PARAMETER: p_name LIKE e071-OBJ_NAME.
DATA: BEGIN OF t_itab occurs 0.
INCLUDE STRUCTURE E071.
DATA: END OF t_itab.
SELECT * from e071
INTO TABLE t_itab
WHERE OBJ_NAME = p_name.
LOOP AT t_itab.
write:/ t_itab-OBJ_NAME,
(10) t_itab-TRKORR.
ENDLOOP.Hope this solves ur query.
2008 Mar 13 6:37 AM
hi,
try to find out some relation between tables like TRDIR and (E070,E070A OR EO70C any of them......)
...it may help for u....
Thnaks,
Vipin
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |