<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3649206#M878914</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to upload Numeric Fields,Quantity and Date into BDC?Points will be no doubtedly awarded to the deserve one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 20 Apr 2008 05:43:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-20T05:43:01Z</dc:date>
    <item>
      <title>BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3649206#M878914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to upload Numeric Fields,Quantity and Date into BDC?Points will be no doubtedly awarded to the deserve one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2008 05:43:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3649206#M878914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-20T05:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3649207#M878915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajaya,&lt;/P&gt;&lt;P&gt;Declare the character variable of length equal to the output length of the date/quantity/Currency/Numeric field.&lt;/P&gt;&lt;P&gt;U can get the output length from the domain of that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EG: System field length of date is 8, But output length is 10 including 2 seperators.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Next use WRITE statement to convert the data as per the&lt;/STRONG&gt; &lt;STRONG&gt;user settings.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;EG: User 1 may use date seperator as period(.) and user 2 may use slash(/). If we use WRITE statement then it will written as per the user settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg: DATA: l_date(10) TYPE c,&lt;/P&gt;&lt;P&gt;                l_lfmng(16) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: sy-datum TO l_date,&lt;/P&gt;&lt;P&gt;            wa_lips-lfmng TO l_lfmng.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then while building BDC table use these character variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Kumar Vemuru on Apr 20, 2008 3:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2008 09:49:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3649207#M878915</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-04-20T09:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3649208#M878916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where we need to declare this data and write statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 07:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3649208#M878916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T07:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3649209#M878917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajaya,&lt;/P&gt;&lt;P&gt;Just declare these variables either in TOP include of the report or forms where u r populating the bdc data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE statement should be used before populating the data to BDC table. Now u might be directly using the data from internal table. What u have to do is pass the work area value to the variable of character type and populate the bdcdata internal table with this variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clarified ur doubts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 16:13:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/3649209#M878917</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-04-21T16:13:26Z</dc:date>
    </item>
  </channel>
</rss>

