DBA Data[Home] [Help]

APPS.IGS_FI_PRC_FEE_ASS dependencies on FND_PROFILE

Line 209: g_v_att_profile CONSTANT fnd_lookup_values.lookup_code%TYPE := FND_PROFILE.VALUE('IGS_FI_NOM_DER_VALUES');

205: g_v_fcfl_source VARCHAR2(10) := NULL;
206: g_v_wav_calc_flag VARCHAR2(1) := NULL;
207:
208: -- Profile for determining whether Nominated or Derived values are used
209: g_v_att_profile CONSTANT fnd_lookup_values.lookup_code%TYPE := FND_PROFILE.VALUE('IGS_FI_NOM_DER_VALUES');
210: g_v_auto_calc_wav_prof CONSTANT VARCHAR2(30) := fnd_profile.VALUE('IGS_FI_AUTO_CALC_WAIVERS');
211:
212: g_n_org_id CONSTANT igs_fi_fee_as_all.org_id%TYPE := igs_ge_gen_003.get_org_id;
213:

Line 210: g_v_auto_calc_wav_prof CONSTANT VARCHAR2(30) := fnd_profile.VALUE('IGS_FI_AUTO_CALC_WAIVERS');

206: g_v_wav_calc_flag VARCHAR2(1) := NULL;
207:
208: -- Profile for determining whether Nominated or Derived values are used
209: g_v_att_profile CONSTANT fnd_lookup_values.lookup_code%TYPE := FND_PROFILE.VALUE('IGS_FI_NOM_DER_VALUES');
210: g_v_auto_calc_wav_prof CONSTANT VARCHAR2(30) := fnd_profile.VALUE('IGS_FI_AUTO_CALC_WAIVERS');
211:
212: g_n_org_id CONSTANT igs_fi_fee_as_all.org_id%TYPE := igs_ge_gen_003.get_org_id;
213:
214: -- Global variable to hold Currency Code - assigned a value in finp_ins_enr_fee_ass, cursor c_fi_control

Line 225: g_v_res_profile CONSTANT VARCHAR2(100) := fnd_profile.VALUE('IGS_FI_RES_CLASS_ID');

221: FROM igs_ca_inst_all
222: WHERE cal_type = cp_v_cal_type
223: AND sequence_number = cp_n_seq_num;
224:
225: g_v_res_profile CONSTANT VARCHAR2(100) := fnd_profile.VALUE('IGS_FI_RES_CLASS_ID');
226:
227: tbl_fee_as_items t_fee_as_items_typ; -- Holds the records of previous assessment while processing for retention
228: tbl_fee_as_items_diff t_fee_as_items_typ; -- Holds the records which are the diff between previous assessment and current assessment while processing retention
229: tbl_fee_as_items_dummy t_fee_as_items_typ; -- This is the dummy table used in retention calculation

Line 10250: g_v_include_audit := fnd_profile.value('IGS_FI_CHARGE_AUDIT_FEES');

10246: END IF;
10247:
10248: -- Obtain the value of the profile 'IGS: Charge tuition for Audited Student Attempt'
10249: -- If this is not defined, then log error message
10250: g_v_include_audit := fnd_profile.value('IGS_FI_CHARGE_AUDIT_FEES');
10251: IF g_v_include_audit IS NULL THEN
10252: v_message_name := 'IGS_FI_SP_FEE_NO_PROFILE';
10253: IF (p_trace_on = 'Y') THEN
10254: fnd_message.set_name ( 'IGS', v_message_name);