Description
This empty method allows to do additional updates on class temp-tables after records were received (and validated) from outside, using method SetPublicTables.
You can start instances of other business classes to do those updates.
Parameters
oiReturnStatus | output | integer | |
Internal usage
unused
program code (program/bfixedassetdepreciation.p)
/* Create Depreciation's Posting */
<M-5 run AdditionalUpdatesPosting (output viFcReturnSuper (oiReturnStatus)) in BFixedAssetDepreciation>
if viFcReturnSuper < 0 or
oiReturnStatus = 0
then assign oiReturnStatus = viFcReturnSuper.
if oiReturnStatus < 0
then do:
<M-6 run StopExternalInstances
(output viFcReturnSuper (oiReturnStatus)) in BFixedAssetDepreciation>
return.
end.
/* Update FABook */
<M-3 run AdditionalUpdatesFAAssetBook (output viFcReturnSuper (oiReturnStatus)) in BFixedAssetDepreciation>
if viFcReturnSuper < 0 or
oiReturnStatus = 0
then assign oiReturnStatus = viFcReturnSuper.
if oiReturnStatus < 0
then do:
<M-7 run StopExternalInstances
(output viFcReturnSuper (oiReturnStatus)) in BFixedAssetDepreciation>
return.
end.
<ANCESTOR-CODE>