DBA Data[Home] [Help]

APPS.XTR_ACCRUAL_PROCESS_P dependencies on XTR_MASTER_CURRENCIES_V

Line 288: from XTR_MASTER_CURRENCIES_V m

284: where PARAM_NAME = p_param_name;
285: --
286: cursor RND_FAC is
287: select m.ROUNDING_FACTOR
288: from XTR_MASTER_CURRENCIES_V m
289: where m.CURRENCY = l_ccy ;
290: --
291: cursor HCE is
292: select s.HCE_RATE

Line 787: from XTR_MASTER_CURRENCIES_V m

783: /* Get rounding factor */
784: /*---------------------*/
785: cursor RND_FAC is
786: select m.ROUNDING_FACTOR
787: from XTR_MASTER_CURRENCIES_V m
788: where m.CURRENCY =l_ccy;
789:
790: /*-----------------------------------------------------------------------------*/
791: /* Get accrual methods Interest in arrears(Following), Forward interest(Prior).*/

Line 3359: from XTR_MASTER_CURRENCIES_V s

3355:
3356:
3357: cursor RND_FAC is
3358: select s.ROUNDING_FACTOR,s.YEAR_BASIS,s.HCE_RATE,s.IG_YEAR_BASIS
3359: from XTR_MASTER_CURRENCIES_V s
3360: where s.CURRENCY = l_ccy;
3361:
3362:
3363: ------------------------------------

Line 3786: from XTR_MASTER_CURRENCIES_V m

3782: /* Get Rounding Factor */
3783: /*---------------------*/
3784: cursor RND_FAC (p_ccy VARCHAR2) is
3785: select m.ROUNDING_FACTOR
3786: from XTR_MASTER_CURRENCIES_V m
3787: where m.CURRENCY = p_ccy;
3788:
3789:
3790: l_trade_settle XTR_COMPANY_PARAMETERS.parameter_value_code%TYPE;