<?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 slis in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586305#M591801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.what is meant by fieldcatalog what is its syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.suppose i decalre data : fi type slis_fieldcat_alv&lt;/P&gt;&lt;P&gt;then actually what does the  fields contained by fi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jul 2007 07:10:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-25T07:10:53Z</dc:date>
    <item>
      <title>slis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586305#M591801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.what is meant by fieldcatalog what is its syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.suppose i decalre data : fi type slis_fieldcat_alv&lt;/P&gt;&lt;P&gt;then actually what does the  fields contained by fi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2007 07:10:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586305#M591801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-25T07:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: slis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586306#M591802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fieldcatelog is notin but the description of the columns whioch u r gaving in the ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can set the properties How it has to behave or display in the display of the grid.&lt;/P&gt;&lt;P&gt;SE11-&amp;gt;type group==&amp;gt;SLIS and give display ...u an see the code there.&lt;/P&gt;&lt;P&gt;SLIS_FIELDCAT_ALV is the header or workarea ...&lt;/P&gt;&lt;P&gt;SLIS_T_FIELDCAT_ALV is the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcat1-col_pos    = '1'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat1-fieldname  = 'NAME'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat1-tabname = 'T_OUTPUT1'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat1-seltext_l  = 'Description'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; wa_fieldcat-just       = 'L'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  wa_fieldcat1-outputlen  = '25'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat1 TO t_fieldcat1.&lt;/P&gt;&lt;P&gt;  CLEAR wa_fieldcat1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here wa_fieldcat is the workarea and t_fieldcat1 is the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpfull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2007 07:14:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586306#M591802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-25T07:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: slis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586307#M591803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     below thing wil be useful for u.&lt;/P&gt;&lt;P&gt;Field_catalog:&lt;/P&gt;&lt;P&gt;Field catalog with field descriptions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field catalog containing descriptions of the list output fields (usually a subset of the internal output table fields). A field catalog is required for every ALV list output.&lt;/P&gt;&lt;P&gt;The field catalog for the output table is built-up in the caller's coding. The build-up can be completely or partially automated by calling the REUSE_ALV_FIELDCATALOG_MERGE module&lt;/P&gt;&lt;P&gt;See also the documentation of the function module REUSE_ALV_FIELDCATALOG_MERGE.&lt;/P&gt;&lt;P&gt;The minimal field catalog is documented under 'default'. The caller can use the other optional parameters to assign output attributes to a field which differ from the default.&lt;/P&gt;&lt;P&gt;A field catalog need not be built-up and passed explicitly only under the following conditions:&lt;/P&gt;&lt;P&gt;&amp;#149; The internal table to be output has the same structure as a Data Dictionary structure which is referred to in the internal table declaration using LIKE or INCLUDE STRUCTURE.&lt;/P&gt;&lt;P&gt;&amp;#149; all fields in this structure are to be output&lt;/P&gt;&lt;P&gt;&amp;#149; the structure name is passed to ALV in the parameter I_STRUCTURE_NAME.&lt;/P&gt;&lt;P&gt;See also the documentation of the IMPORTING paramter I_STRUCTURE_NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF HELPFUL&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karthick.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2007 07:21:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586307#M591803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-25T07:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: slis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586308#M591804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Fieldcatalog is a table that contains the information of fields to be displayed in ALV list or ALV grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;slis_fieldcat_alv is a structure. For more information about this structure check SLIS type-pools.&lt;/P&gt;&lt;P&gt;This structure contains the information of a field like Fieldname, Description, Length, Column no. etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2007 07:21:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586308#M591804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-25T07:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: slis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586309#M591805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Type-pools - Its an introductory statement for programs.&lt;/P&gt;&lt;P&gt;The TYPE-POOL statement must be the first statement of a type group following the triggering of possible include programs, and introduces this type group. You can only maintain type groups in the ABAP Dictionary tool of the ABAP Workbench, whereby an include program is automatically generated including the TYPE-POOL statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fieldcatalog, we describe what should be the heading for the required field, we even mention the internal table name, field name, length of the o/p field, its justification , column position, row position, etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax for  - fi type slis_fieldcat_alv &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fi-fieldname = 'WERKR'.                               &lt;/P&gt;&lt;P&gt;  fi-col_pos = 1.&lt;/P&gt;&lt;P&gt;  fi-outputlen = '000004'.&lt;/P&gt;&lt;P&gt;  fi-just = 'L'.&lt;/P&gt;&lt;P&gt;  fi-seltext_m = 'Plant'.&lt;/P&gt;&lt;P&gt;  fi-inttype = 'C'.&lt;/P&gt;&lt;P&gt;  fi-datatype = 'CHAR'.&lt;/P&gt;&lt;P&gt;  fi-ddictxt = 'M'.&lt;/P&gt;&lt;P&gt;  APPEND fi.&lt;/P&gt;&lt;P&gt;  CLEAR fi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use the following fields in the fieldcatalog...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         row_pos        like sy-curow, " output in row&lt;/P&gt;&lt;P&gt;         col_pos        like sy-cucol, " position of the column&lt;/P&gt;&lt;P&gt;         fieldname      type slis_fieldname,&lt;/P&gt;&lt;P&gt;         tabname        type slis_tabname,&lt;/P&gt;&lt;P&gt;         currency(5)    type c,&lt;/P&gt;&lt;P&gt;         cfieldname     type slis_fieldname, " field with currency unit&lt;/P&gt;&lt;P&gt;         ctabname       type slis_tabname,   " and table&lt;/P&gt;&lt;P&gt;         ifieldname     type slis_fieldname, " initial column&lt;/P&gt;&lt;P&gt;         quantity(3)    type c,&lt;/P&gt;&lt;P&gt;         qfieldname     type slis_fieldname, " field with quantity unit&lt;/P&gt;&lt;P&gt;         qtabname       type slis_tabname,   " and table&lt;/P&gt;&lt;P&gt;         round          type i,        " round in write statement&lt;/P&gt;&lt;P&gt;         exponent(3)       type c,     " exponent for floats&lt;/P&gt;&lt;P&gt;         key(1)         type c,        " column with key-color&lt;/P&gt;&lt;P&gt;         icon(1)        type c,        " as icon&lt;/P&gt;&lt;P&gt;         symbol(1)      type c,        " as symbol&lt;/P&gt;&lt;P&gt;         checkbox(1)    type c,        " as checkbox&lt;/P&gt;&lt;P&gt;         just(1)        type c,        " (R)ight (L)eft (C)ent.&lt;/P&gt;&lt;P&gt;         lzero(1)       type c,        " leading zero&lt;/P&gt;&lt;P&gt;         no_sign(1)     type c,        " write no-sign&lt;/P&gt;&lt;P&gt;         no_zero(1)     type c,        " write no-zero&lt;/P&gt;&lt;P&gt;         no_convext(1)  type c,&lt;/P&gt;&lt;P&gt;         edit_mask      type slis_edit_mask,                "&lt;/P&gt;&lt;P&gt;         emphasize(4)   type c,        " emphasize&lt;/P&gt;&lt;P&gt;         fix_column(1)   type c,       " Spalte fixieren&lt;/P&gt;&lt;P&gt;         do_sum(1)      type c,        " sum up&lt;/P&gt;&lt;P&gt;         no_out(1)      type c,        " (O)blig.(X)no out&lt;/P&gt;&lt;P&gt;         tech(1)        type c,        " technical field&lt;/P&gt;&lt;P&gt;         outputlen      like dd03p-outputlen,&lt;/P&gt;&lt;P&gt;         offset         type dd03p-outputlen,     " offset&lt;/P&gt;&lt;P&gt;         seltext_l      like dd03p-scrtext_l, " long key word&lt;/P&gt;&lt;P&gt;         seltext_m      like dd03p-scrtext_m, " middle key word&lt;/P&gt;&lt;P&gt;         seltext_s      like dd03p-scrtext_s, " short key word&lt;/P&gt;&lt;P&gt;         ddictxt(1)     type c,        " (S)hort (M)iddle (L)ong&lt;/P&gt;&lt;P&gt;         rollname       like dd03p-rollname,&lt;/P&gt;&lt;P&gt;         datatype       like dd03p-datatype,&lt;/P&gt;&lt;P&gt;         inttype        like dd03p-inttype,&lt;/P&gt;&lt;P&gt;         intlen         like dd03p-intlen,&lt;/P&gt;&lt;P&gt;         lowercase      like dd03p-lowercase,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2007 07:28:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586309#M591805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-25T07:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: slis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586310#M591806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI SANDEEP,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field catalog is notin but the description of the columns which u r giving in the ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can set the properties How it has to behave or display in the display of the grid.&lt;/P&gt;&lt;P&gt;SE11-&amp;gt;type group==&amp;gt; SLIS and give display ...u an see the code there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SLIS_FIELDCAT_ALV is the header or workarea ...&lt;/P&gt;&lt;P&gt;SLIS_T_FIELDCAT_ALV is the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcat1-col_pos = '1'.&lt;/P&gt;&lt;P&gt;wa_fieldcat1-fieldname = 'NAME'.&lt;/P&gt;&lt;P&gt;wa_fieldcat1-tabname = 'T_OUTPUT1'.&lt;/P&gt;&lt;P&gt;wa_fieldcat1-seltext_l = 'Description'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;wa_fieldcat-just = 'L'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;wa_fieldcat1-outputlen = '25'.&lt;/P&gt;&lt;P&gt;APPEND wa_fieldcat1 TO t_fieldcat1.&lt;/P&gt;&lt;P&gt;CLEAR wa_fieldcat1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here wa_fieldcat is the workarea and t_fieldcat1 is the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in alv reporting u have to create field catalog so that u can arrange the fields in your specified order in alv reports for outputting. the fleid catalog may be with or with out header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF HELPFUL REWARD SOME POINTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WITH REGARDS,&lt;/P&gt;&lt;P&gt;SURESH ALURI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2007 07:34:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slis/m-p/2586310#M591806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-25T07:34:38Z</dc:date>
    </item>
  </channel>
</rss>

