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

Hide some cells while displaying ALV GRID !

Former Member
0 Likes
1,316

Hi guyz!

Back with lill query,

While displaying ALV GRID using REUSE_ALV_GRID... FMs ,i need to hide

some cells by default, when the lists is generated.But those cells should

be availble to be displayed by the user from ALV layout settings.

Please advise

Thanks

jahan

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
810

Hi,

I think hiding a cell not possible. But you can hide a column instead.

using NO_OUT = X in the field catalog.(This will hide permanently while display)

or create a default layout and call thru fm REUSE*

aRs

Hi,

I think hiding a cell not possible. But you can hide a column instead.

using NO_OUT = X in the field catalog.(This will hide permanently while display)

or create a default layout and call thru fm REUSE*

aRs

4 REPLIES 4
Read only

former_member194669
Active Contributor
0 Likes
811

Hi,

I think hiding a cell not possible. But you can hide a column instead.

using NO_OUT = X in the field catalog.(This will hide permanently while display)

or create a default layout and call thru fm REUSE*

aRs

Read only

0 Likes
810

yes aRs.sir..!

i missd it ..its not cell ...! its column.

thank u very much.

jahan

Read only

former_member194669
Active Contributor
0 Likes
810

Hi, Check for fm documentation.

Only relevant if layout parameter

LAYOUT-GET_SELINFOS of IMPORTING structure IS_LAYOUT is set.

Complex type for modifying information displayed on the selection dialog box:

mode: 'R' = Only entries passed in internal table

IS_SEL_HIDE-T_ENTRIES are output on

the dialog box. Selection information

obtained by the list tool by reading the

selection screen again (only if the report

is called with selection screen) are

replaced by the entries passed.

'S' = The selection information obtained by the

list tool by reading the selection screen

of the calling report again, are modified

by the entries of table

IS_SEL_HIDE-T_ENTRIES.

t_entries: Table with selection information

t_entries-mode: 'A' = Display selection information of the current

table row on the information dialog box.

'D' = Do not display selection information of the

the Select option or of parameter SELNAME

on the dialog box.

t_entries-selname: (required only if t_entries-mode = 'D')

name of Select option or parameter

The following table fields are only required if t_entries-mode = 'A'. They contain the selection information to be added.

t_entries-field: DDIC field name of the field for which selection

information is to be displayed

t_entries-table: DDIC table name of t_entries-field.

t_entries-stext: Field description on the information dialog box.

If t_entries-field and t_entries-table were

filled, this text is taken from the DDIC.

t_entries-valuf: Selection condition from-value (external format)

t_entries-valut: Selection condition to-value (external format)

t_entries-sign0: (I)nclusive (E)xclusive

t_entries-optio: All values of the option field of the Select

option are allowed.

The remaining fields are used internally and are irrelevant to the caller.

aRs

Read only

Former Member
0 Likes
810

Hi,

Check these threads: