DBA Data[Home] [Help]

APPS.WF_XML dependencies on FND_DATE

Line 5515: -- fnd_date.canonical_to_date stores value in

5511: --else
5512: -- <> bug 8430385
5513: ELSIF ( l_responses(i).type = 'DATE' AND lk_code IS NOT null ) then --
5514: -- Just a note :
5515: -- fnd_date.canonical_to_date stores value in
5516: -- varchar2(30); so it may fail for values larger than (in bytes) that.
5517: --
5518: wf_notification.SetAttrDate(l_nid, l_responses(i).name,
5519: fnd_date.canonical_to_date(lk_code));

Line 5519: fnd_date.canonical_to_date(lk_code));

5515: -- fnd_date.canonical_to_date stores value in
5516: -- varchar2(30); so it may fail for values larger than (in bytes) that.
5517: --
5518: wf_notification.SetAttrDate(l_nid, l_responses(i).name,
5519: fnd_date.canonical_to_date(lk_code));
5520: elsif (l_responses(i).type = 'NUMBER' ) then
5521: wf_notification.SetAttrNumber(l_nid, l_responses(i).name,
5522: fnd_number.canonical_to_number(lk_code));
5523: else