DBA Data[Home] [Help]

APPS.PAY_KR_BEE_UPLOAD dependencies on FND_DATE

Line 268: ( p_effective_date=> fnd_date.canonical_to_date (p_effective_date)

264:
265: -- Create the Batch header
266:
267: create_batch_header
268: ( p_effective_date=> fnd_date.canonical_to_date (p_effective_date)
269: ,p_name => substr(p_batch_name||'('||fnd_date.date_to_displaydt(SYSDATE)||')',1,30)
270: ,p_bg_id => p_business_group_id
271: ,p_action_if_exists=> NVL (p_action_if_exists,
272: c_default_action_if_exists)

Line 269: ,p_name => substr(p_batch_name||'('||fnd_date.date_to_displaydt(SYSDATE)||')',1,30)

265: -- Create the Batch header
266:
267: create_batch_header
268: ( p_effective_date=> fnd_date.canonical_to_date (p_effective_date)
269: ,p_name => substr(p_batch_name||'('||fnd_date.date_to_displaydt(SYSDATE)||')',1,30)
270: ,p_bg_id => p_business_group_id
271: ,p_action_if_exists=> NVL (p_action_if_exists,
272: c_default_action_if_exists)
273: ,p_date_effective_changes=> p_date_effective_changes

Line 325: p_session_date => fnd_date.canonical_to_date (p_effective_date),

321:
322: break_up_line (
323:
324: p_line => l_line_read,
325: p_session_date => fnd_date.canonical_to_date (p_effective_date),
326: p_batch_id => l_batch_id,
327: p_batch_seq => l_batch_seq,
328: p_delimiter => p_delimiter,
329: p_bg_id => p_business_group_id,

Line 415: hr_utility.set_message_token (800, 'FORMAT',fnd_date.user_mask);

411:
412: -- Set the application error
413: hr_utility.set_message (800, 'HR_78036_WRONG_DATE_FORMAT');
414: hr_utility.set_message_token (800, 'LINE_NR', l_batch_seq);
415: hr_utility.set_message_token (800, 'FORMAT',fnd_date.user_mask);
416:
417:
418: hr_utility.set_message_token (800, 'LINE', l_line_read);
419: -- Write the message to log file, do not raise an application error but continue

Line 631: fnd_date.chardate_to_date (

627: -- First field in file is the session_date, this should be NULL
628: BEGIN
629: p_batch_line.session_date :=
630: NVL (
631: fnd_date.chardate_to_date (
632: get_field (p_line => l_line, p_delimiter => p_delimiter)
633: ),
634: p_session_date
635: );

Line 735: fnd_date.chardate_to_date (

731: -- We will default this later. This is to fix bug 2058082.
732: -- Field 29 contains the effective_date
733:
734: p_batch_line.effective_date :=
735: fnd_date.chardate_to_date (
736: get_field (p_line => l_line, p_delimiter => p_delimiter)
737: );
738: EXCEPTION
739: WHEN OTHERS

Line 770: fnd_date.chardate_to_date (

766: -- or the start date of the assignment
767:
768: p_batch_line.effective_start_date :=
769: NVL (
770: fnd_date.chardate_to_date (
771: get_field (
772: p_line=> l_line,
773: p_delimiter=> p_delimiter
774: )

Line 788: fnd_date.chardate_to_date (

784: -- In that case we should use the date provided (or end of ear).
785: -- By setting it to EOT when NULL, LEAST will always evaluate to the other value
786: p_batch_line.effective_end_date :=
787: NVL (
788: fnd_date.chardate_to_date (
789: get_field (
790: p_line=> l_line,
791: p_delimiter=> p_delimiter
792: )