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

Application log



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
klkuznetsov
Специалист
Специалист


Age: 47
Joined: 06 Aug 2010
Posts: 79
Location: Ukraine

PostPosted: Wed May 25, 2011 4:54 pm    Post subject: Application log Reply with quote

Здравствуйте, уважаемые!
Создаю стандартный журнал с помощью ФМ BAL_LOG_CREATE и вывожу его на экран с помощью BAL_LOG_DISPLAY.
Все отлично работает но есть нюанс.... Пользователь хочет видеть главы сообщений в развернутом виде, это раз и второе хочет видеть только верхнюю част журнала алвшка с сообщениями ему как бы не нужна... Нашел как показать только нижнюю часть журнала, как показать только верхнюю, не нашел.
Может кто знает как скрыть нижнюю часть, ну или расширить дерево так чтобы не видно было нижнюю часть журнала.
Заранее спасибо за помощь.
Back to top
View user's profile Send private message
vvk
Гуру
Гуру



Joined: 17 Jan 2011
Posts: 14

PostPosted: Fri May 27, 2011 10:20 am    Post subject: Reply with quote

Возможные профили отображения BAL-лога:

1) Display profile: Display without tree (fullscreen)
ФМ BAL_DSP_PROFILE_NO_TREE_GET

2) Display profile: Display without tree (popup)
ФМ BAL_DSP_PROFILE_POPUP_GET

3) Display profile: Standard profile (SLG1) for one log
ФМ BAL_DSP_PROFILE_SINGLE_LOG_GET

4) Display profile: Standard profile (SLG1) for several logs
ФМ BAL_DSP_PROFILE_STANDARD_GET

5) Display profile: Hierarchy by message DETLEVEL
ФМ BAL_DSP_PROFILE_DETLEVEL_GET
Back to top
View user's profile Send private message
klkuznetsov
Специалист
Специалист


Age: 47
Joined: 06 Aug 2010
Posts: 79
Location: Ukraine

PostPosted: Wed Jun 01, 2011 9:58 am    Post subject: Reply with quote

Решено, вот таким образом, действует только на профиль полученный с помощью ФМ BAL_DSP_PROFILE_DETLEVEL_GET

Code:
    CALL FUNCTION 'BAL_LOG_CREATE'
        EXPORTING
          i_s_log      = ms_log_header
        IMPORTING
          e_log_handle = mv_log_handle.

      CALL FUNCTION 'BAL_DSP_PROFILE_DETLEVEL_GET'
        IMPORTING
          e_s_display_profile = ms_log_display_profile.

      ms_log_display_profile-head_text  = 'Журнал'.
      ms_log_display_profile-head_size  = 100.
      ms_log_display_profile-tree_size  = 200.
      ms_log_display_profile-show_all   = abap_true.
      ms_log_display_profile-exp_level  = 9.
      ms_log_display_profile-tree_ontop = abap_false.

      INSERT mv_log_handle INTO TABLE mt_log_handle[].

*       Create control to display Log
      CALL FUNCTION 'BAL_CNTL_CREATE'
        EXPORTING
          i_container         = mr_gui_0100_footer
          i_s_display_profile = ms_log_display_profile
          i_t_log_handle      = mt_log_handle[]
        IMPORTING
          e_control_handle    = mv_log_control_handle.
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.