DBA Data[Home] [Help]

APPS.GHR_WF_PD_PKG dependencies on FND_DATE

Line 116: l_date_initiated := fnd_date.date_to_displaydate(sysdate);

112: aname => 'ROUTING_GROUP',
113: avalue => l_routing_group
114: );
115:
116: l_date_initiated := fnd_date.date_to_displaydate(sysdate);
117: wf_engine.SetItemAttrText( itemtype => l_itemtype,
118: itemkey => l_itemkey,
119: aname => 'DATE_INITIATED',
120: avalue => l_date_initiated

Line 581: p_date_received := fnd_date.date_to_displaydate(sysdate);

577: fetch csr_get_routing_details into l_action_taken, l_date_notification_sent;
578: exit when csr_get_routing_details%NOTFOUND;
579: if l_count = 0 then
580: p_current_status := l_action_taken;
581: p_date_received := fnd_date.date_to_displaydate(sysdate);
582: l_count := 1;
583: end if;
584: --
585: if l_count = 1 and l_action_taken Is Not Null then

Line 592: p_date_inititated := fnd_date.date_to_displaydate(l_date_notification_sent);

588: end if;
589: --
590: if l_action_taken in ('REOPENED','INITIATED') then
591: if l_date_notification_sent Is Not Null then
592: p_date_inititated := fnd_date.date_to_displaydate(l_date_notification_sent);
593: exit;
594: end if;
595: end if;
596: end loop;