<?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 populating the data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-the-data/m-p/2638088#M607124</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;populating the data to the data base table .... which i created using only reports ...&lt;/P&gt;&lt;P&gt;can any body tell the approach ....... if possible coding also plz help me out ..&lt;/P&gt;&lt;P&gt;but using only general reports ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Aug 2007 16:44:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-08T16:44:07Z</dc:date>
    <item>
      <title>populating the data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-the-data/m-p/2638088#M607124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;populating the data to the data base table .... which i created using only reports ...&lt;/P&gt;&lt;P&gt;can any body tell the approach ....... if possible coding also plz help me out ..&lt;/P&gt;&lt;P&gt;but using only general reports ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 16:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-the-data/m-p/2638088#M607124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T16:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: populating the data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-the-data/m-p/2638089#M607125</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;Is It what you need ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES t005.

*"     INTERNAL TABLE
DATA: t_t005 TYPE TABLE OF t005.

*"     STRUCTURE
DATA: s_t005 TYPE t005.

*"     DATA
DATA: v_landk TYPE landk.

START-OF-SELECTION.

*" POPULATING YOUR INTERNAL TABLE
  SELECT *
  FROM t005
  INTO TABLE t_t005
  WHERE land1 EQ 'PT'.

*" POPULATING YOUR STRUCURE
  SELECT SINGLE *
  FROM t005
  INTO s_t005
  WHERE land1 EQ 'PT'.

*" POPULATING YOUR DATA
  SELECT SINGLE landk
  FROM t005
  INTO v_landk
  WHERE land1 EQ 'PT'.&lt;/CODE&gt;&lt;/PRE&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;Marcelo Ramos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 17:08:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-the-data/m-p/2638089#M607125</guid>
      <dc:creator>marcelo_ramos1</dc:creator>
      <dc:date>2007-08-08T17:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: populating the data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-the-data/m-p/2638090#M607126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you talking about loading data to an internal table from a database table or poplulating a database table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the former, the previous response is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are attempting to load data into a database table, there are a number of approaches, including CATT and BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have frequently used BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both approaches have the data initialing in a flat file, such as a tab-delimited file output from Excel with the data to be loaded into the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program then loads the data from the PC and creates a BDC session, which simulates data input into the appropriate transaction for updating the table in question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also use a more straightforward technique if you are loading a Z table that does not require the standard edit checking and control you get with CATT or BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clarify your request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 17:48:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-the-data/m-p/2638090#M607126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T17:48:43Z</dc:date>
    </item>
  </channel>
</rss>

