DBA Data[Home] [Help]

APPS.IGS_FI_POSTING_PROCESS dependencies on IGS_GE_DATE

Line 1278: l_d_gl_date_start := igs_ge_date.igsdate(p_posting_date_low);

1274:
1275: -- Convert the varchar2 parameter dates to DATE Datatype if not null else raise insufficient parameter error.
1276:
1277: IF p_posting_date_low IS NOT NULL THEN
1278: l_d_gl_date_start := igs_ge_date.igsdate(p_posting_date_low);
1279: ELSE
1280: fnd_message.set_name('IGS', 'IGS_GE_INSUFFICIENT_PARAMETER');
1281: fnd_file.put_line(fnd_file.log, fnd_message.get());
1282: RAISE l_user_exception;

Line 1286: l_d_gl_date_end := igs_ge_date.igsdate(p_posting_date_high);

1282: RAISE l_user_exception;
1283: END IF;
1284:
1285: IF p_posting_date_high IS NOT NULL THEN
1286: l_d_gl_date_end := igs_ge_date.igsdate(p_posting_date_high);
1287: ELSE
1288: fnd_message.set_name('IGS', 'IGS_GE_INSUFFICIENT_PARAMETER');
1289: fnd_file.put_line(fnd_file.log, fnd_message.get());
1290: RAISE l_user_exception;

Line 1294: l_d_gl_posted_date := igs_ge_date.igsdate(p_accounting_date);

1290: RAISE l_user_exception;
1291: END IF;
1292:
1293: IF p_accounting_date IS NOT NULL THEN
1294: l_d_gl_posted_date := igs_ge_date.igsdate(p_accounting_date);
1295: ELSE
1296: fnd_message.set_name('IGS', 'IGS_GE_INSUFFICIENT_PARAMETER');
1297: fnd_file.put_line(fnd_file.log, fnd_message.get());
1298: RAISE l_user_exception;