заносим в него сообщение. ZSST структура в словаре с двумя параметрами MATNR, IND .
l_context TYPE ZSST.
l_context-MATNR = '1234'.
l_context-IND = 'успешно'.
l_s_msg-context-tabname = 'ZSST'.
l_s_msg-context-value = l_context.
break laptev.
CALL FUNCTION 'BAL_LOG_MSG_ADD'
EXPORTING
I_LOG_HANDLE = lv_balloghndl
i_s_msg = l_s_msg
CALL FUNCTION 'BAL_DSP_LOG_DISPLAY'
EXPORTING
i_s_display_profile = l_s_display_profile.
Отображается вместе с данными(структурой ZSST). Но после сохранения
CALL FUNCTION 'BAL_DB_SAVE'
EXPORTING
i_t_log_handle = logs
и просмотра лога через транзакцию slg1. Пропадает нужные данные(структура ZSST). Подскажите как решить проблему с отображением.
Проблемы с сохранением в БД нету).
Нашли выход:
1. Стандартная транзакция SLG1 не позволяет выводит в таком виде. Создаешь свою программу в ней используешь вместо
CALL FUNCTION 'BAL_DSP_PROFILE_SINGLE_LOG_GET' "Профиль экрана - SLG1
IMPORTING
e_s_display_profile = l_s_display_profile.
.
вот это)
CALL FUNCTION 'BAL_DSP_PROFILE_POPUP_GET' "Профиль экрана - таблица
IMPORTING
E_S_DISPLAY_PROFILE = l_s_display_profile.
а затем выводишь
CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' "выводим на экран по профилю
EXPORTING
i_s_display_profile = l_s_display_profile
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.