Description
ValidateBCAndAdditionalUpdates; method that will execute methods ValidateBC and AddtionalUpdates.
Parameters
oiReturnStatus | output | integer | Return status of the method. |
Internal usage
QadFinancials
program code (program9/bpostingtemplate.p)
/* Validate */
<M-1 run ValidateBC (output viFcReturnSuper (oiReturnStatus)) in BPostingTemplate>
if viFcReturnSuper <> 0
then do :
assign oiReturnStatus = viFcReturnSuper.
if oiReturnStatus < 0
then return.
end. /* if viFcReturnSuper <> 0 */
/* Additional updates */
<M-2 run AdditionalUpdates (output viFcReturnSuper (oiReturnStatus)) in BPostingTemplate>
if viFcReturnSuper <> 0
then do :
assign oiReturnStatus = viFcReturnSuper.
if oiReturnStatus < 0
then return.
end. /* if viFcReturnSuper <> 0 */