Description
Initialize a new record in class table tDPaySel.
Parameters
| ic_ParentRowid | input | character | = tDPaySel.tc_ParentRowid |
| BDPaymentSelection | output | dataset | class dataset, containing only the newly initialized record |
| oiReturnStatus | output | integer | error status |
program code (program/bdpaymentselection.p)
assign oiReturnStatus = -98.
empty temp-table t_sDPaySel.
empty temp-table t_sDPaySelLine.
empty temp-table t_sDPaySelLineStg.
empty temp-table t_sDPaySelPayCode.
empty temp-table t_sDPaySelPayRef.
empty temp-table t_sCustomTable0.
empty temp-table t_sCustomTable1.
empty temp-table t_sCustomTable2.
create tDPaySel.
assign tDPaySel.tc_Rowid = dynamic-function("GetNumberForNew":U in {&TARGETPROCEDURE})
tDPaySel.tc_Status = "N":U.
{ includes/bfcrun.i
&procedure = "StartPersistence"
¶meters = "output vh_persistence,
output viFcReturnSuper" }
if viFcReturnSuper <> 0
then do:
assign oiReturnStatus = viFcReturnSuper.
return.
end.
assign tDPaySel.DPaySel_ID = dynamic-function ("GetNextValue":U in vh_persistence,"ObjectNumber":U).
{ includes/bfcrun.i
&procedure = "InitialValues"
¶meters = "input 'DPaySel':U,
output oiReturnStatus" }
create t_sDPaySel.
raw-transfer tDPaySel to t_sDPaySel.