Hi All,
I am trying to learn dynpro and implementing an application for my company. Heres is the code and the error which I am facing .
Code::
DATA : lt_flights TYPE STANDARD TABLE OF /bic/azfin_o4400.
DATA : lr_field TYPE REF TO cl_salv_wd_field.
SELECT * FROM /bic/azfin_o4400 INTO TABLE lt_flights.
DATA: lr_field_settings TYPE REF TO if_salv_wd_field_settings.
lr_field_settings ?= wd_this->r_table.
lr_field = lr_field_settings->get_field('ZLDAPUSER').
lr_field->if_salv_wd_sort~create_sort_rule(group_aggregation = abap_true).
node->bind_table( lt_flights ).
Error::
The format of field specification "ABAP_TRUE)" is not supported. Only
field...(...) is possible, e.g. KTNRA2(6).
Please Help.
Thanks
Devang
Edited by: Devang Desai on May 30, 2008 1:29 AM