SAP Reports Question:
Download Questions PDF

A table is buffered. I want to get the data from database. How?

Answer:

If buffering is allowed for a table in the ABAP Dictionary, the SELECT statement always reads the data from the buffer in the database interface of the current application server. To read data directly from the database table instead of from the buffer, use the following: SELECT... FROM *lt;tables> BYPASSING BUFFER. .. This addition guarantees that the data you read is the most up to date. However, as a rule, only data that does not change frequently should be buffered, and using the buffer where appropriate improves performance. You should therefore only use this option where really necessary.

Download SAP Reports Interview Questions And Answers PDF

Previous QuestionNext Question
How can validate input values in selection screen and which event was fired?When you create sales report, What you can see in that report? What are field names?