<?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: Mandatory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967868#M700409</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;If u want make botht the fields mandatory perform like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: emailid like &amp;lt;table Name&amp;gt; Obligatory.&lt;/P&gt;&lt;P&gt;parameters: Number like &amp;lt;table Name&amp;gt; Obligatory.&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;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Oct 2007 07:49:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-19T07:49:49Z</dc:date>
    <item>
      <title>Mandatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967866#M700407</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 have several fields in my screen.&lt;/P&gt;&lt;P&gt;In that there r two fields, Telephone number and Mailid.&lt;/P&gt;&lt;P&gt;If the user enters telephone number, then the mailid shouldn't be a mandory.&lt;/P&gt;&lt;P&gt;Whereas if the user doent enters the telephone no, then the mailid should be mandatory...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do this? Pls tell me....&lt;/P&gt;&lt;P&gt;Points will be rewarded...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 07:39:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967866#M700407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T07:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Mandatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967867#M700408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AT SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;IF sy-ucomm EQ 'ONLI'.&lt;/P&gt;&lt;P&gt;  IF &amp;lt;tel_number&amp;gt; IS INITIAL AND &lt;/P&gt;&lt;P&gt;     &amp;lt;mail id&amp;gt; IS  INITIAL.&lt;/P&gt;&lt;P&gt;   Message E000(00) WITH 'Enter Mail Id'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 07:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967867#M700408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T07:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Mandatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967868#M700409</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;If u want make botht the fields mandatory perform like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: emailid like &amp;lt;table Name&amp;gt; Obligatory.&lt;/P&gt;&lt;P&gt;parameters: Number like &amp;lt;table Name&amp;gt; Obligatory.&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;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 07:49:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967868#M700409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T07:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: Mandatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967869#M700410</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;Build up a logic as below in start-of-selection.  &lt;/P&gt;&lt;P&gt;plant = telephone&lt;/P&gt;&lt;P&gt;test = mail id.&lt;/P&gt;&lt;P&gt;IF s_plant IS INITIAL.&lt;/P&gt;&lt;P&gt;    IF s_test IS INITIAL.&lt;/P&gt;&lt;P&gt;      MESSAGE' material number is mandatory' TYPE 'I'.&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;tc&lt;/P&gt;&lt;P&gt;saji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 08:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967869#M700410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T08:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Mandatory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967870#M700411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To define the input field of a parameter as a required field, you use the following syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS p ...... OBLIGATORY ...... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use this option, a question mark appears in the input field for parameter p. The user cannot continue with the program without entering a value in this field on the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_sel_screen_param_obligato.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS field(10) TYPE c OBLIGATORY.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 08:41:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mandatory/m-p/2967870#M700411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T08:41:40Z</dc:date>
    </item>
  </channel>
</rss>

