DBA Data[Home] [Help]

APPS.POR_AME_APPROVAL_LIST dependencies on PO_WF_UTIL_PKG

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

1034: SELECT wf_item_type, wf_item_key
1035: INTO l_itemtype, l_itemkey
1036: FROM po_requisition_headers_all
1037: WHERE requisition_header_id = pReqHeaderId;
1038: ameTransactionType := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
1039: itemkey => l_itemkey,
1040: aname => 'AME_TRANSACTION_TYPE');
1041: else
1042: getAmeTransactionType(pReqHeaderId => pReqHeaderId,

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

1288: FROM po_requisition_headers_all
1289: WHERE requisition_header_id = pReqHeaderId;
1290: end if;
1291:
1292: isAmeApproval := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
1293: itemkey => l_itemkey,
1294: aname => 'IS_AME_APPROVAL');
1295:
1296: if (isAmeApproval = 'Y') then

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

1293: itemkey => l_itemkey,
1294: aname => 'IS_AME_APPROVAL');
1295:
1296: if (isAmeApproval = 'Y') then
1297: xAmeTransactionType := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
1298: itemkey => l_itemkey,
1299: aname => 'AME_TRANSACTION_TYPE');
1300: return 'Y';
1301: else

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

2426: END IF;
2427: end if;
2428:
2429: -- Check whether it is ame approval or not.
2430: x_is_ame_approval := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
2431: itemkey => l_itemkey,
2432: aname => 'IS_AME_APPROVAL'
2433: );
2434:

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

2476:
2477: -- Check RCO approval type is ame approval or not.
2478: if( 'Y' = x_is_rco_approval ) then
2479: if( l_itemtype is not null AND l_itemkey is not null ) then
2480: x_is_ame_approval := PO_WF_UTIL_PKG.GetItemAttrText( itemtype => l_itemtype,
2481: itemkey => l_itemkey,
2482: aname => 'IS_AME_APPROVAL'
2483: );
2484: end if;