DBA Data[Home] [Help]

APPS.EDR_PSIG_PAGE_FLOW dependencies on AME_UTIL

Line 255: if (p_voting_regime = ame_util.firstApproverVoting) then

251:
252: BEGIN
253:
254: --Change related to bug 4577122
255: if (p_voting_regime = ame_util.firstApproverVoting) then
256:
257: select count(*) into l_approver_count
258: from edr_esignatures
259: where event_id = p_event_id

Line 497: if (l_voting_regime = ame_util.firstApproverVoting) then

493: l_doc_id := GET_WF_ITEM_ATTRIBUTE_NUMBER(p_itemtype, p_itemkey,'EDR_PSIG_DOC_ID');
494:
495: --Bug 4577122: Start
496: --clear out the status etc fields of edr_psig_details IFF voting regime is F
497: if (l_voting_regime = ame_util.firstApproverVoting) then
498: edr_psig.clear_pending_signatures(l_doc_id);
499: end if;
500: --Bug 4577122: End
501:

Line 929: L_VOTING_REGIME = ame_util.firstApproverVoting) THEN

925: --Bug 4577122 : start
926:
927: IF GET_USER_RESPONSE_RESULT_REC.LOOKUP_CODE = 'REJECTED' or
928: (GET_USER_RESPONSE_RESULT_REC.LOOKUP_CODE = 'APPROVED' AND
929: L_VOTING_REGIME = ame_util.firstApproverVoting) THEN
930: --Bug 4577122 : end
931:
932: --Bug 4272262: Start
933: --Convert signature sequence to a number value.

Line 1313: IF (l_count = 0 or l_voting_regime = ame_util.firstApproverVoting) THEN

1309: AND SIGNATURE_STATUS <> 'APPROVED' ;
1310:
1311: --Bug 4577122: Start
1312: --IF l_count = 0 THEN
1313: IF (l_count = 0 or l_voting_regime = ame_util.firstApproverVoting) THEN
1314: --Bug 4577122: End
1315:
1316: /* if all signers are approved set the status of edr_erecords to presuccess.
1317: this will be used on list of signer screen to handle done button. */

Line 1326: if (l_voting_regime = ame_util.firstApproverVoting) then

1322:
1323:
1324: --Bug 4577122: Start
1325: --clear out the status etc fields of rest of the edr_esignatures
1326: if (l_voting_regime = ame_util.firstApproverVoting) then
1327: update edr_esignatures
1328: set signature_status = null
1329: where event_id = l_event_id
1330: and signature_status = 'PENDING';