<?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: SET_TABLE_FOR_FIRST_DISPLAY in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790048#M339940</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Avinash,&lt;/P&gt;&lt;P&gt;I have used this method and for this we need to manually create the field catalog &lt;/P&gt;&lt;P&gt;and use coltext(column text) field of lvc_s_fcat to give heading you want at the output. Your problem will be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award Points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Asha Raghuvanshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Dec 2006 06:38:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-18T06:38:10Z</dc:date>
    <item>
      <title>SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790044#M339936</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;Iam using SET_TABLE_FOR_FIRST_DISPLAY in an alv report pgm.&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;                I_STRUCTURE_NAME = 'ZXXXXX'&lt;/P&gt;&lt;P&gt;                IS_LAYOUT        = LIST_LAYOUT&lt;/P&gt;&lt;P&gt;                CHANGING&lt;/P&gt;&lt;P&gt;                IT_OUTTAB        =  ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the fields of the table iam specifying are all of direct type and dont contain any dataelements and domains.When i run the report the field headings doesnt appear.I have also tried passing the IT_FIELDCATALOG parameter.&amp;lt;b&amp;gt;When i do so do i need to use&amp;lt;/b&amp;gt; LVC_FIELDCATALOG_MERGE.&lt;/P&gt;&lt;P&gt;Anyone please suggest how could i get the field heading for the structues which donot  have data elements and domains for respective fields iam passing.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;avinash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 05:35:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790044#M339936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T05:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790045#M339937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;  You have to append the field catalog manually in this case. LVC_FIELDCATALOG_MERGE picks up the field headings and definitions from the data element of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manoj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 05:45:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790045#M339937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T05:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790046#M339938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The headings are not appearing beacuase you not referring to the data elements from where the descriptions will be picked up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can loop at the field catalog after it is created by the function and modify the descitptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_FIELDCAT INTO WA_FIELDCAT.&lt;/P&gt;&lt;P&gt;CASE WA_FIELDCAT-FIELDNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'MATERIAL'.&lt;/P&gt;&lt;P&gt; WA_FIELDCAT-SCRTEXT_L = 'Material'.&lt;/P&gt;&lt;P&gt; WA_FIELDCAT-SCRTEXT_M = 'Material'.&lt;/P&gt;&lt;P&gt; WA_FIELDCAT-SCRTEXT_S = 'Material'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&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 all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 05:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790046#M339938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T05:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790047#M339939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to manually append the fields in the ITAB_FIELDCATALOG for the parameters.&lt;/P&gt;&lt;P&gt;Fill the following parameters in the table:&lt;/P&gt;&lt;P&gt;FIELDNAME--field in internal table.&lt;/P&gt;&lt;P&gt;TABNAME-- Name of internal table.&lt;/P&gt;&lt;P&gt;SCRTEXT_L--Label which u want to display as column heading&lt;/P&gt;&lt;P&gt;SELDDICTXT--Label&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chetan.&lt;/P&gt;&lt;P&gt;PS:Reward points if this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 05:57:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790047#M339939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T05:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: SET_TABLE_FOR_FIRST_DISPLAY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790048#M339940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Avinash,&lt;/P&gt;&lt;P&gt;I have used this method and for this we need to manually create the field catalog &lt;/P&gt;&lt;P&gt;and use coltext(column text) field of lvc_s_fcat to give heading you want at the output. Your problem will be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award Points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Asha Raghuvanshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 06:38:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-table-for-first-display/m-p/1790048#M339940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T06:38:10Z</dc:date>
    </item>
  </channel>
</rss>

