project QadFinancials > class BAccountingInterface > method GetReportList

Description

This method is used to get the select report list from User Interface.


Parameters


tAcctIFTableoutputtemp-tableTemp table stores Account Interface Filter information.
oiReturnStatusoutputintegerReturn status of the method.


Internal usage


unused


program code (program1/baccountinginterface.p)

<M-5 run ClearData
   (output viFcReturnSuper (oiReturnStatus)) in BAccountingInterface>
empty temp-table tAcctIFTable.

<M-6 run DataLoad
   (input  '':U (icRowids), 
    input  '':U (icPkeys), 
    input  '':U (icObjectIds), 
    input  '':U (icFreeform), 
    input  false (ilKeepPrevious), 
    output viFcReturnSuper (oiReturnStatus)) in BAccountingInterface>
if viFcReturnSuper <> 0 
then assign oiReturnStatus = viFcReturnSuper.
if viFcReturnSuper < 0
then return.

for each tAcctIF:   
    create tAcctIFTable.
    <M-4 run BufferCopy
       (input  buffer tAcctIF:handle (ihFrom), 
        input  buffer tAcctIFTable:handle (ihTo), 
        output viFcReturnSuper (oiReturnStatus)) in BAccountingInterface>
    if viFcReturnSuper <> 0 
    then assign oiReturnStatus = viFcReturnSuper.
    if viFcReturnSuper < 0
    then return.
end. /* end of if available */