<?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 Modifyfng std prg in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifyfng-std-prg/m-p/1805832#M345838</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    my requiremnt is I need to add some additional fields in the report for standard program 'RIMHIO00', So i copied into zprogram , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The standard program is displaying data from object_tab internal table. I collected extra fields in i_final internal table ,now i want to know where to modify the program to display data from my internal table i_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i changed in "reuse_alv_grid_disply" it is not working, i think in some other places also i need to make changes .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone send me the details where to modify the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Jan 2007 08:32:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-04T08:32:46Z</dc:date>
    <item>
      <title>Modifyfng std prg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifyfng-std-prg/m-p/1805832#M345838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    my requiremnt is I need to add some additional fields in the report for standard program 'RIMHIO00', So i copied into zprogram , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The standard program is displaying data from object_tab internal table. I collected extra fields in i_final internal table ,now i want to know where to modify the program to display data from my internal table i_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i changed in "reuse_alv_grid_disply" it is not working, i think in some other places also i need to make changes .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone send me the details where to modify the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2007 08:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifyfng-std-prg/m-p/1805832#M345838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-04T08:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Modifyfng std prg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifyfng-std-prg/m-p/1805833#M345839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you added your fields in fieldcatalog?&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;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2007 08:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifyfng-std-prg/m-p/1805833#M345839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-04T08:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Modifyfng std prg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifyfng-std-prg/m-p/1805834#M345840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;in ur new table add ur external fields with one of the key fields of the original table too in tht..&lt;/P&gt;&lt;P&gt;after tht do a loop at ur actual standard table like -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_actual.&lt;/P&gt;&lt;P&gt;read table itab_new  with key field1 = itab_actual-field1.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;move-corresponding itab_actual to itab_final.&lt;/P&gt;&lt;P&gt;itab_final-field_a = itab_new-field_a.&lt;/P&gt;&lt;P&gt;itab_final-field_b = itab_new-field_b.&lt;/P&gt;&lt;P&gt;append itab_final.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ itab_final-fied_a,&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------" /&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;endloop &lt;/P&gt;&lt;P&gt;and add the fields to ur fieldcatalog and pass itab_final to Reuse_alv_grid function now.&lt;/P&gt;&lt;P&gt;amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Amit Tyagi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2007 08:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifyfng-std-prg/m-p/1805834#M345840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-04T08:43:12Z</dc:date>
    </item>
  </channel>
</rss>

