<?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: At Selection Screen EVENT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991415#M1162686</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;            Nothin helped actually i have already tried with all of these possibilities,&lt;/P&gt;&lt;P&gt;but when i am displaying the error message as both of them are filled. After that&lt;/P&gt;&lt;P&gt;i should be able to clear the selection-screen values, both S_MATNR and S_PRODH,&lt;/P&gt;&lt;P&gt;that is where i am getting stuck.&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;Tapodipta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Jan 2009 06:25:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-02T06:25:45Z</dc:date>
    <item>
      <title>At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991405#M1162676</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 am trying to develop a check at selection screen which is having two select options,&lt;/P&gt;&lt;P&gt;S_PRODH and S_MATNR, the requirement is i need to check that both of them are not initial&lt;/P&gt;&lt;P&gt;also if one is entered the user should not be able to enter the other one, If he/she enters any value on the other field it should show an error messsage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My current code is like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF S_MATNR IS INITIAL AND S_PRODH is initial.&lt;/P&gt;&lt;P&gt;  MESSAGE e001(z9) WITH TEXT-005.&lt;/P&gt;&lt;P&gt; ELSE.&lt;/P&gt;&lt;P&gt;  IF S_MATNR IS NOT INITIAL AND S_PRODH is not initial.&lt;/P&gt;&lt;P&gt;   MESSAGE I001(z9) WITH TEXT-005.&lt;/P&gt;&lt;P&gt;   gv_stop = 'X'.&lt;/P&gt;&lt;P&gt;   STOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And after END-OF-SELECTION &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF gv_stop IS INITIAL.&lt;/P&gt;&lt;P&gt;  perform output_data.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me on this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tapodipta Khan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 05:59:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991405#M1162676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T05:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991406#M1162677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Modify this line " IF S_MATNR IS NOT INITIAL AND S_PRODH is not initial. "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as  " IF &lt;STRONG&gt;NOT&lt;/STRONG&gt; S_MATNR IS INITIAL AND &lt;/P&gt;&lt;P&gt;( NOT S_PRODH is  initial ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Rajat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:02:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991406#M1162677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991407#M1162678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It seems there is some confusion in the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 the requirement is i need to check that both of them are not initial
also if one is entered the user should not be able to enter the other one, If he/she enters any value on the other field it should show an error messsage.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;U r telling both should not be initial and if u enter one value u should not enter other. So it is&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;contradictory. Please check the requirement correctly and get back.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991407#M1162678</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2009-01-02T06:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991408#M1162679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Actually it is displaying the Error message but creates another problem, if i am trying to delete&lt;/P&gt;&lt;P&gt;any of the ranges given, either matnr or prodh then it is again showing the error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tapodipta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:06:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991408#M1162679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991409#M1162680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YEs, use Rajat' sugestion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:07:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991409#M1162680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991410#M1162681</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;Try this way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF S_MATNR IS INITIAL AND S_PRODH is initial.
   MESSAGE E001(z9) WITH TEXT-005.
ELSEIF S_MATNR IS NOT INITIAL AND S_PRODH is not initial.
   MESSAGE E001(z9) WITH TEXT-005.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't give the Inforamtion Message and instead give the Error Message so the processing get's stoped and selection screen will be displayed..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: avinash kodarapu on Jan 2, 2009 11:38 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:07:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991410#M1162681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991411#M1162682</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;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF S_MATNR IS INITIAL AND S_PRODH is initial.&lt;/P&gt;&lt;P&gt;MESSAGE e001(z9) WITH TEXT-005.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If s_matnr is not initial and  S_PRODH is initial.&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if screen-name =  S_PRODH .&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&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;elseif  s_matnr is initial and  S_PRODH is not  initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if screen-name =  S_matnr .&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will not allow user to enter rathher than an error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it slves.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reg&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:07:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991411#M1162682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991412#M1162683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinod,&lt;/P&gt;&lt;P&gt;             The requirement is like that only, if your'e entering S_MATNR then S_PRODH should be blank&lt;/P&gt;&lt;P&gt;or disabled,  and if you are entering S_PRODH then S_MATNR should be blank or disabled, or instead of disabling it they need one Error message.&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;Tapodipta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991412#M1162683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991413#M1162684</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;I think ur requirement is, at a time either S_PRODH is not initial or S_MATNR is not initial, then only ur code should be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is the requirement ur code will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:11:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991413#M1162684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991414#M1162685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tapo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Display the mesaage like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: c_error TYPE char1 VALUE 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE s001(z9) DISPLAY LIKE c_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sayak..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991414#M1162685</guid>
      <dc:creator>RoySayak</dc:creator>
      <dc:date>2009-01-02T06:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991415#M1162686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;            Nothin helped actually i have already tried with all of these possibilities,&lt;/P&gt;&lt;P&gt;but when i am displaying the error message as both of them are filled. After that&lt;/P&gt;&lt;P&gt;i should be able to clear the selection-screen values, both S_MATNR and S_PRODH,&lt;/P&gt;&lt;P&gt;that is where i am getting stuck.&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;Tapodipta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991415#M1162686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991416#M1162687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tapodipta Khan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this way, its working:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES : aufk.

SELECT-OPTIONS : s_aufnr FOR aufk-aufnr,
                 s_objnr FOR aufk-objnr.

AT SELECTION-SCREEN.
  IF ( NOT s_aufnr IS INITIAL ) AND  ( NOT s_objnr IS INITIAL ).
    MESSAGE e000(zmsg_wo). "zmsg_wo is message class
  ELSEIF ( s_aufnr IS INITIAL ) AND  ( s_objnr IS INITIAL ).
    MESSAGE e001(zmsg_wo).
  ELSE.
    *your code
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&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;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Tarun Gambhir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:30:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991416#M1162687</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-01-02T06:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991417#M1162688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sayak , your solution solved the problem.&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;Tapodipta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:31:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991417#M1162688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: At Selection Screen EVENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991418#M1162689</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;Try like this:&lt;/P&gt;&lt;P&gt;tables: mara, vbap.&lt;/P&gt;&lt;P&gt;select-options: s_matnr for mara-matnr,&lt;/P&gt;&lt;P&gt;                s_prodh for vbap-prodh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;*break-point.&lt;/P&gt;&lt;P&gt;if  ( ( s_matnr is initial ) and ( s_prodh is initial ) ).&lt;/P&gt;&lt;P&gt;    message e000(01) with 'Must enter value in any field.'.&lt;/P&gt;&lt;P&gt;elseif ( not s_matnr is initial ) and ( s_prodh is initial ).&lt;/P&gt;&lt;P&gt;    message i000(02) with 'You entered value in matnr field.'.&lt;/P&gt;&lt;P&gt;elseif ( s_matnr is initial ) and ( not s_prodh is initial ).&lt;/P&gt;&lt;P&gt;    message i000(03) with 'You entered value in prodh field.'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;write:/ 'Value you entered in s_matnr is:', s_matnr-low,&lt;/P&gt;&lt;P&gt;      / 'Value you entered in s_prodh is:', s_prodh-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 06:39:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-event/m-p/4991418#M1162689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T06:39:43Z</dc:date>
    </item>
  </channel>
</rss>

