DBA Data[Home] [Help]

APPS.PON_AUCTION_APPROVAL_PKG dependencies on PON_CLM_UTIL_PKG

Line 186: l_is_federal := PON_CLM_UTIL_PKG.IS_NEG_DOCUMENT_FEDERAL(p_auction_header_id);

182: l_is_amendment Varchar2(1);
183: l_signed_date Date;
184: Begin
185: l_signed_date := null;
186: l_is_federal := PON_CLM_UTIL_PKG.IS_NEG_DOCUMENT_FEDERAL(p_auction_header_id);
187: if ( l_is_federal = 1 ) THEN
188: l_is_amendment := PON_CLM_UTIL_PKG.IS_AMENDMENT(p_auction_header_id);
189: if ( l_is_amendment = 'Y' ) THEN
190: l_signed_date := wf_engine.GetItemAttrDate (itemtype => itemtype,

Line 188: l_is_amendment := PON_CLM_UTIL_PKG.IS_AMENDMENT(p_auction_header_id);

184: Begin
185: l_signed_date := null;
186: l_is_federal := PON_CLM_UTIL_PKG.IS_NEG_DOCUMENT_FEDERAL(p_auction_header_id);
187: if ( l_is_federal = 1 ) THEN
188: l_is_amendment := PON_CLM_UTIL_PKG.IS_AMENDMENT(p_auction_header_id);
189: if ( l_is_amendment = 'Y' ) THEN
190: l_signed_date := wf_engine.GetItemAttrDate (itemtype => itemtype,
191: itemkey => itemkey,
192: aname => 'SIGNED_DATE');

Line 627: if PON_CLM_UTIL_PKG.IS_DOCUMENT_FEDERAL(l_doctype_id) = 1 then

623:
624: /* Added for Federal CLM Solicitation Amendments Project.
625: * Setting "Is Federal" workflow item attribute to 1
626: */
627: if PON_CLM_UTIL_PKG.IS_DOCUMENT_FEDERAL(l_doctype_id) = 1 then
628: l_is_federal := 1;
629: End if;
630: wf_engine.SetItemAttrNumber (itemtype => l_itemType,
631: itemkey => l_itemKey,

Line 1715: if PON_CLM_UTIL_PKG.IS_NEG_DOCUMENT_FEDERAL(l_auction_header_id) = 1 then

1711: /* For CLM ST bug 9766460 : Commented below line
1712: * When user approves from notification, then signed_date should be same as approval_date.
1713: */
1714: --l_signed_date := Get_Signed_Date(l_auction_header_id, itemtype, itemkey);
1715: if PON_CLM_UTIL_PKG.IS_NEG_DOCUMENT_FEDERAL(l_auction_header_id) = 1 then
1716: l_signed_date := l_approve_date;
1717: else
1718: l_signed_date := null;
1719: end if;

Line 1835: if PON_CLM_UTIL_PKG.IS_NEG_DOCUMENT_FEDERAL(l_auction_header_id) = 1 then

1831: /* For CLM ST bug 9766460 : Commented above line
1832: * When user rejects from notification, then signed_date should be same as rejection_date.
1833: */
1834: --l_signed_date := Get_Signed_Date(l_auction_header_id, itemtype, itemkey);
1835: if PON_CLM_UTIL_PKG.IS_NEG_DOCUMENT_FEDERAL(l_auction_header_id) = 1 then
1836: l_signed_date := l_reject_date;
1837: else
1838: l_signed_date := null;
1839: end if;

Line 2874: avalue => PON_CLM_UTIL_PKG.GET_COPY_ERR_MSGS(l_msg_count,l_unexp_error));

2870: if l_return_status = 'E' then
2871: wf_engine.SetItemAttrText(itemtype => itemType,
2872: itemkey => itemKey,
2873: aname => 'CONF_DOC_ERROR_MESSAGE',
2874: avalue => PON_CLM_UTIL_PKG.GET_COPY_ERR_MSGS(l_msg_count,l_unexp_error));
2875: wf_engine.SetItemAttrText(itemtype => itemType,
2876: itemkey => itemKey,
2877: aname => 'CONF_DOC_IS_UNEXP_ERROR',
2878: avalue => l_unexp_error);