<?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: Comparing the 2 tcodes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887307#M1595449</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pawan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not only through SE39, is there any way to compare 2 Tcodes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, i created a container and called split screen in the container.&lt;/P&gt;&lt;P&gt;Now, i need to call the tcodes into the split screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CREATE OBJECT V_CONT&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   PARENT                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CONTAINER_NAME              = 'CONTAINER'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   STYLE                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   LIFETIME                    = LIFETIME_DEFAULT&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   REPID                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   DYNNR                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   NO_AUTODEF_PROGID_DYNNR     =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CNTL_ERROR                  = 1&lt;/P&gt;&lt;P&gt;      CNTL_SYSTEM_ERROR           = 2&lt;/P&gt;&lt;P&gt;      CREATE_ERROR                = 3&lt;/P&gt;&lt;P&gt;      LIFETIME_ERROR              = 4&lt;/P&gt;&lt;P&gt;      LIFETIME_DYNPRO_DYNPRO_LINK = 5&lt;/P&gt;&lt;P&gt;      OTHERS                      = 6&lt;/P&gt;&lt;P&gt;      .&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT V_SPLITTER&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      PARENT  = V_CONT&lt;/P&gt;&lt;P&gt;      ROWS    = 1&lt;/P&gt;&lt;P&gt;      COLUMNS = 2&lt;/P&gt;&lt;P&gt;      ALIGN   = 15.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD V_SPLITTER-&amp;gt;GET_CONTAINER&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ROW       = 1&lt;/P&gt;&lt;P&gt;      COLUMN    = 1&lt;/P&gt;&lt;P&gt;    RECEIVING&lt;/P&gt;&lt;P&gt;      CONTAINER = CL_GUI_CONTAINER_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD V_SPLITTER-&amp;gt;GET_CONTAINER&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ROW       = 1&lt;/P&gt;&lt;P&gt;      COLUMN    = 2&lt;/P&gt;&lt;P&gt;    RECEIVING&lt;/P&gt;&lt;P&gt;      CONTAINER = CL_GUI_CONTAINER_2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i need to call 1st tcode in CL_GUI_CONTAINER_1 and 2nd tcode in CL_GUI_CONTAINER_1.&lt;/P&gt;&lt;P&gt;How is it possible, any idea...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Radhika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 May 2011 10:24:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-16T10:24:07Z</dc:date>
    <item>
      <title>Comparing the 2 tcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887305#M1595447</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;My Requirement is as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to compare the 2 tcodes in split screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Acually, we have SE39 for comparing 2 programs, like that i need to compare 2 tcodes.&lt;/P&gt;&lt;P&gt;How is it possible?&lt;/P&gt;&lt;P&gt;Any help can be appreciated...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Radhika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2011 10:05:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887305#M1595447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-16T10:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing the 2 tcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887306#M1595448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radhika,&lt;/P&gt;&lt;P&gt;It is not possible to compare 2 t-codes just like two programs through se39..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pawan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2011 10:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887306#M1595448</guid>
      <dc:creator>pawan_rai</dc:creator>
      <dc:date>2011-05-16T10:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing the 2 tcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887307#M1595449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pawan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not only through SE39, is there any way to compare 2 Tcodes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, i created a container and called split screen in the container.&lt;/P&gt;&lt;P&gt;Now, i need to call the tcodes into the split screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CREATE OBJECT V_CONT&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   PARENT                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CONTAINER_NAME              = 'CONTAINER'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   STYLE                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   LIFETIME                    = LIFETIME_DEFAULT&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   REPID                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   DYNNR                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   NO_AUTODEF_PROGID_DYNNR     =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CNTL_ERROR                  = 1&lt;/P&gt;&lt;P&gt;      CNTL_SYSTEM_ERROR           = 2&lt;/P&gt;&lt;P&gt;      CREATE_ERROR                = 3&lt;/P&gt;&lt;P&gt;      LIFETIME_ERROR              = 4&lt;/P&gt;&lt;P&gt;      LIFETIME_DYNPRO_DYNPRO_LINK = 5&lt;/P&gt;&lt;P&gt;      OTHERS                      = 6&lt;/P&gt;&lt;P&gt;      .&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT V_SPLITTER&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      PARENT  = V_CONT&lt;/P&gt;&lt;P&gt;      ROWS    = 1&lt;/P&gt;&lt;P&gt;      COLUMNS = 2&lt;/P&gt;&lt;P&gt;      ALIGN   = 15.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD V_SPLITTER-&amp;gt;GET_CONTAINER&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ROW       = 1&lt;/P&gt;&lt;P&gt;      COLUMN    = 1&lt;/P&gt;&lt;P&gt;    RECEIVING&lt;/P&gt;&lt;P&gt;      CONTAINER = CL_GUI_CONTAINER_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD V_SPLITTER-&amp;gt;GET_CONTAINER&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ROW       = 1&lt;/P&gt;&lt;P&gt;      COLUMN    = 2&lt;/P&gt;&lt;P&gt;    RECEIVING&lt;/P&gt;&lt;P&gt;      CONTAINER = CL_GUI_CONTAINER_2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i need to call 1st tcode in CL_GUI_CONTAINER_1 and 2nd tcode in CL_GUI_CONTAINER_1.&lt;/P&gt;&lt;P&gt;How is it possible, any idea...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Radhika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2011 10:24:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887307#M1595449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-16T10:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing the 2 tcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887308#M1595450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radhika&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no way in which you can compare two t-codes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2011 11:37:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887308#M1595450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-16T11:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing the 2 tcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887309#M1595451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This doesnt even make sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example lets take VA02 and ME22N. How would you compare those? what should the outcome be?&lt;/P&gt;&lt;P&gt;Or wait even better, go compare SCOT and RZ20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You better tell us what your goal is when you get to the idea to comparing tcodes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2011 11:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887309#M1595451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-16T11:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing the 2 tcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887310#M1595452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Florian Kemmer ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually my requirement is to compare the Copied tcode with Standard tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One standard tcode may copied into some Z or Y tcode and may did changes in the Copied version.&lt;/P&gt;&lt;P&gt;So, in the above scenario i need to compare the standard verion and Copied version of tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the llist of both standard and copied tcodes, now i need to compare the standard and copied tcodes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea plz.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Radhika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2011 12:21:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887310#M1595452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-16T12:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing the 2 tcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887311#M1595453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radhika ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if my understanding of your quetsion is correct .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your have stadard tcode already and thats copied in to some custom space and you have to know how is it different ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;execuet them indivisually and see are there any screen changes or screen flow changes which you can simulatenosly run bot the tcodes and see .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you see some value chanegs on the screen  which is calculated n backend and displayed just see what is the corresponding module pool or screen logic and start comparing  those programs in se39 then .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&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;Poornima&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pendyala_poornima on May 17, 2011 10:48 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2011 12:34:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887311#M1595453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-16T12:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing the 2 tcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887312#M1595454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Florian Kemmer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i just want to compare the tcode se11, se16 and sm30 ,Iam not Abapper so i dont have any idea about which Programs to get Compare,and&amp;nbsp; i dont have access for SE39&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Uga &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 06:24:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-the-2-tcodes/m-p/7887312#M1595454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-09T06:24:24Z</dc:date>
    </item>
  </channel>
</rss>

