‎2008 Apr 25 2:50 AM
Hi Experts,
I have a problem with reading internal table.
Generally it is ok to read internal table with one key but
now I have an internal table based on the table has plural primary keys.
in this case I can I let it read the internal table?
Ex) General example
READ TABLE itab WITH KEY valiable1 = value1. <-- No problem
Ex) What I want.
READ TABLE itab WITH KEY valiable1 = value1 AND valiable2 = value2
I've tried to use parenthesis like
READ TABLE itab WITH KEY ( valiable1 = value1 AND valiable2 = value2 ) but it didn't work either.
Please help me.
‎2008 Apr 25 4:34 AM
Hi
Use Read table itab with key variable1 = value1 variable2 = value2.....
Dont use AND instead give space....
erase AND it will work
thnx
sravani
PLZ REWARD POINTS
Edited by: sravani batchu on Apr 25, 2008 5:34 AM
‎2008 Apr 25 2:52 AM
‎2008 Apr 25 4:34 AM
Hi
Use Read table itab with key variable1 = value1 variable2 = value2.....
Dont use AND instead give space....
erase AND it will work
thnx
sravani
PLZ REWARD POINTS
Edited by: sravani batchu on Apr 25, 2008 5:34 AM