<?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: Re selection screen validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen-validation/m-p/3907772#M937096</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you try to create 2 blocks .&lt;/P&gt;&lt;P&gt;block 1 : S_LGNUM, S_WERKS&lt;/P&gt;&lt;P&gt;block 2 : S_EXIDV2, S_EXIDV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give modif id as A for second block select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now you can use this event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen on block b1.&lt;/P&gt;&lt;P&gt;if s_lgnum is initial and s_werks is initial.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'A'.&lt;/P&gt;&lt;P&gt;   screen-required = '1'. (pls chk this screen field, but for making mandatory there is one field available in screen internal table)&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandeep REddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2008 15:41:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-04T15:41:06Z</dc:date>
    <item>
      <title>Re selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen-validation/m-p/3907770#M937094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In one of my report I have to put validation on selection screen. I have  4 fields defined under select-options (S_LGNUM, S_WERKS S_EXIDV2, S_EXIDV).&lt;/P&gt;&lt;P&gt;Now&lt;/P&gt;&lt;P&gt;When warehouse(LGNUM) and Plant(WERKS) are blank then Case# (EXIDV2) or HU#(EXIDV) become mandtory at selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to code for this Please help.Points sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 15:11:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen-validation/m-p/3907770#M937094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T15:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Re selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen-validation/m-p/3907771#M937095</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;Please go through the sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: matnr for mara-matnr,&lt;/P&gt;&lt;P&gt;                mbrsh for mara-mbrsh,&lt;/P&gt;&lt;P&gt;                meins for mara-meins ,&lt;/P&gt;&lt;P&gt;                mtart for mara-mtart.&lt;/P&gt;&lt;P&gt;&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 matnr is initial and mbrsh is initial.&lt;/P&gt;&lt;P&gt;                  if meins is initial or mtart is initial.&lt;/P&gt;&lt;P&gt;                  message e000(0) with 'Please enter values'.&lt;/P&gt;&lt;P&gt;&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;Hope this solves the problem.&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 15:31:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen-validation/m-p/3907771#M937095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T15:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Re selection screen validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen-validation/m-p/3907772#M937096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you try to create 2 blocks .&lt;/P&gt;&lt;P&gt;block 1 : S_LGNUM, S_WERKS&lt;/P&gt;&lt;P&gt;block 2 : S_EXIDV2, S_EXIDV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give modif id as A for second block select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now you can use this event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen on block b1.&lt;/P&gt;&lt;P&gt;if s_lgnum is initial and s_werks is initial.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'A'.&lt;/P&gt;&lt;P&gt;   screen-required = '1'. (pls chk this screen field, but for making mandatory there is one field available in screen internal table)&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandeep REddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 15:41:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-selection-screen-validation/m-p/3907772#M937096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T15:41:06Z</dc:date>
    </item>
  </channel>
</rss>

