project QadFinancials > class BTaxRegister > method CreateTaxRegJournal

Description

Initialize a new record in class table tTaxRegJournal.


Parameters


ic_ParentRowidinputcharacter= tTaxRegJournal.tc_ParentRowid
BTaxRegisteroutputdatasetclass dataset, containing only the newly initialized record
oiReturnStatusoutputintegererror status


program code (program/btaxregister.p)

    assign oiReturnStatus = -98.

    empty temp-table t_sTaxReg.
    empty temp-table t_sTaxRegCompany.
    empty temp-table t_sTaxRegJournal.
    empty temp-table t_sTransString.
    empty temp-table t_sCustomTable0.
    empty temp-table t_sCustomTable1.
    empty temp-table t_sCustomTable2.
    find first tFcRowidConvert where
               tFcRowidConvert.tcFcOldRowid = ic_ParentRowid and
               tFcRowidConvert.tlFcOk       no-error.
    if available tFcRowidConvert
    then assign ic_ParentRowid = tFcRowidConvert.tcFcNewRowid.

    find tTaxReg where
         tTaxReg.tc_Rowid = ic_ParentRowid no-error.
    if not available tTaxReg
    then do:
        { includes/bfcrun.i
          &PROCEDURE  = "SetMessage"
          &PARAMETERS = "input 'Invalid parent ID':U,
                         input '',
                         input 'tTaxReg.tc_Rowid':U,
                         input ic_ParentRowid,
                         input 'S':U,
                         input 3,
                         input ic_ParentRowid,
                         input '',
                         input '',
                         input '',
                         input '',
                         output oiReturnStatus" }
        assign oiReturnStatus = -3.
        return.
    end.

    create tTaxRegJournal.
    assign tTaxRegJournal.tc_Rowid  = dynamic-function("GetNumberForNew":U in {&TARGETPROCEDURE})
           tTaxRegJournal.tc_Status = "N":U.
    { includes/bfcrun.i
      &procedure  = "StartPersistence"
      &parameters = "output vh_persistence,
                     output viFcReturnSuper" }
    if viFcReturnSuper <> 0
    then do:
        assign oiReturnStatus = viFcReturnSuper.
        return.
    end.
    assign tTaxRegJournal.TaxRegJournal_ID = dynamic-function ("GetNextValue":U in vh_persistence,"ObjectNumber":U).
    assign tTaxRegJournal.tc_ParentRowid = tTaxReg.tc_Rowid
           tTaxRegJournal.TaxReg_ID = tTaxReg.TaxReg_ID.
    { includes/bfcrun.i
      &procedure  = "InitialValues"
      &parameters = "input 'TaxRegJournal':U,
                     output oiReturnStatus" }

    create t_sTaxRegJournal.
    raw-transfer tTaxRegJournal to t_sTaxRegJournal.
    assign t_sTaxRegJournal.tc_ParentRowid = ic_ParentRowid.