‎2007 Jul 26 5:43 AM
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
‎2007 Jul 26 5:45 AM
‎2007 Jul 26 5:45 AM
‎2012 Jun 06 11:26 PM
‎2007 Jul 26 6:07 AM
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
‎2007 Jul 26 6:08 AM
‎2007 Jul 26 6:09 AM
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
‎2007 Jul 27 4:16 AM
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
‎2012 Jun 07 8:45 AM