<?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: table entries in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618744#M1279934</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First copy the entries into the ZTABLE, as suggested by Pinakee.&lt;/P&gt;&lt;P&gt;Also, as GLPCA does not have the new field, u fill the new filed with the desired values, either programatically or through table maintainance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, copy the standard report into a ZREPORT, there replace the GLPCA with ZGLPCA(the ztable, that u have created) .and in the report u make changes to diplay one more field (the one that u have added.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 May 2009 14:03:29 GMT</pubDate>
    <dc:creator>former_member195383</dc:creator>
    <dc:date>2009-05-04T14:03:29Z</dc:date>
    <item>
      <title>table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618739#M1279929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to copy the GLPCA TABLE into Ztable.&lt;/P&gt;&lt;P&gt;i have cpoied the table but i am not getting the entries(data) in the ztable.&lt;/P&gt;&lt;P&gt;could anyone please tell me what to do to get the data.&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>Mon, 04 May 2009 13:20:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618739#M1279929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T13:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618740#M1279930</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;Write a Zprogram and get the entries from GLPCA and insert into u r new table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 13:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618740#M1279930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T13:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618741#M1279931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neethu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a report program with select statement which fetches all the data fronm the source table into internal table.Using loop at that internal table  insert the records into ur ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lakshman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 13:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618741#M1279931</guid>
      <dc:creator>former_member209217</dc:creator>
      <dc:date>2009-05-04T13:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618742#M1279932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;First you need to create a internal table to hold the data GLCPA.&lt;/P&gt;&lt;P&gt;Then &lt;STRONG&gt;select&lt;/STRONG&gt; the records from the GLCPA  to the internal table .&lt;/P&gt;&lt;P&gt;Then &lt;STRONG&gt;insert&lt;/STRONG&gt; the records to the Ztable from the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write the followed code to &lt;STRONG&gt;insert&lt;/STRONG&gt;  data from GLPCA  to ZTABLE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : t_itab TYPE TABLE OF GLPCA .

SELECT  * FROM GLCPA INTO TABLE t_itab.   " Selecting records from GLCPA

INSERT ZTABLE FROM TABLE t_itab. " Inserting records to Ztable created by you&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Execution of that code  Populate the Ztable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pinaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 13:34:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618742#M1279932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T13:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618743#M1279933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually i need to COPYstandard report and  add one of the field in zreport,  the standard report fetches all the fields from GLPCA and displays the same to output fields, so i cannt add new field in GLPCA,&lt;/P&gt;&lt;P&gt;so ineed to copy the GLPCA table to ztable and add new field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do i need to write the select query in my zreport&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 13:54:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618743#M1279933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T13:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618744#M1279934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First copy the entries into the ZTABLE, as suggested by Pinakee.&lt;/P&gt;&lt;P&gt;Also, as GLPCA does not have the new field, u fill the new filed with the desired values, either programatically or through table maintainance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, copy the standard report into a ZREPORT, there replace the GLPCA with ZGLPCA(the ztable, that u have created) .and in the report u make changes to diplay one more field (the one that u have added.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 14:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618744#M1279934</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2009-05-04T14:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618745#M1279935</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 felt that it is better to use a code to populate a table.&lt;/P&gt;&lt;P&gt;Because it reduces the time as well as other complexcity &lt;/P&gt;&lt;P&gt;You do one thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First copy the table GLCPA to Ztable and add a field to that ZTABLE.&lt;/P&gt;&lt;P&gt;Then select  the records from the table GLCPA into a internal table Typed ztable.&lt;/P&gt;&lt;P&gt;In SELECT query use &lt;STRONG&gt;CORRESPONDING FIELDS OF&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;Then insert the entries fom the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have made some changes to previous code.&lt;/P&gt;&lt;P&gt;Please check that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : t_itab type TABLE OF ZTABLE.
 
SELECT  * FROM GLPCA INTO 
                 CORRESPONDING FIELDS OF TABLE t_itab.   " Selecting records from GLCPA

INSERT ZTABLE FROM TABLE t_itab. " Inserting records to Ztable created by you&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pinaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 14:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entries/m-p/5618745#M1279935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T14:31:51Z</dc:date>
    </item>
  </channel>
</rss>

