Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

alv hidden fields

Former Member
0 Likes
404

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
365

set no_out = 'X'.

2 REPLIES 2
Read only

Former Member
0 Likes
366

set no_out = 'X'.

Read only

Former Member
0 Likes
365

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