Please help me solve my problem.
This is my code and as shown, I want to fetch the balance corresponding to a particular id and update it.
select balance in :h1-bal
from tblname
where id = :h1-id
compute h1-bal = h1-bal + 10.50
from tblname
where id = :h1-id
compute h1-bal = h1-bal + 10.50
The problem is that my h1-bal is declared in dclgen as follows
h1-bal pics9(2)v9(2) usage is comp-3.
Now, when I try to access the value fetched from the table, it is shown as .........
What should i do?