<?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 obligatory field problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010970#M1346010</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;I search google and sdn forums for solving my following problem but I couldn't find anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an selection screen with 3 obligatory fields.&lt;/P&gt;&lt;P&gt;And this is what I want to do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the first obligatory field is filled then the other 2 obligatory fields shouldn't be obligatory anymore.&lt;/P&gt;&lt;P&gt;Otherwise if the 2 last obligatory are filled the first obligatory shouldn't be obligatory anymore.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how to implement this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx for any suggestion!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Jul 2009 08:24:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-31T08:24:37Z</dc:date>
    <item>
      <title>obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010970#M1346010</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;I search google and sdn forums for solving my following problem but I couldn't find anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an selection screen with 3 obligatory fields.&lt;/P&gt;&lt;P&gt;And this is what I want to do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the first obligatory field is filled then the other 2 obligatory fields shouldn't be obligatory anymore.&lt;/P&gt;&lt;P&gt;Otherwise if the 2 last obligatory are filled the first obligatory shouldn't be obligatory anymore.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how to implement this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx for any suggestion!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:24:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010970#M1346010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010971#M1346011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My tip for searching terms in Google or SCN would be with Loop at screen,Modif ID,at selection-screen....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:28:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010971#M1346011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010972#M1346012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Dont use Obligatory ...u can use At-Selection-Screen and then check which field is INITIAL and display error message of type E ..to enter the next field values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:31:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010972#M1346012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010973#M1346013</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;Try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

parameters: field1(10) type c,
                    field2(10) type c.


At selection-screen output.

if field1 is initial. 
if field1 is initial and field2 is initial.
message e398(00) with 'Enter field2' .
endif.
endif.

if field2 is inital.
if field2 is initial and field1 is initial.
message e398(00) with 'Enter field1' .
endif.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:33:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010973#M1346013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010974#M1346014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Zaya &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can Implement this in &lt;STRONG&gt;AT-SELECTION SCREEN&lt;/STRONG&gt; using the relevant conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any need any more help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:33:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010974#M1346014</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-07-31T08:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010975#M1346015</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;I think you need do like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF SCREEN 500. 
  SELECT-OPTIONS field1 FOR sflight_wa-connid. 
		  field2 FOR sflight_wa-connid. 
		  field3 FOR sflight_wa-connid. 				
SELECTION-SCREEN END OF SCREEN 500. 

* Handling selection screen events 

AT SELECTION-SCREEN ON field1. 
  IF field1 IS INITIAL. 
    MESSAGE 'Please enter a value in field 2 &amp;amp; 3 ' TYPE 'E'. 
  ENDIF

AT SELECTION-SCREEN ON field2 or field3. 
  IF field2 IS INITIAL. 
    MESSAGE 'Please enter a value in field 1 ' TYPE 'E'. 
  ENDIF&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010975#M1346015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010976#M1346016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can switch OBLIGATORY to NON-OBLIGATORY at event AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check screen field is initial or not if it is initial then make other to fields OBLIGATORY = 1 using LOOP at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if this can help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Augustin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010976#M1346016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010977#M1346017</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;Check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: p_field1 TYPE char10 ,
            p_field2 TYPE char10 ,
            p_field3 TYPE char10 .

AT SELECTION-SCREEN.
  if p_field1 is INITIAL and
     p_field2 is INITIAL and
     p_field3 is INITIAL.
    MESSAGE 'ENter' TYPE 'E'.
  ENDIF.

AT SELECTION-SCREEN OUTPUT.
  if p_field1 is NOT INITIAL.
    LOOP AT SCREEN.
      if screen-name eq 'P_FIELD2' or screen-name eq 'P_FIELD3'.
        screen-required = '0'.
        MODIFY SCREEN.
      ENDIF.
      ENDLOOP.
  ENDIF.
  if p_field2 is NOT INITIAL.
    LOOP AT SCREEN.
      if screen-name eq 'P_FIELD1' or screen-name eq 'P_FIELD3'.
        screen-required = '0'.
        MODIFY SCREEN.
      ENDIF.
      ENDLOOP.
  ENDIF.
  if p_field3 is NOT INITIAL.
    LOOP AT SCREEN.
      if screen-name eq 'P_FIELD1' or screen-name eq 'P_FIELD2'.
        screen-required = '0'.
        MODIFY SCREEN.
      ENDIF.
      ENDLOOP.
  ENDIF.

  START-OF-SELECTION.
  WRITE:/ 'Hi'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:48:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010977#M1346017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010978#M1346018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;gt; Hi experts,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I search google and sdn forums for solving my following problem but I couldn't find anything.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I have an selection screen with 3 obligatory fields.&lt;/P&gt;&lt;P&gt;&amp;gt; And this is what I want to do:&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; If the first obligatory field is filled then the other 2 obligatory fields shouldn't be obligatory anymore.&lt;/P&gt;&lt;P&gt;&amp;gt; Otherwise if the 2 last obligatory are filled the first obligatory shouldn't be obligatory anymore.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; But how to implement this?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thx for any suggestion!&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Zaya&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to put logic at   AT SELECTION-SCREEN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;don't declare field as obligatory.. instead of this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS     : p_miscpl   TYPE t5uba-bplan         ,&lt;/P&gt;&lt;P&gt;                 p_optpl    TYPE t74fl-levl1         ,&lt;/P&gt;&lt;P&gt;                 p_month(2) TYPE c                                .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk.&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  p_miscpl IS INITIAL.&lt;/P&gt;&lt;P&gt;    IF  p_optpl IS INITIAL AND&lt;/P&gt;&lt;P&gt;                     p_month IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MESSAGE ' field2 and field3  are mandatory' TYPE 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSEIF p_optpl IS INITIAL OR&lt;/P&gt;&lt;P&gt;                  p_month IS INITIAL.&lt;/P&gt;&lt;P&gt;      MESSAGE ' field2 and field3 are mandartory' TYPE 'E'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    IF NOT p_optpl IS INITIAL AND&lt;/P&gt;&lt;P&gt;                   NOT  p_month IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MESSAGE ' field1 is mandatory' TYPE 'E'.   sorry not m andatory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its working absolutejy fine......&lt;/P&gt;&lt;P&gt;let me know if u have problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ashu singh on Jul 31, 2009 11:07 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ashu singh on Jul 31, 2009 11:08 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 09:06:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010978#M1346018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T09:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010979#M1346019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;don't use obligatory statements.&lt;/P&gt;&lt;P&gt;and at selection screen event . give proper error messages as required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 09:08:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010979#M1346019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T09:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: obligatory field problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010980#M1346020</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;firstly thank u ALL for your hints!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Amit, Rimpa, Faisal and Sumanth:&lt;/P&gt;&lt;P&gt;Thanks for these hints!&lt;/P&gt;&lt;P&gt;So, now I know different ways to solve this problem!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@ Vikred and Ashu&lt;/P&gt;&lt;P&gt;Actually, your coding solved my problem! &lt;/P&gt;&lt;P&gt;Especially Ashus code was very useful!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@ Balu&lt;/P&gt;&lt;P&gt;Very nice tip but unfortunately it didn't work for me.&lt;/P&gt;&lt;P&gt;E.g. this line :&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON field2 or field3. &lt;/P&gt;&lt;P&gt;doesn't work because it says that after field2 there should be a point.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Augustrian and Nitwick:&lt;/P&gt;&lt;P&gt;Your hint is another way to solve my problem!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the end I implemented like Vikred and Ashu advised me:&lt;/P&gt;&lt;P&gt;Sorry, Messages are in German..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT-OPTIONS: 
so_vbeln FOR likp-vbeln,
so_vstel FOR likp-vstel,
so_lfdat FOR likp-lfdat.

AT SELECTION-SCREEN.
  IF so_vbeln IS INITIAL AND
     so_vstel IS INITIAL AND
     so_lfdat IS INITIAL.
    MESSAGE 'Bitte Lieferung ODER Annahmestelle und Liefertermin ausfüllen!' TYPE 'E'.

  ELSEIF so_vbeln IS INITIAL.
    IF so_vstel OR so_lfdat IS INITIAL.
    MESSAGE 'Bitte die Pflichtfelder Annahmestelle und Liefertermin ausfüllen!' TYPE 'E'.
    ENDIF.
  ELSEIF so_vstel AND so_lfdat IS INITIAL.
    IF so_vbeln IS INITIAL.
    MESSAGE 'Bitte Lieferung ausfüllen!' TYPE 'E'.
    ENDIF.
  ELSEIF so_vstel OR so_lfdat IS NOT INITIAL.
    IF so_vbeln IS NOT INITIAL.
    MESSAGE 'Bitte Lieferung ODER Annahmestelle und Liefertermin ausfüllen!' TYPE 'E'.
    ENDIF.

  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zaya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 09:53:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obligatory-field-problem/m-p/6010980#M1346020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T09:53:14Z</dc:date>
    </item>
  </channel>
</rss>

