DBA Data[Home] [Help]

APPS.XTR_ACCRUAL_PROCESS_P dependencies on XTR_PRO_PARAM

Line 62: from XTR_PRO_PARAM

58: /* Get param for Arrears(FOLLOWING) or Forward (PRIOR).*/
59: /*-----------------------------------------------------*/
60: cursor ADJUST(p_param_name varchar2) is
61: select PARAM_VALUE
62: from XTR_PRO_PARAM
63: where PARAM_NAME = p_param_name;
64:
65: l_start_disc NUMBER;
66: l_start_date DATE;

Line 283: from XTR_PRO_PARAM

279:
280: -- Get days adjustment for Accruals (ie ADD a day to end of period).
281: cursor ADJUST(p_param_name varchar2) is
282: select PARAM_VALUE
283: from XTR_PRO_PARAM
284: where PARAM_NAME = p_param_name;
285: --
286: cursor RND_FAC is
287: select m.ROUNDING_FACTOR

Line 795: from XTR_PRO_PARAM

791: /* Get accrual methods Interest in arrears(Following), Forward interest(Prior).*/
792: /*-----------------------------------------------------------------------------*/
793: cursor ADJUST(p_param_name varchar2) is
794: select PARAM_VALUE
795: from XTR_PRO_PARAM
796: where PARAM_NAME = p_param_name;
797:
798: /*------------------------------*/
799: /* Get TRADE/SETTLE accounting */

Line 3335: from XTR_PRO_PARAM

3331: -- Get accrual methods Interest in arreas(Following), Forward interest(Prior).
3332: -----------------------------------------------------------------------------
3333: cursor ADJUST(p_param_name varchar2) is
3334: select PARAM_VALUE
3335: from XTR_PRO_PARAM
3336: where PARAM_NAME = p_param_name;
3337:
3338: ---
3339: cursor CHK_FIRST_ACCRUAL is

Line 3769: from XTR_PRO_PARAM

3765: /* Get param for Arrears(FOLLOWING) or Forward (PRIOR).*/
3766: /*-----------------------------------------------------*/
3767: cursor ADJUST(p_param_name varchar2) is
3768: select PARAM_VALUE
3769: from XTR_PRO_PARAM
3770: where PARAM_NAME = p_param_name;
3771:
3772: /*------------------------------*/
3773: /* Get TRADE/SETTLE accounting */

Line 3904: l_start_adjust XTR_PRO_PARAM.PARAM_VALUE%TYPE;

3900: l_prv_accrl_amt_bal NUMBER;
3901: l_rec XTR_REVAL_PROCESS_P.XTR_REVL_REC;
3902: l_REV_amt NUMBER;
3903: l_rounding NUMBER;
3904: l_start_adjust XTR_PRO_PARAM.PARAM_VALUE%TYPE;
3905: l_year_basis NUMBER;
3906: l_interest_rate NUMBER;
3907: l_status_code VARCHAR2(30);
3908: