SALV Limitations: Separator in Toolbar In this new series on SALV Object Model (SALV OM), I will document some of the Limitations which are not documented in standard SAP documentation. In the ALV GRID (created using container) type of SALV, we can’t have a Separator in the Toolbar. To add the separator in the Toolbar,…
Apply Filters to SALV Table In the series of the SALV Model Table display in SAP ABAP, today we will see how to apply Filters to the ALV Grid. You can find all the Previous discussion at . Filters are important to display only values required by the users. i.e. See only the “Red” Lights…
Apply Aggregations like Totals, Minimum values to SALV Table In the series of the SALV Model Table display in SAP ABAP, today we will see how to apply aggregations to the ALV Grid. You can find all the Previous discussion at . Aggregations plays important role in the reporting. E.g. Providing the TOTALS, Minimum values,…
Open-Closed Principle (OCP) This is one of my published blogs on SCN – SAP Community Network. Definition:The name itself sounds like contradicting – OPEN & CLOSE, but by definition, A module should be OPEN for extension but CLOSED for modification. The Open-Closed Principle (OCP) is one of the most important Design Principle. OCP originated from…
Using transaction SE30 measure the Performance between breakpoints We can measure the runtime and check the performance of the program by using the transaction SE30. SAP Help on the Runtime Analysis using SE30. Today we will elaborate the option to measure the performance of the specific part of the code using the SE30. This option…
To use the Field-symbols against the Work Area for Internal table processing. We’ll also measure the difference between both of the techniques. Basics Internal table processing is essential part of any ABAP program. Generally, we use the explicit work area to process the internal table like appending & modifying records. We can reduce the time…