DBA Data[Home] [Help]

APPS.AHL_RM_ASSO_DOCASO_PVT dependencies on AHL_DEBUG_PUB

Line 5: G_DEBUG VARCHAR2(1) := NVL(AHL_DEBUG_PUB.is_log_enabled,'N');

1: PACKAGE BODY AHL_RM_ASSO_DOCASO_PVT AS
2: /* $Header: AHLVRODB.pls 120.1.12020000.2 2012/12/07 13:41:23 sareepar ship $ */
3:
4: G_PKG_NAME VARCHAR2(30):= 'AHL_RM_ASSO_DOCASO_PVT';
5: G_DEBUG VARCHAR2(1) := NVL(AHL_DEBUG_PUB.is_log_enabled,'N');
6:
7: -- Populate doc table from RM table info.
8: PROCEDURE Populate_Doc_Tbl(
9: p_x_association_tbl IN OUT NOCOPY doc_association_tbl,

Line 119: AHL_DEBUG_PUB.enable_debug;

115:
116: -- Check if API is called in debug mode. If yes, enable debug.
117:
118: IF G_DEBUG='Y' THEN
119: AHL_DEBUG_PUB.enable_debug;
120: END IF;
121:
122: -- Debug info.
123:

Line 125: AHL_DEBUG_PUB.debug( 'enter ahl_rm_asso_doc_aso_pub.Process Association');

121:
122: -- Debug info.
123:
124: IF G_DEBUG='Y' THEN
125: AHL_DEBUG_PUB.debug( 'enter ahl_rm_asso_doc_aso_pub.Process Association');
126: END IF;
127:
128: -- Initialize message list if p_init_msg_list is set to TRUE.
129: IF FND_API.to_boolean(p_init_msg_list)

Line 226: AHL_DEBUG_PUB.debug( 'before call on AHL_DI_ASSO_DOC_GEN_PUB.PROCESS_ASSOCIATION');

222: p_x_doc_assos_tbl => l_x_doc_assos_tbl
223: );
224:
225:
226: AHL_DEBUG_PUB.debug( 'before call on AHL_DI_ASSO_DOC_GEN_PUB.PROCESS_ASSOCIATION');
227:
228: AHL_DI_ASSO_DOC_GEN_PUB.PROCESS_ASSOCIATION
229: (
230: p_api_version => p_api_version ,

Line 258: AHL_DEBUG_PUB.debug( 'AHL_DI_ASSO_DOC_GEN_PUB.PROCESS_ASSOCIATION is called');

254: p_x_association_tbl(i).OBJECT_VERSION_NUMBER := l_x_doc_assos_tbl(i).OBJECT_VERSION_NUMBER;
255: END LOOP;
256:
257: IF G_DEBUG='Y' THEN
258: AHL_DEBUG_PUB.debug( 'AHL_DI_ASSO_DOC_GEN_PUB.PROCESS_ASSOCIATION is called');
259: AHL_DEBUG_PUB.debug( 'PRITHWI the aso object type code is '|| p_x_association_tbl(1).object_type_code );
260: END IF;
261:
262: IF ( p_x_association_tbl(1).object_type_code = 'OPERATION')

Line 259: AHL_DEBUG_PUB.debug( 'PRITHWI the aso object type code is '|| p_x_association_tbl(1).object_type_code );

255: END LOOP;
256:
257: IF G_DEBUG='Y' THEN
258: AHL_DEBUG_PUB.debug( 'AHL_DI_ASSO_DOC_GEN_PUB.PROCESS_ASSOCIATION is called');
259: AHL_DEBUG_PUB.debug( 'PRITHWI the aso object type code is '|| p_x_association_tbl(1).object_type_code );
260: END IF;
261:
262: IF ( p_x_association_tbl(1).object_type_code = 'OPERATION')
263: THEN

Line 265: AHL_DEBUG_PUB.debug( 'aso_object_type_code = OPERATION');

261:
262: IF ( p_x_association_tbl(1).object_type_code = 'OPERATION')
263: THEN
264: IF G_DEBUG='Y' THEN
265: AHL_DEBUG_PUB.debug( 'aso_object_type_code = OPERATION');
266: END IF;
267:
268: -- Check if the Route is existing and in Draft status
269: --FP #8410484

Line 313: AHL_DEBUG_PUB.debug( 'aso_object_type_code = ROUTE');

309:
310: ELSIF ( p_x_association_tbl(1).object_type_code = 'ROUTE')
311: THEN
312: IF G_DEBUG='Y' THEN
313: AHL_DEBUG_PUB.debug( 'aso_object_type_code = ROUTE');
314: END IF;
315:
316: -- Check if the Route is existing and in Draft status
317: -- FP #8410484

Line 372: AHL_DEBUG_PUB.disable_debug;

368:
369: -- Check if API is called in debug mode. If yes, disable debug.
370:
371: IF G_DEBUG='Y' THEN
372: AHL_DEBUG_PUB.disable_debug;
373: END IF;
374:
375: EXCEPTION
376: WHEN FND_API.G_EXC_ERROR THEN

Line 384: AHL_DEBUG_PUB.log_app_messages (x_msg_count, x_msg_data, 'UNEXPECTED ERROR' );

380: p_count => x_msg_count,
381: p_data => X_msg_data);
382: -- Debug info.
383: IF G_DEBUG='Y' THEN
384: AHL_DEBUG_PUB.log_app_messages (x_msg_count, x_msg_data, 'UNEXPECTED ERROR' );
385: AHL_DEBUG_PUB.debug( 'ahl_rm_asso_doc_aso_pub.Process Association');
386: AHL_DEBUG_PUB.disable_debug;
387: END IF;
388:

Line 385: AHL_DEBUG_PUB.debug( 'ahl_rm_asso_doc_aso_pub.Process Association');

381: p_data => X_msg_data);
382: -- Debug info.
383: IF G_DEBUG='Y' THEN
384: AHL_DEBUG_PUB.log_app_messages (x_msg_count, x_msg_data, 'UNEXPECTED ERROR' );
385: AHL_DEBUG_PUB.debug( 'ahl_rm_asso_doc_aso_pub.Process Association');
386: AHL_DEBUG_PUB.disable_debug;
387: END IF;
388:
389: WHEN OTHERS THEN

Line 386: AHL_DEBUG_PUB.disable_debug;

382: -- Debug info.
383: IF G_DEBUG='Y' THEN
384: AHL_DEBUG_PUB.log_app_messages (x_msg_count, x_msg_data, 'UNEXPECTED ERROR' );
385: AHL_DEBUG_PUB.debug( 'ahl_rm_asso_doc_aso_pub.Process Association');
386: AHL_DEBUG_PUB.disable_debug;
387: END IF;
388:
389: WHEN OTHERS THEN
390: ROLLBACK TO process_association;