<?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: Customer Fields with BAPI_FIXEDASSET_CREATE1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739410#M1111883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=18597172&amp;amp;messageID=6453865" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=18597172&amp;amp;messageID=6453865&lt;/A&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="6331579"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Nov 2008 16:42:30 GMT</pubDate>
    <dc:creator>former_member156446</dc:creator>
    <dc:date>2008-11-12T16:42:30Z</dc:date>
    <item>
      <title>Customer Fields with BAPI_FIXEDASSET_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739409#M1111882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, everyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using BAPI_FIXEDASSET_CREATE1 do create asset master data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have extended asset master data with some customer fields by means of customer include CI_ANLU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i need to fill information for our customer fields when creating assets with the above BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As i understood, i need to fill this info using table EXTENSIONIN on BAPI interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is don't understand how to do it ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying like this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: lt_extension[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lt_extension-structure = 'BAPI_TE_ANLU'.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart1 = 'ZZAREA_TOTAL'.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart2 = wt_data-area_total.&lt;/P&gt;&lt;P&gt;  APPEND lt_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lt_extension-structure = 'BAPI_TE_ANLU'.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart1 = 'ZZAREA_SUB'.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart2 = wt_data-area_expropriar.&lt;/P&gt;&lt;P&gt;  APPEND lt_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lt_extension-structure = 'BAPI_TE_ANLU'.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart1 = 'ZZVAL_AVAL_SUB'.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart2 = wt_data-valor_avaliacao.&lt;/P&gt;&lt;P&gt;  APPEND lt_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_FIXEDASSET_CREATE1'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      key                  = ls_key&lt;/P&gt;&lt;P&gt;      testrun              = p_test&lt;/P&gt;&lt;P&gt;      generaldata          = ls_gendata&lt;/P&gt;&lt;P&gt;      generaldatax         = ls_gendatax&lt;/P&gt;&lt;P&gt;      timedependentdata    = ls_timedata&lt;/P&gt;&lt;P&gt;      timedependentdatax   = ls_timedatax&lt;/P&gt;&lt;P&gt;      allocations          = ls_alloc&lt;/P&gt;&lt;P&gt;      allocationsx         = ls_allocx&lt;/P&gt;&lt;P&gt;      origin               = ls_origin&lt;/P&gt;&lt;P&gt;      originx              = ls_originx&lt;/P&gt;&lt;P&gt;      investacctassignmnt  = ls_accassign&lt;/P&gt;&lt;P&gt;      investacctassignmntx = ls_accassignx&lt;/P&gt;&lt;P&gt;      networthvaluation    = ls_netweval&lt;/P&gt;&lt;P&gt;      networthvaluationx   = ls_netwevalx&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      asset                = lv_asset&lt;/P&gt;&lt;P&gt;      subnumber            = lv_subnr&lt;/P&gt;&lt;P&gt;      return               = ls_return&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      extensionin          = lt_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gives me an error saying i can't have more than one line on this table lt_extension (line should be BAPI_TE_ANLU).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i left only one line on the table with the reference to the extended table struture BAPI_TE_ANLU, but no information is being passed on to my customer fields ... since o don't know how.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May someone help me on this?&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;Mário Semedo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2008 16:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739409#M1111882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-12T16:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Fields with BAPI_FIXEDASSET_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739410#M1111883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=18597172&amp;amp;messageID=6453865" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=18597172&amp;amp;messageID=6453865&lt;/A&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="6331579"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2008 16:42:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739410#M1111883</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-11-12T16:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Fields with BAPI_FIXEDASSET_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739411#M1111884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my customer fields are as follow (structure BAPI_TE_ANLU):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.INCLUDE	BAPI1022_1		0	0&lt;/P&gt;&lt;P&gt;COMP_CODE	BUKRS	CHAR	4	0&lt;/P&gt;&lt;P&gt;ASSETMAINO	BF_ANLN1	CHAR	12	0&lt;/P&gt;&lt;P&gt;ASSETSUBNO	BF_ANLN2	CHAR	4	0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.INCLUDE	CI_ANLU		0	0&lt;/P&gt;&lt;P&gt;ZZfield01	ZDATAELEM01	UNIT	3	0&lt;/P&gt;&lt;P&gt;ZZfield02	ZDATAELEM02	QUAN	13	3&lt;/P&gt;&lt;P&gt;ZZfield03	ZDATAELEM03	UNIT	3	0&lt;/P&gt;&lt;P&gt;ZZfield04	ZDATAELEM04	QUAN	13	3&lt;/P&gt;&lt;P&gt;ZZfield05	ZDATAELEM05	CURR	13	2&lt;/P&gt;&lt;P&gt;ZZfield06	ZDATAELEM06	DATS	8	0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I'm trying to do on creation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: lv_area_total like bapi_te_anlu-zzarea_total.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move: 100 to lv_area_total.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lt_extension-structure = 'BAPI_TE_ANLU'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart1+00(04) = p_bukrs.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart1+20(03) = 'HAR'.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart1+23(07) = lv_area_total.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart1+30(03) = 'UN'.&lt;/P&gt;&lt;P&gt;  lt_extension-valuepart1+62(08) = sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Quantity fields are interpreted as P fields upon filling the ANLU structure based on lt_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All non type P fields are filled correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Value 100 is being saved as 3.130.302.230,303 &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; ... Any reason for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please, give me some help here.&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;Mário&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2008 18:59:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739411#M1111884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-12T18:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Fields with BAPI_FIXEDASSET_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739412#M1111885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;even if you only want to add only one Z field, all the fields that you transfer in ExtensionIn must be filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ihsen ABROUG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 10:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739412#M1111885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T10:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Fields with BAPI_FIXEDASSET_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739413#M1111886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Here is a sample code I had written for material savedata. all BAPI use same logic for extention to std Tables. see if this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI_MATERIAL_SAVEDATA.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  Z_VMA_MARA_EXT&lt;/P&gt;&lt;P&gt;*&amp;amp; written by : Vivek Amrute.Tested on ECC6 : &lt;/P&gt;&lt;P&gt;*&amp;amp; Updating values of custom fields added to MARA.&lt;/P&gt;&lt;P&gt;REPORT  z_vma_mara_ext.&lt;/P&gt;&lt;P&gt;TABLES : mara, marc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :  rex LIKE bapiparex OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;rexx LIKE bapiparexx OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;header LIKE bapimathead OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;makt1 LIKE bapi_makt OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;zbapiret2 LIKE bapiret2 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : material LIKE mara-matnr,&lt;/P&gt;&lt;P&gt;val1 TYPE aktvt,&lt;/P&gt;&lt;P&gt;val2 TYPE actname_kk,&lt;/P&gt;&lt;P&gt;val3 TYPE aktvt,&lt;/P&gt;&lt;P&gt;new_desc TYPE maktx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;header-material = material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rex-structure = 'BAPI_TE_MARA'.&lt;/P&gt;&lt;P&gt;CONCATENATE material val1 val2 val3 INTO  rex-valuepart1 RESPECTING BLANKS.&lt;/P&gt;&lt;P&gt;APPEND rex.&lt;/P&gt;&lt;P&gt;rexx-structure = 'BAPI_TE_MARAX'.&lt;/P&gt;&lt;P&gt;CONCATENATE material 'XXX' INTO  rexx-valuepart1 RESPECTING BLANKS.&lt;/P&gt;&lt;P&gt;APPEND rexx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;makt1-langu = 'E'.&lt;/P&gt;&lt;P&gt;makt1-langu_iso = 'EN'.&lt;/P&gt;&lt;P&gt;makt1-matl_desc = new_desc.&lt;/P&gt;&lt;P&gt;APPEND makt1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    headdata            = header&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    return              = zbapiret2&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    materialdescription = makt1&lt;/P&gt;&lt;P&gt;    extensionin         = rex&lt;/P&gt;&lt;P&gt;    extensioninx        = rexx.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;******End of Program *********************&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 10:05:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739413#M1111886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T10:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Fields with BAPI_FIXEDASSET_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739414#M1111887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I am also facing the same type of problem. I have added three C type fields each length is 240 charecter.Can any one please advise me how I will update those three fields (CI_ANLU) while creating the asset using bapi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2009 03:31:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739414#M1111887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-07T03:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Fields with BAPI_FIXEDASSET_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739415#M1111888</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;&lt;/P&gt;&lt;P&gt;I am using the below codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lv_ZZINVNR1 like bapi_te_anlu-ZZINVNR1,&lt;/P&gt;&lt;P&gt;            lv_ZZINVNR2 like bapi_te_anlu-ZZINVNR1,&lt;/P&gt;&lt;P&gt;            lv_ZZINVNR3 like bapi_te_anlu-ZZINVNR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; lv_ZZINVNR1 = 'aaaa'.&lt;/P&gt;&lt;P&gt; lv_ZZINVNR2 = 'bbb'.&lt;/P&gt;&lt;P&gt; lv_ZZINVNR3 = 'ccc'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lt_extension-STRUCTURE = 'BAPI_TE_ANLU'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lt_extension-valuepart1 = lv_ZZINVNR1.&lt;/P&gt;&lt;P&gt;lt_extension-valuepart2 = lv_ZZINVNR2 .&lt;/P&gt;&lt;P&gt;lt_extension-valuepart3 = lv_ZZINVNR3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lt_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then running the BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's creating the the asset but my customize fields are not updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&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, 07 Jul 2009 03:46:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739415#M1111888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-07T03:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Fields with BAPI_FIXEDASSET_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739416#M1111889</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;check the function module EXIT_SAPL1022_001 and itu2019s documentation.&lt;/P&gt;&lt;P&gt;To allow the BAPIs to change the customers fields the command &lt;/P&gt;&lt;P&gt;E_ANLU = I_ANLU&lt;/P&gt;&lt;P&gt;is necessary. &lt;/P&gt;&lt;P&gt;Maybe this could be a reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings Eva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 08:48:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customer-fields-with-bapi-fixedasset-create1/m-p/4739416#M1111889</guid>
      <dc:creator>eva_urlaub</dc:creator>
      <dc:date>2009-08-19T08:48:48Z</dc:date>
    </item>
  </channel>
</rss>

