project BLF > class Proxy Component > method SetFullMarshall

Description

set ttmarshal property of the temp-tables of a dataset to 'Full"


Parameters


bzDataSetinput-outputdataset-handlethe dataset handle
oiReturnStatusoutputintegerReturn status of the method.


Internal usage


BLF
method PMfgPro.CallService


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.