<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Tcode program names in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-program-names/m-p/1519526#M238744</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not clear on your question , you can find the includes of a program using below function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RS_GET_ALL_INCLUDES &lt;/P&gt;&lt;P&gt;GET_INCLUDETAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(or)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use below code to get includes of a program :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : BEGIN OF i_tadir OCCURS 0,
     object LIKE tadir-object,
     obj_name LIKE tadir-obj_name,
END OF i_tadir.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT object obj_name 
FROM tadir
INTO TABLE i_tadir
WHERE obj_name = x_progname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want more details on program object details check these tables also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TADIR, TFDIR, TRDIR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Reward Points for helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Aug 2006 18:46:45 GMT</pubDate>
    <dc:creator>Laxmana_Appana_</dc:creator>
    <dc:date>2006-08-28T18:46:45Z</dc:date>
    <item>
      <title>Tcode program names</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-program-names/m-p/1519525#M238743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im facing a problem.  I created an ABAP report, that uses several FM's, in order to obtain all the field names, label, screen numbers, and other objects that are contained inside a transaction. The only problem that i have, is that as you may know 1 transaction can have several programs in it. Unfortunately the FM's that im using just identify the fist program called. i.e. in tcode me23n, the first screen present a tabstrip. in some of the tabs the program names are different, unfortunately, i cant know the names of the others programs inolved, using these FM's.&lt;/P&gt;&lt;P&gt;I hope somebody outthere has any other FM that might solve my problem or some table names where i can find that information.&lt;/P&gt;&lt;P&gt;By the way, the FM's that im using are :&lt;/P&gt;&lt;P&gt;- RPY_DYNPRO_READ&lt;/P&gt;&lt;P&gt;- RS_IMPORT_DYNPRO&lt;/P&gt;&lt;P&gt;- RPY_PROGRAM_READ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the table that i have been using are:&lt;/P&gt;&lt;P&gt;tstc, tstct, d020s, d020t, dd03l, dd04t, SSCRFIELDS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, if somebody, has any other suggestion or comment , i will really appreciate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2006 18:11:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-program-names/m-p/1519525#M238743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-28T18:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode program names</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-program-names/m-p/1519526#M238744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not clear on your question , you can find the includes of a program using below function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RS_GET_ALL_INCLUDES &lt;/P&gt;&lt;P&gt;GET_INCLUDETAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(or)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use below code to get includes of a program :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : BEGIN OF i_tadir OCCURS 0,
     object LIKE tadir-object,
     obj_name LIKE tadir-obj_name,
END OF i_tadir.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT object obj_name 
FROM tadir
INTO TABLE i_tadir
WHERE obj_name = x_progname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want more details on program object details check these tables also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TADIR, TFDIR, TRDIR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Reward Points for helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2006 18:46:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-program-names/m-p/1519526#M238744</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-08-28T18:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode program names</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-program-names/m-p/1519527#M238745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I verified those FM's but the information im looking for isn't there.&lt;/P&gt;&lt;P&gt;For example if you go to tcode me23n. You will see the screen is divided in 2 sections the Header and the Item section. On the Item section you will find a tabstrip control with several tabs. Well, some of those tabs, have a different program name. The main program used in the tcode is SAPLMEGUI, but in at least 3 tabs you will see that the program name may vary. So, that is what im trying to find.&lt;/P&gt;&lt;P&gt;On the FM's that were posted, the includes list does not display any of the programs used on the tabstrip control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope i explained my self .&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 00:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-program-names/m-p/1519527#M238745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T00:50:04Z</dc:date>
    </item>
  </channel>
</rss>

