DBA Data[Home] [Help]

APPS.POR_AME_APPROVAL_LIST dependencies on AME_API3

Line 564: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.getAvailableInsertions()..');

560: -- Ame will give the output available list if the insertion is possible.
561: if g_fnd_debug = 'Y' then
562: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
563: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, ' final absolutePosition :' || absolutePosition );
564: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.getAvailableInsertions()..');
565: END IF;
566: end if;
567:
568: ame_api3.getAvailableInsertions( applicationIdIn => applicationId,

Line 568: ame_api3.getAvailableInsertions( applicationIdIn => applicationId,

564: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.getAvailableInsertions()..');
565: END IF;
566: end if;
567:
568: ame_api3.getAvailableInsertions( applicationIdIn => applicationId,
569: transactionIdIn => pReqHeaderId,
570: positionIn => absolutePosition,
571: transactionTypeIn => ameTransactionType,
572: availableInsertionsOut => availableInsertionList

Line 577: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.getAvailableInsertions()..');

573: );
574:
575: if g_fnd_debug = 'Y' then
576: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
577: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.getAvailableInsertions()..');
578: END IF;
579: end if;
580:
581: -- Iterate through the available list and find out the authority approver insertion location.

Line 671: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.insertApprover()..');

667: if (hasAvailableOrder) then
668:
669: if g_fnd_debug = 'Y' then
670: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
671: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.insertApprover()..');
672: END IF;
673: end if;
674:
675: ame_api3.insertApprover( applicationIdIn => applicationId,

Line 675: ame_api3.insertApprover( applicationIdIn => applicationId,

671: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.insertApprover()..');
672: END IF;
673: end if;
674:
675: ame_api3.insertApprover( applicationIdIn => applicationId,
676: transactionIdIn => pReqHeaderId,
677: approverIn => tmpApprover,
678: positionIn => absolutePosition,
679: insertionIn => insertOrder,

Line 685: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.insertApprover()..');

681: );
682:
683: if g_fnd_debug = 'Y' then
684: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
685: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.insertApprover()..');
686: END IF;
687: end if;
688: -- Once we insert an approver to ame, get the updated list of approvers from ame.
689: getAllApprovers(pReqHeaderId, ameTransactionType, pApprovalListStr, pApprovalListCount);

Line 877: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.suppressApprover()..');

873: -- Call the ame api to delete the approver.
874: -- tmpApprover will be deleted from the approver list
875: if g_fnd_debug = 'Y' then
876: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
877: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.suppressApprover()..');
878: END IF;
879: end if;
880: ame_api3.suppressApprover( applicationIdIn => applicationId,
881: transactionIdIn => pReqHeaderId,

Line 880: ame_api3.suppressApprover( applicationIdIn => applicationId,

876: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
877: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.suppressApprover()..');
878: END IF;
879: end if;
880: ame_api3.suppressApprover( applicationIdIn => applicationId,
881: transactionIdIn => pReqHeaderId,
882: approverIn => tmpApprover,
883: transactionTypeIn => ameTransactionType
884: );

Line 888: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.suppressApprover()..');

884: );
885:
886: if g_fnd_debug = 'Y' then
887: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
888: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.suppressApprover()..');
889: END IF;
890: end if;
891:
892: if (tmpApprover.orig_system=ame_util.posOrigSystem) THEN

Line 1420: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.getOldApprovers()...');

1416: pFieldDelimiter :=fieldDelimiter;
1417:
1418: if g_fnd_debug = 'Y' then
1419: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
1420: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.getOldApprovers()...');
1421: END IF;
1422: end if;
1423:
1424: /*

Line 1425: ame_api3.getOldApprovers(applicationIdIn=>applicationId,

1421: END IF;
1422: end if;
1423:
1424: /*
1425: ame_api3.getOldApprovers(applicationIdIn=>applicationId,
1426: transactionIdIn=>pReqHeaderId,
1427: transactionTypeIn=>ameTransactionType,
1428: oldApproversOut=>approverList);
1429: */

Line 1440: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.getOldApprovers()...');

1436: );
1437:
1438: if g_fnd_debug = 'Y' then
1439: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
1440: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.getOldApprovers()...');
1441: END IF;
1442: end if;
1443:
1444: pApprovalListCount := approverList.count;

Line 1785: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.getAttributeValue()...');

1781: pAmeTransactionType => ameTransactionType);
1782:
1783: if g_fnd_debug = 'Y' then
1784: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
1785: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.getAttributeValue()...');
1786: END IF;
1787: end if;
1788: ame_api3.getAttributeValue(applicationIdIn => applicationId,
1789: transactionTypeIn => ameTransactionType,

Line 1788: ame_api3.getAttributeValue(applicationIdIn => applicationId,

1784: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
1785: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Invoking ame_api3.getAttributeValue()...');
1786: END IF;
1787: end if;
1788: ame_api3.getAttributeValue(applicationIdIn => applicationId,
1789: transactionTypeIn => ameTransactionType,
1790: transactionIdIn => pReqHeaderId,
1791: attributeNameIn => ame_util.allowDeletingOamApprovers,
1792: itemIdIn => NULL,

Line 1799: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.getAttributeValue()...');

1795: attributeValue3Out => attributeValue3);
1796:
1797: if g_fnd_debug = 'Y' then
1798: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN
1799: FND_LOG.string(FND_LOG.level_statement, g_module_prefix || l_api_name, 'Done with ame_api3.getAttributeValue()...');
1800: END IF;
1801: end if;
1802:
1803: IF attributeValue1 = 'true' THEN