DBA Data[Home] [Help]

APPS.IGS_FI_PRC_APPL dependencies on IGS_GE_DATE

Line 401: l_d_gl_date := TRUNC(igs_ge_date.igsdate(p_d_gl_date)) ;

397:
398: --Populate the rec_installed value into g_rec_installed to know whether Oracle Financials is
399: --set to Yes or No in System Options Form.
400: g_rec_installed := igs_fi_gen_005.finp_get_receivables_inst;
401: l_d_gl_date := TRUNC(igs_ge_date.igsdate(p_d_gl_date)) ;
402:
403: -- the exceptions raised in the mass_apply is masked in the block so that
404: -- the same can be captured and raised in the the user defined excpetion handler.
405: -- in case of any un handled exception raised in mass apply procedure, this will not be

Line 811: l_credit_date_low := igs_ge_date.igsdate(p_credit_date_low);

807: END IF;
808:
809: -- Set the values of high and low dates when
810: IF p_credit_date_low IS NOT NULL THEN
811: l_credit_date_low := igs_ge_date.igsdate(p_credit_date_low);
812: ELSE
813: l_credit_date_low := eff_min_date();
814: END IF;
815:

Line 817: l_credit_date_high := igs_ge_date.igsdate(p_credit_date_high);

813: l_credit_date_low := eff_min_date();
814: END IF;
815:
816: IF p_credit_date_high IS NOT NULL THEN
817: l_credit_date_high := igs_ge_date.igsdate(p_credit_date_high);
818: ELSE
819: l_credit_date_high := eff_max_date();
820: END IF;
821: