Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to use constant in ABAP program which has trailing space?
This is because you are declaring constant as type c. The type c variable always trims the trailing space. I would suggest you define it as string as follows
CONSTANTS: co_abc type string value ' b '.
This will keep the trailing spaces.
Advertisements
