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



Chuck-

Thanks for this information. That pdf has some great info on the RCTE's. It looks like it is only with V5R4 and later releases.

On another point, you can do recursive overview cards in PowerLink (at least rel 7.7).

-Tom



-----Original Message-----
From: mapics-l-bounces@xxxxxxxxxxxx [mailto:mapics-l-bounces@xxxxxxxxxxxx] On Behalf Of CRPence
Sent: Friday, May 15, 2009 7:52 AM
To: 'mapics-l@xxxxxxxxxxxx'
Subject: Re: [MAPICS-L] BOM Explosion

I think the SEARCH DEPTH FIRST clause is required for the recursive CTE to properly expand the item are nested properly, and generate\establish a sorting column.

http://www.google.com/#q=recursive+query+bom+explode+depth+first
www.ibm.com/systems/resources/systems_i_software_db2_pdf_rcte_olap.pdf

Of possible note, the recursive CTE is referred to as RCTE in the above article; i.e. possible value as a search token

Regards, Chuck

Tom E Stieger wrote:
Here is an SQL that works to start with.

WITH temp_pstruc (RELVL, ITEM, QTY) AS
(
SELECT 0, PINBR, 0
FROM AMFLIBP/PSTRUC where pinbr like '%5022322%'
UNION ALL SELECT a.relvl + 1, b.cinbr, b.qtypr
FROM temp_pstruc AS a join amflibp/pstruc AS b
on ITEM = b.pinbr
)

SELECT DISTINCT *
FROM temp_pstruc

Here is the resulting data, which is valid based on my source

RELVL ITEM QTY
0 5022322 .000
1 7022322 1.000
1 7022322.1 1.000
1 10566.16 2.000
2 7022322.2 1.000
2 9022322 1.000
2 7022322.3 1.000
2 9022322.1 1.000

It is not quite in the order that I want though. Does anyone know how to get it to order like this:

RELVL ITEM QTY
0 5022322 .000
1 7022322 1.000
2 7022322.2 1.000
2 9022322 1.000
1 7022322.1 1.000
2 7022322.3 1.000
2 9022322.1 1.000
1 10566.16 2.000


***DISCLAIMER - Use this SQL at your own risk. I am not responsible
if your recursion loops indefinitely.***

CRPence wrote:

My browser is unavailable, but what about searching the web for examples of recursive SQL queries to do that? I seem to recall running across one or two when trying to learn about recursive queries. SQL is available on all IBM i & i5/OS; later releases support recursive queries [with restriction to the SQL Query Engine; SQE, which means query of the physical file(s) only]. HTH.


Bob Voltz wrote:
<<SNIP>>

I am looking for a program that will do a BOM Explosion and produce
results that match MAPICS Inquiry AMEC72.

It needs to output to a file.

Someone did send me a program that will blow through the BOM, but the
quantities don't match the MAPICS Inquiry AMEC72.
_______________________________________________
This is the MAPICS ERP System Discussion (MAPICS-L) mailing list To post a message email: MAPICS-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/mapics-l
or email: MAPICS-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at http://archive.midrange.com/mapics-l.




As an Amazon Associate we earn from qualifying purchases.

This thread ...


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.