<?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: date problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-problem/m-p/3127324#M742817</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use simple logic to fill the bdc data :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;date&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data : v_date1(2) type c," Day&lt;/P&gt;&lt;P&gt;         v_date2(2) type c, " Month&lt;/P&gt;&lt;P&gt;         v_date3(4) type c, " Year&lt;/P&gt;&lt;P&gt;         v_date(8) type c. " Total date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    clear : v_date1,&lt;/P&gt;&lt;P&gt;            v_date2,&lt;/P&gt;&lt;P&gt;            v_date3,&lt;/P&gt;&lt;P&gt;            v_date.&lt;/P&gt;&lt;P&gt;    v_date1 = i_data-STATUS_DATE+0(2)." Month&lt;/P&gt;&lt;P&gt;    v_date2 = i_data-STATUS_DATE+3(2). " Day&lt;/P&gt;&lt;P&gt;    v_date3 = i_data-STATUS_DATE+6(4). " Year.&lt;/P&gt;&lt;P&gt;    concatenate v_date3 v_date1 v_date2 into v_date.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Use v_date for your transaction ,Check the date in debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Nov 2007 17:24:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-29T17:24:22Z</dc:date>
    <item>
      <title>date problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-problem/m-p/3127323#M742816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gurus, &lt;/P&gt;&lt;P&gt;i am trying to upload fi transactions through session, in tcode FB01,   when i process the session in fore ground, &lt;/P&gt;&lt;P&gt;the dates in BLDAT and BUDAT, ie. document date and posting date in the screen are filled up leaving the last digit of the date.&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the excel sheet had: 11/29/2007&lt;/P&gt;&lt;P&gt;in the debugging inside the program also, in all the itabs before submitting the data to the program rfbibl00 it is showing the date as&lt;/P&gt;&lt;P&gt;                                  11/29/2007&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when the session is run in the foreground, both the fields are filled as&lt;/P&gt;&lt;P&gt;                                   11/29/200&lt;/P&gt;&lt;P&gt;the last digit is missing.&lt;/P&gt;&lt;P&gt;this is happening in ecc, this is not arising in 4.7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did any one face this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2007 17:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-problem/m-p/3127323#M742816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-29T17:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: date problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-problem/m-p/3127324#M742817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use simple logic to fill the bdc data :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;date&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data : v_date1(2) type c," Day&lt;/P&gt;&lt;P&gt;         v_date2(2) type c, " Month&lt;/P&gt;&lt;P&gt;         v_date3(4) type c, " Year&lt;/P&gt;&lt;P&gt;         v_date(8) type c. " Total date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    clear : v_date1,&lt;/P&gt;&lt;P&gt;            v_date2,&lt;/P&gt;&lt;P&gt;            v_date3,&lt;/P&gt;&lt;P&gt;            v_date.&lt;/P&gt;&lt;P&gt;    v_date1 = i_data-STATUS_DATE+0(2)." Month&lt;/P&gt;&lt;P&gt;    v_date2 = i_data-STATUS_DATE+3(2). " Day&lt;/P&gt;&lt;P&gt;    v_date3 = i_data-STATUS_DATE+6(4). " Year.&lt;/P&gt;&lt;P&gt;    concatenate v_date3 v_date1 v_date2 into v_date.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Use v_date for your transaction ,Check the date in debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2007 17:24:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-problem/m-p/3127324#M742817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-29T17:24:22Z</dc:date>
    </item>
  </channel>
</rss>

