DBA Data[Home] [Help]

APPS.IGS_FI_PRC_HOLDS dependencies on IGS_GE_DATE

Line 55: 6. Removed igs_ge_date.igsdate(p_process_start_date) and replaced with just

51: 4. In validate_holds(), removed insertion of balance_amount into the igs_fi_person_holds
52: table as the column is being obsoleted. Added cursor c_bal_amount to obtain holds balance
53: from igs_fi_balances (in place of balance amount from igs_fi_person_holds)
54: 5. Added parameter balance_rule_id in calls to check_exclusion_rules()
55: 6. Removed igs_ge_date.igsdate(p_process_start_date) and replaced with just
56: p_process_Start_date. similarly for process_end_date also.
57: pkpatel 30-SEP-2002 Bug No: 2600842
58: Added the parameter auth_resp_id in the call to the procedures of TBH igs_pe_pers_encumb_pkg
59: vchappid 07-Jun-2002 Bug 2392486#, Calculation of the holds balance incase the Holds plan is at subaccount

Line 1132: l_process_start_date := TRUNC(igs_ge_date.igsdate(p_process_start_date));

1128: END IF;
1129:
1130: --To get the value of passed date parameters in canonical format
1131: IF p_process_start_date IS NOT NULL THEN
1132: l_process_start_date := TRUNC(igs_ge_date.igsdate(p_process_start_date));
1133: END IF;
1134:
1135: IF p_process_end_date IS NOT NULL THEN
1136: l_process_end_date := TRUNC(igs_ge_date.igsdate(p_process_end_date));

Line 1136: l_process_end_date := TRUNC(igs_ge_date.igsdate(p_process_end_date));

1132: l_process_start_date := TRUNC(igs_ge_date.igsdate(p_process_start_date));
1133: END IF;
1134:
1135: IF p_process_end_date IS NOT NULL THEN
1136: l_process_end_date := TRUNC(igs_ge_date.igsdate(p_process_end_date));
1137: END IF;
1138:
1139: --To get the passed person id if not NULL corresponding person number
1140: IF p_person_id IS NOT NULL THEN