Literal

<< Click to Display Table of Contents >>

Navigation:  All About ABAP Technique > English > ABAP Tutorial > ABAP Syntax >

Literal

Literal is the way to declare directly a value in language program.

There are 2 type of literal at ABAP, these are:

1.Numeric Literal

Example :

a = 10.
b = 100.

 

2.Text Literal

Text Literal initiate dan close by sitation (').

Example :

write 'Hello, World !!'.