DBA Data[Home] [Help]

APPS.IGF_SE_PAYMENT_PKG dependencies on FND_MESSAGE

Line 86: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');

82: OPEN cur_old_ref_values;
83: FETCH cur_old_ref_values INTO old_references;
84: IF ((cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT'))) THEN
85: CLOSE cur_old_ref_values;
86: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
87:
88: igs_ge_msg_stack.add;
89: app_exception.raise_exception;
90: RETURN;

Line 135: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');

131:
132: IF NOT igs_pe_person_pkg.get_pk_for_validation (
133: new_references.person_id
134: ) THEN
135: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
136: igs_ge_msg_stack.add;
137: app_exception.raise_exception;
138: END IF;
139:

Line 211: fnd_message.set_name ('IGF', 'IGF_SE_SEP_HP_FK');

207: OPEN cur_rowid;
208: FETCH cur_rowid INTO lv_rowid;
209: IF (cur_rowid%FOUND) THEN
210: CLOSE cur_rowid;
211: fnd_message.set_name ('IGF', 'IGF_SE_SEP_HP_FK');
212: igs_ge_msg_stack.add;
213: app_exception.raise_exception;
214: RETURN;
215: END IF;

Line 280: fnd_message.set_name('IGF','IGF_SE_PAY_DT_INVALID');

276:
277: BEGIN
278:
279: IF new_references.payroll_date IS NULL THEN
280: fnd_message.set_name('IGF','IGF_SE_PAY_DT_INVALID');
281: igs_ge_msg_stack.add;
282: app_exception.raise_exception;
283: END IF;
284:

Line 286: fnd_message.set_name('IGF','IGF_SE_AUTH_ID_NULL');

282: app_exception.raise_exception;
283: END IF;
284:
285: IF new_references.auth_id IS NULL THEN
286: fnd_message.set_name('IGF','IGF_SE_AUTH_ID_NULL');
287: igs_ge_msg_stack.add;
288: app_exception.raise_exception;
289: END IF;
290:

Line 292: fnd_message.set_name('IGF','IGF_SE_PERSON_ID_NULL');

288: app_exception.raise_exception;
289: END IF;
290:
291: IF new_references.person_id IS NULL THEN
292: fnd_message.set_name('IGF','IGF_SE_PERSON_ID_NULL');
293: igs_ge_msg_stack.add;
294: app_exception.raise_exception;
295: END IF;
296:

Line 298: fnd_message.set_name('IGF','IGF_SE_PAID_AMT_NULL');

294: app_exception.raise_exception;
295: END IF;
296:
297: IF new_references.paid_amount IS NULL THEN
298: fnd_message.set_name('IGF','IGF_SE_PAID_AMT_NULL');
299: igs_ge_msg_stack.add;
300: app_exception.raise_exception;
301: END IF;
302:

Line 304: fnd_message.set_name('IGF','IGF_SE_SOURCE_INVALID');

300: app_exception.raise_exception;
301: END IF;
302:
303: IF new_references.source IS NULL THEN
304: fnd_message.set_name('IGF','IGF_SE_SOURCE_INVALID');
305: igs_ge_msg_stack.add;
306: app_exception.raise_exception;
307: END IF;
308:

Line 313: fnd_message.set_name('IGF','IGF_SE_INV_AUTH_PERSON');

309: OPEN c_auth(new_references.auth_id,new_references.person_id);
310: FETCH c_auth INTO l_auth;
311: IF c_auth%NOTFOUND THEN
312: CLOSE c_auth;
313: fnd_message.set_name('IGF','IGF_SE_INV_AUTH_PERSON');
314: fnd_message.set_token('AUTH_ID',TO_CHAR(new_references.auth_id));
315:
316: l_pers_num := NULL;
317: OPEN c_pers_num(new_references.person_id);

Line 314: fnd_message.set_token('AUTH_ID',TO_CHAR(new_references.auth_id));

310: FETCH c_auth INTO l_auth;
311: IF c_auth%NOTFOUND THEN
312: CLOSE c_auth;
313: fnd_message.set_name('IGF','IGF_SE_INV_AUTH_PERSON');
314: fnd_message.set_token('AUTH_ID',TO_CHAR(new_references.auth_id));
315:
316: l_pers_num := NULL;
317: OPEN c_pers_num(new_references.person_id);
318: FETCH c_pers_num INTO l_pers_num;

Line 320: fnd_message.set_token('PERSON_NUM',l_pers_num);

316: l_pers_num := NULL;
317: OPEN c_pers_num(new_references.person_id);
318: FETCH c_pers_num INTO l_pers_num;
319: CLOSE c_pers_num;
320: fnd_message.set_token('PERSON_NUM',l_pers_num);
321: igs_ge_msg_stack.add;
322: app_exception.raise_exception;
323: END IF;
324: CLOSE c_auth;

Line 331: fnd_message.set_name('IGF','IGF_SE_NO_VALID_FUND');

327: OPEN c_fund(new_references.auth_id,new_references.person_id);
328: FETCH c_fund INTO l_fund;
329: CLOSE c_fund;
330: IF l_fund IS NULL THEN
331: fnd_message.set_name('IGF','IGF_SE_NO_VALID_FUND');
332: l_pers_num := NULL;
333: OPEN c_pers_num(new_references.person_id);
334: FETCH c_pers_num INTO l_pers_num;
335: CLOSE c_pers_num;

Line 336: fnd_message.set_token('PERSON_NUM',l_pers_num);

332: l_pers_num := NULL;
333: OPEN c_pers_num(new_references.person_id);
334: FETCH c_pers_num INTO l_pers_num;
335: CLOSE c_pers_num;
336: fnd_message.set_token('PERSON_NUM',l_pers_num);
337: igs_ge_msg_stack.add;
338: app_exception.raise_exception;
339: END IF;
340:

Line 345: fnd_message.set_name('IGF','IGF_SE_SOURCE_INVALID');

341: OPEN c_lookup('IGF_SE_SOURCE',new_references.source);
342: FETCH c_lookup INTO l_lookup;
343: IF c_lookup%NOTFOUND THEN
344: CLOSE c_lookup;
345: fnd_message.set_name('IGF','IGF_SE_SOURCE_INVALID');
346: igs_ge_msg_stack.add;
347: app_exception.raise_exception;
348: END IF;
349:

Line 410: fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');

406: new_references.transaction_id
407: )
408: ) THEN
409:
410: fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
411: igs_ge_msg_stack.add;
412: app_exception.raise_exception;
413: END IF;
414: check_parent_existance;

Line 427: fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');

423: new_references.transaction_id
424: )
425: ) THEN
426:
427: fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
428: igs_ge_msg_stack.add;
429: app_exception.raise_exception;
430: END IF;
431: END IF;

Line 520: fnd_message.set_name ('FND', 'SYSTEM-INVALID ARGS');

516: ELSE
517: x_program_update_date := SYSDATE;
518: END IF;
519: ELSE
520: fnd_message.set_name ('FND', 'SYSTEM-INVALID ARGS');
521: igs_ge_msg_stack.add;
522: app_exception.raise_exception;
523: END IF;
524:

Line 641: fnd_message.set_name('IGF','IGF_SE_ERR_PAYINT_UPD');

637: x_error_code => l_error
638: );
639: EXCEPTION
640: WHEN OTHERS THEN
641: fnd_message.set_name('IGF','IGF_SE_ERR_PAYINT_UPD');
642: igs_ge_msg_stack.add;
643: app_exception.raise_exception;
644: END;
645:

Line 693: fnd_message.set_name('IGF','IGF_SE_ERR_PAYINT_UPD');

689: );
690: EXCEPTION
691: WHEN OTHERS THEN
692:
693: fnd_message.set_name('IGF','IGF_SE_ERR_PAYINT_UPD');
694: igs_ge_msg_stack.add;
695: app_exception.raise_exception;
696: END;
697:

Line 712: FND_MESSAGE.SET_NAME('IGF', 'IGF_SE_ERR_PAY_ADJ');

708: OPEN c_get_se_errors( l_error);
709: FETCH c_get_se_errors INTO l_error_meaming;
710: CLOSE c_get_se_errors;
711:
712: FND_MESSAGE.SET_NAME('IGF', 'IGF_SE_ERR_PAY_ADJ');
713: FND_MESSAGE.SET_TOKEN('ERROR',l_error_meaming);
714: igs_ge_msg_stack.add;
715: app_exception.raise_exception;
716:

Line 713: FND_MESSAGE.SET_TOKEN('ERROR',l_error_meaming);

709: FETCH c_get_se_errors INTO l_error_meaming;
710: CLOSE c_get_se_errors;
711:
712: FND_MESSAGE.SET_NAME('IGF', 'IGF_SE_ERR_PAY_ADJ');
713: FND_MESSAGE.SET_TOKEN('ERROR',l_error_meaming);
714: igs_ge_msg_stack.add;
715: app_exception.raise_exception;
716:
717:

Line 766: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

762:
763: OPEN c1;
764: FETCH c1 INTO tlinfo;
765: IF (c1%notfound) THEN
766: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
767: igs_ge_msg_stack.add;
768: CLOSE c1;
769: app_exception.raise_exception;
770: RETURN;

Line 786: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

782: AND ((tlinfo.source = x_source) OR ((tlinfo.source IS NULL) AND (X_source IS NULL)))
783: ) THEN
784: NULL;
785: ELSE
786: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
787: igs_ge_msg_stack.add;
788: app_exception.raise_exception;
789: END IF;
790:

Line 865: fnd_message.set_name( 'FND', 'SYSTEM-INVALID ARGS');

861: IF (x_last_update_login IS NULL) THEN
862: x_last_update_login := -1;
863: END IF;
864: ELSE
865: fnd_message.set_name( 'FND', 'SYSTEM-INVALID ARGS');
866: igs_ge_msg_stack.add;
867: app_exception.raise_exception;
868: END IF;
869:

Line 966: fnd_message.set_name('IGF','IGF_SE_ERR_PAYINT_UPD');

962: x_error_code => l_error
963: );
964: EXCEPTION
965: WHEN OTHERS THEN
966: fnd_message.set_name('IGF','IGF_SE_ERR_PAYINT_UPD');
967: igs_ge_msg_stack.add;
968: app_exception.raise_exception;
969: END; -- new payroll not null
970: ELSE

Line 1015: fnd_message.set_name('IGF','IGF_SE_ERR_PAYINT_UPD');

1011: x_error_code => l_error
1012: );
1013: EXCEPTION
1014: WHEN OTHERS THEN
1015: fnd_message.set_name('IGF','IGF_SE_ERR_PAYINT_UPD');
1016: igs_ge_msg_stack.add;
1017: app_exception.raise_exception;
1018: END;
1019: ELSE

Line 1034: FND_MESSAGE.SET_NAME('IGF', 'IGF_SE_ERR_PAY_ADJ');

1030: OPEN c_get_se_errors( l_error);
1031: FETCH c_get_se_errors INTO l_error_meaming;
1032: CLOSE c_get_se_errors;
1033:
1034: FND_MESSAGE.SET_NAME('IGF', 'IGF_SE_ERR_PAY_ADJ');
1035: FND_MESSAGE.SET_TOKEN('ERROR',l_error_meaming);
1036: igs_ge_msg_stack.add;
1037: app_exception.raise_exception;
1038:

Line 1035: FND_MESSAGE.SET_TOKEN('ERROR',l_error_meaming);

1031: FETCH c_get_se_errors INTO l_error_meaming;
1032: CLOSE c_get_se_errors;
1033:
1034: FND_MESSAGE.SET_NAME('IGF', 'IGF_SE_ERR_PAY_ADJ');
1035: FND_MESSAGE.SET_TOKEN('ERROR',l_error_meaming);
1036: igs_ge_msg_stack.add;
1037: app_exception.raise_exception;
1038:
1039: END IF;