<?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: Functional mod in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563892#M254895</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; you can declare  the field in the structure with reference some dataelement (eg ERDAT) which has data type Dats or you can assign the data element direct types in the table i.e you can give the datatype directly without using data element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Sep 2006 16:35:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-25T16:35:31Z</dc:date>
    <item>
      <title>Functional mod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563887#M254890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear SDN Members,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the use of this FM ' LVC_FIELDCATALOG_MERGE '?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in Advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Johnn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:11:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563887#M254890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Functional mod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563888#M254891</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;To create the catalog table for ALV grid OO, here you can transfer the name DICTIONARY STRUCTURE and it returns automatically the catalog table arranged on declaration of the table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'LVC_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;     i_structure_name   = &amp;lt;DICTIONARY STRUCT&amp;gt;&lt;/P&gt;&lt;P&gt;     I_BYPASSING_BUFFER = 'X'&lt;/P&gt;&lt;P&gt;   CHANGING&lt;/P&gt;&lt;P&gt;     ct_fieldcat        = it_grid_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563888#M254891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Functional mod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563889#M254892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi John,&lt;/P&gt;&lt;P&gt; Check out this thread ../&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alv_variousfcat.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alv_variousfcat.htm&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*For object ALV (Screen)
  DATA: gd_fieldcat2 type LVC_T_FCAT.

  CALL FUNCTION '&amp;lt;b&amp;gt;LVC_FIELDCATALOG_MERGE&amp;lt;/b&amp;gt;'
    EXPORTING                              
*     I_BUFFER_ACTIVE        =         
      I_STRUCTURE_NAME       = 'EKKO'   
*     I_CLIENT_NEVER_DISPLAY = 'X'
*     I_BYPASSING_BUFFER     =         
    CHANGING
      ct_fieldcat            = gd_fieldcat2
    EXCEPTIONS
      INCONSISTENT_INTERFACE = 1
      PROGRAM_ERROR          = 2
      OTHERS                 = 3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when do we use???..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/22/a3f5fed2fe11d2b467006094192fe3/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005vp/helpdata/en/22/a3f5fed2fe11d2b467006094192fe3/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Santosh Kumar P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:22:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563889#M254892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Functional mod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563890#M254893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a ALV control service modules which is used to generate the field catalog automatically or semi-automatically. You combine structure information of the Data Dictionary with your own structure information and send it to the FM and it will return the field catalog ie the struture that is used to display the final internal table in the form of ALV report.&lt;/P&gt;&lt;P&gt;Check out the link.. This contains good info on this.&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;Regards,&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563890#M254893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: Functional mod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563891#M254894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello max Bianci,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While creating a structure, i  need to give a component&lt;/P&gt;&lt;P&gt;which i declared as type  dats in program.&lt;/P&gt;&lt;P&gt; How to declare that in structure ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:28:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563891#M254894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: Functional mod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563892#M254895</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; you can declare  the field in the structure with reference some dataelement (eg ERDAT) which has data type Dats or you can assign the data element direct types in the table i.e you can give the datatype directly without using data element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:35:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563892#M254895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Functional mod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563893#M254896</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;You have to create a field type dats in your ALV structure in the dictionary (trx SE11), if you want the that fm get a your own description you should create a data element with DATS as type (domain) and assign this data element to a field of your alv structure &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:37:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563893#M254896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Functional mod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563894#M254897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; While building fieldcatalog with &amp;lt;b&amp;gt;containers&amp;lt;/b&amp;gt; we use this Function Module LVC_FIELDCATALOG_MERGE , this is similar o REUSE_ALV_FIELDCATALOG_MERGE when using normal ALV FMs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563894#M254897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Functional mod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563895#M254898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use this FM, automatically fieldcatalog will be populated by just passing the structure name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs,&lt;/P&gt;&lt;P&gt;Venkat Ramanan N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:48:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-mod/m-p/1563895#M254898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:48:32Z</dc:date>
    </item>
  </channel>
</rss>

