ABAP program is a combination of executable and non-executable statements. Every executable statement in ABAP starts with a keyword and ends with a period(.).
First executable statement starts with REPORT keyword followed by the report-name (same as the program name) and ends with period.
This first statement automatically written by the editor even though the program is creating for the first time.
Category Archives: SAP Tutorial
Genrally, the reports are made with clear indentation, alignment and formatting of information. To create a report programmatically, the indentation, alignment and formatting of information should be handled through programming.
What is String? Strings are set of characters arranged in sequence. Strings also called as character strings. Character or string data type is used to declare the character strings in ABAP. Character data type holds alphanumeric characters with minimum length of 1 character and maximum of 65535 characters. Character data type is left justified and […]
Date and Time plays key role in application programming. Most of the reports identifies by using the date and time they generated or date & time written on it.
Step-1: Go to SM59 transaction code.
SAP ABAP Keywords Summary – In this topic, we described about the below sections – ABAP Keywords What is keyword? Keyword Types Declarative keyword Modularization keyword Event keyword Defining keyword Control keyword Call keyword Operational keyword Database keyword What is a keyword? The first element of the ABAP statement is called as ABAP keyword. A […]
Complex data types are created with the combination of elementary types. ABAP supports complex data types. Complex types allow us to manage and process conceptually-related data under a single name. Complex types can be processed as a whole or individually.
What is Literal? Literal is a data object that specifies character like values. Literal defined in the source code of the program. Literals are fully defined by their values. The value of the literal can’t be changed. The fixed values assigned to a constant can also consider as literals. There are two types of literals […]
What is Constant? Constants are named objects that are used to store a fixed value and the value is fixed during program execution from begining to ending. The difference between constants and variables are, variables value can change any time however the constant value is fixed and can’t be changed. Constants are similar to variables […]
What is Variable? Variable are named data objects that refers to the memory location allocated during the program execution for processing. Variable contains data and act as a referring name for the data. We can modify data, change data, clear data or apply operations on the data with help of the variable. Each variable should […]
