<?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: selection-screen code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126609#M1188700</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Tables:
  eban.

Select-options:
  s_frgkz for eban-frgkz,
  s_loekz for eban-loekz, " item in purchase document is not deleted or if value is 'X' then document is *deleted or blocked
  s_bsart for eban-bsart.

Initialization.

  s_frgkz-low  = '2'.
  s_frgkz-high = 'Y'.
  Append s_frgkz.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Feb 2009 11:11:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-02T11:11:45Z</dc:date>
    <item>
      <title>selection-screen code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126605#M1188696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please help me in designing the selection-screen code for the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st field(PR Item release status): &lt;/P&gt;&lt;P&gt;eban-frgkz (range of values) and default to '2' and 'Y'-PR autorized&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2nd field(PR Item Del. Indicator): &lt;/P&gt;&lt;P&gt;eban-loekz (Range of values) and (default to not deleted)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3rd field(PR TYPE):&lt;/P&gt;&lt;P&gt;EBAN-BSART (Range of values)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 10:55:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126605#M1188696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T10:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126606#M1188697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What did you code this far?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:00:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126606#M1188697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126607#M1188698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've written this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_frgkz FOR v_frgkz MATCHCODE OBJECT h_t161s.      &lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_loekz FOR v_loekz.    &lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_bsart FOR v_bsart.                    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but not understanding the condition for the second field.i.e., what does it mean for '(default to not deleted).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:09:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126607#M1188698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126608#M1188699</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 this code ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES : eban.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-s01.
SELECT-OPTIONS:
       s_frgkz  for eban-frgkz,
       s_loekz  for eban-loekz,
       s_bsart  FOR EBAN-BSART.   
SELECTION-SCREEN END OF BLOCK b1.

INITIALIZATION.
s_frgkz-sign = 'I'.
s_frgkz-option = 'EQ'.
s_frgkz-low = 'Z'.
Append s_frgkz. Clear s_frgkz.

s_frgkz-sign = 'I'.
s_frgkz-option = 'EQ'.
s_frgkz-low = 'Y'.
Append s_frgkz. Clear s_frgkz.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:11:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126608#M1188699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126609#M1188700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Tables:
  eban.

Select-options:
  s_frgkz for eban-frgkz,
  s_loekz for eban-loekz, " item in purchase document is not deleted or if value is 'X' then document is *deleted or blocked
  s_bsart for eban-bsart.

Initialization.

  s_frgkz-low  = '2'.
  s_frgkz-high = 'Y'.
  Append s_frgkz.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:11:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126609#M1188700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126610#M1188701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It means you have to initialize your select options so the values are already there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;s_loekz-OPTION = 'I'.
s_loekz-SIGN = 'EQ'.
append s_loekz.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And you'll just have to find out yourself where you need to put that piece of code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:12:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126610#M1188701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126611#M1188702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ignore this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pritam Ghosh on Feb 2, 2009 12:16 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:13:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126611#M1188702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126612#M1188703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ignore this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pritam Ghosh on Feb 2, 2009 12:16 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:13:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126612#M1188703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126613#M1188704</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;LOEKZ is the deletion indicator field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is &lt;STRONG&gt;'X'&lt;/STRONG&gt;, then it means that item is deleted.&lt;/P&gt;&lt;P&gt;not 'X' i.e, &lt;STRONG&gt;space&lt;/STRONG&gt; means that item is not deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;2nd field(PR Item Del. Indicator):&lt;/P&gt;&lt;P&gt;eban-loekz (Range of values) and (default to not deleted)&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here it is saying that &lt;STRONG&gt;default to not deleted&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;So, default this field to &lt;STRONG&gt;space&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandhya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 11:22:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-code/m-p/5126613#M1188704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T11:22:37Z</dc:date>
    </item>
  </channel>
</rss>

