<?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 Parameters Obligatory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887530#M933859</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;I have defined 3 parameters on my selection screen  one of  this one like checkbox&lt;/P&gt;&lt;P&gt;when populate this checkbox, trhe other 2 parameters must stop being obligatory someone can indicate me if it is possible to realize this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 May 2008 15:51:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-26T15:51:09Z</dc:date>
    <item>
      <title>Parameters Obligatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887530#M933859</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;I have defined 3 parameters on my selection screen  one of  this one like checkbox&lt;/P&gt;&lt;P&gt;when populate this checkbox, trhe other 2 parameters must stop being obligatory someone can indicate me if it is possible to realize this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 15:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887530#M933859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T15:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters Obligatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887531#M933860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you want to do so, make these fields not mandatory in the coding at first, so do NOT use&lt;/P&gt;&lt;P&gt;parameters: p_one type c OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection screen, event check if checkbox is initial or not. IF initial, create error message, saying that input fields should be filled first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If checkbox is not initial, don't raise error message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 15:55:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887531#M933860</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-26T15:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters Obligatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887532#M933861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can do this with..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection screen output.&lt;/P&gt;&lt;P&gt;If p_check = 'X'.&lt;/P&gt;&lt;P&gt;""  here u validate the other parameters if are initial put a message error&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 16:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887532#M933861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T16:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters Obligatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887533#M933862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this but this is not the exact case but u can do like this...but i think u cannot do this with the obligatory statement ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters:p_c as checkbox,&lt;/P&gt;&lt;P&gt;           p_test1 type i,&lt;/P&gt;&lt;P&gt;           p_test2 type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if p_c = 'X'.&lt;/P&gt;&lt;P&gt;if screen-name = 'P_C'.&lt;/P&gt;&lt;P&gt;if p_test1 = ' ' and p_test2 = ' ' .&lt;/P&gt;&lt;P&gt;message E000 with 'the two parameters must be obligatory'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&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;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 16:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887533#M933862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T16:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters Obligatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887534#M933863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rodolfo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a logic that if the checkbox is ticked, then paramtext1 should not be initial and paramtext2 should not be initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if checkbox is initial.&lt;/P&gt;&lt;P&gt;if paramtext1 = space.&lt;/P&gt;&lt;P&gt;message e001 'Parameter 1 in blank!'.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if paramtext2 = space.&lt;/P&gt;&lt;P&gt;message e002 'Parameter 2 in blank!'.&lt;/P&gt;&lt;P&gt;exit.&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 helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Benedict&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 17:01:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-obligatory/m-p/3887534#M933863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T17:01:20Z</dc:date>
    </item>
  </channel>
</rss>

