DBA Data[Home] [Help]

APPS.XTR_IG_TRANSFERS_PKG dependencies on XTR_PRICE_MODELS

Line 247: from xtr_price_models

243: and product_type = p_product_type;
244:
245: cursor number_of_auth_pm is
246: select count(*)
247: from xtr_price_models
248: where deal_type = 'IG'
249: and authorized = 'Y';
250:
251: cursor auth_pm is

Line 253: from xtr_price_models

249: and authorized = 'Y';
250:
251: cursor auth_pm is
252: select code
253: from xtr_price_models
254: where deal_type = 'IG'
255: and authorized = 'Y';
256:
257: cursor get_sob_currency is

Line 631: from xtr_price_models

627: FUNCTION VALID_PRICING_MODEL(p_pricing_model IN VARCHAR2) return BOOLEAN is
628: --------------------------------------------------------------------------------------------
629: cursor cur_pricing is
630: select code
631: from xtr_price_models
632: where code = p_pricing_model
633: and deal_type = 'IG'
634: and nvl(authorized,'N') = 'Y';
635: