DBA Data[Home] [Help]

APPS.AME_ACTION_API dependencies on DBMS_UTILITY

Line 397: -- Call DBMS_UTILITY.FORMAT_CALL_STACK to check if the call has been

393: ,p_hook_type => 'AP'
394: );
395: end;
396: -- insert the row in ame_action_type_usages
397: -- Call DBMS_UTILITY.FORMAT_CALL_STACK to check if the call has been
398: -- made from the 'AME_ACTION_SWI' package.
399: if (instrb(DBMS_UTILITY.FORMAT_CALL_STACK,'AME_ACTION_SWI') = 0) then
400: create_ame_appr_type_usage(p_validate => p_validate,
401: p_action_type_id => l_action_type_id,

Line 399: if (instrb(DBMS_UTILITY.FORMAT_CALL_STACK,'AME_ACTION_SWI') = 0) then

395: end;
396: -- insert the row in ame_action_type_usages
397: -- Call DBMS_UTILITY.FORMAT_CALL_STACK to check if the call has been
398: -- made from the 'AME_ACTION_SWI' package.
399: if (instrb(DBMS_UTILITY.FORMAT_CALL_STACK,'AME_ACTION_SWI') = 0) then
400: create_ame_appr_type_usage(p_validate => p_validate,
401: p_action_type_id => l_action_type_id,
402: p_approver_type_id => p_approver_type_id,
403: p_object_version_number => l_apu_object_version_number,

Line 773: -- Call DBMS_UTILITY.FORMAT_CALL_STACK to check if the call has been

769: l_effective_date := sysdate;
770: -- Issue a savepoint.
771: --
772: savepoint create_ame_action_type_config;
773: -- Call DBMS_UTILITY.FORMAT_CALL_STACK to check if the call has been
774: -- made from the 'AME_ACTION_SWI' package.
775: if (instrb(DBMS_UTILITY.FORMAT_CALL_STACK,'AME_ACTION_SWI') <> 0) then
776: -- insert the row in ame_action_type_config with default voting regime
777: -- and default chain ordering mode.

Line 775: if (instrb(DBMS_UTILITY.FORMAT_CALL_STACK,'AME_ACTION_SWI') <> 0) then

771: --
772: savepoint create_ame_action_type_config;
773: -- Call DBMS_UTILITY.FORMAT_CALL_STACK to check if the call has been
774: -- made from the 'AME_ACTION_SWI' package.
775: if (instrb(DBMS_UTILITY.FORMAT_CALL_STACK,'AME_ACTION_SWI') <> 0) then
776: -- insert the row in ame_action_type_config with default voting regime
777: -- and default chain ordering mode.
778: /* l_voting_regime := ame_util.serializedVoting;
779: l_chain_ordering_mode := ame_util.serialChainsMode;

Line 1784: -- Call DBMS_UTILITY.FORMAT_CALL_STACK to check if the call has been made from the 'AME_ACTION_SWI' package.

1780: l_aty_object_version_number := p_object_version_number;
1781: savepoint delete_ame_action_type;
1782: --
1783: -- Process Logic
1784: -- Call DBMS_UTILITY.FORMAT_CALL_STACK to check if the call has been made from the 'AME_ACTION_SWI' package.
1785: --if (instrb(DBMS_UTILITY.FORMAT_CALL_STACK,'AME_ACTION_SWI') = 0) then
1786: -- Remove action type configs
1787: Open action_type_conf_cur(p_action_type_id => p_action_type_id,
1788: p_effective_date => l_effective_date);

Line 1785: --if (instrb(DBMS_UTILITY.FORMAT_CALL_STACK,'AME_ACTION_SWI') = 0) then

1781: savepoint delete_ame_action_type;
1782: --
1783: -- Process Logic
1784: -- Call DBMS_UTILITY.FORMAT_CALL_STACK to check if the call has been made from the 'AME_ACTION_SWI' package.
1785: --if (instrb(DBMS_UTILITY.FORMAT_CALL_STACK,'AME_ACTION_SWI') = 0) then
1786: -- Remove action type configs
1787: Open action_type_conf_cur(p_action_type_id => p_action_type_id,
1788: p_effective_date => l_effective_date);
1789: Fetch action_type_conf_cur into l_config_count;