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 Request

Former Member
0 Likes
826

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
799

Hi Jyothi,

Table E071 stores the transport number and object name.

Reward if helpful.

Rgrd,

Mandeep

7 REPLIES 7
Read only

Former Member
0 Likes
799

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.

Read only

Former Member
0 Likes
799

Check tables VRSD, E07T

Read only

Former Member
0 Likes
800

Hi Jyothi,

Table E071 stores the transport number and object name.

Reward if helpful.

Rgrd,

Mandeep

Read only

Former Member
0 Likes
799

you can develop the program using the table E071.

Query on the table E071 and show the Rquest.

Read only

Former Member
0 Likes
799

Hi,

Request information is stored in tables E070, E071 So,You can implement your logic by useing the table.

Regards

Kiran Sure

Read only

Former Member
0 Likes
799

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.

Read only

Former Member
0 Likes
799

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