DBA Data[Home] [Help]

APPS.AHL_FMP_MR_INTERVAL_PVT dependencies on AHL_DEBUG_PUB

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

2: /* $Header: AHLVMITB.pls 120.4 2007/11/07 22:50:23 sikumar ship $ */
3:
4: G_PKG_NAME VARCHAR2(30) := 'AHL_FMP_MR_INTERVAL_PVT';
5: G_API_NAME VARCHAR2(30) := 'PROCESS_INTERVAL';
6: G_DEBUG VARCHAR2(1) :=AHL_DEBUG_PUB.is_log_enabled;
7:
8: G_APPLN_USAGE VARCHAR2(30) := FND_PROFILE.value( 'AHL_APPLN_USAGE' );
9:
10:

Line 154: AHL_DEBUG_PUB.debug('APPLN USAGE CODE IS NULL IN VALIDATE_API_INPUTS' );

150: FND_MSG_PUB.ADD;
151: x_return_status := FND_API.G_RET_STS_ERROR;
152: RETURN;
153: IF G_DEBUG = 'Y' THEN
154: AHL_DEBUG_PUB.debug('APPLN USAGE CODE IS NULL IN VALIDATE_API_INPUTS' );
155: END IF;
156: END IF;
157:
158:

Line 1602: AHL_DEBUG_PUB.debug('APPLN USAGE CODE IS NULL IN VALIDATE_API_INPUTS' );

1598: FND_MESSAGE.SET_NAME('AHL','AHL_COM_APP_PRFL_UNDEF');
1599: FND_MSG_PUB.ADD;
1600: x_return_status := FND_API.G_RET_STS_ERROR;
1601: IF G_DEBUG = 'Y' THEN
1602: AHL_DEBUG_PUB.debug('APPLN USAGE CODE IS NULL IN VALIDATE_API_INPUTS' );
1603: END IF;
1604: END IF;
1605:
1606:

Line 1753: AHL_DEBUG_PUB.enable_debug;

1749: END IF;
1750:
1751: -- Enable Debug (optional)
1752: IF ( G_DEBUG = 'Y' ) THEN
1753: AHL_DEBUG_PUB.enable_debug;
1754: END IF;
1755:
1756: IF G_DEBUG = 'Y' THEN
1757: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : Begin API' );

Line 1757: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : Begin API' );

1753: AHL_DEBUG_PUB.enable_debug;
1754: END IF;
1755:
1756: IF G_DEBUG = 'Y' THEN
1757: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : Begin API' );
1758: END IF;
1759:
1760: -- Get the PM Installation Flag
1761:

Line 1763: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : Application Installed : ' || G_APPLN_USAGE );

1759:
1760: -- Get the PM Installation Flag
1761:
1762: IF G_DEBUG = 'Y' THEN
1763: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : Application Installed : ' || G_APPLN_USAGE );
1764: END IF;
1765:
1766: -- Validate all the inputs of the API
1767: validate_api_inputs

Line 1845: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after convert_values_to_ids' );

1841: END LOOP;
1842: END IF;
1843:
1844: IF G_DEBUG = 'Y' THEN
1845: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after convert_values_to_ids' );
1846: END IF;
1847:
1848: -- Default interval attributes.
1849: FOR i IN 1..p_x_interval_tbl.count LOOP

Line 1860: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after default_attributes' );

1856: END IF;
1857: END LOOP;
1858:
1859: IF G_DEBUG = 'Y' THEN
1860: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after default_attributes' );
1861: END IF;
1862:
1863: -- Validate all attributes (Item level validation)
1864: IF ( p_validation_level = FND_API.G_VALID_LEVEL_FULL ) THEN

Line 1882: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after validate_attributes' );

1878: END LOOP;
1879: END IF;
1880:
1881: IF G_DEBUG = 'Y' THEN
1882: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after validate_attributes' );
1883: END IF;
1884:
1885: -- Default missing and unchanged attributes.
1886: FOR i IN 1..p_x_interval_tbl.count LOOP

Line 1901: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after default_unchanged_attributes / default_missing_attributes' );

1897: END IF;
1898: END LOOP;
1899:
1900: IF G_DEBUG = 'Y' THEN
1901: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after default_unchanged_attributes / default_missing_attributes' );
1902: END IF;
1903:
1904: -- Perform cross attribute validation and missing attribute checks (Record level validation)
1905: IF ( p_validation_level = FND_API.G_VALID_LEVEL_FULL ) THEN

Line 1928: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after validate_record' );

1924: END LOOP;
1925: END IF;
1926:
1927: IF G_DEBUG = 'Y' THEN
1928: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after validate_record' );
1929: END IF;
1930:
1931: -- Get all the error messages from the previous steps (if any) and raise the appropriate Exception
1932: l_msg_count := FND_MSG_PUB.count_msg;

Line 2087: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after DML operation' );

2083: END IF;
2084: END LOOP;
2085:
2086: IF G_DEBUG = 'Y' THEN
2087: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after DML operation' );
2088: END IF;
2089:
2090: -- Perform cross records validations and duplicate records check
2091: validate_records

Line 2108: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after validate_records' );

2104: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2105: END IF;
2106:
2107: IF G_DEBUG = 'Y' THEN
2108: AHL_DEBUG_PUB.debug( G_PKG_NAME || '.' || G_API_NAME || ' : after validate_records' );
2109: END IF;
2110:
2111: -- Perform the Commit (if requested)
2112: IF FND_API.to_boolean( p_commit ) THEN

Line 2133: AHL_DEBUG_PUB.disable_debug;

2129: );
2130:
2131: -- Disable debug (if enabled)
2132: IF ( G_DEBUG = 'Y' ) THEN
2133: AHL_DEBUG_PUB.disable_debug;
2134: END IF;
2135:
2136: EXCEPTION
2137:

Line 2150: AHL_DEBUG_PUB.disable_debug;

2146: );
2147:
2148: -- Disable debug (if enabled)
2149: IF ( G_DEBUG = 'Y' ) THEN
2150: AHL_DEBUG_PUB.disable_debug;
2151: END IF;
2152:
2153: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2154: ROLLBACK TO process_interval_PVT;

Line 2165: AHL_DEBUG_PUB.disable_debug;

2161: );
2162:
2163: -- Disable debug (if enabled)
2164: IF ( G_DEBUG = 'Y' ) THEN
2165: AHL_DEBUG_PUB.disable_debug;
2166: END IF;
2167:
2168: WHEN OTHERS THEN
2169: ROLLBACK TO process_interval_PVT;

Line 2189: AHL_DEBUG_PUB.disable_debug;

2185: );
2186:
2187: -- Disable debug (if enabled)
2188: IF ( G_DEBUG = 'Y' ) THEN
2189: AHL_DEBUG_PUB.disable_debug;
2190: END IF;
2191:
2192: END process_interval;
2193: