<?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 BDC-Direct Input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753455#M902937</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please give an example for Direct Input method in BDC.When it is used? what is the advantage and disadvantage?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 26 Apr 2008 11:05:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-26T11:05:04Z</dc:date>
    <item>
      <title>BDC-Direct Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753455#M902937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please give an example for Direct Input method in BDC.When it is used? what is the advantage and disadvantage?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 11:05:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753455#M902937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T11:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: BDC-Direct Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753456#M902938</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;Direct Input (DI) programs work exactly similar to BI &lt;/P&gt;&lt;P&gt;programs. But the only difference is, instead of processing &lt;/P&gt;&lt;P&gt;screens they validate fields and directly load the data &lt;/P&gt;&lt;P&gt;into tables using standard function modules. For this &lt;/P&gt;&lt;P&gt;reason, DI programs are much faster (RMDATIND - Material &lt;/P&gt;&lt;P&gt;Master DI program works at least 5 times faster) than the &lt;/P&gt;&lt;P&gt;BDC counterpart and so ideally suited for loading large &lt;/P&gt;&lt;P&gt;volume data. DI programs are not available for all &lt;/P&gt;&lt;P&gt;applicatioDirect Input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; direct input is to use Without calling the screens but all &lt;/P&gt;&lt;P&gt;the validations should be done and only for master datas &lt;/P&gt;&lt;P&gt;upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Direct Input method:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Only for error free datas and also master data &lt;/P&gt;&lt;P&gt;updation.&lt;/P&gt;&lt;P&gt;2. It will directly updates the database table. No &lt;/P&gt;&lt;P&gt;screens involved.&lt;/P&gt;&lt;P&gt;3. Transaction BMVO or Program RBMVSHOW has been &lt;/P&gt;&lt;P&gt;usedn areas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus a program using direct input must care for &lt;/P&gt;&lt;P&gt;intermittent commits to avoid an overflow of the lock &lt;/P&gt;&lt;P&gt;tables. For master data, a lock table overflow may occur &lt;/P&gt;&lt;P&gt;for more than (roughly) 2000 cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although direct input does not do any screen input, the &lt;/P&gt;&lt;P&gt;same routines are passed as BDC with (simulated) screen &lt;/P&gt;&lt;P&gt;input&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look on the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

TABLES: kna1.
DATA: fname(25) VALUE 'D:\ABAP EVE\ffiel1.txt'.
DATA: BEGIN OF itab1 OCCURS 0,
str(255),
END OF itab1.
DATA: itab2 TYPE kna1 OCCURS 0 WITH HEADER LINE.

CALL FUNCTION 'WS_UPLOAD'
EXPORTING
filename = 'D:\ABAP EVE\ffiel1.txt'
filetype = 'ASC'
TABLES
data_tab = itab1
EXCEPTIONS
conversion_error = 1
file_open_error = 2
file_read_error = 3
invalid_type = 4
no_batch = 5
unknown_error = 6
invalid_table_width = 7
gui_refuse_filetransfer = 8
customer_error = 9
no_authority = 10
OTHERS = 11.
IF sy-subrc 0.
WRITE:/ 'sorry'.
ELSE.
LOOP AT itab1.
SPLIT itab1-str AT ',' INTO itab2-kunnr itab2-name1.
APPEND itab2.
ENDLOOP.
IF sy-subrc = 0.
LOOP AT itab2.
WRITE:/ itab2-kunnr,itab2-name1.
INSERT INTO kna1 VALUES itab2.
ENDLOOP.
IF sy-subrc = 0.
WRITE:/ 'inserted'.
ELSE.
WRITE:/ 'not inserted'.
ENDIF.
ELSE.
WRITE:/ 'fail'.
ENDIF.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store the folowing data in notepad with "ffile1.txt" fielname&lt;/P&gt;&lt;P&gt;10001,Sadney&lt;/P&gt;&lt;P&gt;10003,Yogesh&lt;/P&gt;&lt;P&gt;20005,Madan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and place this in D:\ABAP EVE\ folder.&lt;/P&gt;&lt;P&gt;Check ur database table(KNA1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 11:09:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753456#M902938</guid>
      <dc:creator>ak_upadhyay</dc:creator>
      <dc:date>2008-04-26T11:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: BDC-Direct Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753457#M902939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It just used to upload the data into database tables and make &lt;/P&gt;&lt;P&gt;some modifications before inserting into database tables.&lt;/P&gt;&lt;P&gt;Have a look on the following code&lt;/P&gt;&lt;P&gt;TABLES: kna1.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF itab1 OCCURS 0,&lt;/P&gt;&lt;P&gt;      str(255),&lt;/P&gt;&lt;P&gt;      END OF itab1.&lt;/P&gt;&lt;P&gt;DATA: itab2 TYPE kna1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WS_UPLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    filename                = 'D:\ABAP EVE\ffile1.txt'&lt;/P&gt;&lt;P&gt;    filetype                = 'ASC'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    data_tab                = itab1&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    conversion_error        = 1&lt;/P&gt;&lt;P&gt;    file_open_error         = 2&lt;/P&gt;&lt;P&gt;    file_read_error         = 3&lt;/P&gt;&lt;P&gt;    invalid_type            = 4&lt;/P&gt;&lt;P&gt;    no_batch                = 5&lt;/P&gt;&lt;P&gt;    unknown_error           = 6&lt;/P&gt;&lt;P&gt;    invalid_table_width     = 7&lt;/P&gt;&lt;P&gt;    gui_refuse_filetransfer = 8&lt;/P&gt;&lt;P&gt;    customer_error          = 9&lt;/P&gt;&lt;P&gt;    no_authority            = 10&lt;/P&gt;&lt;P&gt;    OTHERS                  = 11.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  WRITE:/ 'sorry'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  LOOP AT itab1.&lt;/P&gt;&lt;P&gt;    SPLIT itab1-str AT ',' INTO itab2-kunnr itab2-name1.&lt;/P&gt;&lt;P&gt;    APPEND itab2.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    LOOP AT itab2.&lt;/P&gt;&lt;P&gt;      WRITE:/ itab2-kunnr,itab2-name1.&lt;/P&gt;&lt;P&gt;      INSERT INTO kna1 VALUES itab2.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'inserted'.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'not inserted'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    WRITE:/ 'fail'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Flat file:&lt;/P&gt;&lt;P&gt;10001,Sadney&lt;/P&gt;&lt;P&gt;10003,Yogesh&lt;/P&gt;&lt;P&gt;20005,Madan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward,if useful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 11:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753457#M902939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T11:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: BDC-Direct Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753458#M902940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Khanna Renga ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Direct Input method is used for bulk transfer of data into SAP system.It results in faster execution since no screens are processed and the SAP database will be updated directly using the standard function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better example where direct input method will be used is... uploading the data for material master.....it includes lot of views so its very much difficult to capture all the views and record the tcode and map the data in such conditions its better to go with DI methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advantages:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in session method or Call Transaction method while uploading the data u do the validation by fallowing the screen sequence and field sequence where as in Direct Input validations can be done set of code so this make the process very fast so its advantageous to upload large amout of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you always use the standard sap provided program for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here in Direct Input method very important thing is structure of flat file... so to know the structure first of all you have to download the data for one record into the internal table with the use of the same program then with the use of that structure u have to desing the flat file and upload the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Direct Input:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;With direct input, the SAP function modules execute the consistency checks. However with batch input, these consistency checks are executed with help of the screens. This means that direct input has considerable performance advantages. But there are a few programs for direct input, you can use them if it accomplishes your goal. Direct Input programs work like that they update database tables directly. As you know that it is forbidden to update SAP database tables directly, since consistency and security should be considered. Exceptions are these direct input programs. So you are not able to write custom ABAP direct input programs. But of course you can write ABAP programs to update custom database tables (Z tables), if you are sure all about consistency. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP has created direct input programs because SAP wanted to enhance the batch input procedure, since batch input is slower. SAP offers the direct input technique, especially for transferring large amount of data. In contrast to batch input, this technique does not create sessions, but stores, updates, inserts data directly. To enter the data into the corresponding database tables directly, the system calls a number of function modules that execute any necessary checks. In case of errors, the direct input technique provides a restart mechanism. However, to able to activate the restart mechanism, direct input programs must be executed in the background only. To maintain and start these programs, use program RBMVSHOW or transaction BMV0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples for direct input programs are: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RFBIBL00 - FI&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RMDATIND - MM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RVAFSS00 - SD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RAALTD11 - AM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RKEVEXTO - CO-PA&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also have a look on below thread..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="954324"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4265408"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In contrast to batch input, this technique does not create sessions, but stores the data directly. It does not simulate the online transaction. To enter the data into the corresponding database tables directly, the system calls a number of function modules that execute any necessary checks. In case of errors, the direct input technique provides a restart mechanism. However, to be able to activate the restart mechanism, direct input programs must be executed in the background only. Direct input checks the data thoroughly and then updates the database directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will solve your doubts and problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward points if useful..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 12:02:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753458#M902940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T12:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: BDC-Direct Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753459#M902941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To maintain and start these programs, use program RBMVSHOW or Transaction BMV0. It is better to use BDC method unless data volume is very high, as validations are very critical to data upload in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the example program for direct input is ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="954324"&gt;&lt;/A&gt;&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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 12:31:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753459#M902941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T12:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: BDC-Direct Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753460#M902942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Direct Input method is used for bulk transfer of data into SAP system.It results in faster execution since no screens are processed and the SAP database will be updated directly using the standard function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better example where direct input method will be used is... uploading the data for material master.....it includes lot of views so its very much difficult to capture all the views and record the tcode and map the data in such conditions its better to go with DI methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advantages:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in session method or Call Transaction method while uploading the data u do the validation by fallowing the screen sequence and field sequence where as in Direct Input validations can be done set of code so this make the process very fast so its advantageous to upload large amout of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you always use the standard sap provided program for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here in Direct Input method very important thing is structure of flat file... so to know the structure first of all you have to download the data for one record into the internal table with the use of the same program then with the use of that structure u have to desing the flat file and upload the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Sample Code,Check this Thread,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="954324"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 15:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753460#M902942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T15:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: BDC-Direct Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753461#M902943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear nandaniya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the std program RFBIDE00 to upload the customer master. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I just enterd the program in the se38 and executed .&lt;/P&gt;&lt;P&gt;2. Given the file adress location in the selection screen which appears.&lt;/P&gt;&lt;P&gt;3. It is showing the error "The file is not found".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; What i&amp;nbsp; did is right or not?&lt;/P&gt;&lt;P&gt;Is there any way to find the structure of the flat file that is to be entered in to the standard program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Dhanunjay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jun 2012 16:13:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-direct-input/m-p/3753461#M902943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-09T16:13:59Z</dc:date>
    </item>
  </channel>
</rss>

