cancel
Showing results for 
Search instead for 
Did you mean: 

Error: The format of field specification "ABAP_TRUE)" is not supported.

Former Member
0 Kudos

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

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

If you call methods you need spaces between the parenthesis and the variables.

E.G:

false:

me->set('mystring').

right:

me->set( 'mystring' )

Former Member
0 Kudos

Thanks fort your reply.

will try and let you know by tomm.

Regards

devang

Edited by: Devang Desai on May 30, 2008 8:39 AM

Former Member
0 Kudos

Thanks it worked.