<?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. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290940#M1220507</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;check with below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: vttk, kna1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; SELECTION-SCREEN BEGIN OF BLOCK box WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_email AS CHECKBOX USER-COMMAND flag .&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: email FOR kna1-kunnr LOWER CASE NO INTERVALS MODIF ID pd1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK box.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  PERFORM set_screen.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM set_screen .&lt;/P&gt;&lt;P&gt;  IF p_email EQ 'X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'PD1'.&lt;/P&gt;&lt;P&gt;        screen-input = '1'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'PD1'.&lt;/P&gt;&lt;P&gt;        screen-input = '0'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.       &lt;/P&gt;&lt;P&gt;&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;Madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Mar 2009 07:49:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-05T07:49:23Z</dc:date>
    <item>
      <title>Transaction Variant.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290934#M1220501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;      I want to disable a field on selection screen.&lt;/P&gt;&lt;P&gt;      How can achive this?&lt;/P&gt;&lt;P&gt;      I have a programme with some selection fields. Now i want to disable one of the field on selection    screen. With out chaning the code. Hw can i achive this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 07:24:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290934#M1220501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T07:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290935#M1220502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,if you want to change code then you can do  LOOP AT SCREEN in event at selection sceen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if you are using LDB and the default selection screen is comming for the LDB then you can modify it by making report category&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 07:28:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290935#M1220502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T07:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290936#M1220503</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;Changing the mode of the parameters taken on selection screen without using coding can be done as:-&lt;/P&gt;&lt;P&gt;Goto transaction &lt;STRONG&gt;SE80&lt;/STRONG&gt; --&amp;gt; Open your program --&amp;gt; Select screen from the left hand side window --&amp;gt; double click on screen 1000 (default selection screen) --&amp;gt; double click on the parameter which need to be disabled --&amp;gt; using properties window set it as &lt;STRONG&gt;output only&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will disable the field for input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 07:30:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290936#M1220503</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-05T07:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290937#M1220504</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;Create screen variant using the transaction SHD0 make it default and move it to all clients.&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;Nandha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 07:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290937#M1220504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T07:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290938#M1220505</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;Create a variant where you fill in all required data and check the :&lt;/P&gt;&lt;P&gt;- "hide field" check box when saving the variant to remove it form selection&lt;/P&gt;&lt;P&gt;- "protect field" to disable/Grey out the field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 07:44:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290938#M1220505</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2009-03-05T07:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290939#M1220506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dude,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If you want to invisible a particular field on the standard application you can work with SHD0 Tcode&lt;/P&gt;&lt;P&gt;SHD0 for Transaction variant. then select the transaction variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you can do the things for filed like content,invisible, outputonly required&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So according to your requirement you can hide or disable the filed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it may helps for you&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;Ramakrishna Pathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 07:48:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290939#M1220506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T07:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290940#M1220507</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;check with below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: vttk, kna1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; SELECTION-SCREEN BEGIN OF BLOCK box WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_email AS CHECKBOX USER-COMMAND flag .&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: email FOR kna1-kunnr LOWER CASE NO INTERVALS MODIF ID pd1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK box.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  PERFORM set_screen.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM set_screen .&lt;/P&gt;&lt;P&gt;  IF p_email EQ 'X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'PD1'.&lt;/P&gt;&lt;P&gt;        screen-input = '1'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'PD1'.&lt;/P&gt;&lt;P&gt;        screen-input = '0'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.       &lt;/P&gt;&lt;P&gt;&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;Madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 07:49:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290940#M1220507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T07:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Variant.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290941#M1220508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 10:03:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-variant/m-p/5290941#M1220508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T10:03:03Z</dc:date>
    </item>
  </channel>
</rss>

