[Home] [Help]
969: FUNCTION val_pricing_model(p_pricing_model IN VARCHAR2) return BOOLEAN is
970: /*--------------------------------------------------------------------------------*/
971: cursor cur_pricing is
972: select code
973: from xtr_price_models
974: where code = p_pricing_model
975: and deal_type = 'FX'
976: and nvl(authorized,'N') = 'Y';
977: