2005 Jul 28 10:22 AM
Hi all,
Can any body help me in retrieving 4th level node in LDB. I am using PGQ ldb.
The hierarchy goes as below.
QALS:
---QALT
-
QALTPO
-
QALTPP
-
QALTPPMV
-
QALTPPSV
I want to retrieve the data from "QALTPPMV".
Please help me.
Thanks in advance.
Santala.
2005 Jul 28 10:38 AM
Hi Santala,
consider the following example:
REPORT ZPROVA.
nodes: QALTPPMV.
data: tab type table of QALTPPMV with header line.
here we read the lines of 4th level
get QALTPPMV.
append QALTPPMV to tab.
finally, print all (not required)
end-of-selection.
loop at tab.
write: / tab.
endloop.
I hope it helps.
Best regards, Manuel