Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to convert integer data type to character at the runtime.

Former Member
0 Likes
540

Hi

How to convert integer data type to character at the runtime.

Thanks and regards

Jatender Narang

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
480

HI,

Data: a type 1 value '12345'.

data: b(20).

b = a.

now you have the data you want in char format.

Regards

VIjay

2 REPLIES 2
Read only

Former Member
0 Likes
481

HI,

Data: a type 1 value '12345'.

data: b(20).

b = a.

now you have the data you want in char format.

Regards

VIjay

Read only

Former Member
0 Likes
480

Jatinder,

use MOVE command.

Amit.