<?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: Report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588336#M1757267</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; can you show your source code ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jul 2013 06:37:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-07-23T06:37:44Z</dc:date>
    <item>
      <title>Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588325#M1757256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have region (region-adrc) as op in my report,which shows op as 13 for Maharashtra but i need to show Maharashtra instead of 13, what should i do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Jul 2013 05:58:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588325#M1757256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-20T05:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588326#M1757257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to read table T005S using the region.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select BEZEI &lt;/P&gt;&lt;P&gt;from T005S&lt;/P&gt;&lt;P&gt;where LAND1 = 'IN'&lt;/P&gt;&lt;P&gt;and bland = '13'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T005S-BEZEI = 'Maharashtra'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2013 09:25:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588326#M1757257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-22T09:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588327#M1757258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To find out the description of a code is usually straightforward. Check the table in SE11 - in this case ADRC. Go to the "Entry help/check'" tab. Find the field you wish to find the description for - in this case "REGION". Look at the search help or check table attached to that field - in this case the check table is T005S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2013 09:30:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588327#M1757258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-22T09:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588328#M1757259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;ADRC will not give you the description for the region.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you could do is you could fetch the &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; BEZEI&lt;/SPAN&gt; field from the t0005s table where you can get the description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you still don't want to write a query then use &lt;/P&gt;&lt;P&gt;if adrc-bland = '13'.&lt;/P&gt;&lt;P&gt;description = 'MAHARASTRA'.&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;in the loop you make for final output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dinesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2013 09:34:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588328#M1757259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-22T09:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588329#M1757260</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;as all said you have to get the description from t005u table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;select &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;* &lt;/SPAN&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;from &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;t005u &lt;/SPAN&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;INTO TABLE &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;it_t005u&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;FOR ALL &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;ENTRIES &lt;/SPAN&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;IN&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;it_tab&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;where &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;spras &lt;/SPAN&gt;&lt;SPAN class="l0s551"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;= &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="l0s331"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;'EN' &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;and &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;land1 &lt;/SPAN&gt;&lt;SPAN class="l0s551"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;= &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="l0s331"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;'IN'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;and &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;bland &lt;/SPAN&gt;&lt;SPAN class="l0s551"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;= &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;it_tab-region_number&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;READ TABLE &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;it_t005u &lt;/SPAN&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;into &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;wa_t005u &lt;/SPAN&gt;&lt;SPAN class="l0s521"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;WITH key &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;spras &lt;/SPAN&gt;&lt;SPAN class="l0s551"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;= &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="l0s331"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;'EN' &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;land1 &lt;/SPAN&gt;&lt;SPAN class="l0s551"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;= &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="l0s331"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;'IN' &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;bland &lt;/SPAN&gt;&lt;SPAN class="l0s551"&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt;"&gt;= region_number&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-IN" style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2013 09:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588329#M1757260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-22T09:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588330#M1757261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pratik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a small correction to what Kevin suggested.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get the value from table T005U. Table T005S does not contain the field BEZEI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1642/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2013 09:54:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588330#M1757261</guid>
      <dc:creator>former_member491621</dc:creator>
      <dc:date>2013-07-22T09:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588331#M1757262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Read Table T005U.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Select BEZEI&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;from T005U&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;where LAND1 = 'IN'&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;and bland = '13'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;T005U-BEZEI = 'Maharashtra'.&lt;/P&gt;&lt;P&gt;&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;Ravi Pratap Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2013 10:29:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588331#M1757262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-22T10:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588332#M1757263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pratik Ranadive,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Select BEZEI&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from T005S&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; into table it_T005S &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for all entries in it_adrc&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where LAND1 = 'IN'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BLAND = it_adrc-REGION.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2013 10:46:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588332#M1757263</guid>
      <dc:creator>former_member209120</dc:creator>
      <dc:date>2013-07-22T10:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588333#M1757264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pratik ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto below code.&lt;/P&gt;&lt;P&gt;data: &lt;SPAN style="color: #333333; font-size: 12px;"&gt;var1&lt;/SPAN&gt; type BEZEI20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select BEZEI from &lt;SPAN style="color: #333333; font-size: 12px;"&gt;T005U into var1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;where SPRAS = SY-LANGU&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp; LAND1 = 'IN'&amp;nbsp;&amp;nbsp; " COUNTRY CODE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp; BLAND = '13' . " REGION CODE.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Alok&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2013 11:05:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588333#M1757264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-22T11:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588334#M1757265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Aniket,&lt;/P&gt;&lt;P&gt;This helped... i wanted that correct table name which u suggested.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 06:22:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588334#M1757265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-23T06:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588335#M1757266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Pratik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this issue resolved?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 06:34:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588335#M1757266</guid>
      <dc:creator>venkateswaran_k</dc:creator>
      <dc:date>2013-07-23T06:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588336#M1757267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; can you show your source code ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 06:37:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588336#M1757267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-23T06:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588337#M1757268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Venkat,&lt;/P&gt;&lt;P&gt;Yes the issue is resolved completely.&lt;/P&gt;&lt;P&gt;Thanks all for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 06:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/9588337#M1757268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-23T06:55:13Z</dc:date>
    </item>
  </channel>
</rss>

