<?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: Transaction Variant ??? Modifying???? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950624#M695779</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 need to go back to transaction SHD0 to change/modify the existing Z transaction variant.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Oct 2007 18:27:52 GMT</pubDate>
    <dc:creator>ferry_lianto</dc:creator>
    <dc:date>2007-10-10T18:27:52Z</dc:date>
    <item>
      <title>Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950623#M695778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using SHD0 tx,I created a transaction veriant- my_fv50 for SAP's FV50 (in which I deactivated the POST button in INITIAL SCREEN).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By SE93, I created a tcode as my_fv50 of type Variant Tx with follwoing values/entries,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tx- FV50&lt;/P&gt;&lt;P&gt;Tx varinat - my_fv50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Working fine, after setting the authorsation at basis/security level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I need to MODIFY/add extra feature to this existing my_fv50 Tx Variant!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xtra feature, am looking: fv50--&lt;DEL&gt;-&amp;gt;Initial screen&lt;/DEL&gt;-&amp;gt;specify values--&lt;DEL&gt;&amp;gt;SIMULATE button&lt;/DEL&gt;&lt;DEL&gt;-&amp;gt;here we can see the again POST button&lt;/DEL&gt;---&amp;gt;here I need to deactivate the POST button!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls. clarify that How to change/modify the existing Z transaction varinats?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanq&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 18:24:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950623#M695778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T18:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950624#M695779</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 need to go back to transaction SHD0 to change/modify the existing Z transaction variant.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 18:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950624#M695779</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-10-10T18:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950625#M695780</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;Instead of all those things. Implement the BTE 1140 and write the following code. That should solve your problem.&lt;/P&gt;&lt;P&gt;  IF sy-tcode = 'FV50'.&lt;/P&gt;&lt;P&gt;    t_exctab-okcod = 'BU'.        " do not allow to post&lt;/P&gt;&lt;P&gt;    APPEND t_exctab.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to disable this post option for multiple transactions, just maintain them in a custom table. Instead of IF Sy-tcode = 'FV50' just read from this custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Enjoy SAP.&lt;/P&gt;&lt;P&gt;Rajasekhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Alvaro Tejada Galindo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 19:28:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950625#M695780</guid>
      <dc:creator>rajasekhar_matukumalli3</dc:creator>
      <dc:date>2007-10-10T19:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950626#M695781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanq,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, i did! &lt;/P&gt;&lt;P&gt;but, i culd not able get the pop-up screen for the (spaecific) simulation screen, if so, I know how to carry out my function, like choosing MENU function button&lt;DEL&gt;&amp;gt;choosing POST / BU from the list&lt;/DEL&gt;-&amp;gt;clicking deactivate button!!&lt;/P&gt;&lt;P&gt;if possible, if u wanna send me the screen shots, send them to &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanq.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Alvaro Tejada Galindo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 19:29:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950626#M695781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T19:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950627#M695782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanq,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;got bte1140, let me try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanq.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Srikhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 19:32:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950627#M695782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T19:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950628#M695783</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;Sorry ... I don't have FI data in my sandbox.&lt;/P&gt;&lt;P&gt;But you need to delete the old screen variants and recreate new ones by goinf through screen by screen as you described below. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path: FV50 -&amp;gt; Initial screen -&amp;gt; Specify Values -&amp;gt; SIMULATE -&amp;gt; Deactivate the POST button.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 19:48:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950628#M695783</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-10-10T19:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950629#M695784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanq,&lt;/P&gt;&lt;P&gt;yes, am also thinking the in the same manner!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or BTE1140!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyways, thanq.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Srikhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 19:51:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950629#M695784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T19:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950630#M695785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Execute the transaction FIBF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto Environment-&amp;gt;Info System(P/S)&lt;/P&gt;&lt;P&gt;Just Press Execute in the next screen&lt;/P&gt;&lt;P&gt;Double Click on Event 1140&lt;/P&gt;&lt;P&gt;Click on Sample Function Module&lt;/P&gt;&lt;P&gt;Copy the Sample Function Module(SAMPLE_INTERFACE_00001140) to 'ZSAMPLE_INTERFACE_00001140'&lt;/P&gt;&lt;P&gt;In the Z function module put the above code save acivate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go back to the FIBF first screen.&lt;/P&gt;&lt;P&gt;Go to Settings-&amp;gt;Products -&amp;gt;of a Customer&lt;/P&gt;&lt;P&gt;Click on New Entries and create a new product ZPOST, give a proper description , Select the check box and save.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go back to the FIBF first screen.&lt;/P&gt;&lt;P&gt;Go to Settings-&amp;gt;P/S Modules-&amp;gt;of a customer&lt;/P&gt;&lt;P&gt;Click on the new entries Enter the event as 00001140, Product as ZPOST and Function Module as ZSAMPLE_INTERFACE_00001140.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when you execute FV50, you will not see POST option on the application tool bar as well as from the Menu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy SAP&lt;/P&gt;&lt;P&gt;Rajasekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 20:20:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950630#M695785</guid>
      <dc:creator>rajasekhar_matukumalli3</dc:creator>
      <dc:date>2007-10-10T20:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950631#M695786</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;bte is the best solution&lt;/P&gt;&lt;P&gt;thanq.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Srikhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Srinivas on Dec 21, 2007 5:01 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 18:15:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950631#M695786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T18:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant ??? Modifying????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950632#M695787</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;if possible / if ur time permits, y dont u send me the answer!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanq.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2007 13:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant-modifying/m-p/2950632#M695787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-12T13:14:46Z</dc:date>
    </item>
  </channel>
</rss>

