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

store variable = '?.

Former Member
0 Likes
983

Guru's,

Plz suggest?

abc = '?

how to pass this?

Thanks in advance,

Pooja

9 REPLIES 9
Read only

Former Member
0 Likes
966

hi pooja

constants : c1 type c value '?'.

use c1

it will work

Read only

0 Likes
966

valve should be '?

value = ' ' ? '.

Read only

0 Likes
966

hi Pooja,

instead of using single quote u can use the symbol beside numeric number one ( ` ) both looks similar only.

thanks.

Read only

0 Likes
966

HI,

DEfine it like this:

DATA: w_c(2) value '''?'.

I hope this helps,

Regards

Raju Chitale

Read only

0 Likes
966

Thanks Sir.

Regards,

Pooja Joshi.

Read only

Former Member
0 Likes
966

Hi,

data: value(10).

value = '''?'.

write:/ value.

Regards

Sudheer

Read only

0 Likes
966

hi,

if u give like value = '''?'.

then it will show an syntax error because after double qouote it will treat as a single line comment.

thanks

Read only

Former Member
0 Likes
966

Hi pooja,

For passing one single quote ( ' ) U need to use 2 single quotes.

<b>abc = ''''.</b>

Please Reffer the Program.

<b>Report zq.

data : var(3) type c.

var = '''?'.

write : 'Value of var = ' , var.</b>

<b>write : ' Var''s is Variable'.</b>

<b><REMOVED BY MODERATOR></b>

Regards,

LIJO JOHN

Message was edited by:

Alvaro Tejada Galindo

Read only

0 Likes
966

Thanks Sir.

Regards,

Pooja Joshi.