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

CL_SALV_TABLE



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



Joined: 20 Jun 2012
Posts: 28

PostPosted: Wed Sep 19, 2012 11:11 am    Post subject: CL_SALV_TABLE Reply with quote

Не добавляется кнопка в тулбар,программа палает в дамп. (Class CL_SALV_FUNCTIONS, method ENABLE_FUNCTION not supported for SMARTFORM
Only Possible in Grid View). Если в метод add_function передать пустую переменную l_NAME,то в дамп не упадет но и кнопка не добавится. Подскажите пжл,что делать. Кнопку хочется добавить именно через этот метод.

Code:
METHOD show_data.
  INCLUDE <icon>.
  INCLUDE <symbol>.
  DATA: g_alv TYPE REF TO cl_salv_table,
        lo_functions TYPE REF TO cl_salv_functions_list.
   DATA : l_text       TYPE string,
        l_name TYPE salv_de_function.
 CALL METHOD cl_salv_table=>factory
    IMPORTING
      r_salv_table = g_alv
    CHANGING
      t_table      = et_aircond.

  TRY.
      l_text = 'text'.
      l_name = 'SMARTFORM'.
     lo_functions = g_alv->get_functions( ).
      lo_functions->set_default( abap_true ).
      lo_functions->add_function(
              name     = l_name
              icon     = '@11@'
              "text     = l_text
              tooltip  = l_text
              position = if_salv_c_function_position=>right_of_salv_functions ).
    CATCH cx_salv_wrong_call cx_salv_existing.
  ENDTRY.
Back to top
View user's profile Send private message
Удав
Гуру
Гуру


Age: 48
Joined: 25 Jan 2008
Posts: 580
Location: Москва

PostPosted: Wed Sep 19, 2012 11:47 am    Post subject: Reply with quote

Отчет SALV_DEMO_TABLE_FUNCTIONS смотрели? Там все прекрасно работает.
_________________
С уважением,
Удав.
Back to top
View user's profile Send private message
Armann
Модератор
Модератор



Joined: 01 Jan 2008
Posts: 422
Location: Moscow

PostPosted: Wed Sep 19, 2012 11:49 am    Post subject: Reply with quote

Таким образом кнопки добавляются при отображении в контейнере на вашем экране. Если у вас полноэкранный ALV - то нужно сделать свой GUI статус (см. примеры в пакете SALV)
Back to top
View user's profile Send private message Blog
Удав
Гуру
Гуру


Age: 48
Joined: 25 Jan 2008
Posts: 580
Location: Москва

PostPosted: Wed Sep 19, 2012 12:09 pm    Post subject: Reply with quote

Удав wrote:
Отчет SALV_DEMO_TABLE_FUNCTIONS смотрели? Там все прекрасно работает.

Кстати, там используется метод SET_ALL, а не SET_DEFAULT, как в вашем примере.
Можт дело в этом?

_________________
С уважением,
Удав.
Back to top
View user's profile Send private message
pavell
Участник
Участник



Joined: 20 Jun 2012
Posts: 28

PostPosted: Wed Sep 19, 2012 2:21 pm    Post subject: Re: CL_SALV_TABLE Reply with quote

Разобрался.В прмере не заметил сразу,кнопка с помощью add_function добавляется только в контейнере. Спасибо.
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.