<?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: function-pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994878#M75051</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sanjay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again. &lt;/P&gt;&lt;P&gt;I am getting a short dump and the issue seems to be that that line is trying to assign a character string to an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data is available at runtime (within the function module). e.g. The data I need is in gt_date_wrkt (table of CRMT_DATE_WRKT). In the code:&lt;/P&gt;&lt;P&gt;*********&lt;/P&gt;&lt;P&gt;method IF_EX_CRM_PRICING_BADI~CRM_PRICING_MERGE.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;DATA WA_NAME(50) value '(SAPLCRM_DATES_OB)gt_date_wrkt[]'.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F1&amp;gt; TYPE any.&lt;/P&gt;&lt;P&gt;DATA ITAB type table of CRMT_DATE_WRK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN WA_NAME TO &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt; IF NOT &amp;lt;F1&amp;gt; IS INITIAL .&lt;/P&gt;&lt;P&gt;  itab[] = &amp;lt;F1&amp;gt;. &lt;STRONG&gt;&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;Short Dump here&lt;/STRONG&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I need the data here but it is not available&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call function 'CRM_DATES_READ_SINGLE_OB'&lt;/P&gt;&lt;P&gt;-&amp;gt; the table is populated automatiaclly within the FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe I am not understanding the Field Symbol but it looks like it is just try to assign a string of text to the itab?&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;Aidan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Oct 2005 14:06:33 GMT</pubDate>
    <dc:creator>aidan_mulcahy</dc:creator>
    <dc:date>2005-10-06T14:06:33Z</dc:date>
    <item>
      <title>function-pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994874#M75047</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 am implementing a BADI. In the method I call a SAP standard function. In the first line of the function I can see data in a table (no code at this point populates the table). This, I presume, has been populated by the function-pool the FM belongs to. I would like to see that table before calling the FM. Is it possible to declare the function-pool before I call the function so that I can see the table entries outside of the FM? In the code below the required table is 'gt_date_wrkt'. As you can see it is not populated in the FM itself. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method.....&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;call function 'CRM_DATES_READ_SINGLE_OB'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    IV_DATESET_GUID      = iv_ref_guid&lt;/P&gt;&lt;P&gt;    IS_LOGICAL_DATE_KEY  = lS_LOGICAL_DATE_KEY&lt;/P&gt;&lt;P&gt;  importing&lt;/P&gt;&lt;P&gt;    ES_DATE_WRK          = ls_date_wrk&lt;/P&gt;&lt;P&gt;  exceptions&lt;/P&gt;&lt;P&gt;    PARAMETER_ERROR               = 1&lt;/P&gt;&lt;P&gt;    ENTRY_DOES_NOT_EXIST          = 2&lt;/P&gt;&lt;P&gt;    AT_LEAST_ONE_RECORD_NOT_FOUND = 3&lt;/P&gt;&lt;P&gt;    ENTRY_IS_DELETED              = 4.&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function crm_dates_read_single_ob .&lt;/P&gt;&lt;P&gt;  statics: ls_date_wrk like line of gt_date_wrkt.&lt;/P&gt;&lt;P&gt;  data: lt_dateset_guids type crmt_object_guid_tab,&lt;/P&gt;&lt;P&gt;        lv_errorcode     type sysubrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;// check parameter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  if iv_dateset_guid is initial and is_logical_date_key is initial.&lt;/P&gt;&lt;P&gt;    message e103(crm_order_misc) raising parameter_error.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;// read entry from object buffer&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  read table gt_date_wrkt into ls_date_wrk&lt;/P&gt;&lt;P&gt;             with key guid        = iv_dateset_guid&lt;/P&gt;&lt;P&gt;                      appt_type   = is_logical_date_key-appt_type&lt;/P&gt;&lt;P&gt;                      is_duration = is_logical_date_key-is_duration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2005 13:53:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994874#M75047</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2005-10-05T13:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: function-pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994875#M75048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the table of MAin Function Pool is populated you can see it in the program ( BADI ) before calling the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA WA_NAME(50) vlaue &lt;/P&gt;&lt;P&gt;'(&amp;lt;MAIN_PROG_FUNC_POOL&amp;gt;) gt_date_wrkt[]'.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F1&amp;gt; TYPE ANY .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;ASSIGN WA_NAME TO &amp;lt;F1&amp;gt;. &lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.  &lt;/P&gt;&lt;P&gt;IF NOT &amp;lt;F1&amp;gt; IS INITIAL .&lt;/P&gt;&lt;P&gt;    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to find the name of Main program of function and then replace it in above code .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( Dont forget to reward points if answers were helpful).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2005 02:05:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994875#M75048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-06T02:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: function-pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994876#M75049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sanjay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have never used Field Symbols. How do I access the data once I have assigned the F-pool? There is a field in the gt_date_wrkt table called 'APPT_TYPE'. What would I do to read that?&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;Aidan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2005 09:36:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994876#M75049</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2005-10-06T09:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: function-pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994877#M75050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can see only data defined in Function - Pool in this way provided it is available at runtime .&lt;/P&gt;&lt;P&gt;Define a similar internal table in your program .&lt;/P&gt;&lt;P&gt;"APPT_TYPE" seems to be a type defined in that function pool as I cannot find it in the dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now put this code in your program&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA ITAB LIKE APPT_TYPE OCCURS 0 WITh HEADER LINE.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;( Above line may change as I am not sure how APPT_TYPE looks like )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;DATA WA_NAME(50) vlaue &lt;/P&gt;&lt;P&gt;'(&amp;lt;MAIN_PROG_FUNC_POOL&amp;gt;)gt_date_wrkt[]'.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F1&amp;gt; TYPE ANY .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN WA_NAME TO &amp;lt;F1&amp;gt;. &lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;ITAB[] = &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Itab will be similar to what you have in gt_date_wrkt . You can loop on it or do whatever you want. &amp;lt;MAIN_PROG_FUNC_POOL&amp;gt; will be main program of  actual function group name which you have not mentioned so far in your post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2005 10:01:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994877#M75050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-06T10:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: function-pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994878#M75051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sanjay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again. &lt;/P&gt;&lt;P&gt;I am getting a short dump and the issue seems to be that that line is trying to assign a character string to an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data is available at runtime (within the function module). e.g. The data I need is in gt_date_wrkt (table of CRMT_DATE_WRKT). In the code:&lt;/P&gt;&lt;P&gt;*********&lt;/P&gt;&lt;P&gt;method IF_EX_CRM_PRICING_BADI~CRM_PRICING_MERGE.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;DATA WA_NAME(50) value '(SAPLCRM_DATES_OB)gt_date_wrkt[]'.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F1&amp;gt; TYPE any.&lt;/P&gt;&lt;P&gt;DATA ITAB type table of CRMT_DATE_WRK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN WA_NAME TO &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt; IF NOT &amp;lt;F1&amp;gt; IS INITIAL .&lt;/P&gt;&lt;P&gt;  itab[] = &amp;lt;F1&amp;gt;. &lt;STRONG&gt;&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;Short Dump here&lt;/STRONG&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I need the data here but it is not available&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call function 'CRM_DATES_READ_SINGLE_OB'&lt;/P&gt;&lt;P&gt;-&amp;gt; the table is populated automatiaclly within the FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe I am not understanding the Field Symbol but it looks like it is just try to assign a string of text to the itab?&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;Aidan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2005 14:06:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994878#M75051</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2005-10-06T14:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: function-pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994879#M75052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aidan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are almost there . Seems to be the ITAB definition causing the problem. &lt;/P&gt;&lt;P&gt;Try these in sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Put a break point on IF NOT &amp;lt;F1&amp;gt; IS INITIAL  and check the contens of &amp;lt;F1&amp;gt; in debugging. If asigned correctly then you will see its a table with one or multiple lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Now what is requirement .&lt;/P&gt;&lt;P&gt;   IF &amp;lt;F1&amp;gt; is not initial means the internal table has data . You just want to check if internal table has data or you want to process it . If you want to process , just try below code . If you just want to check if itab has data then IF &amp;lt;F1&amp;gt; is not initial  is sufficient .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data wa type CRMT_DATE_WRK.&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;IF NOT &amp;lt;F1&amp;gt; IS INITIAL .&lt;/P&gt;&lt;P&gt;  LOOP AT &amp;lt;F1&amp;gt; INTO WA.&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;Also give the details of dump. But try in debugging , it will be more helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2005 14:53:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994879#M75052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-06T14:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: function-pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994880#M75053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sanjay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; IF &amp;lt;F1&amp;gt; is not initial means the internal table&lt;/P&gt;&lt;P&gt;&amp;gt; ble has data . You just want to check if internal&lt;/P&gt;&lt;P&gt;&amp;gt; table has data or you want to process it . If you&lt;/P&gt;&lt;P&gt;&amp;gt; want to process , just try below code . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This seems to be the issue. &amp;lt;F1&amp;gt; is not initial but it is not a table, it is just a character string:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA WA_NAME(50) value '(SAPLCRM_DATES_OB)gt_date_wrkt[]'.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F1&amp;gt; TYPE any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN WA_NAME TO &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result in debugging is:&lt;/P&gt;&lt;P&gt;&amp;lt;F1&amp;gt; = '(SAPLCRM_DATES_OB)gt_date_wrkt[]'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, when I loop at &amp;lt;F1&amp;gt;, it just fails.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I presume what should be happening is that the F-pool is accessed and gt_date_wrkt would be available?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are my definitions OK?&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;Aidan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2005 08:36:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994880#M75053</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2005-10-07T08:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: function-pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994881#M75054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry about that .&lt;/P&gt;&lt;P&gt;The correct statement is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN &amp;lt;b&amp;gt;(&amp;lt;/b&amp;gt;WA_NAME&amp;lt;b&amp;gt;)&amp;lt;/b&amp;gt; TO &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;P&gt;( Now  I think you previous code &lt;/P&gt;&lt;P&gt;itab[] = &amp;lt;F1&amp;gt; . should work )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most of the problems you solve in debugging.&lt;/P&gt;&lt;P&gt;In debugging just put (SAPLCRM_DATES_OB)gt_date_wrkt[]&lt;/P&gt;&lt;P&gt;in the field name and you can see the data . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2005 08:42:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994881#M75054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-07T08:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: function-pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994882#M75055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sanjay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that did it. Thanks a lot for your help. Just in time too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aidan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2005 08:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-pool/m-p/994882#M75055</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2005-10-07T08:53:48Z</dc:date>
    </item>
  </channel>
</rss>

