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 »

How to convert image to text using Python in Object oriented programming

Pre-Requisties: pytesseract package needed to installed Installing Pytesseract Installation can be done in two ways in PyCharm IDE, Run the below command in the terminal window,                          pip install pytesseract  ii)Otherwise, Go to File->New Project Settings->Preferences.In the project Interpreter select the Add(+) symbol and …

How to convert image to text using Python in Object oriented programming Read More »