Application Development and Automation Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member
2,206

Example,

DATA : iv_var TYPE action.      "   Char 5
TRANSLATE iv_var TO UPPER CASE.
WRITE iv_var.

Now Goto  Programs-->Check-->Extended Program Check

Press Execute   or F8.


To Resolve,This Error we should use Predefined Elementary Data Types (C and String ) instead of Data Element while defining Variable.

DATA : iv_var(5) TYPE c.
TRANSLATE iv_var TO UPPER CASE.
WRITE iv_var.


Now Goto  Programs-->Check-->Extended Program Check

Press Execute .

Finally Error is Resolved .

3 Comments