2008 Jul 02 2:52 PM
hi,
i have a data declaration
data t_edidd type edidd.
in my include, i am using
clear t_edidd-sddata.
in ECC 6.0 this errors during syntax check and says , t_edidd is a table without a header line and therefore has no component called sddata.
now how do i clear the values in t_edidd-sddata ?
thks
2008 Jul 02 2:59 PM
Here edidd not contains any field called SDDATA please change
clear t_edidd-sdata.
a®s.
2008 Jul 02 2:53 PM
2008 Jul 02 2:56 PM
For a table without a header line you would use the commands....
LOOP AT T_EDIDD INTO....
or
READ TABLE T_EDIDD INTO.....
It is the field after the INTO statement you need to clear.
2008 Jul 02 2:59 PM
Here edidd not contains any field called SDDATA please change
clear t_edidd-sdata.
a®s.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |