DBA Data[Home] [Help]

APPS.POR_AME_APPROVAL_LIST dependencies on PO_WF_UTIL_PKG

Line 1071: ameTransactionType := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,

1067: SELECT wf_item_type, wf_item_key
1068: INTO l_itemtype, l_itemkey
1069: FROM po_requisition_headers_all
1070: WHERE requisition_header_id = pReqHeaderId;
1071: ameTransactionType := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
1072: itemkey => l_itemkey,
1073: aname => 'AME_TRANSACTION_TYPE');
1074: else
1075: getAmeTransactionType(pReqHeaderId => pReqHeaderId,

Line 1351: isAmeApproval := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,

1347: FROM po_requisition_headers_all
1348: WHERE requisition_header_id = pReqHeaderId;
1349: end if;
1350:
1351: isAmeApproval := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
1352: itemkey => l_itemkey,
1353: aname => 'IS_AME_APPROVAL');
1354:
1355: if (isAmeApproval = 'Y') then

Line 1356: xAmeTransactionType := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,

1352: itemkey => l_itemkey,
1353: aname => 'IS_AME_APPROVAL');
1354:
1355: if (isAmeApproval = 'Y') then
1356: xAmeTransactionType := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
1357: itemkey => l_itemkey,
1358: aname => 'AME_TRANSACTION_TYPE');
1359: return 'Y';
1360: else

Line 2500: x_is_ame_approval := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,

2496: END IF;
2497: end if;
2498:
2499: -- Check whether it is ame approval or not.
2500: x_is_ame_approval := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
2501: itemkey => l_itemkey,
2502: aname => 'IS_AME_APPROVAL'
2503: );
2504:

Line 2550: x_is_ame_approval := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,

2546:
2547: -- Check RCO approval type is ame approval or not.
2548: if( 'Y' = x_is_rco_approval ) then
2549: if( l_itemtype is not null AND l_itemkey is not null ) then
2550: x_is_ame_approval := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
2551: itemkey => l_itemkey,
2552: aname => 'IS_AME_APPROVAL'
2553: );
2554: end if;