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 916: L_VOTING_REGIME = ame_util.firstApproverVoting) THEN

912: --Bug 4577122 : start
913:
914: IF GET_USER_RESPONSE_RESULT_REC.LOOKUP_CODE = 'REJECTED' or
915: (GET_USER_RESPONSE_RESULT_REC.LOOKUP_CODE = 'APPROVED' AND
916: L_VOTING_REGIME = ame_util.firstApproverVoting) THEN
917: --Bug 4577122 : end
918:
919: --Bug 4272262: Start
920: --Convert signature sequence to a number value.

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

1287: AND SIGNATURE_STATUS <> 'APPROVED' ;
1288:
1289: --Bug 4577122: Start
1290: --IF l_count = 0 THEN
1291: IF (l_count = 0 or l_voting_regime = ame_util.firstApproverVoting) THEN
1292: --Bug 4577122: End
1293:
1294: /* if all signers are approved set the status of edr_erecords to presuccess.
1295: this will be used on list of signer screen to handle done button. */

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

1300:
1301:
1302: --Bug 4577122: Start
1303: --clear out the status etc fields of rest of the edr_esignatures
1304: if (l_voting_regime = ame_util.firstApproverVoting) then
1305: update edr_esignatures
1306: set signature_status = null
1307: where event_id = l_event_id
1308: and signature_status = 'PENDING';