<?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 Reg: hard coding in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933349#M386300</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;could any one tel me what exactly mean by hard coding, and  how to avoid that in program, if you give me one or two exampls that would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance.&lt;/P&gt;&lt;P&gt;Akshitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 Feb 2007 05:33:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-17T05:33:56Z</dc:date>
    <item>
      <title>Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933349#M386300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;could any one tel me what exactly mean by hard coding, and  how to avoid that in program, if you give me one or two exampls that would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance.&lt;/P&gt;&lt;P&gt;Akshitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Feb 2007 05:33:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933349#M386300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-17T05:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933350#M386301</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;please close this thread  i have answered the same in other group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Feb 2007 06:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933350#M386301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-17T06:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933351#M386302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Akshitha,&lt;/P&gt;&lt;P&gt;  Hard coding is like passing a value directly and by not using a variable or constant. It is very important to restrict from hard coding, because it hampers the reusablity of a code. For Example :-&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;Case:    data : lv_age1 type i.&lt;/P&gt;&lt;P&gt;             lv_age = 10.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    Now, if you are using the number 10 at many places in the code, say about 50  &lt;/P&gt;&lt;P&gt;    places, and suddenly you want the number to be changed to 20 rather than 10.&lt;/P&gt;&lt;P&gt;    In that case you would have to go to 50 places and delete and change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution: data: lv_age type i.&lt;/P&gt;&lt;P&gt;              constant: c_no type i value 10.&lt;/P&gt;&lt;P&gt;              lv_age = c_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Now, if you are using the number 10 at many places in the code, say about 50  &lt;/P&gt;&lt;P&gt;    places, and suddenly you want the number to be changed to 20 rather than 10.&lt;/P&gt;&lt;P&gt;    Now you just need to change the statement:-&lt;/P&gt;&lt;P&gt;    constant: c_no type i value 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus you save the time to change at 49 places.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you understood, what i wished to convey here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Please reward points if you are satisfied :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Ravi &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 12:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933351#M386302</guid>
      <dc:creator>raviprakash</dc:creator>
      <dc:date>2007-02-19T12:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933352#M386303</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;   hard coding is nothing using values directly with any constants/text elements.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;for eg: if you are assinging value 40 to variable. you need to declare it as a constant and then assign. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gv_var = '40'.      -&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt; wrong&lt;/P&gt;&lt;P&gt;gv_var = gc_40.     -&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;  Correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br, &lt;/P&gt;&lt;P&gt;Laxmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 17:26:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933352#M386303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T17:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933353#M386304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please reply with your status - whether you have understood or need further explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hard coding is the assignment of values directly in our program instead of using Variables or Text-elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: &lt;/P&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;tables: spfli.&lt;/P&gt;&lt;P&gt;parameters: p_carrid type spfli-carrid.&lt;/P&gt;&lt;P&gt;data: wa type spfli.&lt;/P&gt;&lt;P&gt;data: itab like table of wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select connid from spfli into table itab where carrid eq &amp;lt;b&amp;gt;'AA'&amp;lt;/b&amp;gt;. - Hard coding of values&lt;/P&gt;&lt;P&gt; ( Instead write: select connid from spfli into table itab where carrid eq &amp;lt;b&amp;gt;p_carrid&amp;lt;/b&amp;gt;. )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;write 'This is an example'. - Hard coding ( this is called a Text literal, which cannot be translated to other languages )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make it generalised by declaring a text-element for it in the text-elements section of your program. &lt;/P&gt;&lt;P&gt;to do this, simply press 'F2' on the text - 'This is an example', then declare the text element and activate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, you can translate this to other languages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I am clear with my examples.&lt;/P&gt;&lt;P&gt;Reward points if I was helpful to you.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Mar 2007 05:47:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933353#M386304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-11T05:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933354#M386305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii akshita,&lt;/P&gt;&lt;P&gt;hardcoding means when you use the values in quotes ie for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF MATNR = '1000001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is hard coding you are giving a value to compare,you can avoid this by using either constants or any variable which have same values ie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if say ITAB-MATNR is having the value you want to check then  use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF MATNR = ITAB-MATNR.&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;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 06:26:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933354#M386305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T06:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933355#M386306</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;what is so bad about hard coding ?&lt;/P&gt;&lt;P&gt;- Translation  - ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but what more ? Where lies the risk ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does someone have a link for a good explanation ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to explain it to our developpers and they like hard coding and dont understand why not - so I thought aböut it - and did not too much reasons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Simone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2008 08:31:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933355#M386306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-02T08:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933356#M386307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When you assign a hard coded value to a variable,then type of that does not match with hard coded value.&lt;/P&gt;&lt;P&gt;eg.&lt;/P&gt;&lt;P&gt;data: name type char3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you assign a hard coded value to variable name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name = 'WYXZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As hardcoded value does not have a type so a type mismatch is  there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reawrd points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2008 09:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933356#M386307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-02T09:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933357#M386308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hard coding is basically when u dnt use variables bt u directly fill in values to those fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it can be also when while naming the text box u name it as the tablename-fieldname where that is wat value u want fr that field..&lt;/P&gt;&lt;P&gt;in this case u need nt do any coding. all data ull enter into dat field will get automatically into table..&lt;/P&gt;&lt;P&gt;u just need to type a statement modify table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is easier bt this highly degrades performance specially in case of when dere is lot of data.. so it is not preffered in production..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward pts if found useful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks n regards..&lt;/P&gt;&lt;P&gt;palak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 06:33:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933357#M386308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T06:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933358#M386309</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;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hello,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; what is so bad about hard coding ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hard coding will give you a lot of headaches once the organizational structure changes. Stuff like &lt;EM&gt;IF BUKRS = '0200'&lt;/EM&gt; or &lt;EM&gt;IF BSEG-HKONT(1) = '5'&lt;/EM&gt; is very painful to track down and correct.&lt;/P&gt;&lt;P&gt;Use select options, global constants or bespoke customizing tables to avoid hardcoding as much as possible. I'm speaking from bitter experience...&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 11:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933358#M386309</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-06-03T11:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933359#M386310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Akshita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hard coding has got some disdvantages:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) First one we know in case of TRANSLATION: when we log in some other language then alse we ould see the same language as text on old language in which it is created.&lt;/P&gt;&lt;P&gt;so it is advisable to use text elemtns and maintain there translation in SE63.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) In case of UPGRADES you will have issues if your texts are HARD coded and you wont have elements for there conversion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Also from good practice point of view it is not considered good if you arent making full use of functionalities provided by SAP like transalation in SE63 and SAP text elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2009 09:54:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933359#M386310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-16T09:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933360#M386311</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;hard coding means passing direct value to the varaiables or function modules from performance point of view it is not recommended 2 pass hard coded values for eg while using alv if v need 2 hv a hotspot v need 2 use 'X' instead of that v declare a variable check as char type an initialize that as check =  'X'.&lt;/P&gt;&lt;P&gt;and then pass check where ever required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: check(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcat-fieldname = 'LIFNR'.&lt;/P&gt;&lt;P&gt;wa_fieldcat-tabname = 'IT_EKKO'.&lt;/P&gt;&lt;P&gt;WA_FIELDCAT-OUTPUTLEN = 10.&lt;/P&gt;&lt;P&gt;WA_FIELDCAT-HOTSPOT = CHECK. -&lt;/P&gt;&lt;HR originaltext="-----------------" /&gt;&lt;P&gt;&amp;gt; passing check and not hard coded value&lt;/P&gt;&lt;P&gt;WA_FIELDCAT-SELTEXT_L = 'VEN ACC NO'.&lt;/P&gt;&lt;P&gt;APPEND WA_FIELDCAT TO IT_FIELDCAT.&lt;/P&gt;&lt;P&gt;CLEAR WA_FIELDCAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope it solves ur prob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;shivraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2009 06:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933360#M386311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-22T06:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: hard coding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933361#M386312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;P&gt;I have to explain it to our developpers and they like hard coding and dont understand why not - so I&lt;/P&gt;&lt;P&gt;thought aböut it - and did not too much reasons.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hard coded is poor coding in terms of flexibility.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2009 07:47:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-hard-coding/m-p/1933361#M386312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-22T07:47:08Z</dc:date>
    </item>
  </channel>
</rss>

