Application Development 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: 

How to Delimit the Single quotes ( ' )

Former Member
0 Kudos

Hi friends.

how to delimite the single quotes ( ' ) or

how to move the single quotes in fields.

any body pls reply

thanks

pauldharma

3 REPLIES 3

Former Member
0 Kudos

Hi,

Use for single quotes and that will result in a single quote.

i.e.

lv_quote = ''''.

Darren

Former Member
0 Kudos

Sorry wrong post.

0 Kudos

Please try the below code and it is resulting in filling ' (single quote into X1)

DATA: X1 TYPE C.

WRITE: 'X1', X1.

X1 = ''''.

WRITE: 'X1', X1.

OUTPUT: X1 X1 '