‎2008 Jul 29 6:28 PM
This is the select statement I am using -
SELECT DISTINCT FIELD1 AS FIELD1 FROM TABLE UP TO 1 ROWS
INTO TABLE I_TAB.
This is selecting the line but getting a initial line.
Its not retrieving any data.
Please tell me what has to be modified here?
Thanks,
Archana.
‎2008 Jul 29 6:32 PM
‎2008 Jul 29 6:33 PM
‎2008 Jul 29 6:35 PM
You want the first field in the table in the first record?
May be the first record has a blank value in it.
Regards,
Ravi
‎2008 Jul 29 6:36 PM
‎2008 Jul 29 6:35 PM
REPORT YEST_DB.
data: i_tab type vbap_t.
SELECT DISTINCT vbeln FROM vbap up to 1 rows
INTO TABLE I_TAB.
break-point.
‎2008 Jul 29 6:39 PM
Its still retrieving the bank lines.
Whats wrong?
Thanks,
Archana.
‎2008 Jul 29 7:32 PM