project QadFinancials > class BEmployee > method CreateEmployee

Description

Initialize a new record in class table tEmployee.


Parameters


ic_ParentRowidinputcharacter= tEmployee.tc_ParentRowid
BEmployeeoutputdatasetclass dataset, containing only the newly initialized record
oiReturnStatusoutputintegererror status


program code (program/bemployee.p)

    assign oiReturnStatus = -98.

    empty temp-table t_sEmployee.
    empty temp-table t_sCustomTable0.
    empty temp-table t_sCustomTable1.
    empty temp-table t_sCustomTable2.
    create tEmployee.
    assign tEmployee.tc_Rowid  = dynamic-function("GetNumberForNew":U in {&TARGETPROCEDURE})
           tEmployee.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 tEmployee.Employee_ID = dynamic-function ("GetNextValue":U in vh_persistence,"ObjectNumber":U).
    { includes/bfcrun.i
      &procedure  = "InitialValues"
      &parameters = "input 'Employee':U,
                     output oiReturnStatus" }

    create t_sEmployee.
    raw-transfer tEmployee to t_sEmployee.