<?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: questions in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions/m-p/1346347#M174391</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;DEBUG THE BDC PGORAM-&amp;gt;&lt;/P&gt;&lt;P&gt;THERE ARE TWO METHODS USE IN BDC&lt;/P&gt;&lt;P&gt;CALL TRANSACTION&lt;/P&gt;&lt;P&gt;BDC  SESSION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION - YOU CAN CATTH THE ERROR HERE USING THE STRUCTURE BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;BDC SESSION - YOU CAN CAT THE THE ERROR HER THROUGH SM35&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT DATE FORMAT-&amp;gt;&lt;/P&gt;&lt;P&gt;CONVERT_DATE_TO_EXTERNAL Converts date from system storage format to users specified display format &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;P&gt;MRUTYUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 May 2006 06:20:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-29T06:20:30Z</dc:date>
    <item>
      <title>questions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions/m-p/1346344#M174388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      1, can any one tell how to debugg bdc programs?&lt;/P&gt;&lt;P&gt;     2,if the date format in flat file is dd/mm/yyyy how to convert it into mm/dd/yyyy when we process ?&lt;/P&gt;&lt;P&gt;                  &lt;/P&gt;&lt;P&gt;                                        thanking u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                 gopan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 05:51:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/questions/m-p/1346344#M174388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T05:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: questions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions/m-p/1346345#M174389</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;2. Use the functions to convert the dates to internal and external formats accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT_DATE_TO_EXTERNAL&lt;/P&gt;&lt;P&gt;CONVERT_DATE_TO_INTERNAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 05:58:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/questions/m-p/1346345#M174389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T05:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: questions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions/m-p/1346346#M174390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. &lt;/P&gt;&lt;P&gt;/hs This switches into debugging mode and activates the debugging of system functions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/learning-bdc-programming.htm" target="test_blank"&gt;http://www.sap-img.com/abap/learning-bdc-programming.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. &lt;/P&gt;&lt;P&gt;data :&lt;/P&gt;&lt;P&gt;data1(10) type c,&lt;/P&gt;&lt;P&gt;date2(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date1 = '23/10/2005'.&lt;/P&gt;&lt;P&gt;concatenate date1&lt;EM&gt;3(3) date1&lt;/EM&gt;0(3) date1+6(4) into date2.&lt;/P&gt;&lt;P&gt;write date2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Susmitha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dont forget to reward points for useful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 06:08:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/questions/m-p/1346346#M174390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T06:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: questions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/questions/m-p/1346347#M174391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;DEBUG THE BDC PGORAM-&amp;gt;&lt;/P&gt;&lt;P&gt;THERE ARE TWO METHODS USE IN BDC&lt;/P&gt;&lt;P&gt;CALL TRANSACTION&lt;/P&gt;&lt;P&gt;BDC  SESSION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION - YOU CAN CATTH THE ERROR HERE USING THE STRUCTURE BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;BDC SESSION - YOU CAN CAT THE THE ERROR HER THROUGH SM35&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT DATE FORMAT-&amp;gt;&lt;/P&gt;&lt;P&gt;CONVERT_DATE_TO_EXTERNAL Converts date from system storage format to users specified display format &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;P&gt;MRUTYUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 06:20:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/questions/m-p/1346347#M174391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T06:20:30Z</dc:date>
    </item>
  </channel>
</rss>

