Almost a year back, I was writing some happy-code to consume an external web service from ABAP. As the web service was returning the result data in the form of an XML string, I ended up writing a Simple Transformation to get the values in ABAP internal table.
Consuming webservice from ABAP is not the topic of this post but if you need help on this then please check the blogs on SDN. However, If you need to post an answer on a twitter-interview ( similar to a telephonic interview but held on twitter ) then there you go :Xn SE80->Repository Browser->Enterprise Services->[ right click to bring the context menu ] -->Create Proxy [ use WSDL URL e.g. http://www.webservicex.net/uklocation.asmx?WSDL to generate proxy through wizard ]. Xn LPCONFIG to configure the logical port.
Back to the topic, I spotted this magic-stick in Simple Transformation editor [ Transaction XSLT_TOOL ] and tried to make it work. But could not decipher and wrote the ST manually, instead. Interestingly, I could not find any information about this so called "Edit Simple Transformation Graphically" feature. In my defence, I searched on SAP OSS, SAP Help & SDN. There you go ...Well search feature on SAP Sites.. is great anyway ;)
A year later, I just happened to be adoring ( developers do this often ) my old code and it reminded me of this utility. I tried figuring out once again and managed to discover something worth sharing.
Service proxy call provides data in the form of XML result. Code for proxy call is as below:
CREATE OBJECT LO_UK_LOCATION. TRY. lv_input-POST_CODE = p_post. CALL METHOD LO_UK_LOCATION->GET_UKLOCATION_BY_POST_CODE EXPORTING INPUT = lv_input IMPORTING OUTPUT = lv_output. CATCH CX_AI_SYSTEM_FAULT . WRITE : 'CX_AI_SYSTEM_FAULT'. CATCH CX_AI_APPLICATION_FAULT . WRITE : 'CX_AI_APPLICATION_FAULT'. ENDTRY.
Now the result variable lv_output will be having the data in the form of an XML string as below.
Tip: You can use a function module SCOL_TRACE_SHOW_XML to show the XML data on screen.
<NewDataSet>In order to transform the XML to ABAP internal table, I decided to use Simple Transformation. Now I will generate the simple transformation as below:
<Table>
<Town>Balthangie</Town>
<County>Aberdeenshire</County>
<PostCode>AB53</PostCode>
</Table>
<Table>
<Town>Bankhead</Town>
<County>Aberdeenshire</County>
<PostCode>AB51</PostCode>
</Table>
</NewDataSet>
- Create Table Type ZNEWDATASET in transaction SE11. The hierarchy structure should be compatible with the XML hierarchy.
- Now create the ST program in transaction XSLT_TOOL. Spot the magic stick in the editor menu.
- Click on 'Edit Simple Transformation Graphically' button (magic stick) and you will get the editor as below. Create a new root (right click - context menu ) in "Data Roots" section. I've named it NEWDATASET but the important thing is to enter the correct type, created earlier.
- Now you can see the data root hierarchy as below. Drag and Drop the NEWDATASET root on right panel ( Simple Transfromation ). It automaically generates the ST nodes corresponding to the ABAP structure. However, you need to adjust the names as per the XML element names.
- Now adjust the names in ST panel as per actual XML element names.
- Save and Activate. The ST program (Z_TEST), generated by the utility, is as below:
<?sap.transform simple?>
<tt:transform xmlns:tt="http://www.sap.com/transformation-templates" xmlns:ddic="http://www.sap.com/abapxml/types/dictionary" xmlns:def="http://www.sap.com/abapxml/types/defined">
<tt:root name="NEWDATASET" type="ddic:ZNEWDATASET"/>
<tt:template>
<NewDataSet>
<tt:loop ref=".NEWDATASET">
<Table>
<Town tt:value-ref="TOWN"/>
<County tt:value-ref="COUNTY"/>
<PostCode tt:value-ref="POST_CODE"/>
</Table>
</tt:loop>
</NewDataSet>
</tt:template>
</tt:transform> - Now use the code below to get data into ABAP internal table.
data : result type ZNEWDATASET, "itab of table type ZNEWDATASET wa_result like line of result. call transformation Z_TEST source xml lv_output-GET_UKLOCATION_BY_POST_CODE_R result newdataset = result[]. LOOP AT result into wa_result. WRITE :/ wa_result-TOWN, wa_result-COUNTY, wa_result-POST_CODE. ENDLOOP.
By the way, I checked this on SAP ECC6.0. I will try to explore further for complex XML e.g. elements having attributes.
Please do add your inputs, if you managed to check this out or have done this before.
Updated:
SAP Help document for ST is at http://help.sap.com/abapdocu/en/ABENABAP_XML.htm
* It's better to Display XML from ABAP as below :
cl_abap_browser=>show_xml( EXPORTING xml_string = xml_string ).









4 comments:
Hello,
I am studying a couple of blogs, documentations in this topic. All the examples mention this cl_abap_browser class, which doesn't exist in our ECC 6.0 system. Please tell us more information about this class. Thank you.
Best regards,
Laszlo.
you can use function SCOL_TRACE_SHOW_XML to show the xml on screen as an alternative. Also, displaying the xml on the screen is generally for test purpose only.
I think class cl_abap_browser is available in ABAP Release 7.1 and not in ABAP 7.0
hi,
in the xslt_tool i could not find the magic stick. I am getting a dump ST_MATCH_FAIL. I have written ST program similar to the one that you mentioned here. I am getting connected to 'http://209.162.186.60/globalweather.asmx /GetCitiesByCountry?CountryName='
how to proceed
Post a Comment
comment