DBA Data[Home] [Help]

APPS.PAY_PAYWSQEE_PKG dependencies on FND_DATE

Line 1126: fnd_date.date_to_canonical(p_effective_start_date),

1122: null,
1123: null,
1124: null,
1125: p_business_group_id,
1126: fnd_date.date_to_canonical(p_effective_start_date),
1127: p_element_type_id,
1128: p_payroll_id,
1129: p_assignment_set_id,
1130: p_cost_allocation_keyflex_id,

Line 1171: fnd_date.date_to_canonical(p_effective_s_date),

1167: p_attribute20,
1168: p_header_name,
1169: p_header_id,
1170: p_reason,
1171: fnd_date.date_to_canonical(p_effective_s_date),
1172: fnd_date.date_to_canonical(p_effective_e_date),
1173: fnd_date.date_to_canonical(p_date_earned),
1174: null,
1175: p_subpriority,

Line 1172: fnd_date.date_to_canonical(p_effective_e_date),

1168: p_header_name,
1169: p_header_id,
1170: p_reason,
1171: fnd_date.date_to_canonical(p_effective_s_date),
1172: fnd_date.date_to_canonical(p_effective_e_date),
1173: fnd_date.date_to_canonical(p_date_earned),
1174: null,
1175: p_subpriority,
1176: p_entry_information_category,

Line 1173: fnd_date.date_to_canonical(p_date_earned),

1169: p_header_id,
1170: p_reason,
1171: fnd_date.date_to_canonical(p_effective_s_date),
1172: fnd_date.date_to_canonical(p_effective_e_date),
1173: fnd_date.date_to_canonical(p_date_earned),
1174: null,
1175: p_subpriority,
1176: p_entry_information_category,
1177: p_entry_information1,

Line 1327: -- The DD-MON-YYYY is the default format of the fnd_date.

1323: if l_bee_iv_upgrade = 'N' then
1324: --
1325: -- BEE now handles input value of date in canonical format.
1326: -- However the EE API expects the data in the DD-MON-YYYY format.
1327: -- The DD-MON-YYYY is the default format of the fnd_date.
1328: --
1329: if l_uom_value = 'D' then
1330: begin
1331: l_display_value := fnd_date.date_to_displaydate(

Line 1331: l_display_value := fnd_date.date_to_displaydate(

1327: -- The DD-MON-YYYY is the default format of the fnd_date.
1328: --
1329: if l_uom_value = 'D' then
1330: begin
1331: l_display_value := fnd_date.date_to_displaydate(
1332: fnd_date.canonical_to_date(p_input_value),fnd_date.calendar_aware_alt); -- modified as per bug 11830805
1333: exception
1334: when others then
1335: raise;

Line 1332: fnd_date.canonical_to_date(p_input_value),fnd_date.calendar_aware_alt); -- modified as per bug 11830805

1328: --
1329: if l_uom_value = 'D' then
1330: begin
1331: l_display_value := fnd_date.date_to_displaydate(
1332: fnd_date.canonical_to_date(p_input_value),fnd_date.calendar_aware_alt); -- modified as per bug 11830805
1333: exception
1334: when others then
1335: raise;
1336: end;