SAP Managed Tags: ABAP Development Hi, We have packaged an ABAP Add-On in one of our development systems and installed it on a test system using transaction SAINT. We now need to remove this Add-On from the test system to re-test deployment. Has anyone ever successufully removed an AB...
DATA lt_string_1 TYPE TABLE OF string. DATA lt_string_2 TYPE TABLE OF string WITH HEADER LINE. CLEAR lt_string_1[]. CLEAR lt_string_2[]. Expected result: DATA lt_string_1 TYPE TABLE OF string. DATA lt_string_2 TYPE TABLE OF string WITH HEADER LINE. CLEAR lt_string_1. CLEAR lt...
This where condition eliminated the spaces from the string sql variable @str which is converted into XML data type in variable @xml and then converted into rows using theFROM @xml.nodes()method. The second task to remove extra spaces from character variable is concatenating the parsed words wit...