<?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: Reg selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4323691#M1030253</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;write the following select options under a block&lt;/P&gt;&lt;P&gt;1.Company code : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SALES AREA-&lt;/P&gt;&lt;P&gt;2.Sales organization:&lt;/P&gt;&lt;P&gt;3.Distribution channel:&lt;/P&gt;&lt;P&gt;4.Division:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then you can perform the validations in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen on block &amp;lt;name&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Aug 2008 09:28:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-14T09:28:00Z</dc:date>
    <item>
      <title>Reg selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4323688#M1030250</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;Can anyone help me out on this scenario.&lt;/P&gt;&lt;P&gt;I have five select- options in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.Company code :     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SALES AREA-&lt;/P&gt;&lt;P&gt;2.Sales organization:&lt;/P&gt;&lt;P&gt;3.Distribution channel:&lt;/P&gt;&lt;P&gt;4.Division:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.Customer number:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Case 1 :  If I enter data in company code , then  sales area fields should become mandatory and  report should be displayed depending on those four fileds.  ( no need to enter  customer number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Case 2:  If I  enter customer number , then also report should be displayed&lt;/P&gt;&lt;P&gt;        ( no need to enter the remaining four field details).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 05:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4323688#M1030250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T05:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reg selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4323689#M1030251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;AT Selection-screen on s_VKORG.

   If S_BUKRS IS NOT INITIAL.

     if  s_VKORG is initial.
       Message 'enter a value' type 'E'.

     endif.

   Endif.

AT Selection-screen on s_VTWEG.

   If S_BUKRS IS NOT INITIAL.

     if s_VTWEG is initial.
       Message 'enter a value' type 'E'.

     endif.

   Endif.

AT Selection-screen on s_SPART.

   If S_BUKRS IS NOT INITIAL.

     if s_SPART is initial.

       Message 'enter a value' type 'E'.

     endif.

   Endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 06:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4323689#M1030251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T06:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Reg selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4323690#M1030252</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 use the following code.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  at selections-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   if s_bukrs is not initial.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;     loop at screen .&lt;/P&gt;&lt;P&gt;     if screen-group1 = 'AAA'.&lt;/P&gt;&lt;P&gt;      screen-required = '1'.&lt;/P&gt;&lt;P&gt;      modify screen.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;     endloop.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Using modif id for grouping the sales area.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 06:04:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4323690#M1030252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T06:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Reg selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4323691#M1030253</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;write the following select options under a block&lt;/P&gt;&lt;P&gt;1.Company code : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SALES AREA-&lt;/P&gt;&lt;P&gt;2.Sales organization:&lt;/P&gt;&lt;P&gt;3.Distribution channel:&lt;/P&gt;&lt;P&gt;4.Division:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then you can perform the validations in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen on block &amp;lt;name&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 09:28:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4323691#M1030253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T09:28:00Z</dc:date>
    </item>
  </channel>
</rss>

