[Home] [Help]
1267: APP_EXCEPTION.RAISE_EXCEPTION;
1268: END finp_ins_uft_hist;
1269:
1270: -- New function as part of Bug 2324088 - SYkrishn
1271: FUNCTION finp_validate_ccid(p_ccid IN igs_fi_cr_activities.dr_gl_ccid%TYPE) RETURN BOOLEAN AS
1272:
1273: /***********************************************************************************************
1274: Created By: sykrishn
1275: Date Created By: 19-APR-2002
1283: Who When What
1284: ********************************************************************************************** */
1285: --Cursor to check existence of the ccid with the combination of the chart of accounts
1286:
1287: CURSOR cur_ccid_exist (cp_ccid IN igs_fi_cr_activities.dr_gl_ccid%TYPE) IS
1288: SELECT 'X'
1289: FROM gl_code_combinations
1290: WHERE code_combination_id = cp_ccid
1291: AND chart_of_accounts_id = igs_fi_gen_007.get_coa_id;