2024 Oct 10 3:57 PM - edited 2024 Oct 10 4:01 PM
Hi all:
When using CL_SALV_TABLE, how do I get the catalog info for a specific column (e.g., the table name)?
I’m trying this (showing only the most relevant lines):In this case, get_ddic_reference returns blank data (ddic-table = ‘ ‘).
DATA cols TYPE REF TO cl_salv_columns_table.
DATA col1 TYPE REF TO cl_salv_column_table.
DATA ddic TYPE salv_s_ddic_reference.
cl_salv_table=>factory(
IMPORTING
r_salv_table = alv
CHANGING
t_table = itab ).
col1 ?= cols->get_column( ‘MY_COLUMN’ ).
ddic = col1->get_ddic_reference( ).
ddic-table returns blanks. Any ideas? Running 7.50
TIA,
Luis
Request clarification before answering.
You forgot some code, try some code such as
" defintions
DATA: cols TYPE REF TO cl_salv_columns_table,
col1 TYPE REF TO cl_salv_column,
ddic TYPE salv_s_ddic_reference.
" call methods (you can merge in one statement)
cols = alv->get_columns( ).
col1 = cols->get_column( 'MY_COLUMN' ).
ddic = col1->get_ddic_reference( ).
Of course field MY_COLUMN must exist in the internal table and use some ddic reference in its declaration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
76 | |
30 | |
10 | |
8 | |
8 | |
7 | |
7 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.