DBA Data[Home] [Help]

APPS.HR_SE_UTILITY dependencies on HRUSERDT

Line 161: l_account_type:=hruserdt.get_table_value (p_bg_id,'SE_BANK_DETAILS','ACCOUNT_TYPE',SUBSTR(p_account_number,1,4),l_effective_date);

157:
158: begin
159: --Check for the Account Type.There are two types of Accounts ie Type 1 and Type 2.
160: --
161: l_account_type:=hruserdt.get_table_value (p_bg_id,'SE_BANK_DETAILS','ACCOUNT_TYPE',SUBSTR(p_account_number,1,4),l_effective_date);
162: IF l_account_type IS NULL THEN
163: RETURN 1;
164: END IF;
165: --Fetch the Modulus Type.There are two types of Modulus ie Modulus 10 and Modulus 11.

Line 167: l_modulus_type:=hruserdt.get_table_value (p_bg_id,'SE_BANK_DETAILS','MODULUS_TYPE',SUBSTR(p_account_number,1,4),l_effective_date);

163: RETURN 1;
164: END IF;
165: --Fetch the Modulus Type.There are two types of Modulus ie Modulus 10 and Modulus 11.
166: --
167: l_modulus_type:=hruserdt.get_table_value (p_bg_id,'SE_BANK_DETAILS','MODULUS_TYPE',SUBSTR(p_account_number,1,4),l_effective_date);
168:
169: --Fetch the No of Digits for Validation.
170: --
171: l_no_of_digits:=hruserdt.get_table_value (p_bg_id,'SE_BANK_DETAILS','NO_OF_DIGITS',SUBSTR(p_account_number,1,4),l_effective_date);

Line 171: l_no_of_digits:=hruserdt.get_table_value (p_bg_id,'SE_BANK_DETAILS','NO_OF_DIGITS',SUBSTR(p_account_number,1,4),l_effective_date);

167: l_modulus_type:=hruserdt.get_table_value (p_bg_id,'SE_BANK_DETAILS','MODULUS_TYPE',SUBSTR(p_account_number,1,4),l_effective_date);
168:
169: --Fetch the No of Digits for Validation.
170: --
171: l_no_of_digits:=hruserdt.get_table_value (p_bg_id,'SE_BANK_DETAILS','NO_OF_DIGITS',SUBSTR(p_account_number,1,4),l_effective_date);
172:
173: IF l_account_type ='1' THEN
174:
175: --The No of Digits should be between 11 and 16