Hi Raghava,
You dont have to include constants in a DATA declaration. Instead use CONSTANTS.
The syntax is
CONSTANTS lc_con(20) Value 'Confirmation'.
System automatically considers it as a Character type.
The best practice is to create a Class with all constant variables needed. Make all those variables as Static and access it like
ClassName=>ConstantName.
You can access this everywhere in your program