Types: begin of itab2,
rdiff_obj like zpbu18T-rdiff_obj,
rdiff_type like zpbu18T-rdiff_type,
rdiff_source like zpbu18T-rdiff_source,
racct like zpbu18T-racct,
rtaxobj like zpbu18T-rtaxobj,
saldo_n like zpbu18T-HSL01,
saldo_k like zpbu18T-HSL02,
oborot like zpbu18T-HSL03,
end of itab2.
data: itab type itab2 occurs 0 with header line.
....
(идет какая-то обработка)
....
try.
cl_salv_table=>factory( IMPORTING r_salv_table = gc_alv_table
CHANGING t_table = itab[] ).
CATCH cx_salv_msg .
MESSAGE 'Ошибка при создании ALV' TYPE 'E'.
ENDTRY.
gc_alv_table->set_screen_status( EXPORTING
REPORT = 'SAPLSALV_METADATA_STATUS'
pfstatus = 'SALV_TABLE_STANDARD'
set_functions = CL_SALV_MODEL_BASE=>C_FUNCTIONS_ALL ).
" Получаем ссылку на объект настройки колонок
go_columns = gc_alv_table->get_columns( ).
" Включаем оптимизацию колонок
go_columns->set_optimize( abap_true ).
" Получаем ссылку на объект настройки колонки
TRY.
go_column = go_columns->get_column( 'hsl01' ).
" настраиваем текст
go_column->set_long_text( 'СальдоНачМес' ).
go_column->set_medium_text( 'Сн' ).
go_column->set_short_text( 'Сн' ).
CATCH cx_salv_not_found.
ENDTRY.
не работает не переименовывает... как быть и что делать? по идее вроде как говорит, что не найден столбец с таким названием. когда в дамп уходил. но при включении CATCH cx_salv_not_found все данные выводит, но столбец не переименовывается.
Какие могут быть варианты решения проблемы?
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.