<?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: Table control + mandatory fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352932#M519577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sesh, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply, it works, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One question: where I can define the error msgs, if the field is not filled ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Shah H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2007 08:54:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-14T08:54:46Z</dc:date>
    <item>
      <title>Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352925#M519570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible to make some of the table control fields as mandatory ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352925#M519570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T08:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352926#M519571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       I don't know if it is possible for table control, but it is possible in alvs.&lt;/P&gt;&lt;P&gt;1) Create a dynamic internal table.&lt;/P&gt;&lt;P&gt;2) Create the field catalog for the internal table.&lt;/P&gt;&lt;P&gt;3) Call the alv display function.&lt;/P&gt;&lt;P&gt;4) make the grid editable to simulate a table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:43:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352926#M519571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T08:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352927#M519572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Yes,&lt;/P&gt;&lt;P&gt;when creating Table control in screen painter u can assign mandatory field in properies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards points if helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Suresh.d&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:44:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352927#M519572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T08:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352928#M519573</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;You can do that in the PBO's LOOP AT ENDLOOP over the table control by executing a module and inside the module you can use LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP and then use the code as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT table control.&lt;/P&gt;&lt;P&gt;MODULE init_tab.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE init_tab OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;CHECK SCREEN-NAME = 'TABLE-FILED2' OR ....&lt;/P&gt;&lt;P&gt;SCREEN-REQUIRED = 1.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can as well make the field mandatory when you create the table control in the Screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Double click on the field you want to make mandatory to open the attributes screen there in the attributes section under tab Program, for the dropdown Input select Required&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:46:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352928#M519573</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-06-14T08:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352929#M519574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi suresh, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whih property it is ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have seen did not find out...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:47:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352929#M519574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T08:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352930#M519575</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;it will be possible go to element list -&amp;gt; special attributes -&amp;gt; tick on req field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:48:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352930#M519575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T08:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352931#M519576</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;yes it is very much possible. u can mark the fields as mandatory there is an option when u define the fields of the table control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ravish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:49:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352931#M519576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T08:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352932#M519577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sesh, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply, it works, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One question: where I can define the error msgs, if the field is not filled ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Shah H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:54:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352932#M519577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T08:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352933#M519578</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;when you have created your table control, all its fields will be include in the element list&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352933#M519578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T08:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + mandatory fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352934#M519579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi SHAh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;u can define the error message in the PAI of the screen&lt;/P&gt;&lt;P&gt; case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'CLICK' ***** function code of button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move field to &amp;lt;variable of type field&amp;gt;&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;message eoo1(&amp;lt;message class&amp;gt;)***** define message class in se91&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;end case.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz close the thread if u have got the sol and award points accordingly.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ravish&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;plz dont forget to reward points if helpful&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 13:37:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-mandatory-fields/m-p/2352934#M519579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T13:37:28Z</dc:date>
    </item>
  </channel>
</rss>

