Application Development 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: 

what is the field to be used in the field catalog

Former Member
0 Kudos

hi

what is the field to be used in the field catalog of an ALV report to hide the relevant column inthe list

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

use .

no_out = 'X'.

then this will hide.

Regards,

Naveen

7 REPLIES 7

Former Member
0 Kudos

Hi,

If you do not want to display a particular column in the report, just delete it from field catalog.

Regards,

Raghavendra

abdulazeez12
Active Contributor
0 Kudos

While creating the field catalog, use NO_OUT = 'X'. This wil hide it in field catalog display..

hymavathi_oruganti
Active Contributor
0 Kudos

no_out = 'X'.

Former Member
0 Kudos

Hi,

use .

no_out = 'X'.

then this will hide.

Regards,

Naveen

0 Kudos

hi naveen

thanks for ur reply. u said that we have to mention no_out = ' X'. where i have to mention it

Former Member
0 Kudos

hi,

if you want to hide a particular column dont specify it in output list. it wont be displayed then.

or if you want to display that column when particular radio button is selected then use:

if radi1 = 'x'.

Order Number

wa_fldcat-fieldname = 'AUFNR'.

wa_fldcat-col_pos = l_pos.

wa_fldcat-scrtext_s = 'Order'.

wa_fldcat-scrtext_m = 'Order'.

wa_fldcat-scrtext_l = 'Order'.

APPEND wa_fldcat TO it_fldcat.

CLEAR wa_fldcat.

l_pos = l_pos + 1.

endif.

Former Member
0 Kudos

use no_out = 'X'..this will help you..