<?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 feild catalog in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/feild-catalog/m-p/1897182#M374909</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to generate a feild catalog&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Jan 2007 18:54:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-26T18:54:28Z</dc:date>
    <item>
      <title>feild catalog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/feild-catalog/m-p/1897182#M374909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to generate a feild catalog&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 18:54:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/feild-catalog/m-p/1897182#M374909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T18:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: feild catalog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/feild-catalog/m-p/1897183#M374910</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;Use function module &amp;lt;b&amp;gt;REUSE_ALV_FIELDCATALOG_MERGE&amp;lt;/b&amp;gt; to crate a field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION &amp;lt;i&amp;gt;&amp;lt;b&amp;gt;'REUSE_ALV_FIELDCATALOG_MERGE'&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      I_PROGRAM_NAME         = G_REPID&lt;/P&gt;&lt;P&gt;      I_INTERNAL_TABNAME     = 'IT_FINAL'&lt;/P&gt;&lt;P&gt;      I_INCLNAME             = G_REPID&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      CT_FIELDCAT            = DT_FLDCAT&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      INCONSISTENT_INTERFACE = 1&lt;/P&gt;&lt;P&gt;      PROGRAM_ERROR          = 2&lt;/P&gt;&lt;P&gt;      OTHERS                 = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use BC&lt;STRONG&gt;ALV&lt;/STRONG&gt; with F4 help to view some example on ALV using transaction code SE38.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Plz mark all helpful answers and close the thread.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 18:56:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/feild-catalog/m-p/1897183#M374910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T18:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: feild catalog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/feild-catalog/m-p/1897184#M374911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is how we do it in case u want to set your own field catalog along with some properties defined for it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award points if found helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_FINAL OCCURS 0,&lt;/P&gt;&lt;P&gt;        LIFNR LIKE LFB1-LIFNR,  "Account Number of Vendor&lt;/P&gt;&lt;P&gt;        BUKRS LIKE LFB1-BUKRS,  "COMP CODE&lt;/P&gt;&lt;P&gt;      END OF IT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*WORK AREAS DEFINED FOR ALV'S&lt;/P&gt;&lt;P&gt;DATA: X_FIELDCAT TYPE SLIS_FIELDCAT_ALV,&lt;/P&gt;&lt;P&gt;      IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-FIELDNAME = 'LIFNR'.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-TABNAME = 'IT_FINAL'.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-SELTEXT_L  = 'VENDOR'.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-NO_ZERO    = 'X'.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-OUTPUTLEN  = 10.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-COL_POS    = 1.&lt;/P&gt;&lt;P&gt;  APPEND X_FIELDCAT TO IT_FIELDCAT.&lt;/P&gt;&lt;P&gt;  CLEAR X_FIELDCAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-FIELDNAME = 'BUKRS'.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-TABNAME = 'IT_FINAL'.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-SELTEXT_L  = 'COMPANY'.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-NO_ZERO    = 'X'.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-OUTPUTLEN  = 4.&lt;/P&gt;&lt;P&gt;  X_FIELDCAT-COL_POS    = 2.&lt;/P&gt;&lt;P&gt;  APPEND X_FIELDCAT TO IT_FIELDCAT.&lt;/P&gt;&lt;P&gt;  CLEAR X_FIELDCAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        I_PROGRAM_NAME         = SY-REPID&lt;/P&gt;&lt;P&gt;        I_INTERNAL_TABNAME     = 'IT_FINAL'&lt;/P&gt;&lt;P&gt;        I_INCLNAME             = SY-REPID&lt;/P&gt;&lt;P&gt;      CHANGING&lt;/P&gt;&lt;P&gt;        CT_FIELDCAT            = IT_FIELDCAT&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        INCONSISTENT_INTERFACE = 1&lt;/P&gt;&lt;P&gt;        PROGRAM_ERROR          = 2&lt;/P&gt;&lt;P&gt;        OTHERS                 = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 19:00:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/feild-catalog/m-p/1897184#M374911</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2007-01-26T19:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: feild catalog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/feild-catalog/m-p/1897185#M374912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Darshdeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand this is for the ALV report requirment that you have...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through this link...read and this will help you understand the process....then refer to my reply for you earlier query...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/8e/5dc9bee10111d2b47e006094192fe3/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/8e/5dc9bee10111d2b47e006094192fe3/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ketan.&lt;/P&gt;&lt;P&gt;Pls Award Points if you are findiing the answers useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2007 19:03:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/feild-catalog/m-p/1897185#M374912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-26T19:03:00Z</dc:date>
    </item>
  </channel>
</rss>

