‎2007 Jun 13 9:56 PM
a = '27#'.
search a for '#'.
write : sy-fdpos.
From this code how would I drop the # sign so that the result is a = '27'. Would I use REPLACE and SPACE?
‎2007 Jun 13 9:57 PM
‎2007 Jun 13 9:57 PM
‎2007 Jun 13 10:01 PM
Just:
DATA: a(3) VALUE '27#'.
REPLACE '#' WITH '' INTO a.
(No space between the single quotes)
But after further checking, I don't think this is what you want.
Rob
Message was edited by:
Rob Burbank
‎2007 Jun 13 10:08 PM
in the other you can use 'OVERLAY' & 'CONDENSE'.
regards,
*DJ
Reward, if its useful