<?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: LDB Selection Screen Modify in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372663#M525768</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok... Icon on  the select-options Button problem solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Just need to put both input and output on. (Value = 1)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF screen-name = '%_CN_VSNMR_%_APP_%-VALU_PUSH' .&lt;/P&gt;&lt;P&gt;     screen-active = 1.&lt;/P&gt;&lt;P&gt;     screen-invisible = 0.&lt;/P&gt;&lt;P&gt;     screen-output = 1.&lt;/P&gt;&lt;P&gt;     screen-input = 1.&lt;/P&gt;&lt;P&gt;     MODIFY SCREEN.&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;&lt;/P&gt;&lt;P&gt;But Still having problem with the frame.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Frame Name is SV_TITLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already tried all combination of screen-invisible, active, input and output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone have the same problem before?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2007 18:48:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-14T18:48:20Z</dc:date>
    <item>
      <title>LDB Selection Screen Modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372658#M525763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm Using LDB, and I need to modify my Selection Screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Need to exclude a button, and that is properly done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Need to make some criterias invisible and that is ok too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally I need to make some other selection criterias visible.&lt;/P&gt;&lt;P&gt;And using the same logic to make some invisible, I could&lt;/P&gt;&lt;P&gt;do that too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I have a problem... Those selection elements comes blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This the crucial part of the coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : itab TYPE TABLE OF sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND: 'FC03' TO itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            p_status  = sy-pfkey&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            p_exclude = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  BREAK-POINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'CN_STUFE-LOW' OR&lt;/P&gt;&lt;P&gt;       screen-name = 'CN_STUFE-HIGH' OR&lt;/P&gt;&lt;P&gt;       screen-name = '%_CN_STUFE_%_APP_%-TEXT' OR&lt;/P&gt;&lt;P&gt;       screen-name = '%_CN_STUFE_%_APP_%-OPTI_PUSH' OR&lt;/P&gt;&lt;P&gt;       screen-name = 'CN_MATNR-LOW' OR&lt;/P&gt;&lt;P&gt;       screen-name = 'CN_MATNR-HIGH' OR&lt;/P&gt;&lt;P&gt;       screen-name = '%_CN_MATNR_%_APP_%-TEXT' OR&lt;/P&gt;&lt;P&gt;       screen-name = '%_CN_MATNR_%_APP_%-VALU_PUSH'.&lt;/P&gt;&lt;P&gt;       screen-active = 0.&lt;/P&gt;&lt;P&gt;       MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The Elements below comes without selection text....&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF screen-name = 'CN_AKTDT' OR&lt;/P&gt;&lt;P&gt;       screen-name = 'CN_VERDT' OR&lt;/P&gt;&lt;P&gt;       screen-name = 'CN_VSEL1' OR&lt;/P&gt;&lt;P&gt;       screen-name = 'CN_VSEL2' OR&lt;/P&gt;&lt;P&gt;       screen-name = 'CN_VSNMR-LOW' OR&lt;/P&gt;&lt;P&gt;       screen-name = '%_CN_VSNMR_%_APP_%-TEXT' OR&lt;/P&gt;&lt;P&gt;       screen-name = '%_CN_VSNMR_%_APP_%-VALU_PUSH'.&lt;/P&gt;&lt;P&gt;       screen-active = 1.&lt;/P&gt;&lt;P&gt;       screen-invisible = 0.&lt;/P&gt;&lt;P&gt;       screen-input = 1.&lt;/P&gt;&lt;P&gt;       MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 12:29:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372658#M525763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T12:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: LDB Selection Screen Modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372659#M525764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;screen-required    = '1'.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ravish&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;plz dont forget to reward points if helpful&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 12:41:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372659#M525764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T12:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: LDB Selection Screen Modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372660#M525765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx, but still doesnt work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://xs116.xs.to/xs116/07244/ldbss.JPG"&amp;gt;Click Here and Check my Problem.&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 12:48:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372660#M525765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T12:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: LDB Selection Screen Modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372661#M525766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to expand your IF statement to include the screen fields for each of the text elements ie&lt;/P&gt;&lt;P&gt;%_S_LGART_%_APP_%-TEXT &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* The Elements below comes without selection text....
IF screen-name = 'CN_AKTDT' OR
screen-name = 'CN_VERDT' OR
screen-name = 'CN_VSEL1' OR
screen-name = 'CN_VSEL2' OR
screen-name = 'CN_VSNMR-LOW' OR
screen-name = '%_CN_VSNMR_%_APP_%-TEXT' OR
screen-name = '%CN_AKTDT_%_APP_%-TEXT'  OR
screen-name = '%CN_VERDT_%_APP_%-TEXT'  OR
screen-name = '%CN_VSEL1_%_APP_%-TEXT'  OR
screen-name = '%CN_VSEL2_%_APP_%-TEXT'  OR
screen-name = '%_CN_VSNMR_%_APP_%-TEXT' OR
screen-name = '%_CN_VSNMR_%_APP_%-VALU_PUSH'.
screen-active = 1.
screen-invisible = 0.
screen-input = 1.
MODIFY SCREEN.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 13:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372661#M525766</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-06-14T13:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: LDB Selection Screen Modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372662#M525767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx, Suresh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is almost solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having dificulties with the frame text. Still in blank. Anyone can help solve this last one?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oh... And I need to insert the icon in the %_CN_VSNMR_%_APP_%-VALU_PUSH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Jose Oliveira&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 14:29:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372662#M525767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T14:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: LDB Selection Screen Modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372663#M525768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok... Icon on  the select-options Button problem solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Just need to put both input and output on. (Value = 1)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF screen-name = '%_CN_VSNMR_%_APP_%-VALU_PUSH' .&lt;/P&gt;&lt;P&gt;     screen-active = 1.&lt;/P&gt;&lt;P&gt;     screen-invisible = 0.&lt;/P&gt;&lt;P&gt;     screen-output = 1.&lt;/P&gt;&lt;P&gt;     screen-input = 1.&lt;/P&gt;&lt;P&gt;     MODIFY SCREEN.&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;&lt;/P&gt;&lt;P&gt;But Still having problem with the frame.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Frame Name is SV_TITLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already tried all combination of screen-invisible, active, input and output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone have the same problem before?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 18:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-selection-screen-modify/m-p/2372663#M525768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T18:48:20Z</dc:date>
    </item>
  </channel>
</rss>

