×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
I am trying to create my first program using xml-into.
I am not getting any errors when it executes but the structure that I am
trying to get receive the data into is blank.
I searched the archives and found others that have had the same problem,
I tried to follow the advise that was given but I am still getting
blanks.
Here is my code:
D XML_File S 50A INZ(*BLANKS)
D SplitData2 DS QUALIFIED DIM(500)
D Loc 3A
D Dept 2A
D Chart 4A
D Amount 11A
D Units 11A
D SubDept 3A
D SubChart 4A
D Project 4A
D RS 10A
D Emp 5A
/Free
xml_file = '/tmp/1228871442_1025012111/testqwest.xml'
xml-into SplitData2 %XML(%TRIM(xml_file) :
'doc=file ' +
'path=QWEST/CodingSplits ' +
'allowextra=yes ' +
'allowmissing=yes');
*INLR = *ON;
This is the xml file that is in an IFS folder:
<QWEST>
<CodingSplits>
<Loc>90</Loc>
<Dept>9</Dept>
<Chart>7505</Chart>
<Amount>0</Amount>
<Units>0</Units>
<SubDept>0</SubDept>
<SubChart>0</SubChart>
<Project>0</Project>
<RS>0</RS>
<Emp>0</Emp>
</CodingSplits>
<CodingSplits>
<Loc>90</Loc>
<Dept>9</Dept>
<Chart>7502</Chart>
<Amount>2579.0697200682</Amount>
<Units>0</Units>
<SubDept>0</SubDept>
<SubChart>0</SubChart>
<Project>0</Project>
<RS>0</RS>
<Emp>0</Emp>
</CodingSplits>
</QWEST>
Any help would be greatly appreciated.
Thanks
Jon
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.