‎2009 May 14 4:30 PM
Hallo
I have a probelm
I want to check in a if block the value of single quotation mark '
how can I do it in sap
regards
‎2009 May 14 4:41 PM
I don't know your exact situation, but for me this works:
PARAMETERS : p_string TYPE string LOWER CASE.
IF p_string CA ''''.
WRITE:/ 'Yes'.
ELSE.
WRITE:/ 'No'.
ENDIF.