<?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: alv problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057023#M90667</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank u srinivas&lt;/P&gt;&lt;P&gt;got it and points alloted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Dec 2005 03:27:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-02T03:27:04Z</dc:date>
    <item>
      <title>alv problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057020#M90664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have created the program with alv list display.When i run the program only one value getting displayed.Where might be the problem.Itab having the data.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;And how to pass the itab data into ALV list.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;here is the code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  YQM_NOTIFICATION MESSAGE-ID  ZM NO STANDARD PAGE HEADING&lt;/P&gt;&lt;P&gt;                                                      LINE-SIZE 255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: qpct,&lt;/P&gt;&lt;P&gt;        qpgt,&lt;/P&gt;&lt;P&gt;        qmel,&lt;/P&gt;&lt;P&gt;        ihpa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: fieldcat TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      ITAB_EXTAB   TYPE SLIS_T_EXTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: it_field   TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      w_layout   TYPE slis_layout_alv,&lt;/P&gt;&lt;P&gt;      it_exclu   TYPE slis_t_extab,&lt;/P&gt;&lt;P&gt;      GS_EXTAB  TYPE SLIS_EXTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of t_hdr occurs 0,&lt;/P&gt;&lt;P&gt;        group like qpgt-CODEGRUPPE,&lt;/P&gt;&lt;P&gt;        code like qpct-code,&lt;/P&gt;&lt;P&gt;        TEXT like qpct-KURZTEXT,&lt;/P&gt;&lt;P&gt;        name like qpgt-KURZTEXT,&lt;/P&gt;&lt;P&gt;      end of t_hdr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of t_det occurs 0,&lt;/P&gt;&lt;P&gt;       sno type i,&lt;/P&gt;&lt;P&gt;       QMNUM like qmel-QMNUM,       " notification number(ref no)&lt;/P&gt;&lt;P&gt;       REFNUM like qmel-refnum,      " contract no&lt;/P&gt;&lt;P&gt;       parnr like ihpa-parnr,&lt;/P&gt;&lt;P&gt;       qmtxt like qmel-qmtxt,&lt;/P&gt;&lt;P&gt;       QMGRP like qmel-QMGRP,&lt;/P&gt;&lt;P&gt;       QMCOD like qmel-QMCOD,&lt;/P&gt;&lt;P&gt;       objnr like qmel-objnr,&lt;/P&gt;&lt;P&gt;       desc(72),&lt;/P&gt;&lt;P&gt;      end of t_det.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: sno type i.&lt;/P&gt;&lt;P&gt;DATA: v_repid TYPE sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: ITAB_LINES LIKE tline OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK a1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;select-options:s_QMNUM for qmel-QMNUM,&lt;/P&gt;&lt;P&gt;                  s_qmart for qmel-qmart,&lt;/P&gt;&lt;P&gt;                  s_qmdat for  qmel-QMDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK a1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;  perform get_data.&lt;/P&gt;&lt;P&gt;  perform display_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  display_alv&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form display_alv.&lt;/P&gt;&lt;P&gt;  PERFORM field_cat USING fieldcat.&lt;/P&gt;&lt;P&gt;  v_repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_callback_program = v_repid&lt;/P&gt;&lt;P&gt;      it_fieldcat        = fieldcat&lt;/P&gt;&lt;P&gt;      IT_EXCLUDING       = ITAB_EXTAB&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab           = t_det&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      program_error      = 1&lt;/P&gt;&lt;P&gt;      OTHERS             = 2.&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;P&gt;endform.                    "display_alv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  field_cat&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_FIELDCAT text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM field_cat USING p_fieldcat.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FIELD CATELOG FOR ALV DISPLAY.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA: i_fieldcat TYPE slis_fieldcat_alv.&lt;/P&gt;&lt;P&gt;  CLEAR i_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i_fieldcat-fieldname    = 'sno'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-tabname      = 't_det'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-no_out       = '   '.&lt;/P&gt;&lt;P&gt;  i_fieldcat-seltext_l    = 'S.no'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-outputlen    = 4.&lt;/P&gt;&lt;P&gt;  APPEND i_fieldcat TO fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i_fieldcat-fieldname    = 'QMNUM'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-tabname      = 't_det'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-no_out       = '   '.&lt;/P&gt;&lt;P&gt;  i_fieldcat-seltext_l    = 'Ref.no'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-outputlen    = 18.&lt;/P&gt;&lt;P&gt;  APPEND i_fieldcat TO fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i_fieldcat-fieldname    = 'refnum'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-tabname      = 't_det'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-no_out       = '   '.&lt;/P&gt;&lt;P&gt;  i_fieldcat-seltext_l    = 'Contract no'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-outputlen    = 18.&lt;/P&gt;&lt;P&gt;  APPEND i_fieldcat TO fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i_fieldcat-fieldname    = 'parnr'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-tabname      = 't_det'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-no_out       = '   '.&lt;/P&gt;&lt;P&gt;  i_fieldcat-seltext_l    = 'A-Div'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-outputlen    = 10.&lt;/P&gt;&lt;P&gt;  APPEND i_fieldcat TO fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i_fieldcat-fieldname    = 'qmtxt'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-tabname      = 't_det'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-no_out       = '   '.&lt;/P&gt;&lt;P&gt;  i_fieldcat-seltext_l    = 'Description'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-outputlen    = 25.&lt;/P&gt;&lt;P&gt;  APPEND i_fieldcat TO fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i_fieldcat-fieldname    = 'desc'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-tabname      = 't_det'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-no_out       = '   '.&lt;/P&gt;&lt;P&gt;  i_fieldcat-seltext_l    = 'Defect'.&lt;/P&gt;&lt;P&gt;  i_fieldcat-outputlen    = 100.&lt;/P&gt;&lt;P&gt;  APPEND i_fieldcat TO fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "FIED_CAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  get_data&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form get_data.&lt;/P&gt;&lt;P&gt;*to get header&lt;/P&gt;&lt;P&gt;  select codegruppe code kurztext from qpct into table t_hdr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at t_hdr.&lt;/P&gt;&lt;P&gt;    select single * from qpgt where codegruppe = t_hdr-group.&lt;/P&gt;&lt;P&gt;    if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      t_hdr-name = qpgt-KURZTEXT.&lt;/P&gt;&lt;P&gt;      modify t_hdr.&lt;/P&gt;&lt;P&gt;      clear t_hdr.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*to get details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select qmnum refnum QMDAT qmtxt objnr qmgrp QMCOD from qmel&lt;/P&gt;&lt;P&gt;    into corresponding fields of table t_det&lt;/P&gt;&lt;P&gt;                              where qmnum in s_qmnum and&lt;/P&gt;&lt;P&gt;                                    qmart in s_qmart and&lt;/P&gt;&lt;P&gt;                                    qmdat in s_qmdat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at t_det.&lt;/P&gt;&lt;P&gt;    select single * from ihpa where objnr = t_det-objnr.&lt;/P&gt;&lt;P&gt;    if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      t_det-parnr = ihpa-parnr.&lt;/P&gt;&lt;P&gt;      modify t_det.&lt;/P&gt;&lt;P&gt;      clear t_det.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at t_det.&lt;/P&gt;&lt;P&gt;    delete t_hdr where group ne t_det-qmgrp.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points guaranteed...&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Kaki R&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 03:20:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057020#M90664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T03:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: alv problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057021#M90665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your internal table name and field names &amp;lt;b&amp;gt;have to be in uppercase&amp;lt;/b&amp;gt; when you are building the field catalogue. Change it and you will get the output correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 03:23:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057021#M90665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T03:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: alv problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057022#M90666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While creating field catalog the strings in quotes are in small letters. Check once by giving them in caps.&lt;/P&gt;&lt;P&gt;Currently are you seeing value for QMNUM only? Or is there any other field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 03:26:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057022#M90666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T03:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: alv problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057023#M90667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank u srinivas&lt;/P&gt;&lt;P&gt;got it and points alloted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 03:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057023#M90667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T03:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: alv problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057024#M90668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is how your fieldcat routine should be.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;--------------------------------------------------------------------*
*&amp;amp; Form field_cat
*&amp;amp;--------------------------------------------------------------------*
* text
*---------------------------------------------------------------------*
* --&amp;gt;P_FIELDCAT text
*---------------------------------------------------------------------*
FORM field_cat USING p_fieldcat.
  DATA: i_fieldcat TYPE slis_fieldcat_alv.
  CLEAR i_fieldcat.

  i_fieldcat-fieldname = 'SNO'.
  i_fieldcat-tabname = 'T_DET'.
  i_fieldcat-no_out = ' '.
  i_fieldcat-seltext_l = 'S.no'.
  i_fieldcat-outputlen = 4.
  APPEND i_fieldcat TO fieldcat.

  i_fieldcat-fieldname = 'QMNUM'.
  i_fieldcat-tabname = 'T_DET'.
  i_fieldcat-no_out = ' '.
  i_fieldcat-seltext_l = 'Ref.no'.
  i_fieldcat-outputlen = 18.
  APPEND i_fieldcat TO fieldcat.

  i_fieldcat-fieldname = 'REFNUM'.
  i_fieldcat-tabname = 'T_DET'.
  i_fieldcat-no_out = ' '.
  i_fieldcat-seltext_l = 'Contract no'.
  i_fieldcat-outputlen = 18.
  APPEND i_fieldcat TO fieldcat.

  i_fieldcat-fieldname = 'PARNR'.
  i_fieldcat-tabname = 'T_DET'.
  i_fieldcat-no_out = ' '.
  i_fieldcat-seltext_l = 'A-Div'.
  i_fieldcat-outputlen = 10.
  APPEND i_fieldcat TO fieldcat.

  i_fieldcat-fieldname = 'QMTXT'.
  i_fieldcat-tabname = 'T_DET'.
  i_fieldcat-no_out = ' '.
  i_fieldcat-seltext_l = 'Description'.
  i_fieldcat-outputlen = 25.
  APPEND i_fieldcat TO fieldcat.

  i_fieldcat-fieldname = 'DESC'.
  i_fieldcat-tabname = 'T_DET'.
  i_fieldcat-no_out = ' '.
  i_fieldcat-seltext_l = 'Defect'.
  i_fieldcat-outputlen = 100.
  APPEND i_fieldcat TO fieldcat.

ENDFORM. "FIED_CAT

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 03:27:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057024#M90668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T03:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: alv problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057025#M90669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add one more line to fieldctalog to all fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_fieldcat-col_pos = '1'.&lt;/P&gt;&lt;P&gt;i_fieldcat-col_pos = '2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to how many ever fields u have&lt;/P&gt;&lt;P&gt;dont forget to reward points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 03:30:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057025#M90669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T03:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: alv problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057026#M90670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;shailesh&lt;/P&gt;&lt;P&gt;you need to write perform for every field so write so do that and reply if you get the result properly&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2005 05:18:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1057026#M90670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-02T05:18:22Z</dc:date>
    </item>
  </channel>
</rss>

