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: 

How to hide a view field in a view cluster programatically?

former_member328004
Discoverer
0 Kudos

How can I hide a field "f1" inside a view "V" of a view cluster dynamically? Since the same view is shared by different view clusters, I need this to be dynamic.

This is a way to hide the field at the view level (not view cluster)

  loop at TCTRL_V-COLS assigning <columns>.
    case <columns>-screen-name.
      when 'V-f1'.
        <columns>-invisible = 'X'.
      endcase.
  endloop.

How can I do the same from a view cluster "01" event?

0 REPLIES 0