DBA Data[Home] [Help]

APPS.PA_PM_CONTROLS dependencies on PA_PM_CONTROLS

Line 1: PACKAGE BODY PA_PM_CONTROLS AS

1: PACKAGE BODY PA_PM_CONTROLS AS
2: /* $Header: PAPMCONB.pls 120.5 2008/08/13 10:41:38 rtgeorge ship $ */
3:
4: Procedure Action_Allowed (p_action IN VARCHAR2,
5: p_pm_product_code IN VARCHAR2,

Line 48: '->PA_PM_CONTROLS.Action_Allowed';

44: BEGIN
45: l_old_stack := p_error_stack;
46: p_error_code := 0;
47: p_error_stack := p_error_stack ||
48: '->PA_PM_CONTROLS.Action_Allowed';
49: IF p_action IS NULL THEN
50: p_error_code := 10;
51: p_error_stage := 'PA_PM_ACTION_NAME_REQD';
52: RETURN;

Line 158: '->PA_PM_CONTROLS.Get_Project_Actions_Allowed';

154: BEGIN
155: l_old_stack := p_error_stack;
156: p_error_code := 0;
157: p_error_stack := p_error_stack ||
158: '->PA_PM_CONTROLS.Get_Project_Actions_Allowed';
159:
160: p_delete_project_allowed := 'Y';
161: p_update_proj_num_allowed := 'Y';
162: p_update_proj_name_allowed := 'Y';

Line 317: '->PA_PM_CONTROLS.Get_Billing_Actions_Allowed';

313: BEGIN
314: l_old_stack := p_error_stack;
315: p_error_code := 0;
316: p_error_stack := p_error_stack ||
317: '->PA_PM_CONTROLS.Get_Billing_Actions_Allowed';
318:
319: p_update_agreement_allowed := 'Y';
320: p_delete_agreement_allowed := 'Y';
321: p_add_funding_allowed := 'Y';

Line 446: END PA_PM_CONTROLS;

442: p_delete_event_allowed := 'N';
443: P_ERROR_STACK := P_ERROR_STACK || '->' || SUBSTRB(SQLERRM,1,100);
444:
445: END GET_EVENT_ACTIONS_ALLOWED;
446: END PA_PM_CONTROLS;