DBA Data[Home] [Help]

APPS.OKL_ASD_PVT dependencies on OKL_API

Line 525: x_return_status := OKL_API.G_RET_STS_SUCCESS;

521: roundoff_error EXCEPTION;
522:
523: BEGIN
524:
525: x_return_status := OKL_API.G_RET_STS_SUCCESS;
526:
527: -- Take original record values
528: x_asdv_rec := p_asdv_rec;
529:

Line 540: p_asdv_rec.cost <> OKL_API.G_MISS_NUM) THEN

536: --dbms_output.put_line('Round off start '||l_currency_code);
537: -- Round off all Asset Transaction Line Amounts
538: IF (p_asdv_rec.cost IS NOT NULL
539: AND
540: p_asdv_rec.cost <> OKL_API.G_MISS_NUM) THEN
541:
542: l_conv_amount := NULL;
543: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
544: p_amount => p_asdv_rec.cost,

Line 553: p_asdv_rec.salvage_value <> OKL_API.G_MISS_NUM) THEN

549: END IF;
550:
551: IF (p_asdv_rec.salvage_value IS NOT NULL
552: AND
553: p_asdv_rec.salvage_value <> OKL_API.G_MISS_NUM) THEN
554:
555: l_conv_amount := NULL;
556: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
557: p_amount => p_asdv_rec.salvage_value,

Line 568: x_return_status := OKL_API.G_RET_STS_ERROR;

564: --dbms_output.put_line('Round off complete');
565:
566: EXCEPTION
567: WHEN roundoff_error THEN
568: x_return_status := OKL_API.G_RET_STS_ERROR;
569: END roundoff_line_amount;
570:
571: -- Multi-Currency Change
572: --