As ABAP Consultant, sometimes we need a program to find a text in all ABAP Repositories. These are the methods to search string across all ABAP Program . 1.Using ABAP Program : RPR_ABAP_SOURCE_SCAN You simply type in what string to look for in the “String Searched For” field. If you want to scan through ABAP […]
Category: ABAP Beginner Tutorial
ABAP Data Dictionary Overview – Part 6
What is Data Dictionary in SAP ABAP ABAP data dictionary is where database objects are created and maintained. You don’t create any database objects directly in your database system; you create them only in the data dictionary. Some of the terminology around an SAP system may be slightly different than what you may have learned […]
ABAP Flow Control – Part 4
SAP ABAP Tutorial for Beginner – Previously we have learned how to do calculation in ABAP using Arithmetic and Math Functions, Now we will learn ABAP Flow Control, this article cover how to add logic to our ABAP Programming. As another programming, we also know logic operation such as : IF .. ELSE , WHILE, […]
Data Types in ABAP Program – Part 2
SAP ABAP Tutorial – In ABAP, one of the first actions you typically take is defining variables that will store the data you use. Such variables represent locations in memory where data will be stored. The data could be numeric, such as an integer (123), or alphabetic, such as a character (a) or string of […]
Creating new ABAP Program using transaction SE80 – Part 1
SAP ABAP Tutorial – If you are using Transaction SE80 as your ABAP IDE, select PROGRAM from the dropdown in the center of the left side of the screen, type “ZHELLOWORLD” in the textbox below it, and press ENTER. You will be prompted with a popup asking if you want to create the program ZHELLOWORLD; […]