‎2009 Nov 06 11:26 AM
Hi all,
While creating Sales Order i have to check requisition no. If it is 14 char i have to check that no special character will be there.
Is there any function module that will give the special characters.
Thank & Regards
-
Somen Das
‎2009 Nov 06 11:30 AM
‎2009 Nov 06 11:32 AM
Hi Somen
Try the FM CHECK_STRING_SPEC_CHARACTERS.
Thanks
Pushpraj
‎2009 Nov 06 12:30 PM
‎2009 Nov 06 4:59 PM
‎2009 Nov 19 10:21 AM
Hi,
In Spain to manage this special characters there is a module function to handle them, but you must define the special character that you are looking for. You can check the module function with SE37 ES_REMOVE_SPECIAL_CHARACTER as a model and create your own module function.
I hope this helps you
Regards,
Eduardo
Edited by: Eduardo Hinojosa on Nov 19, 2009 11:21 AM
‎2009 Nov 19 10:49 AM
find REGEX '[[:punct:]]' in text1.
if sy-subrc = 0.
write 'Found'.
endif.