DBA Data[Home] [Help]

APPS.IGS_FI_PRC_ACCT_PKG dependencies on FND_MESSAGE

Line 70: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');

66:
67: EXCEPTION
68: WHEN OTHERS THEN
69: p_return_status := FALSE;
70: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
71: fnd_message.set_token('NAME','CONCAT_SEG_VALUES: '||SQLERRM);
72: RETURN;
73: END concat_seg_values;
74:

Line 71: fnd_message.set_token('NAME','CONCAT_SEG_VALUES: '||SQLERRM);

67: EXCEPTION
68: WHEN OTHERS THEN
69: p_return_status := FALSE;
70: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
71: fnd_message.set_token('NAME','CONCAT_SEG_VALUES: '||SQLERRM);
72: RETURN;
73: END concat_seg_values;
74:
75: PROCEDURE get_charge_acct_ccids(

Line 135: p_error_string := SUBSTR(fnd_message.get,1,1000);

131: concat_seg_values(p_error_string,p_return_status);
132: IF (p_return_status = FALSE) THEN
133: --When and Unhandled Exception Occurs in Concat_seg_values then Return with Type 1 Error
134: p_error_type := 1;
135: p_error_string := SUBSTR(fnd_message.get,1,1000);
136: ROLLBACK;
137: RETURN;
138: END IF;
139: p_error_type := 2; -- Modified to error type 2 instead of 3 to maintain consistency

Line 150: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');

146: p_return_status := TRUE;
147: END IF;
148: EXCEPTION
149: WHEN OTHERS THEN
150: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
151: fnd_message.set_token('NAME','GET_CHARGE_ACCT_CCIDS: '||SQLERRM);
152: p_error_type := 1;
153: p_return_status := FALSE;
154: ROLLBACK;

Line 151: fnd_message.set_token('NAME','GET_CHARGE_ACCT_CCIDS: '||SQLERRM);

147: END IF;
148: EXCEPTION
149: WHEN OTHERS THEN
150: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
151: fnd_message.set_token('NAME','GET_CHARGE_ACCT_CCIDS: '||SQLERRM);
152: p_error_type := 1;
153: p_return_status := FALSE;
154: ROLLBACK;
155: RETURN;

Line 334: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');

330: p_return_status := TRUE;
331: EXCEPTION
332: WHEN OTHERS THEN
333: p_return_status := FALSE;
334: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
335: fnd_message.set_token('NAME','GET_SEGMENT_VALUES_LIST: '||SQLERRM);
336: RETURN;
337: END get_segment_values_list;
338:

Line 335: fnd_message.set_token('NAME','GET_SEGMENT_VALUES_LIST: '||SQLERRM);

331: EXCEPTION
332: WHEN OTHERS THEN
333: p_return_status := FALSE;
334: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
335: fnd_message.set_token('NAME','GET_SEGMENT_VALUES_LIST: '||SQLERRM);
336: RETURN;
337: END get_segment_values_list;
338:
339: PROCEDURE get_natural_account(p_v_fee_type VARCHAR2,

Line 986: x_err_string := fnd_message.get_string('IGS',l_v_err_msg);

982:
983: IF (l_b_nat_rec = FALSE) AND (l_n_err_type = 1) THEN
984: x_cr_gl_ccid := NULL;
985: x_err_type :=2;
986: x_err_string := fnd_message.get_string('IGS',l_v_err_msg);
987: x_ret_status := FALSE;
988: RETURN;
989: END IF;
990: END IF;

Line 1076: x_err_string := fnd_message.get_string('IGS','IGS_FI_ZERO_FLAG_NOT_SET');

1072: RETURN; -- should return from this procedure
1073: ELSIF NOT l_b_err_type1 THEN
1074: -- We have to handle l_b_err_type1 = TRUE case (Receivables account setup not done at FTCI and system
1075: -- options level) to avoid masking of message IGS_FI_NO_REC_ACCT_CD_FTCI with this message.
1076: x_err_string := fnd_message.get_string('IGS','IGS_FI_ZERO_FLAG_NOT_SET');
1077: x_err_type := 2;
1078: x_ret_status := FALSE; --Set the Return Status.
1079: END IF;
1080:

Line 1257: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');

1253: RETURN;
1254: END IF;
1255: EXCEPTION
1256: WHEN OTHERS THEN
1257: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
1258: fnd_message.set_token('NAME','BUILD_ACCOUNTS: '||SQLERRM);
1259: x_err_type := 1;
1260: x_ret_status := FALSE;
1261: RETURN;

Line 1258: fnd_message.set_token('NAME','BUILD_ACCOUNTS: '||SQLERRM);

1254: END IF;
1255: EXCEPTION
1256: WHEN OTHERS THEN
1257: fnd_message.set_name('IGS','IGS_GE_UNHANDLED_EXP');
1258: fnd_message.set_token('NAME','BUILD_ACCOUNTS: '||SQLERRM);
1259: x_err_type := 1;
1260: x_ret_status := FALSE;
1261: RETURN;
1262: END build_accounts;