<?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: Field catalog in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983235#M951509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sharan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code should be giving a syntax error... as you are using "," in the "DATA" statement without usign ":".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA i_fldctlg TYPE LVC_T_FCAT,
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if this helps,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jun 2008 05:38:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-09T05:38:47Z</dc:date>
    <item>
      <title>Field catalog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983234#M951508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA i_fldctlg TYPE LVC_T_FCAT,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM s_build_fldctlg CHANGING i_fldctlg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM s_build_fldctlg CHANGING i_fldctlg TYPE lvc_t_fcat.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_BUFFER_ACTIVE = &lt;/P&gt;&lt;P&gt;I_STRUCTURE_NAME = 'ZSMM_ASSORT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_CLIENT_NEVER_DISPLAY = 'X' &lt;/P&gt;&lt;P&gt;I_BYPASSING_BUFFER = &lt;/P&gt;&lt;P&gt;I_INTERNAL_TABNAME = &lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;ct_fieldcat = i_fldctlg[]&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 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;P&gt;&lt;/P&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have declared as above to build my field catalog. But when I activate it, I am getting an error like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'In PERFORM or CALL FUNCTION "S_BULID_FLDCTLG", the actual parameter "I_FLDCTLG" is incompatible with the formal parameter "I_FLDCTLG".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 05:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983234#M951508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T05:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Field catalog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983235#M951509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sharan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code should be giving a syntax error... as you are using "," in the "DATA" statement without usign ":".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA i_fldctlg TYPE LVC_T_FCAT,
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if this helps,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 05:38:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983235#M951509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T05:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: Field catalog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983236#M951510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   While passing &lt;STRONG&gt;I_FLDCTLG&lt;/STRONG&gt; to perform declare it as of type&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ct_fieldcat&lt;/STRONG&gt; in FM  &lt;STRONG&gt;'LVC_FIELDCATALOG_MERGE'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM s_build_fldctlg CHANGING i_fldctlg type &lt;STRONG&gt;LVC_T_FCAT&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 05:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983236#M951510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T05:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Field catalog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983237#M951511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sharan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using TABLES .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM s_build_fldctlg TABLES i_fldctlg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM s_build_fldctlg TABLES i_fldctlg TYPE lvc_t_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 05:44:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983237#M951511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T05:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Field catalog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983238#M951512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 09:07:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-catalog/m-p/3983238#M951512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-21T09:07:51Z</dc:date>
    </item>
  </channel>
</rss>

