× 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.



Just adding "allowmissing=yes" didn't help, the DS was still empty. I decided to pare things back and get at least something to work. I started pulling just the ID value from a single tag. I got that working and just expanded it. The final solution was to add another dimension to my DS. That worked and allowed me to load the whole thing with a single XML-INTO rather than five. Unfortunately, the single XML-INTO takes 50% longer than the five previously used (combined), and it now only works with "allowmissing=yes" (not sure why, since it's loading all the fields).

Working data structure:
Dcl-ds gOutputDs qualified inz ;
Dcl-ds Products ;
Products likeDs() dim() ;
End-ds ;
Dcl-ds Stages ;
Stages likeDs() dim() ;
End-ds ;
Dcl-ds productsToLoad ;
productsToLoad likeDs() dim() ;
End-ds ;
Dcl-ds loadedContainers ;
loadedContainers likeDs() dim() ;
End-ds ;
Dcl-ds unloadedProducts ;
unloadedProducts likeDs() dim();
End-ds ;
End-ds;

Thank you



-----Original Message-----
From: Jon Paris [mailto:jon.paris@xxxxxxxxxxxxxx]
Sent: Monday, August 27, 2018 12:56 PM
To: Rpg400 Rpg400-L <rpg400-l@xxxxxxxxxxxx>
Subject: Re: XML-INTO & path

OK - temporarily add allowmissing=yes to the options and see if that fixes it and you get data into the structures.

If it does then the real fix is to add the option countprefix=xxxxx ( xxxxx = your choice of name - I use count_ ) and then add the count fields to the DS. Like so:

count_Products int(5);
Products likeDs() dim() ;
count_Stages int(5);
Stages likeDs() dim() ;
etc.

See this article if you want to understand more about the option and why it is needed. https://www.itjungle.com/2015/08/18/fhg081815-story01/ <https://www.itjungle.com/2015/08/18/fhg081815-story01/>


Jon Paris

www.partner400.com
www.SystemiDeveloper.com


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.