Hello All,
I have an incoming XML file which is in the below format;
<?xml version="1.0" encoding="utf-8"?>
<REQ_TITLE>
<LANG_CD>da</LANG_CD>
<LANG_DESCR>Lang Desc - 1</LANG_DESCR>
<LANG_CD>en</LANG_CD>
<LANG_DESCR>Lang Desc - 2</LANG_DESCR>
</REQ_TITLE>
Using this XML file, the language table should be populated in the below format;
When I use the XML source editor, it creates different output names for LANG_CD and LANG_DESCR element of XML with a common key between the tables.
I am not sure how to populate the database table in the above format.