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

Table Name

Former Member
0 Likes
1,689

Dear Friends,

I would like to know whether there is any table to look for the imported transport requests to the Production environment from a Development system.

If there is a table which maintains these transfers kindly let me know the name of the table.

I need the table to be present in the development enviornment.

Thanks in advance..

Good answers will be rewarded.

Regards,

Arunkumar S

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,202

check FM TMS_MGR_READ_TRANSPORT_REQUEST

8 REPLIES 8
Read only

Former Member
0 Likes
1,203

check FM TMS_MGR_READ_TRANSPORT_REQUEST

Read only

0 Likes
1,202

Dear Chandra,

I think the FM requires me to feed in the TR number and then know about the target system and other details.

Is there any other way to get in the list of imported requested to production.

Thanks for your reply.

Regards,

Arunkumar S

Read only

Former Member
0 Likes
1,202

hi Arun,

Use FM TMS_MGR_READ_TRANSPORT_REQUEST

Check

http://wiki.ittoolbox.com/index.php/Code:Upload/download_SAP_transport_request

      CALL FUNCTION 'TMS_MGR_READ_TRANSPORT_REQUEST'
        EXPORTING
          iv_request                 = request
          iv_target_system           = system
        IMPORTING
          et_request_infos           = et_request_infos
        EXCEPTIONS
          read_config_failed         = 1
          table_of_requests_is_empty = 2
          system_not_available       = 3
          OTHERS                     = 4.

Regards,

Santosh

Read only

0 Likes
1,202

Dear Santhosh,

Without specifying the TR number is there any other method to list out all the imported requests for a particular date or some other criteria.

Thanks for your kind reply.

regards,

Arunkumar S

Read only

JayR
Participant
0 Likes
1,202

Hi Arun,

Check out table E070. Hope this will satisfy your req. Award points if it works

Read only

Former Member
0 Likes
1,202

Hi,

E070 - Transport header The table E070 stores the names of all transport requests in the system, both the released and open ones. Tasks are treated as transport requests with a link to the parent transport.

TRKORR DEVK900001 Name of Correction/transport request/command file

TRFUNCTION K Function of a correction/change request

TRSTATUS L Status:

D Dokumentation, partly locked

L All objects are locked

R Released for transport

TARSYSTEM PRO Target system of correction

KORRDEV SYST Catagory of transport request

CUST client dependent = Customizing

SYST SAP-Repository, client-independend Object

AS4USER SAP* Owner

AS4DATE 01.01.1998 Date Of Last Modification

AS4TIME 00:00:00 Time Of Last Modification

STRKORR Related Transport (If this one has parent)

The table contains the master entry for all orders ever since created in the development system along with the status

E071 - object list The names of the objects of a transport request is stored in table E071.

E071K - Keys for TABU objects If table contents R3TR TABU are stored in a transport request, you need to specify the keys of the table entries which shall be transported. Those keys are stored in table E071K.

E070 - Transport header - View with texts Annotating texts will be stored in E070T. E070 and E07T are combined in view E070V.

regards,

keerthi

Read only

Former Member
0 Likes
1,202

try out table E070 and E071.

hope it solves your problem

Read only

kiran_k8
Active Contributor
0 Likes
1,202

Arun,

Got to SE11 and given E* to find the table related to TR

I think E070TC will serve the purpose.

Reward if found useful.

K.Kiran.