DBA Data[Home] [Help]

APPS.GMS_POR_API2 dependencies on GMS_POR_API

Line 1: PACKAGE BODY GMS_POR_API2 as

1: PACKAGE BODY GMS_POR_API2 as
2: --$Header: gmspor2b.pls 120.2 2011/08/29 09:56:45 mokukuma ship $
3:
4: --Added debug messages for the bug 12901042
5: --Global Variables initialized in GMS_POR_API2:

Line 5: --Global Variables initialized in GMS_POR_API2:

1: PACKAGE BODY GMS_POR_API2 as
2: --$Header: gmspor2b.pls 120.2 2011/08/29 09:56:45 mokukuma ship $
3:
4: --Added debug messages for the bug 12901042
5: --Global Variables initialized in GMS_POR_API2:
6:
7: g_debug Varchar2(1); -- To check on, whether to print debug messages in log file or not
8: g_error_procedure_name Varchar2 (30);
9: --End for the bug 12901042

Line 81: gms_error_pkg.gms_debug ('Inside GMS_POR_API2.distribute_award','C');

77: g_error_procedure_name := 'distribute_award';
78:
79: --Added debug messages for the bug 12901042
80: IF g_debug = 'Y' THEN
81: gms_error_pkg.gms_debug ('Inside GMS_POR_API2.distribute_award','C');
82: gms_error_pkg.gms_debug (g_error_procedure_name||': START','C');
83: END IF;
84: --End for the bug 12901042
85:

Line 115: --IF gms_por_api.is_sponsored_project (p_project_id) THEN

111: fetch C_spon_project into l_spon_flag ;
112: close C_spon_project ;
113:
114:
115: --IF gms_por_api.is_sponsored_project (p_project_id) THEN
116: IF NVL(l_spon_flag, 'N') = 'Y' THEN
117: IF nvl(l_source_type_code,'INVENTORY') = 'INVENTORY' THEN
118: p_error_msg_label := 'GMS_IP_INVALID_REQ_TYPE';
119: p_status := 'E';

Line 139: gms_error_pkg.gms_debug (g_error_procedure_name||' Before Calling GMS_POR_API.validate_dist_award','C');

135: -- End for the bug 12426747
136:
137: --Added debug messages for the bug 12901042
138: IF g_debug = 'Y' THEN
139: gms_error_pkg.gms_debug (g_error_procedure_name||' Before Calling GMS_POR_API.validate_dist_award','C');
140: END IF;
141: --End for the bug 12901042
142:
143: GMS_POR_API.validate_dist_award(P_project_id,

Line 143: GMS_POR_API.validate_dist_award(P_project_id,

139: gms_error_pkg.gms_debug (g_error_procedure_name||' Before Calling GMS_POR_API.validate_dist_award','C');
140: END IF;
141: --End for the bug 12901042
142:
143: GMS_POR_API.validate_dist_award(P_project_id,
144: P_task_id,
145: P_dummy_award_id,
146: P_expenditure_type,
147: l_status,

Line 152: gms_error_pkg.gms_debug (g_error_procedure_name||' After Calling GMS_POR_API.validate_dist_award','C');

148: l_msg_label ) ;
149:
150: --Added debug messages for the bug 12901042
151: IF g_debug = 'Y' THEN
152: gms_error_pkg.gms_debug (g_error_procedure_name||' After Calling GMS_POR_API.validate_dist_award','C');
153: gms_error_pkg.gms_debug (g_error_procedure_name||' l_status='||l_status,'C');
154: gms_error_pkg.gms_debug (g_error_procedure_name||' l_msg_label='||l_msg_label,'C');
155: END IF;
156: --End for the bug 12901042

Line 305: END GMS_POR_API2;

301: p_status :='U';
302: p_error_msg_label :='GMS_UNDEFINED_EXCEPTION';
303: END distribute_award;
304:
305: END GMS_POR_API2;