<?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: ABAP Report with INCLUDE for subroutine. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534824#M1264326</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the type i should use here for the selection option parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Apr 2009 05:42:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-29T05:42:05Z</dc:date>
    <item>
      <title>ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534817#M1264319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have ABAP report list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT-OPTIONS: s_date FOR oijne-astdtt.
PARAMETERS : p_time LIKE sy-uzeit DEFAULT sy-uzeit.
SELECT-OPTIONS : s_soldto FOR oijnomi-soldto.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my program i have &lt;STRONG&gt;INCLUDE ZER0100F&lt;/STRONG&gt;. as incude for subroutine form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i put the subroutine in the include and in side this subroutine i am using the s_date or s_soldto.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gives me error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The field "S_DATE" is unknown&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:10:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534817#M1264319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534818#M1264320</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;The scope of s_date is restricted to the ABAP List report it is declared in. You can write your subroutine in this report itself to use the same select option in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:17:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534818#M1264320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534819#M1264321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Himanshu Kanekar  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the there any way to access it from the include rether than from main progra?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:20:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534819#M1264321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534820#M1264322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In ur FORM .... ENDFORM use using or changing parameters for s_date in ur include and similarly in PERFORM also use using or changing according to ur FORM ...ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:23:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534820#M1264322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534821#M1264323</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;this error is because u have written include statement before the selection-screen block...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u write include after the selection screen it will solve ur problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u cna do one more thing....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create another include for selection-screen and put that include before ur subroutine include...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:35:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534821#M1264323</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2009-04-29T05:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534822#M1264324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My Code as mentioned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT-OPTIONS: s_date FOR oijne-astdtt.
PARAMETERS : p_time LIKE sy-uzeit DEFAULT sy-uzeit.
SELECT-OPTIONS : s_soldto FOR oijnomi-soldto.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How i can use the S_Date in the paramters of the Form?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As u know S_DATE is and internal table.!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534822#M1264324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534823#M1264325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use TABLES as parameter instead of USING....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534823#M1264325</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2009-04-29T05:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534824#M1264326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the type i should use here for the selection option parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:42:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534824#M1264326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534825#M1264327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use so_date in tables parameters of form ... endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: vijetasap on Apr 29, 2009 7:45 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:43:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534825#M1264327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534826#M1264328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;better if u try the option of include that i have suggested earlier ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dnt think TABLES , USING etc will work....because ur subroutine will be  in include.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so even if u use parameters in FORM ...ENDFORM it still wont work....i guess&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;error is because ur include does not find the Select-option field....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so u have to declare it before the ur subroutine include.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:49:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534826#M1264328</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2009-04-29T05:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534827#M1264329</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;There is no need to use Using or tables since the select option is global and will be accessible in your routine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES kna1.

SELECT-OPTIONS: s_date FOR sy-datum.
PARAMETERS : p_time LIKE sy-uzeit DEFAULT sy-uzeit.
SELECT-OPTIONS : s_soldto FOR kna1-kunnr.

START-OF-SELECTION.
  PERFORM f_routine.


FORM f_routine.
  WRITE : 'low :' , s_soldto-low.
ENDFORM.                    "f_routine&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Dev Parbutteea on Apr 29, 2009 8:05 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534827#M1264329</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2009-04-29T05:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534828#M1264330</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;whenever you are using subroutine and the variable used in the subrutine is not defined locally (within the  subroutine) it will give you an error saying its not defined though you must have done it before calling the subrutine but if they are not defined globally they become the local varaible and for the subroutine to access them you have to pass them to the subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:09:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534828#M1264330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T06:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534829#M1264331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;the select-option is global to ur report &lt;/P&gt;&lt;P&gt;so any subroutine , whether it is in same report or in any include program , will have access to it&lt;/P&gt;&lt;P&gt;so you dont need to use any using or changing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the problem still exist then try to declear data first and then subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE Z_DATA.&lt;/P&gt;&lt;P&gt;INCLUDE Z_FORMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534829#M1264331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T06:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534830#M1264332</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;Do the coding in this way :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables but000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_date FOR sy-datum.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_time LIKE sy-uzeit DEFAULT sy-uzeit.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_soldto FOR but000-partner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform test.&lt;/P&gt;&lt;P&gt;include zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The subroutine is present in the include zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;deepika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534830#M1264332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T06:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534831#M1264333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to declare the Include program after the selection-screen (select-options).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Joan Jesudasan on Apr 29, 2009 8:55 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534831#M1264333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T06:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534832#M1264334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ali Saleh AlAbbad  ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any break thru..????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 07:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534832#M1264334</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2009-04-29T07:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Report with INCLUDE for subroutine.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534833#M1264335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ali ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include the select options in &lt;STRONG&gt;top include.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_date FOR oijne-astdtt.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_time LIKE sy-uzeit DEFAULT sy-uzeit.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_soldto FOR oijnomi-soldto.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Sudhir S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 11:46:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-report-with-include-for-subroutine/m-p/5534833#M1264335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-08T11:46:28Z</dc:date>
    </item>
  </channel>
</rss>

