Difference between Abstract and Interface in OOPS ABAP
Before going through the differences between Abstract and Interface in Object Oriented ABAP please check below links to get understanding of Abstract and Interface concepts. Abstract and Ab…
Before going through the differences between Abstract and Interface in Object Oriented ABAP please check below links to get understanding of Abstract and Interface concepts. Abstract and Ab…
ABAP Code To Download Internal Table as Excel File In some projects we get a requirement to fetch the data from table and download it as an excel file. This can be achieved by displaying A…
CORRESPONDING and LINES Syntax in ABAP 7.4/7.5 Corresponding Operator In the older ABAP syntax, move corresponding is used to copy the content of one internal table to another…
Create Range tables using ABAP new syntax Range Table Structure Field Values SIGN ‘I’ = Include ‘E’ = Exclude OPTION ‘EQ’ …
COND Operator instead of IF/ELSE in ABAP New Syntax As case statements are used to evaluate only one variable condition at a time, we use if/else to consider multiple logical conditions. Co…
Replace Case with Switch in ABAP New Syntax In below example, the day such as Monday, Tuesday.. are determined by the numerical value obtained from the function module DATE_COMPUTE_DAY. As …
Modify code in SAP Quality System Sometimes you get issue in a code where the case is available only in quality and you are not sure if the changes, we assume to fix the issue will work o…
Sequence of Events in ABAP Program This article explains the usage of events in ABAP program. In a classical ABAP report, the following events are used. Load of program Initialization At s…
Parallel Cursor To Improve Your ABAP Program Performance Parallel cursor is a technique used in ABAP to enhance the performance of programs, especially when dealing with nested loops Here’s…
FILTER Operator in ABAP Internal Tables FILTER operator is used to filter entries based on any field in internal table and pass it to another internal table. To use filter on any internal t…
Please go through the collection of some basic inline declarations frequently used in ABAP new syntax coding. *<!-- Declaring variables without data element --> DATA ( lv_text ) =…
How to change Short, medium and long text of column Class: CL_SALV_COLUMN_TABLE Methods: SET_LONG_TEXT SET_MEDIUM_TEXT SET_SHORT_TEXT The ALV report by default displays the short, medium …
Optimize Column width, Change color and Hide column in OO ALV To optimize the width, change the color or hide any column we must first get the columns from ALV table using method GET_COLUM…
How to set Title and Zebra Pattern in ALV report To change the display values or settings of ALV report we must use class CL_SALV_DISPLAY_SETTINGS. The following methods are used to set the…
How To Activate functions like Filter, Sort, Layout etc in OO ALV To activate the ALV tool bar functions we have to call get_functions from ALV instance and call method set_all with abap_t…