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_Validate | input | logical | validate input data |
BFixedAssetDepreciation | input | dataset | class dataset |
oiReturnStatus | output | integer | error status |
program code (program/bfixedassetdepreciation.p)
for each t_sFADepreciation:
if t_sFADepreciation.tc_Status = "D":U
then do:
run gipr_Delete_sFADepreciationDet (input t_sFADepreciation.tc_Rowid).
run gipr_Delete_sFADepreciationPosting (input t_sFADepreciation.tc_Rowid).
end.
find first tFcRowidConvert where
tFcRowidConvert.tcFcOldRowid = t_sFADepreciation.tc_Rowid and
tFcRowidConvert.tlFcOk no-error.
if available tFcRowidConvert
then assign t_sFADepreciation.tc_Rowid = tFcRowidConvert.tcFcNewRowid.
end.
for each t_oFADepreciation where
not can-find (t_sFADepreciation where t_sFADepreciation.tc_Rowid = t_oFADepreciation.tc_Rowid):
create t_sFADepreciation.
raw-transfer t_oFADepreciation to t_sFADepreciation.
end.
for each t_sFADepreciationDet:
if t_sFADepreciationDet.tc_Status = "D":U
then do:
run gipr_Delete_sFADepreciationDetSaf (input t_sFADepreciationDet.tc_Rowid).
end.
find first tFcRowidConvert where
tFcRowidConvert.tcFcOldRowid = t_sFADepreciationDet.tc_ParentRowid and
tFcRowidConvert.tlFcOk no-error.
if available tFcRowidConvert
then assign t_sFADepreciationDet.tc_ParentRowid = tFcRowidConvert.tcFcNewRowid.
find first tFcRowidConvert where
tFcRowidConvert.tcFcOldRowid = t_sFADepreciationDet.tc_Rowid and
tFcRowidConvert.tlFcOk no-error.
if available tFcRowidConvert
then assign t_sFADepreciationDet.tc_Rowid = tFcRowidConvert.tcFcNewRowid.
end.
for each t_oFADepreciationDet where
not can-find (t_sFADepreciationDet where t_sFADepreciationDet.tc_Rowid = t_oFADepreciationDet.tc_Rowid) and
not can-find (t_sFADepreciation where t_sFADepreciation.tc_Rowid = t_oFADepreciationDet.tc_ParentRowid and t_sFADepreciation.tc_Status = "D":U):
create t_sFADepreciationDet.
raw-transfer t_oFADepreciationDet to t_sFADepreciationDet.
end.
for each t_sFADepreciationDetSaf:
find first tFcRowidConvert where
tFcRowidConvert.tcFcOldRowid = t_sFADepreciationDetSaf.tc_ParentRowid and
tFcRowidConvert.tlFcOk no-error.
if available tFcRowidConvert
then assign t_sFADepreciationDetSaf.tc_ParentRowid = tFcRowidConvert.tcFcNewRowid.
find first tFcRowidConvert where
tFcRowidConvert.tcFcOldRowid = t_sFADepreciationDetSaf.tc_Rowid and
tFcRowidConvert.tlFcOk no-error.
if available tFcRowidConvert
then assign t_sFADepreciationDetSaf.tc_Rowid = tFcRowidConvert.tcFcNewRowid.
end.
for each t_oFADepreciationDetSaf where
not can-find (t_sFADepreciationDetSaf where t_sFADepreciationDetSaf.tc_Rowid = t_oFADepreciationDetSaf.tc_Rowid) and
not can-find (t_sFADepreciationDet where t_sFADepreciationDet.tc_Rowid = t_oFADepreciationDetSaf.tc_ParentRowid and t_sFADepreciationDet.tc_Status = "D":U):
create t_sFADepreciationDetSaf.
raw-transfer t_oFADepreciationDetSaf to t_sFADepreciationDetSaf.
end.
for each t_sFADepreciationPosting:
find first tFcRowidConvert where
tFcRowidConvert.tcFcOldRowid = t_sFADepreciationPosting.tc_ParentRowid and
tFcRowidConvert.tlFcOk no-error.
if available tFcRowidConvert
then assign t_sFADepreciationPosting.tc_ParentRowid = tFcRowidConvert.tcFcNewRowid.
find first tFcRowidConvert where
tFcRowidConvert.tcFcOldRowid = t_sFADepreciationPosting.tc_Rowid and
tFcRowidConvert.tlFcOk no-error.
if available tFcRowidConvert
then assign t_sFADepreciationPosting.tc_Rowid = tFcRowidConvert.tcFcNewRowid.
end.
for each t_oFADepreciationPosting where
not can-find (t_sFADepreciationPosting where t_sFADepreciationPosting.tc_Rowid = t_oFADepreciationPosting.tc_Rowid) and
not can-find (t_sFADepreciation where t_sFADepreciation.tc_Rowid = t_oFADepreciationPosting.tc_ParentRowid and t_sFADepreciation.tc_Status = "D":U):
create t_sFADepreciationPosting.
raw-transfer t_oFADepreciationPosting to t_sFADepreciationPosting.
end.
if il_Validate
then do:
{ includes/bfcrun.i
&procedure = "CheckValidationExceptionList"
¶meters = "input true, output vl_validate" }
end.
if vl_Validate
then do:
{ includes/bfcrun.i
&procedure = "gipr_CompleteSTables" }
{ includes/bfcrun.i
&procedure = "ValidateComponent"
¶meters = "output oiReturnStatus" }
end.
if oiReturnStatus >= 0
then do:
{ includes/bfcrun.i
&procedure = "gipr_SetTables"
¶meters = "output viFcReturnSuper" }
if viFcReturnSuper <> 0
then assign oiReturnStatus = viFcReturnSuper.
end.
if il_Validate
and oiReturnStatus >= 0
then do:
{ includes/bfcrun.i
&procedure = "AdditionalUpdates"
¶meters = "output viFcReturnSuper" }
if viFcReturnSuper <> 0
then assign oiReturnStatus = viFcReturnSuper.
end.
if oiReturnStatus >= 0
then assign vlFcDataValidated = il_Validate.