DBA Data[Home] [Help]

APPS.PO_INQ_SV dependencies on PO_CORE_S

Line 819: x_total := po_core_s.get_total(x_total_level, x_po_release_id);

815: end if;
816:
817: if (x_po_release_id is NOT NULL) then
818: x_total_level := 'R';
819: x_total := po_core_s.get_total(x_total_level, x_po_release_id);
820:
821: else
822: x_total := po_core_s.get_total(x_total_level, x_po_header_id);
823:

Line 822: x_total := po_core_s.get_total(x_total_level, x_po_header_id);

818: x_total_level := 'R';
819: x_total := po_core_s.get_total(x_total_level, x_po_release_id);
820:
821: else
822: x_total := po_core_s.get_total(x_total_level, x_po_header_id);
823:
824: end if;
825:
826: return x_total;

Line 877: x_base_currency := po_core_s2.get_base_currency;

873: IF x_closed_by IS NOT NULL THEN
874: x_closed_by_name := get_person_name(x_closed_by);
875: END IF;
876:
877: x_base_currency := po_core_s2.get_base_currency;
878:
879: IF x_po_line_id IS NOT NULL THEN
880:
881: -- Bug 2954456 : The amount released has to be calculated in a different way for GA lines

Line 909: PO_CORE_S.get_ga_line_amount_released( x_po_line_id, -- IN

905:
906: ELSE
907:
908: if PO_GA_PVT.is_global_agreement(l_po_header_id) then
909: PO_CORE_S.get_ga_line_amount_released( x_po_line_id, -- IN
910: l_po_header_id, -- OUT
911: l_quantity_released, -- OUT
912: x_amount ); -- OUT
913: else

Line 914: x_amount := PO_CORE_S.GET_TOTAL('L', x_po_line_id);

910: l_po_header_id, -- OUT
911: l_quantity_released, -- OUT
912: x_amount ); -- OUT
913: else
914: x_amount := PO_CORE_S.GET_TOTAL('L', x_po_line_id);
915: end if;
916:
917: END IF;
918:

Line 920: x_amount := PO_CORE_S.GET_TOTAL('S', x_line_location_id);

916:
917: END IF;
918:
919: ELSIF x_line_location_id IS NOT NULL THEN
920: x_amount := PO_CORE_S.GET_TOTAL('S', x_line_location_id);
921: ELSIF x_po_release_id IS NOT NULL THEN
922: x_amount := get_po_total(x_type_lookup_code, null, x_po_release_id);
923: ELSIF x_po_header_id IS NOT NULL THEN
924: x_amount := GET_PO_TOTAL(x_type_lookup_code, x_po_header_id, NULL);

Line 979: x_base_currency := po_core_s2.get_base_currency;

975: IF x_closed_by IS NOT NULL THEN
976: x_closed_by_name := get_person_name(x_closed_by);
977: END IF;
978:
979: x_base_currency := po_core_s2.get_base_currency;
980:
981: IF x_wip_entity_id IS NOT NULL THEN
982: x_assembly_quantity := PO_INQ_SV.GET_ASSEMBLY_QUANTITY(
983: x_item_id,