BDC : Batch Data Communication in SAP

Let's talk about BDC and how it can be created in the system. Before you start with a BDC program you need to create a recording in transaction SHDB, as you can see from the below screen you need to provide a recording name and a transaction code for which you want to create the … Continue reading BDC : Batch Data Communication in SAP

Important points ALV and ALV events

FM's to remember REUSE_ALV_GRID_DISPLAY. “Display ALV grid format REUSE_ALV_LIST_DISPLAY. “Display ALV List format REUSE_ALV_COMMENTARY_WRITE. “Display Top of page, logo, etc. REUSE_ALV_FIELDCATELOGUE_MERGE. “Used to generate field catalogue REUSE_ALV_EVENTS_GET. “Use events in ALV REUSE_ALV_HEIRARCHY_LIST_DISPLAY. “Display ALV Hierarchy Field Catalog Field catalog is an internal table which is used to pass a list of fields to display in … Continue reading Important points ALV and ALV events

Interactive reports in ABAP

Events in a interactive Report At Line-Selection This event will trigger whenever the user double click on any list line. At User Command This event will trigger whenever user clicks on any custom buttons of the GUI. At PF Status This event will trigger whenever user clicks on any function buttons. Top Of Page During line … Continue reading Interactive reports in ABAP

Things to know in ABAP and ALV

Modularisation techniques subroutines Function Modules Methods events dialog modules How to use FM F4IF_INT_TABLE_VALUE_REQUEST This FM is used to display the values when u press F4 on a selection field. https://wiki.scn.sap.com/wiki/display/ABAP/ON+VALUE-REQUEST+event Internal Table events or control break statements AT FIRST AT LAST AT NEW AT END OF ON CHANGE OF Important things in ALV REUSE_ALV_GRID_DISPLAY. “Display … Continue reading Things to know in ABAP and ALV

OO ALV FACTORY METHOD

CL_SALV_TABLE is the class used for this purpose When ever we use ALV factory methods to display ALV, we don`t need to create any field catalog, we can directly add our user defined tables instance as it automatically determine fields and displays. Below demonstrate a nice example REPORT ZSAPN_ALV_MARA_FACTORY. TYPES: BEGIN OF TY_MARA, MATNR TYPE … Continue reading OO ALV FACTORY METHOD

Filter in SAP ABAP

To filter out values based on a particular value The important point to note here is that the table on which you are going to apply filter must be sorted if not you have to use standard table with non unique keys which is sorted what i mean it will look something like this data … Continue reading Filter in SAP ABAP