
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Using Elementary Data Type and Reference Type with Keyword VALUE in SAP ABAP
It is not possible. Check this link for details:
The correct way for using “VALUE” with elementary data type is by assigning initial value and you should use NEW operator to assign initial value.
DATA(l_value) = NEW char4( 'AAA' ).
Advertisements