DBA Data[Home] [Help]

APPS.AHL_FMP_COMMON_PVT dependencies on AHL_DEBUG_PUB

Line 6: G_DEBUG VARCHAR2(1):=AHL_DEBUG_PUB.is_log_enabled;

2: /* $Header: AHLVFCMB.pls 120.7 2008/03/24 08:07:25 pdoki ship $ */
3:
4: G_PKG_NAME VARCHAR2(30):='AHL_FMP_COMMON_PVT';
5: G_APPLN_USAGE VARCHAR2(30):=LTRIM(RTRIM(FND_PROFILE.VALUE('AHL_APPLN_USAGE')));
6: G_DEBUG VARCHAR2(1):=AHL_DEBUG_PUB.is_log_enabled;
7: -- Procedure to validate lookups
8: PROCEDURE validate_lookup
9: (
10: x_return_status OUT NOCOPY VARCHAR2,

Line 1298: AHL_DEBUG_PUB.enable_debug;

1294: l_mr_status_code varchar2(30);
1295: BEGIN
1296: x_return_status := FND_API.G_RET_STS_SUCCESS;
1297: IF ( G_DEBUG = 'Y' ) THEN
1298: AHL_DEBUG_PUB.enable_debug;
1299: AHL_DEBUG_PUB.debug('Step A' );
1300: END IF;
1301:
1302: IF ( p_mr_header_id IS NULL OR

Line 1299: AHL_DEBUG_PUB.debug('Step A' );

1295: BEGIN
1296: x_return_status := FND_API.G_RET_STS_SUCCESS;
1297: IF ( G_DEBUG = 'Y' ) THEN
1298: AHL_DEBUG_PUB.enable_debug;
1299: AHL_DEBUG_PUB.debug('Step A' );
1300: END IF;
1301:
1302: IF ( p_mr_header_id IS NULL OR
1303: p_mr_header_id = FND_API.G_MISS_NUM ) THEN

Line 1308: AHL_DEBUG_PUB.debug('Step A3' );

1304: x_return_status := FND_API.G_RET_STS_ERROR;
1305: x_msg_data := 'AHL_FMP_MR_HEADER_ID_INVALID';
1306: RETURN;
1307: END IF;
1308: AHL_DEBUG_PUB.debug('Step A3' );
1309: OPEN check_mr_status( p_mr_header_id );
1310:
1311: FETCH check_mr_status INTO l_mr_status_code;
1312:

Line 1319: AHL_DEBUG_PUB.debug('Step A6' );

1315: x_msg_data := 'AHL_FMP_INVALID_MR';
1316: CLOSE check_mr_status;
1317: RETURN;
1318: END IF;
1319: AHL_DEBUG_PUB.debug('Step A6' );
1320: IF ( l_mr_status_code <> 'DRAFT' AND
1321: l_mr_status_code <> 'APPROVAL_REJECTED' ) THEN
1322: x_return_status := FND_API.G_RET_STS_ERROR;
1323: AHL_DEBUG_PUB.debug('Step 1' );

Line 1323: AHL_DEBUG_PUB.debug('Step 1' );

1319: AHL_DEBUG_PUB.debug('Step A6' );
1320: IF ( l_mr_status_code <> 'DRAFT' AND
1321: l_mr_status_code <> 'APPROVAL_REJECTED' ) THEN
1322: x_return_status := FND_API.G_RET_STS_ERROR;
1323: AHL_DEBUG_PUB.debug('Step 1' );
1324: x_msg_data := 'AHL_FMP_INVALID_MR_STATUS';
1325: AHL_DEBUG_PUB.debug('Step 2' );
1326: CLOSE check_mr_status;
1327: RETURN;

Line 1325: AHL_DEBUG_PUB.debug('Step 2' );

1321: l_mr_status_code <> 'APPROVAL_REJECTED' ) THEN
1322: x_return_status := FND_API.G_RET_STS_ERROR;
1323: AHL_DEBUG_PUB.debug('Step 1' );
1324: x_msg_data := 'AHL_FMP_INVALID_MR_STATUS';
1325: AHL_DEBUG_PUB.debug('Step 2' );
1326: CLOSE check_mr_status;
1327: RETURN;
1328: END IF;
1329: