‎2008 Oct 24 11:05 AM
Hi,
I need to write the Character ' but when i write for example :
wa-description = 'xxxx''.
he give me an error : Literals that take up more than one line not permitted.
how can i resolve that please?
Thanks for your help and your reply.
Spawnrad
‎2008 Oct 24 11:07 AM
‎2008 Oct 24 11:07 AM
‎2008 Oct 24 11:09 AM
Hi
Check the below logic.
data value(10) type c.
value = 'xxxx'''.
write value.
Cheers,
Hakim
‎2008 Oct 24 11:10 AM
‎2008 Oct 24 11:10 AM
hi,
use the statement
WRITE: ' wa-description = 'xxxx' ' '. 'REGARDS,
ANIRBAN
‎2008 Oct 24 11:12 AM
DATA : w_var type char20.
w_var = 'Swastik''s'.
WRITE / w_var.