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

Function module to find table entries associated with transport request

Former Member
0 Likes
1,461

Hi all,

I have requirement, like we have created a table and maintenance view for that table - and made entries in that table.

now we want to know all the entries made in the table are associated with transport request or not.

how to do it programmatically?? is there any function module which gives the result for transport object associated with the table entries ?????

Thanks

Sathish

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
922

hi,

Check E07* Tables ..

Regards,

Santosh

7 REPLIES 7
Read only

Former Member
0 Likes
923

hi,

Check E07* Tables ..

Regards,

Santosh

Read only

0 Likes
922

Based on Function module, how can I find the SAP table names?

Read only

santhosh_patil
Contributor
0 Likes
922

Hi,

Use the table <b>E071K</b>

in se16 give :

request number in TRKORR

Table name in OBJNAME

in the filed TABKEY u will get the <b>values of the key fields</b> in the table

by comparing the key fields u can find out the enrties related to the request number

Please let me know if i am not clear

---Patil

Message was edited by:

Santhosh Patil

null

Read only

Former Member
0 Likes
922

Hi Sathish,

Just look in view V_E071.

Regards,

Atish

Read only

Former Member
0 Likes
922

Hi Sathish,

this may not be completely relevant to your question but worth checking my code sample

https://www.sdn.sap.com/irj/sdn/wiki?path=/pages/viewpage.action&pageid=19591

Read only

Former Member
0 Likes
922

thankyou all

got the sol

SELECT trkorr pgmid obj_name obj_name FROM e071k INTO TABLE it_reqst
WHERE                                        pgmid = 'R3TR' and
                                         OBJECT eq 'TABU'  and
                                         obj_name = 'TXX_CON'.

regards

Sathish

Read only

RaymondGiuseppi
Active Contributor
0 Likes
922

Just for information FM is TRINT_READ_REQUEST, pass parameter IV_READ_OBJS_KEYS = 'X'.

Regards,

Raymond