<?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: Internal Table? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329320#M512318</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes ,you are doing correct way ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Jun 2007 22:07:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-13T22:07:18Z</dc:date>
    <item>
      <title>Internal Table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329316#M512314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;             I have created 2 internal tables one of type and structre BSEG the other as only structure BSEG and type character.in secondinternal table i defined all the fileds as charatcer,but in 1st BSEG internal table some are of floating point or currency types.so how to declare those floating point and currency types in second internal table?But  I am not getting any syntax error's.The data getting successfully downloaded to file from 2nd Internal table.can any body tell me how to declare those floating types or Currencies or date?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gopi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 21:42:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329316#M512314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T21:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329317#M512315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gopi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Are you pulling data from DB table or flat file, if you are downloading from flat file then normally we will use char type fields only. After that we need to move it to the seconda internal table of type DB table. When you convert / move the data, make sure about the data types, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DJ &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;reward, if its useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 21:48:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329317#M512315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T21:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329318#M512316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare as like BSEG types and when ever you want to download move the values to char and download&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if it is helpful&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>Wed, 13 Jun 2007 21:49:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329318#M512316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T21:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329319#M512317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seshu,&lt;/P&gt;&lt;P&gt;              What my program does it download the data from SAP and dumps the data into a text file.That tex file is stored in Application server.&lt;/P&gt;&lt;P&gt;            For Example consider BSEG table i created an Internal table for this by selecting all the records in BSEG table and storing it in IT_Bseg1.Now i have to trasnfer this data into a final Internal Table which looks like this.&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF wa_bseg_temp,&lt;/P&gt;&lt;P&gt;        lineno(7) TYPE n,&lt;/P&gt;&lt;P&gt;        prog_space     TYPE c VALUE ' ',&lt;/P&gt;&lt;P&gt;        data_rec(3045) TYPE c,&lt;/P&gt;&lt;P&gt;     END OF wa_bseg_temp.&lt;/P&gt;&lt;P&gt;but whats the problem here is i can't just move the data from Internal table to wa_bseg_temp-data_rec.if i do like that mean's i am getting Syntax error&lt;/P&gt;&lt;P&gt;" It_bseg and  wa_bseg_temp-data_rec are not Mutually Convertible in Unicode Programming"          So i took another internal Table of structure BSEG and datatypes as Character.&lt;/P&gt;&lt;P&gt;                    So now the Q'n is does i need to change the dataypes for some of the fields in BSEG to floating point or currency ?or no need of doing like hat its just fine what i am doing like declaring all the variables as Charatcer type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gopi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 22:02:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329319#M512317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T22:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329320#M512318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes ,you are doing correct way ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 22:07:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329320#M512318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T22:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329321#M512319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi seshu,&lt;/P&gt;&lt;P&gt;              Is ther any other Alternative I got an idea like by using Concatenate ABAP Keyword.&lt;/P&gt;&lt;P&gt;          Concatenate IT_bseg fields to wa_bseg_temp-data_rec seperated by Space.   Does this works?&lt;/P&gt;&lt;P&gt;                the first method is Tedious becoz u have to create a structure of type cfor every field in BSEG.&lt;/P&gt;&lt;P&gt;                 So can u suggest me any alternative method based on this?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gopi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 22:15:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329321#M512319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T22:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329322#M512320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Concatenate command works for only charcters field ,if bseg has currency field then syntax error will come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;better to create all type c in internal table and download it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 22:22:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2329322#M512320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T22:22:12Z</dc:date>
    </item>
  </channel>
</rss>

