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
kolobok
Участник
Участник



Joined: 03 Sep 2012
Posts: 29

PostPosted: Mon Sep 03, 2012 3:32 pm    Post subject: Переименование колонок\столбцов.Класс CL_SALV_TABLE.Проблема Reply with quote

Code:
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.


не работает Sad не переименовывает... как быть и что делать? по идее вроде как говорит, что не найден столбец с таким названием. когда в дамп уходил. но при включении CATCH cx_salv_not_found все данные выводит, но столбец не переименовывается.
Какие могут быть варианты решения проблемы?
Back to top
View user's profile Send private message
Удав
Гуру
Гуру


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

PostPosted: Mon Sep 03, 2012 3:40 pm    Post subject: Reply with quote

Ну так поле то называется saldo_n, а не hsl01 Wink
И после get_field обязательно нужно поставить условие
Code:
IF go_column IS BOUND.

Тогда дампа не будет.
ЗЫ: для того, чтобы узнать, как работает тот или иной оператор, нажмите F1 на операторе.

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



Joined: 03 Sep 2012
Posts: 29

PostPosted: Tue Sep 04, 2012 9:44 am    Post subject: Reply with quote

Удав wrote:
Ну так поле то называется saldo_n, а не hsl01 Wink
И после get_field обязательно нужно поставить условие
Code:
IF go_column IS BOUND.

Тогда дампа не будет.
ЗЫ: для того, чтобы узнать, как работает тот или иной оператор, нажмите F1 на операторе.


Ha saldo_n тоже не реагирует. Я так и эдак уже пробовала Sad
Дамп я устранила: CATCH cx_salv_not_found не дает уйти в дамп. Просто не меняет название.
Back to top
View user's profile Send private message
Кодер
Участник
Участник



Joined: 11 Apr 2012
Posts: 27

PostPosted: Tue Sep 04, 2012 10:51 am    Post subject: Reply with quote

Указывайте имена полей в верхнем регистре.
Back to top
View user's profile Send private message
bimit
Специалист
Специалист



Joined: 11 Jul 2011
Posts: 56

PostPosted: Tue Sep 04, 2012 10:53 am    Post subject: Reply with quote

Кодер wrote:
Указывайте имена полей в верхнем регистре.


+1
Back to top
View user's profile Send private message
kolobok
Участник
Участник



Joined: 03 Sep 2012
Posts: 29

PostPosted: Tue Sep 04, 2012 12:27 pm    Post subject: Reply with quote

Кодер wrote:
Указывайте имена полей в верхнем регистре.


Да.... чего-чего, но такого решения не ожидала! Very Happy
Спасибо! Гениально!))))))
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.