DBA Data[Home] [Help]

APPS.POS_COMPARE_REVISIONS dependencies on PO_PRICE_DIFF_LOOKUPS_V

Line 668: * p_pricediff_code Unique in PO_PRICE_DIFF_LOOKUPS_V

664: * PURPOSE
665: * Resolves the price differential type
666: *
667: * ARGUMENTS
668: * p_pricediff_code Unique in PO_PRICE_DIFF_LOOKUPS_V
669: *
670: * NOTES
671: * Return NULL if no matching records were found.
672: *

Line 688: FROM PO_PRICE_DIFF_LOOKUPS_V

684: v_progress := '140';
685:
686: SELECT PRICE_DIFFERENTIAL_DSP
687: INTO v_pricediff_dsp
688: FROM PO_PRICE_DIFF_LOOKUPS_V
689: WHERE PRICE_DIFFERENTIAL_TYPE = p_pricediff_code;
690:
691: RETURN v_pricediff_dsp;
692: EXCEPTION