‎2006 Sep 15 11:22 AM
‎2006 Sep 15 11:24 AM
Hi,
By flushing buffer do you want to select the values from database, in that case you can use <b>BYPASSING BUFFER</b> addition with select statement.
EX :
select *
from vbak
into table itab bypassing buffer
where vbeln eq s_vbeln.
Hope this helps.
‎2006 Sep 15 11:26 AM
if you are using SELECT in the programs,
then you can add up the command BYPASSING BUFFER,
to skip fetching values from the BUFFER and to goto the database for that.
Regards
srikanth
‎2006 Sep 15 11:48 AM
Hi,
... BYPASSING BUFFER
Reads the data records directly from the database, even if thetable is in the SAP buffer
TABLES SPROD.
SELECT * FROM SPROD BYPASSING BUFFER
WHERE PRODUCER = 'BOE'.
WRITE: / SPROD-STREET, SPROD-NAME, SPROD-POSTCODE,
SPROD-CITY, SPROD-COUNTRY.
ENDSELECT.
Regards
amole
‎2006 Sep 15 12:34 PM
Hello,
Use 'BYPASSING BUFFER' in the select query.
Regards,
Shehryar