SAP ABAP

Class Builder

The ABAP classes, exception classes and interfaces are created using the Class Builder. The Class Builder is called through the SE24 Transaction. Name:  Provide a corresponding class name. Class type: There are four different types of ABAP classes. Usual ABAP classes Exception classes Persistent classes Test classes Final check option:  Enabling this option ensures that …

Class Builder Read More »

Understanding Web dynpro component

Web dynpro component 1. component controller => methods,events => Generates data 2. Component interface => Interface controller => methods,events =>Generates data 3. Views => Screen elements, controller, context, plugs => Receives data and stores. 4. Windows => Views, plugs, window controller

How to compare two tables of data using ABAP

TYPES: BEGIN OF star, star_name type c length 50, END OF star. DATA star_2018 TYPE star. DATA star_2019 type star. DATA it_table_2018 TYPE STANDARD TABLE OF star. DATA it_table_2019 TYPE STANDARD TABLE OF star. FIELD-SYMBOLS <star_2018> LIKE LINE OF it_table_2018. FIELD-SYMBOLS <star_2019> LIKE LINE OF it_table_2019. star_2018-star_name = ‘Logan paul’. APPEND star_2018 TO it_table_2018. star_2018-star_name …

How to compare two tables of data using ABAP Read More »

Value help ABAP

Search help in data table •The way, the input help defined can be verified under the Entry help/check tab of the data table. The respective column to be checked is „origin of the input help“. •Data Element –> Explicit search help attachment to data element •Domain–>Input help with fixed values, input help based on data …

Value help ABAP Read More »

Hello World – ABAP REPORT

In every programming language, an explanation is given to the “Hello World” program. ABAP is no different. Here in this post, in addition to ‘Hello World’ program explanation, we will see where the ‘Hello World’ program is stored and executed. Which development object is used to create the ‘Hello World’ Report Program development object is …

Hello World – ABAP REPORT Read More »