DBA Data[Home] [Help]

APPS.POS_COMPARE_REVISIONS dependencies on PO_PRICE_DIFF_LOOKUPS_V

Line 672: * p_pricediff_code Unique in PO_PRICE_DIFF_LOOKUPS_V

668: * PURPOSE
669: * Resolves the price differential type
670: *
671: * ARGUMENTS
672: * p_pricediff_code Unique in PO_PRICE_DIFF_LOOKUPS_V
673: *
674: * NOTES
675: * Return NULL if no matching records were found.
676: *

Line 692: FROM PO_PRICE_DIFF_LOOKUPS_V

688: v_progress := '140';
689:
690: SELECT PRICE_DIFFERENTIAL_DSP
691: INTO v_pricediff_dsp
692: FROM PO_PRICE_DIFF_LOOKUPS_V
693: WHERE PRICE_DIFFERENTIAL_TYPE = p_pricediff_code;
694:
695: RETURN v_pricediff_dsp;
696: EXCEPTION