‎2007 Aug 08 9:45 AM
Hi
I have a requirement where for example-
Text field has letter as ## in description - material number is ##5This is ok.
I have to change the above description as- material number is ## 5This is ok.
That is if there is no space after ## , we have to add a space in the description.
Please provide me ABAP code for that.
Regards
Deep
‎2007 Aug 08 9:49 AM
Hi,
you can work with replace.
e.g.
replace '#' with '# ' into maktx.
regards
Nicole
‎2007 Aug 08 9:49 AM
Hi,
you can work with replace.
e.g.
replace '#' with '# ' into maktx.
regards
Nicole
‎2007 Aug 08 9:52 AM
" do this first so that if there is a space it will not show double spaces
replace '## ' with '##' into maktx.
" then do this
replace '##' with '## ' into maktx.