‎2007 Sep 06 9:54 AM
Hi all,
I am working on ECC6.0 , but when i use Read statement it gives me erro that it is obsolute in ECC6.0.
So please suggest a way to proceed.
Regards,
Nilesh
‎2007 Sep 06 10:00 AM
Get the data into internal table.
Don't use read on DB
Read table it_mara into wa_mara with key ....
BINARY SEARCH .
‎2007 Sep 06 9:56 AM
‎2007 Sep 06 9:58 AM
‎2007 Sep 06 9:59 AM
‎2007 Sep 06 10:00 AM
Hi Nilesh,
READ statement is NOT Obsolete in ECC 6.0. It is very much in use. I think the syntax that you used might not be correct. Kindly verify with below syntax..
READ TABLE itab INTO ls_itab WITH KEY (Key fields) BINARY SEARCH.WITH KEYcan be used or
WITH INDEXcan also be used..
<b>Reward points for helpful answers</b>.
Best Regards,
Ram.
‎2007 Sep 06 10:00 AM
Get the data into internal table.
Don't use read on DB
Read table it_mara into wa_mara with key ....
BINARY SEARCH .
‎2007 Sep 06 10:04 AM
Thank you for your reply.
I know this solution but why we cant use read on transparent tables.
Regards,
Nilesh
‎2007 Sep 06 10:10 AM
Hi Nitesh..
To read data from Transparent Tables we have to use
SELECT statement ..
Read STATEMENT is only for reading from internal table.
So it is not the issue with ECC 6.0
<b>reward if helpful.</b>