DBA Data[Home] [Help]

APPS.CE_VALIDATE_BANKINFO dependencies on CE_UK_VAL_MODULUS_WEIGHTS

Line 8166: table of ce_uk_val_modulus_weights%rowtype index by pls_integer;

8162: Xi_SORT_CODE IN VARCHAR2,
8163: Xo_RETURN_STATUS OUT NOCOPY VARCHAR2)
8164: AS
8165: type mod_checks_tabtype is
8166: table of ce_uk_val_modulus_weights%rowtype index by pls_integer;
8167:
8168: type acct_num_arr_type is
8169: table of number(1) index by pls_integer;
8170:

Line 8173: l_weights ce_uk_val_modulus_weights%rowtype;

8169: table of number(1) index by pls_integer;
8170:
8171: t_modulus_checks mod_checks_tabtype;
8172: l_account_num_arr acct_num_arr_type;
8173: l_weights ce_uk_val_modulus_weights%rowtype;
8174: l_acct_valid boolean;
8175: l_check_reqd boolean;
8176: l_mod_check_count number;
8177: l_calc_cd number;

Line 8185: from ce_uk_val_modulus_weights

8181:
8182: cursor c_modulus_checks (p_sort_code varchar2)
8183: is
8184: select *
8185: from ce_uk_val_modulus_weights
8186: where p_sort_code between from_sort_code and to_sort_code
8187: order by modulus_check_id;
8188:
8189: function calccheckdigit(

Line 8191: p_modulus_checks_rec in ce_uk_val_modulus_weights%rowtype)

8187: order by modulus_check_id;
8188:
8189: function calccheckdigit(
8190: p_combined_number in varchar2,
8191: p_modulus_checks_rec in ce_uk_val_modulus_weights%rowtype)
8192: return number
8193: as
8194: l_prod_u NUMBER(5);
8195: l_prod_v NUMBER(5);