<?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: read data from ms access in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214386#M1378136</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends ,&lt;/P&gt;&lt;P&gt;I have solved the problem by  using  date =  '#9/14/2009 00:00:00AM#'.  it is returning date = 09/14/2009 1:08:00 PM in USA format  , Now i want to date as  09/14/2009 13:08:00   in ISO format . Is there any function module to conver this date in iso format please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Oct 2009 10:21:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-13T10:21:25Z</dc:date>
    <item>
      <title>read data from ms access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214382#M1378132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;He friends,&lt;/P&gt;&lt;P&gt;I am reading data from ms access data base   using abap , when I am selecting the complete table by sql select * from tabl1 it is woring fine . Now  I wan to read data from this table for a perticular  date or for a specific period . Please tell me the sql statement   .date field is date type in ms access  table . data in this field is looking as "22/09/2009 10:54:00", Please tell me the suitable sql statement for the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;SS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 18:36:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214382#M1378132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-29T18:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: read data from ms access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214383#M1378133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe the timestamp is in unix time (seconds since 1/1/1970, as for excel).&lt;/P&gt;&lt;P&gt;With your SQL, can't you extract the raw value of any timestamp field&lt;/P&gt;&lt;P&gt;You may try by selecting different intervals (select count(*) from tabl1 where timestamp between 1000000 and 2000000) until you get something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, I am curious how you can SQL MS-ACCESS from ABAP?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 22:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214383#M1378133</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2009-09-29T22:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: read data from ms access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214384#M1378134</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;within MS-Access the selection for a date field is with '#&amp;lt;date&amp;gt;#'. So you have to change the ABAP-SQL statement. You can check this while creating a testformular with VBA-Code within Access. It's the same behaviour.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other option is to create a query in Access with a new field: SAPDATE=get_SAPDATE(yourfield)&lt;/P&gt;&lt;P&gt;Within the VBA-function module get_SAPDATE you may create a correct SAP date value and give this back as field type long integer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;public function get_SAPDATE(mydate as date) as long integer.&lt;/P&gt;&lt;P&gt;on error goto get_sapdate_err&lt;/P&gt;&lt;P&gt;dim strDate as string&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get_sapdate = 0&lt;/P&gt;&lt;P&gt;strDate = ""&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;strdate = format(year(mydate),"0000")&lt;/P&gt;&lt;P&gt;strdate = strdate &amp;amp; format(month(mydate),"00")&lt;/P&gt;&lt;P&gt;strdate = strdate &amp;amp; format(day(mydate),"00")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get_sapdate = clng( strdate)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get_sapdate_err:&lt;/P&gt;&lt;P&gt;get_sapdate = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endfunction&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Sep 2009 10:07:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214384#M1378134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-30T10:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: read data from ms access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214385#M1378135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;Thanks for u reply ,&lt;/P&gt;&lt;P&gt;I am not understanding , can u please explain using  date  as ( 22/09/2009  10:30:00 ) for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;SS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Oct 2009 12:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214385#M1378135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-10T12:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: read data from ms access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214386#M1378136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends ,&lt;/P&gt;&lt;P&gt;I have solved the problem by  using  date =  '#9/14/2009 00:00:00AM#'.  it is returning date = 09/14/2009 1:08:00 PM in USA format  , Now i want to date as  09/14/2009 13:08:00   in ISO format . Is there any function module to conver this date in iso format please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 10:21:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-ms-access/m-p/6214386#M1378136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T10:21:25Z</dc:date>
    </item>
  </channel>
</rss>

