<?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: structures-- to populate the field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293482#M500545</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi keerthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   If u want to populate fields which is in structure then try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;move corresponding struct to itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF USEFUL...!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 May 2007 09:46:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-31T09:46:02Z</dc:date>
    <item>
      <title>structures-- to populate the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293475#M500538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to populate the fields in the internal table , in which the fields are in structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 13:48:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293475#M500538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T13:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: structures-- to populate the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293476#M500539</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;u have find out in which table the field is actually in.For this u go to transaction SE84.there  you give ur field name and then it will give it is from which table.according to that u have fetch the data from that table and populate it..&lt;/P&gt;&lt;P&gt;hope this will clear ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u have any queries get back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;jyo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 14:16:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293476#M500539</guid>
      <dc:creator>jyotheswar_p2</dc:creator>
      <dc:date>2007-05-29T14:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: structures-- to populate the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293477#M500540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use select query to populate the fields in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Types (ty_)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:&lt;/P&gt;&lt;P&gt;        BEGIN OF ty_alv_output,&lt;/P&gt;&lt;P&gt;          vbeln         TYPE vbeln,&lt;/P&gt;&lt;P&gt;          vbtyp         TYPE vbtyp,&lt;/P&gt;&lt;P&gt;          auart         TYPE auart,&lt;/P&gt;&lt;P&gt;          NETWR         TYPE NETWR_ak,&lt;/P&gt;&lt;P&gt;          WAERK         TYPE waerk,&lt;/P&gt;&lt;P&gt;          VKORG         TYPE VKORG,&lt;/P&gt;&lt;P&gt;          VTWEG         TYPE VTWEG,&lt;/P&gt;&lt;P&gt;          SPART         TYPE SPART,&lt;/P&gt;&lt;P&gt;          VKGRP         TYPE VKGRP,&lt;/P&gt;&lt;P&gt;          VKBUR         TYPE VKBUR,&lt;/P&gt;&lt;P&gt;          GSBER         TYPE GSBER,&lt;/P&gt;&lt;P&gt;          matnr         TYPE matnr,&lt;/P&gt;&lt;P&gt;        END OF ty_alv_output,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ty_table_alv_output   TYPE STANDARD TABLE OF ty_alv_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Internal tables(gt_)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      gt_alv_output   TYPE STANDARD TABLE OF ty_alv_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Work area&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :gs_alv_output   TYPE ty_alv_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Selection screen data&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    select-options   (s_)&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      parameters     (p_)&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      radio buttons  (r_)&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      checkboxes     (x_)&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      pushbuttons    (b_)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN  BEGIN OF BLOCK block1 WITH FRAME TITLE text-f01.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;s_vbeln  FOR vbak-vbeln,                       "Sales Document&lt;/P&gt;&lt;P&gt;s_vbtyp  FOR vbak-vbtyp,                       "SD document category&lt;/P&gt;&lt;P&gt;s_auart  FOR vbak-auart.                       "Sales Document Type&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN  END OF BLOCK block1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  vbeln&lt;/P&gt;&lt;P&gt;          vbtyp&lt;/P&gt;&lt;P&gt;          auart&lt;/P&gt;&lt;P&gt;          netwr&lt;/P&gt;&lt;P&gt;          waerk&lt;/P&gt;&lt;P&gt;          vkorg&lt;/P&gt;&lt;P&gt;          vtweg&lt;/P&gt;&lt;P&gt;          spart&lt;/P&gt;&lt;P&gt;          vkgrp&lt;/P&gt;&lt;P&gt;          vkbur&lt;/P&gt;&lt;P&gt;          gsber&lt;/P&gt;&lt;P&gt;          matnr&lt;/P&gt;&lt;P&gt;     INTO CORRESPONDING FIELDS OF TABLE gt_alv_output&lt;/P&gt;&lt;P&gt;           FROM vbak &lt;/P&gt;&lt;P&gt;              WHERE vbeln IN s_vbeln&lt;/P&gt;&lt;P&gt;                AND auart IN s_auart&lt;/P&gt;&lt;P&gt;                AND vbtyp IN s_vbtyp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This selct query will fill the data in internal table.&lt;/P&gt;&lt;P&gt;Plz reward if found helpful&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 22:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293477#M500540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T22:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: structures-- to populate the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293478#M500541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi keerthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first u can define &amp;lt;itab&amp;gt; for your required fields,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e.&lt;/P&gt;&lt;P&gt;data: begin of &amp;lt;itab&amp;gt; occurs 0,&lt;/P&gt;&lt;P&gt;        kunnr type kunnr,&lt;/P&gt;&lt;P&gt;        name1 type name1_gd,&lt;/P&gt;&lt;P&gt;       land1 type land1_gd.&lt;/P&gt;&lt;P&gt;data: end of &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then u can select these filed from data base table and insert into this &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these records u can use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:47:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293478#M500541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: structures-- to populate the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293479#M500542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keerthi,&lt;/P&gt;&lt;P&gt;You can access fields in structures as  follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: begin of tt_type2,&lt;/P&gt;&lt;P&gt;      kunnr type bkpf-mandt,&lt;/P&gt;&lt;P&gt;     end of  tt_type2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: begin of tt_type1,&lt;/P&gt;&lt;P&gt;      kunnr2 type bkpf-mandt,&lt;/P&gt;&lt;P&gt;     end of  tt_type1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of t_type.&lt;/P&gt;&lt;P&gt;include structure tt_type1.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE tt_type2.&lt;/P&gt;&lt;P&gt;DATA: END OF t_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATa:i_table LIKE TABLE OF t_type,&lt;/P&gt;&lt;P&gt;     wa_table like t_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_table-kunnr  = '01'.&lt;/P&gt;&lt;P&gt;wa_table-kunnr2 = '01'.&lt;/P&gt;&lt;P&gt;APPEND wa_table to i_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that this helps you,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sooness.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:48:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293479#M500542</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2007-05-30T05:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: structures-- to populate the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293480#M500543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically the   fields  in the structre are   depend on the  some  table data  .... or else  some of data are dynamically filled to  structure  through the  program ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  so  for  dymanic  there  willl  be   Function Module's  for  reading  and wirting   ...like  Importing &amp;amp; exporting  ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherwise   as the ohter friend   told  .... the   structure  fields  where user  list  or the check table or view  fields  list  ... so that  will  get the  tranparent  table  where  in  you can  select the data...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 06:59:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293480#M500543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T06:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: structures-- to populate the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293481#M500544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you have the values in a structure wa, and want to insert this into an internal table itab, you can use  &amp;lt;b&amp;gt;append wa to itab&amp;lt;/b&amp;gt; or &lt;/P&gt;&lt;P&gt;                    &amp;lt;b&amp;gt;insert wa into table itab&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 08:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293481#M500544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T08:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: structures-- to populate the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293482#M500545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi keerthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   If u want to populate fields which is in structure then try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;move corresponding struct to itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF USEFUL...!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 09:46:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293482#M500545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T09:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: structures-- to populate the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293483#M500546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi keerthi,&lt;/P&gt;&lt;P&gt;to populate fields in an internal table you will have to use SELECT Query for that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;consider following program,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****************&lt;STRONG&gt;TYPE declaration&lt;/STRONG&gt;**************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : begin of ty_mara,&lt;/P&gt;&lt;P&gt;               matnr TYPE mara-matnr,&lt;/P&gt;&lt;P&gt;               ernam TYPE mara-ernam,&lt;/P&gt;&lt;P&gt;              End of ty_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***************&lt;STRONG&gt;DATA declaration&lt;/STRONG&gt;**************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : gt_mara TYPE TABLE OF ty_mara,&lt;/P&gt;&lt;P&gt;             gs_mara TYPE          ty_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************&lt;STRONG&gt;Selection screen&lt;/STRONG&gt;*************************&lt;/P&gt;&lt;P&gt;select-options : s_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************&lt;STRONG&gt;at selection screen&lt;/STRONG&gt;************************&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;if s_matnr is intial.&lt;/P&gt;&lt;P&gt;message 'Enter material number' TYPE 'E'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************&lt;STRONG&gt;start of slection&lt;/STRONG&gt;***************************&lt;/P&gt;&lt;P&gt;start-of-selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**fetching data from table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr&lt;/P&gt;&lt;P&gt;         ernam &lt;/P&gt;&lt;P&gt;   FROM mara&lt;/P&gt;&lt;P&gt;   INTO TABLE gt_mara&lt;/P&gt;&lt;P&gt;   WHERE matnr in s_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***after this query the internal table will be having data for the selected material numbers...display the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at gt_mara into gs_mara.&lt;/P&gt;&lt;P&gt;Write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; gs_mara-matnr,&lt;/P&gt;&lt;P&gt;            gs_mara-ernam.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will solve ur problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reward points incase useful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2007 06:21:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structures-to-populate-the-field/m-p/2293483#M500546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-01T06:21:50Z</dc:date>
    </item>
  </channel>
</rss>

