project QadFinancials > class BRecurringEntry > method SetPublicTables

Description

Updates the contents of the class dataset.
When requested, the input data will be validated first, and the class dataset will only be updated when the input data is correct.
When no validation is requested, the input data is written to the class dataset unconditionally, but this data cannot be written to the database (method DataSave will return an error). The data can only be saved as a draft instance.


Parameters


il_Validateinputlogicalvalidate input data
BRecurringEntryinputdatasetclass dataset
oiReturnStatusoutputintegererror status


program code (program/brecurringentry.p)

    for each t_sRecEntry:
        if t_sRecEntry.tc_Status = "D":U
        then do:
            run gipr_Delete_sRecEntryLine (input t_sRecEntry.tc_Rowid).
        end.
        find first tFcRowidConvert where
                   tFcRowidConvert.tcFcOldRowid = t_sRecEntry.tc_Rowid and
                   tFcRowidConvert.tlFcOk       no-error.
        if available tFcRowidConvert
        then assign t_sRecEntry.tc_Rowid = tFcRowidConvert.tcFcNewRowid.
    end.

    for each t_oRecEntry where
        not can-find (t_sRecEntry where t_sRecEntry.tc_Rowid = t_oRecEntry.tc_Rowid):
        create t_sRecEntry.
        raw-transfer t_oRecEntry to t_sRecEntry.
    end.

    for each t_sRecEntryLine:
        find first tFcRowidConvert where
                   tFcRowidConvert.tcFcOldRowid = t_sRecEntryLine.tc_ParentRowid and
                   tFcRowidConvert.tlFcOk       no-error.
        if available tFcRowidConvert
        then assign t_sRecEntryLine.tc_ParentRowid = tFcRowidConvert.tcFcNewRowid.
        find first tFcRowidConvert where
                   tFcRowidConvert.tcFcOldRowid = t_sRecEntryLine.tc_Rowid and
                   tFcRowidConvert.tlFcOk       no-error.
        if available tFcRowidConvert
        then assign t_sRecEntryLine.tc_Rowid = tFcRowidConvert.tcFcNewRowid.
    end.

    for each t_oRecEntryLine where
        not can-find (t_sRecEntryLine where t_sRecEntryLine.tc_Rowid = t_oRecEntryLine.tc_Rowid) and
        not can-find (t_sRecEntry where t_sRecEntry.tc_Rowid = t_oRecEntryLine.tc_ParentRowid and t_sRecEntry.tc_Status = "D":U):
        create t_sRecEntryLine.
        raw-transfer t_oRecEntryLine to t_sRecEntryLine.
    end.

    if il_Validate
    then do:
        { includes/bfcrun.i
          &procedure  = "CheckValidationExceptionList"
          &parameters = "input true, output vl_validate" }
    end.

    if vl_Validate
    then do:
        { includes/bfcrun.i
          &procedure  = "gipr_CompleteSTables" }
        { includes/bfcrun.i
          &procedure  = "ValidateComponent"
          &parameters = "output oiReturnStatus" }
    end.

    if oiReturnStatus >= 0
    then do:
        { includes/bfcrun.i
          &procedure  = "gipr_SetTables"
          &parameters = "output viFcReturnSuper" }
        if viFcReturnSuper <> 0
        then assign oiReturnStatus = viFcReturnSuper.
    end.

    if  il_Validate
    and oiReturnStatus >= 0
    then do:
        { includes/bfcrun.i
          &procedure  = "AdditionalUpdates"
          &parameters = "output viFcReturnSuper" }
        if viFcReturnSuper <> 0
        then assign oiReturnStatus = viFcReturnSuper.
    end.

    if oiReturnStatus >= 0
    then assign vlFcDataValidated = il_Validate.