<?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: Embedding transaction into program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651227#M1285801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;you can use the &lt;STRONG&gt;transaction variant&lt;/STRONG&gt; for the required transactions .&lt;/P&gt;&lt;P&gt;Then from your code of PAI according to the tabstrip selection call the &lt;/P&gt;&lt;P&gt;created &lt;STRONG&gt;VARIANT TRANSACTION&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pinaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 May 2009 07:48:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-15T07:48:58Z</dc:date>
    <item>
      <title>Embedding transaction into program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651223#M1285797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everybody!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to embed a transaction into another?&lt;/P&gt;&lt;P&gt;I want to create a program which contains a tabstrip. In this tabstrips I want to embed several different transactions (e.g. SD, or CS ), which already exist in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards and thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 14:28:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651223#M1285797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T14:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding transaction into program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651224#M1285798</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;Try using call transaction in PAI when the tab is pressed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 14:36:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651224#M1285798</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2009-05-14T14:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding transaction into program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651225#M1285799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;You can do it ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PAI of the screen you need write the code as follows --&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE user_command_0100 INPUT.
  CASE sy-ucomm.
    WHEN 'BACK'.
      LEAVE TO SCREEN 0.
    WHEN 'FCODE1'. " Func. code for 1st tab
      CALL TRANSACTION 'MM01'.
    WHEN 'FCODE2'.  " Func. code for 2nd tab
      CALL TRANSACTION 'SE11'.
    WHEN 'FCODE3'.  " Func. code for 3rd tab
      CALL TRANSACTION 'CS02'.
    WHEN  .....
   .
   .
   .
  ENDCASE.
ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pinaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 15:14:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651225#M1285799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T15:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding transaction into program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651226#M1285800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My questions received some updates &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to embed a transaction where some of its textfields are hidden (customizing)? The important thing is, that the textfields of the "real" transaction are not hidden.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 07:05:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651226#M1285800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T07:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding transaction into program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651227#M1285801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;you can use the &lt;STRONG&gt;transaction variant&lt;/STRONG&gt; for the required transactions .&lt;/P&gt;&lt;P&gt;Then from your code of PAI according to the tabstrip selection call the &lt;/P&gt;&lt;P&gt;created &lt;STRONG&gt;VARIANT TRANSACTION&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pinaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 07:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651227#M1285801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T07:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding transaction into program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651228#M1285802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as I experienced, this way changes the whole transaction in SAP. I just want to use a modified version, which does not change the original one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help (&amp;amp; patience)!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 07:59:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651228#M1285802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T07:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding transaction into program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651229#M1285803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First you create a vriant from transaction &lt;STRONG&gt;SHD0&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;Now in the &lt;STRONG&gt;Standard Variants&lt;/STRONG&gt; tabstrip if you activate the &lt;/P&gt;&lt;P&gt;variant ( created by you) , the standard transaction will be changed by the&lt;/P&gt;&lt;P&gt;variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But&lt;/STRONG&gt; if you crate a &lt;STRONG&gt;Variant Transaction&lt;/STRONG&gt; using the variant ( created by you)&lt;/P&gt;&lt;P&gt; for a particular transaction.You will get the the variant transaction customised by the &lt;/P&gt;&lt;P&gt;Variant. &lt;STRONG&gt;The standard transaction will be as it is.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Accordingly you can call the standard and variant transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : To create the variant transaction after you have created the Variant -&lt;/P&gt;&lt;P&gt;          you can use &lt;STRONG&gt;Goto&lt;/STRONG&gt; (of manu bar) from SHD0 transaction and &lt;/P&gt;&lt;P&gt;          then &lt;STRONG&gt;Create Variant Transactions&lt;/STRONG&gt; ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pinaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 08:37:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651229#M1285803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T08:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding transaction into program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651230#M1285804</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;You can create a new Transaction Variant using SHD0 transaction.&lt;/P&gt;&lt;P&gt;Its helps you in hiding/defaulting fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 08:45:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/embedding-transaction-into-program/m-p/5651230#M1285804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T08:45:40Z</dc:date>
    </item>
  </channel>
</rss>

