DBA Data[Home] [Help]

APPS.JAI_OM_UTILS_PKG dependencies on FND_FILE

Line 443: fnd_file.put_line(fnd_file.log, 'v_address_id -> '||v_address_id);

439: CLOSE address_cur;
440:
441:
442: IF v_debug = 'Y' THEN
443: fnd_file.put_line(fnd_file.log, 'v_address_id -> '||v_address_id);
444: END IF;
445:
446: ----------------------------------------------------------------------------------------------------------
447: /*

Line 553: fnd_file.put_line(fnd_file.log,' Inside IF OF v_assessable_value IS NULL ');

549:
550: IF v_assessable_value IS NULL THEN
551:
552: IF v_debug = 'Y' THEN
553: fnd_file.put_line(fnd_file.log,' Inside IF OF v_assessable_value IS NULL ');
554: END IF;
555:
556: -- Added by Jia for Bug#8731794 on 30-Jul-2009, Begin
557: ----------------------------------------------------------------------------------------------------------

Line 608: fnd_file.put_line(fnd_file.log, '2 v_assessable_value -> '||v_assessable_value||', v_price_list_uom_code -> '||v_price_list_uom_code);

604:
605: END IF;
606:
607: IF v_debug = 'Y' THEN
608: fnd_file.put_line(fnd_file.log, '2 v_assessable_value -> '||v_assessable_value||', v_price_list_uom_code -> '||v_price_list_uom_code);
609: END IF;
610:
611: /********************************************* Part 4 ****************************************/
612:

Line 795: fnd_file.put_line(fnd_file.log,' BEFORE Calling Inv_Convert.inv_um_conversion 1');

791: -- If still the Assessable Value is available
792: IF v_price_list_uom_code IS NOT NULL THEN
793:
794: IF v_debug = 'Y' THEN
795: fnd_file.put_line(fnd_file.log,' BEFORE Calling Inv_Convert.inv_um_conversion 1');
796: END IF;
797:
798: Inv_Convert.inv_um_conversion ( v_uom_code, v_price_list_uom_code, v_inventory_item_id, v_conversion_rate );
799: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 802: fnd_file.put_line(fnd_file.log,' BEFORE Calling Inv_Convert.inv_um_conversion 2');

798: Inv_Convert.inv_um_conversion ( v_uom_code, v_price_list_uom_code, v_inventory_item_id, v_conversion_rate );
799: IF NVL(v_conversion_rate, 0) <= 0 THEN
800:
801: IF v_debug = 'Y' THEN
802: fnd_file.put_line(fnd_file.log,' BEFORE Calling Inv_Convert.inv_um_conversion 2');
803: END IF;
804:
805: Inv_Convert.inv_um_conversion(v_uom_code, v_price_list_uom_code, 0, v_conversion_rate);
806: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 821: fnd_file.put_line(fnd_file.log,' inside ELSE OF v_assessable_value IS NULL ');

817:
818: ELSE
819:
820: IF v_debug = 'Y' THEN
821: fnd_file.put_line(fnd_file.log,' inside ELSE OF v_assessable_value IS NULL ');
822: END IF;
823:
824: -- If the assessable value is not available
825: -- then pick up the Line price for Tax Calculation

Line 834: fnd_file.put_line(fnd_file.log,' No Assessable value is defined, so default price is returning back ');

830: */
831:
832: IF nvl(v_assessable_value,0) =0 THEN
833: IF v_debug = 'Y' THEN
834: fnd_file.put_line(fnd_file.log,' No Assessable value is defined, so default price is returning back ');
835: END IF;
836:
837: v_assessable_value := NVL(p_default_price, 0);
838: ELSE