Hallow Im doing a batch input from file csv (comma dilmeted) In the file I have company that ok and company name with before and after the company name word <b>''</b> how can I get rid of from that . just<b> ''</b> before and after the company name .
*--
LOOP AT itab1.
SPLIT itab1 AT ',' INTO:
itab-osek_morsh
<b>itab-company_name</b>
itab-company_code.
APPEND itab.
ENDLOOP.