<?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: Performance issue in selection screen validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464884#M1930141</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As a rule of thumb:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If you need tbe contents of the selected row(s)&lt;UL&gt;&lt;LI&gt;You use SINGLE when selecting a &lt;STRONG&gt;fully&lt;/STRONG&gt; specified row into a structure&lt;/LI&gt;&lt;LI&gt;You use UP TO n ROWS (together with ORDER BY) when selecting a restricted number of &lt;STRONG&gt;partly&lt;/STRONG&gt; specified rows into a table or structure&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;If you merely want to check the existence of a row (not interested in contents) you can use both&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;See &lt;/SPAN&gt;&lt;A __default_attr="122199" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="Selecting One Row From a Database Table" href="https://community.sap.com/" modifiedtitle="true" title="Selecting One Row From a Database Table"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jan 2016 13:34:55 GMT</pubDate>
    <dc:creator>retired_member</dc:creator>
    <dc:date>2016-01-05T13:34:55Z</dc:date>
    <item>
      <title>Performance issue in selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464880#M1930137</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;Getting an error in Code Inspector as : No field of table index in Where&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my select query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not s_date is initial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select date_r&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from ztable&lt;/P&gt;&lt;P&gt;into lv_date&lt;/P&gt;&lt;P&gt;up to 1 rows&lt;/P&gt;&lt;P&gt;where date_r in s_date.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;message.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me to overcome this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2016 12:42:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464880#M1930137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-05T12:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue in selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464881#M1930138</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;seems like the field date_r is not part of the table index of ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to create an index with that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using Code Inspector or ATC?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2016 13:15:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464881#M1930138</guid>
      <dc:creator>bauert</dc:creator>
      <dc:date>2016-01-05T13:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue in selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464882#M1930139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It doesn't look like an error, it's more likely a warning. You don't have a index with date_r in ztable, create the index with this field to correct the problem, also avoid using select ~ endselect, try to use select &amp;lt;fields&amp;gt; into table &amp;lt;internal_table&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2016 13:23:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464882#M1930139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-05T13:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue in selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464883#M1930140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And more-over why are you using SELECT-ENDSELECT ?&amp;nbsp; This is obsolete.&amp;nbsp; Use Select Single.... Into&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(oops - sorry Lucas just repeated what you said)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2016 13:28:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464883#M1930140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-05T13:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue in selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464884#M1930141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As a rule of thumb:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If you need tbe contents of the selected row(s)&lt;UL&gt;&lt;LI&gt;You use SINGLE when selecting a &lt;STRONG&gt;fully&lt;/STRONG&gt; specified row into a structure&lt;/LI&gt;&lt;LI&gt;You use UP TO n ROWS (together with ORDER BY) when selecting a restricted number of &lt;STRONG&gt;partly&lt;/STRONG&gt; specified rows into a table or structure&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;If you merely want to check the existence of a row (not interested in contents) you can use both&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;See &lt;/SPAN&gt;&lt;A __default_attr="122199" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="Selecting One Row From a Database Table" href="https://community.sap.com/" modifiedtitle="true" title="Selecting One Row From a Database Table"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2016 13:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464884#M1930141</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-01-05T13:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue in selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464885#M1930142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you need to think about just what you are trying to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have a table with multiple rows and has this date column. You also have a SELECT-OPTION that may contain many dates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You then take a date at random (but within the SELECT-OPTION) from the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see any logic here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2016 14:37:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464885#M1930142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-05T14:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue in selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464886#M1930143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could also only execute selection when user actually try to execute the report, and not at each press of Enter key.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;AT&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;SELECTION-SCREEN&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;ON&lt;/SPAN&gt; s_date&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;IF&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;NOT&lt;/SPAN&gt; s_date[] &lt;SPAN style="color: #0000ff;"&gt;IS&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;INITIAL&lt;/SPAN&gt; &lt;SPAN style="color: #808080;"&gt;&lt;EM&gt;" select-options have header line :-(&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;AND&lt;/SPAN&gt; &lt;SPAN style="color: #800097;"&gt;(&lt;/SPAN&gt; sscrfields-ucomm &lt;SPAN style="color: #0000ff;"&gt;EQ&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'ONLI'&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;OR&lt;/SPAN&gt; sscrfields-ucomm &lt;SPAN style="color: #0000ff;"&gt;EQ&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'PRIN'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="color: #800097;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;SELECT&lt;/SPAN&gt; date_r &lt;SPAN style="color: #0000ff;"&gt;INTO&lt;/SPAN&gt; lv_dummy&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; ztable &lt;SPAN style="color: #0000ff;"&gt;UP&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;TO&lt;/SPAN&gt; &lt;SPAN style="color: #3399ff;"&gt;1&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;ROWS&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;WHERE&lt;/SPAN&gt; date_r &lt;SPAN style="color: #0000ff;"&gt;IN&lt;/SPAN&gt; s_date&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;ENDSELECT&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;IF&lt;/SPAN&gt; sy-subrc &lt;SPAN style="color: #0000ff;"&gt;NE&lt;/SPAN&gt; &lt;SPAN style="color: #3399ff;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;MESSAGE&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'Date not found'&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;TYPE&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'E'&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But if you didn't create any index, better use a single SELECT with every criteria with similar code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;AT&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;SELECTION-SCREEN&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;IF&lt;/SPAN&gt; sscrfields-ucomm &lt;SPAN style="color: #0000ff;"&gt;EQ&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'ONLI'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;OR&lt;/SPAN&gt; sscrfields-ucomm &lt;SPAN style="color: #0000ff;"&gt;EQ&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'PRIN'&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;SELECT&lt;/SPAN&gt; date_r &lt;SPAN style="color: #0000ff;"&gt;INTO&lt;/SPAN&gt; lv_dummy&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; ztable &lt;SPAN style="color: #0000ff;"&gt;UP&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;TO&lt;/SPAN&gt; &lt;SPAN style="color: #3399ff;"&gt;1&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;ROWS&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;WHERE&lt;/SPAN&gt; date_r &lt;SPAN style="color: #0000ff;"&gt;IN&lt;/SPAN&gt; s_date&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM style="color: #808080;"&gt;" and other select-options&lt;/EM&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;ENDSELECT&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;IF&lt;/SPAN&gt; sy-subrc &lt;SPAN style="color: #0000ff;"&gt;NE&lt;/SPAN&gt; &lt;SPAN style="color: #3399ff;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;MESSAGE&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'No data selected'&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;TYPE&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'S'&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;LIKE&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'E'&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;CLEAR&lt;/SPAN&gt; sscrfields-ucomm&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;(or even already fill the first internal table with the code of START-OF-SELECTION)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2016 15:03:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue-in-selection-screen-validation/m-p/11464886#M1930143</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2016-01-05T15:03:40Z</dc:date>
    </item>
  </channel>
</rss>

