project BLF > class Proxy Component > method SetFullMarshall
Description
set ttmarshal property of the temp-tables of a dataset to 'Full"
Parameters
bzDataSet | input-output | dataset-handle | the dataset handle |
oiReturnStatus | output | integer | Return status of the method. |
Internal usage
BLF
program code (program1/proxycomponentnew.p)
IF NOT VALID-HANDLE(bzDataSet) THEN RETURN.
DO viCnt = 1 TO bzDataSet:NUM-BUFFERS:
vhBuffer = bzDataSet:GET-BUFFER-HANDLE(viCnt).
vhTable = vhBuffer:TABLE-HANDLE.
vhTable:SCHEMA-MARSHAL = "FULL":U.
END.