| function REUSE_ALV_FIELDCATALOG_MERGE
An example :- Please note that structure ZSTOCK is a custom table and iline looks as follow :- data: iline type table of zstock with header line.
perform setup-fieldcatalog using gt_fieldcat[]. form setup-fieldcatalog using _fieldcat type slis_t_fieldcat_alv.
call function 'REUSE_ALV_FIELDCATALOG_MERGE'
loop at _fieldcat into ls_fieldcat.
modify _fieldcat from ls_fieldcat.
endform.
" FIELDCATALOG
Best regards,
|