project BLF > class BStoredSearch > 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
BStoredSearchinputdatasetclass dataset
oiReturnStatusoutputintegererror status


program code (program/bstoredsearch.p)

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

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

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

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

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

    for each t_oSSearchResultField where
        not can-find (t_sSSearchResultField where t_sSSearchResultField.tc_Rowid = t_oSSearchResultField.tc_Rowid) and
        not can-find (t_sStoredSearch where t_sStoredSearch.tc_Rowid = t_oSSearchResultField.tc_ParentRowid and t_sStoredSearch.tc_Status = "D":U):
        create t_sSSearchResultField.
        raw-transfer t_oSSearchResultField to t_sSSearchResultField.
    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.