Hi,
If we want to hide some columns from the ALV that come with the table mapped, we just need to set the column as technical executing the method SET_TECHNICAL to True:
g_column ?= g_columns->get_column( 'PROC_CODE' ).
g_column->SET_TECHNICAL( ABAP_TRUE ).
OR
Set the column visible property as False:
g_column ?= g_columns->get_column( 'MSGTYP' ).
g_column->SET_VISIBLE( ABAP_FALSE ).
Greetings.
If we want to hide some columns from the ALV that come with the table mapped, we just need to set the column as technical executing the method SET_TECHNICAL to True:
g_column ?= g_columns->get_column( 'PROC_CODE' ).
g_column->SET_TECHNICAL( ABAP_TRUE ).
OR
Set the column visible property as False:
g_column ?= g_columns->get_column( 'MSGTYP' ).
g_column->SET_VISIBLE( ABAP_FALSE ).
Greetings.
No hay comentarios:
Publicar un comentario