‎2012 Jul 09 7:40 AM
hi
i am adding new field to table EBAN in structure CI_EBANDE.
The field is called z_flag and it's data element in type FLAG (char 1).
when i am writing the next select
data: gt_eban type table of EBAN.
select * from EBAN into table gt_eban
where z_flag = ' '.
and i get no records (sy-dbcnt = 0) when in the database i have 1328 records with this field when it has null value.
thanks
Ami.
‎2012 Jul 09 9:03 AM
i found that when i add new field to table i use se14 extra -> force conversion
that fux the problem
thanks
‎2012 Jul 09 7:51 AM
Hi,
Try using the below given query.
select * from EBAN into table gt_eban where z_flag = ' '. (use a space between single quotes)
or
select * from EBAN into table gt_eban where z_flag = space. (SPACE is SAP keyword)
Cheers
~Niranjan
‎2012 Jul 09 7:53 AM
‎2012 Jul 09 8:16 AM
Hi Ami ,
Put the break point over the select query and check weather the data is featching from DB or not .....
‎2012 Jul 09 9:03 AM
i found that when i add new field to table i use se14 extra -> force conversion
that fux the problem
thanks