sap - Translate ABAP Code into SQL -
i have following abap code need convert sql.
there function replace empty spaces in sql, how apply on code?
data: s1 type string. data: s2 type string. s1 = source_fields_rule-matnr. condense s1 no-gaps. s2 = s1+0(11). result = s2. i had thought that:
select replace (material, ' ', ''); could this, replace material numbers within own field?
Comments
Post a Comment