DBA Data[Home] [Help]

APPS.XTR_EXP_TRANSFERS_PKG dependencies on XTR_AMOUNT_ACTIONS_V

Line 89: from XTR_AMOUNT_ACTIONS_V

85: RETURN VARCHAR2 IS
86:
87: cursor Get_Type is
88: select ACTION_CODE
89: from XTR_AMOUNT_ACTIONS_V
90: where DEAL_TYPE = p_deal_type
91: and AMOUNT_TYPE = 'AMOUNT'
92: and USER_ACTION_CODE = p_user_action_code;
93:

Line 357: from xtr_amount_actions_v

353: function VALID_ACTION(p_action IN VARCHAR2,
354: p_deal_type IN VARCHAR2) return boolean IS
355: CURSOR action IS
356: select COUNT(*)
357: from xtr_amount_actions_v
358: where amount_type = 'AMOUNT'
359: and deal_type = 'EXP'
360: and user_action_code = p_action;
361: