<?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: regarding internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265932#M1215924</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first change the structure of table to make budat char10. Then use a conversion exit.&lt;/P&gt;&lt;P&gt;In se37&lt;/P&gt;&lt;P&gt;type conversion_exit_date* and hit f4&lt;/P&gt;&lt;P&gt;now check which one is appropriate for u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Mar 2009 23:39:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-12T23:39:42Z</dc:date>
    <item>
      <title>regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265931#M1215923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;     i have an internal table &lt;/P&gt;&lt;P&gt;DATA: BEGIN OF tbl_infile OCCURS 0,&lt;/P&gt;&lt;P&gt;         Aufnr(12) type c,&lt;/P&gt;&lt;P&gt;         budat(8) TYPE c,&lt;/P&gt;&lt;P&gt;         tubes(13) type c,&lt;/P&gt;&lt;P&gt;         srap(13) type c,&lt;/P&gt;&lt;P&gt;         batches(13) type c,&lt;/P&gt;&lt;P&gt;         runmin(13) type c,&lt;/P&gt;&lt;P&gt;         stopmin(13) type c,&lt;/P&gt;&lt;P&gt;      END OF tbl_infile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here the date from file comes into internal table as 140409 i want to change this to 14.04.2009 and place back into internal table how to change the internal table ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 23:30:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265931#M1215923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T23:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265932#M1215924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first change the structure of table to make budat char10. Then use a conversion exit.&lt;/P&gt;&lt;P&gt;In se37&lt;/P&gt;&lt;P&gt;type conversion_exit_date* and hit f4&lt;/P&gt;&lt;P&gt;now check which one is appropriate for u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 23:39:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265932#M1215924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T23:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265933#M1215925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set the data type of budat as d and use the function modue CONVERSION_EXIT_SDATE_OUTPUT. Do read the function module documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rugmani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 23:54:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265933#M1215925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T23:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265934#M1215926</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;This is very simple:&lt;/P&gt;&lt;P&gt;1.Change the lenght of the budat from 8 to 10&lt;/P&gt;&lt;P&gt;2.either use the FM 'CONVERT_DATE_TO_EXTERNAL' to convert the date or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the below snippet &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.Declare 3 local variable of type c each of lenght 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data:var1(2) tyep c,
var2(2) tyep c,
var3(2) tyep c,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;4.extract the dd,mm and yy using the offset from the budat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;var1 = budat+0(2).
var2 = budat+2(2).
var3 = budat+4(2).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;5.finally concatenate the above 3 variable into budat of internal table.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;concatenate var1 '.' var2 '.' var3 into budat.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope this might solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pooja Gupta on Mar 13, 2009 4:46 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 03:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265934#M1215926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T03:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265935#M1215927</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;Changing date format:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;1. This has to do with your USER SETTINGS.

2. Change Your User SETTING
    i.e., Change the DATE FORMAT to DD.MM.YYYY

3. To Do This ,
    On any screen, follow the menu
      A) SYSTEM---&amp;gt;USER PROFILE --&amp;gt;OWN DATA
      B) THEN A NEW SCREEN WILL GET OPENED
      C) Goto DEFAULTS Tab
      D) There is one section for Date Format 
          Change the format as per requirement ie. DD.MM.YYYY
      E) Press The save Button.

4. TO NOTICE THE CHANGE, LOGIN ONCE AGAIN.
    AND THEN CHECK.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can use code to print date as per your requirement:-&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at tbl_infile.
  write : / tbl_infile-budat dd/mm/yyyy.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 03:50:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5265935#M1215927</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-13T03:50:26Z</dc:date>
    </item>
  </channel>
</rss>

