<?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: Export field to database in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724561#M316025</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT ldate FROM sy-datum TO DATABASE INDX(AR) KEY 'ID'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Oct 2006 10:41:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-25T10:41:21Z</dc:date>
    <item>
      <title>Export field to database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724557#M316021</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;I want to export a field from my program to database table, does any body knows what should be the structure of the database table. I want to export a date field.&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Oct 2006 10:27:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724557#M316021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-25T10:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Export field to database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724558#M316022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if there is only one date field in the database table , then the fields in ur database table will be MANDAT and ur date field DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in ur program u can write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ztable-date = date.
insert ztable.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Oct 2006 10:29:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724558#M316022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-25T10:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: Export field to database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724559#M316023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ztable-field1 = field1..&lt;/P&gt;&lt;P&gt;ztable-field2 = field2.------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modif ztable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Oct 2006 10:33:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724559#M316023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-25T10:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Export field to database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724560#M316024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    if you want to export one field to DB &lt;/P&gt;&lt;P&gt;    use update ztable set fld = itab-fld1 &lt;/P&gt;&lt;P&gt;                        where ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Oct 2006 10:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724560#M316024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-25T10:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Export field to database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724561#M316025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT ldate FROM sy-datum TO DATABASE INDX(AR) KEY 'ID'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Oct 2006 10:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724561#M316025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-25T10:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Export field to database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724562#M316026</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 know hoz the database structure indx should be and whats ar, I have tried using mandt and the field name but its giving error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Oct 2006 11:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724562#M316026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-25T11:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Export field to database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724563#M316027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U dont need to populate anything explicitly in INDX database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT ldate for sy-datum to database INDX(AR) key 'id'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ldate -&amp;gt;is the variable you wish to export.&lt;/P&gt;&lt;P&gt;sy-datum -&amp;gt;is the data for ldate&lt;/P&gt;&lt;P&gt;AR -&amp;gt; is the ARea of INDX database&lt;/P&gt;&lt;P&gt;Id -&amp;gt; is the id of the indx database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U would need the area and id to import the values again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Oct 2006 13:15:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-field-to-database/m-p/1724563#M316027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-25T13:15:16Z</dc:date>
    </item>
  </channel>
</rss>

