Please Help!!!
I have created a LiveReport which allows me to select a container and it will list all of the UNIQUE document names within the container. I knwo that I have duplicate documents within the container which I need to include... What I really need is a count where subtype = "144", "557" and "751". The code I have currently is:
SELECT dtree.name "Document Name", dtree.versionnum "Number Versions"FROM DTREE,kuaf where dtree.dataid in (SELECT dtree.DATAID FROM DTREE START WITH dtree.DATAID = %1 CONNECT BY PRIOR dtree.DATAID = dtree.PARENTID)and dtree.versionnum > 0
Your Help is GREATLY APPRECIATED
Bobby
I have created a LiveReport which allows me to select a container and it will list all of the UNIQUE document names within the container. I knwo that I have duplicate documents within the container which I need to include... What I really need is a count where subtype = "144", "557" and "751". The code I have currently is:
SELECT dtree.name "Document Name", dtree.versionnum "Number Versions"FROM DTREE,kuaf where dtree.dataid in (SELECT dtree.DATAID FROM DTREE START WITH dtree.DATAID = %1 CONNECT BY PRIOR dtree.DATAID = dtree.PARENTID)and dtree.versionnum > 0
Your Help is GREATLY APPRECIATED
Bobby