‎2006 Sep 18 3:27 PM
I need to set the alv report display features and I need some fields not to be displayed but I need them to ber included in the alv report. I now there's a component in the fieldcatalog that can be set to manage what I want, but I don't know which one is, anybody can help me?
‎2006 Sep 18 3:29 PM
‎2006 Sep 18 3:29 PM
‎2006 Sep 18 3:31 PM
Hi,
IN THE FIELD CATALOG, WRITE <b>NO_OUT = 'X'</b>, sot hat filed will not be displayed in the Layout
i_fldcat_objlist-fieldname = 'ORI_ACCBASIS'.
i_fldcat_objlist-reptext = 'Account Basis'.
i_fldcat_objlist-seltext = 'Account Basis'.
i_fldcat_objlist-inttype = 'CHAR'.
i_fldcat_objlist-outputlen = '20'.
IF P_COMP IS INITIAL.
<b>i_fldcat_objlist-NO_OUT = 'X'.</b>
ENDIF.
Regards
Sudheer