project BLF > class BXmlDaemonQueue > method GetDocument
Description
get document
Parameters
iiDaemonQueueId | input | integer | |
omDocument | output | memptr | Document |
oiReturnStatus | output | integer | Return status of the method. |
Internal usage
BLF
program code (program1/bxmldaemonqueue.p)
<M-1 run DataLoad
(input '' (icRowids),
input string (iiDaemonQueueId) (icPkeys),
input '' (icObjectIds),
input '' (icFreeform),
input no (ilKeepPrevious),
output viFcReturnSuper (oiReturnStatus)) in BXmlDaemonQueue>
if viFcReturnSuper <> 0
then oiReturnStatus = viFcReturnSuper.
if viFcReturnSuper < 0
then return.
for each tXmlDaemonQueue:
copy-lob from tXmlDaemonQueue.XmlDaemonQueueLOB to omDocument no-convert. /* do not convert to cpinternal */
leave.
end.