SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

группа функций sbal(логирование)



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
lapa
Участник
Участник



Joined: 12 Aug 2011
Posts: 20

PostPosted: Tue Mar 11, 2014 4:46 pm    Post subject: группа функций sbal(логирование) Reply with quote

В транзакции SLG1 отображает не все данные.
создаем лог

CALL FUNCTION 'BAL_LOG_CREATE'
EXPORTING
i_s_log = ls_bal_s_log
IMPORTING
e_log_handle = lv_balloghndl.

заносим в него сообщение. 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

отображаем на экране

l_s_fcat-ref_table = 'ZSST'.
l_s_fcat-ref_field = 'MATNR'.
l_s_fcat-col_pos = 100.
APPEND l_s_fcat TO l_s_display_profile-mess_fcat.
l_s_fcat-ref_table = 'ZSST'.
l_s_fcat-ref_field = 'IND'.
l_s_fcat-col_pos = 100.
APPEND l_s_fcat TO l_s_display_profile-mess_fcat.

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). Подскажите как решить проблему с отображением.
Back to top
View user's profile Send private message
Armann
Модератор
Модератор



Joined: 01 Jan 2008
Posts: 422
Location: Moscow

PostPosted: Tue Mar 11, 2014 5:22 pm    Post subject: Reply with quote

а commit work не забываете делать?
Back to top
View user's profile Send private message Blog
lapa
Участник
Участник



Joined: 12 Aug 2011
Posts: 20

PostPosted: Thu Mar 13, 2014 2:22 pm    Post subject: Reply with quote

Armann wrote:
а commit work не забываете делать?


Проблемы с сохранением в БД нету).
Нашли выход:
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
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
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.