Posts

Showing posts with the label buffers in sap

Deep Dive into SAP Table Buffering: Single vs. Full vs. Generic Area Buffering, Practical Implementation, and Lock Objects

Image
 Welcome back everyone, so basically we were discussing about Single Record buffering and we had discussed that in single record buffering at a time, only single record will pass. Full Record Buffering :- In case of full buffering, full table records load into the buffer at a time. When to use :- Tables that are best suited to full buffering are frequently accessed and rarely changed. A table which stores transaction data should not be opted for full buffering. Advantage :- There is a significantly reduction in number of database access. Disadvantage :- This type of buffering requires more memory on application layer. Practical Implementation of Full Record Buffering :- Step 1 :- Open our order header table in change mode. Step 2 :- Go to technical settings, and select fully buffered → activate the table. Step 3 :- At this moment, if you go to transaction code al12 and open the buffer. Step 4 :- you will see nothing will be in the buffer. Step 5 :- Open the

Exploring SAP: Leveraging Help Views in Search Helps and Unraveling the Mysteries of Table Buffering

Image
 Welcome back everyone, So basically we have discussed Search helps in the last blog, So let’s continue How to use Help view in Search help? → If you remember, when we were discussing about help view, I had told that we will use it in Search help.      So, this is our help view which we had created in our previous blogs. Step 1 :- Go to SE11, select the search help radio button and give a name and press enter. Step 2 :- select elementary search help and press enter. Step 3 :- provide a short description. Step 4 :- In selection method, we will write the name of our help view → and we will choose our search help parameters. Step 5 :- Save and activate our search help. Step 6 :- Now, we can execute our search help with F8 and you will see it is displaying the contents, In help view we were unable to display the contents but we can display them by using them in search helps. So, this is enough for search helps and now we will start Table Buffering. Table