DBA Data[Home] [Help]

APPS.PON_SOURCING_OPENAPI_GRP dependencies on FND_MSG_PUB

Line 2429: FND_MSG_PUB.initialize;

2425: x_return_status:= FND_API.G_RET_STS_SUCCESS;
2426:
2427: -- initialize meesage list
2428: IF (FND_API.to_Boolean(nvl(p_init_msg_list,FND_API.G_FALSE))) THEN
2429: FND_MSG_PUB.initialize;
2430: END IF;
2431:
2432: x_cpa_enabled := 'Y';
2433:

Line 2437: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

2433:
2434: EXCEPTION
2435: WHEN OTHERS THEN
2436: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2437: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
2438: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name,SQLERRM);
2439: IF ( FND_LOG.level_unexpected >= fnd_log.g_current_runtime_level) then
2440: FND_LOG.string(log_level => FND_LOG.level_unexpected
2441: ,module => l_pkg_name ||'.'||l_api_name

Line 2438: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name,SQLERRM);

2434: EXCEPTION
2435: WHEN OTHERS THEN
2436: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2437: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
2438: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name,SQLERRM);
2439: IF ( FND_LOG.level_unexpected >= fnd_log.g_current_runtime_level) then
2440: FND_LOG.string(log_level => FND_LOG.level_unexpected
2441: ,module => l_pkg_name ||'.'||l_api_name
2442: ,message => SQLERRM);

Line 2445: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count

2441: ,module => l_pkg_name ||'.'||l_api_name
2442: ,message => SQLERRM);
2443: END IF;
2444: END IF;
2445: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count
2446: ,p_data => x_msg_data);
2447: END is_cpa_integration_enabled;
2448:
2449: /* ======================================================================

Line 2453: p_init_msg_list IN call FND_MSG_PUB.initialize() ? T/F

2449: /* ======================================================================
2450: PROCEDURE : get_display_line_number PUBLIC
2451: PARAMETERS:
2452: p_api_version IN API Version (currently 1.0)
2453: p_init_msg_list IN call FND_MSG_PUB.initialize() ? T/F
2454: p_auction_header_id IN Auction Header Id of Sourcing document
2455: p_auction_line_number IN Line Number (internal) within the Sourcing document
2456: x_display_line_number OUT Line Number for display to users (buffer size 25)
2457: x_result OUT One of G_RET_STS_SUCCESS, G_RET_STS_ERROR, G_RET_STS_UNEXP_ERROR

Line 2490: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count,

2486: IF NOT (FND_API.compatible_api_call(l_api_version,
2487: p_api_version,
2488: l_api_name,
2489: l_pkg_name)) THEN
2490: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count,
2491: p_data => x_msg_data);
2492: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2493: END IF;
2494:

Line 2497: FND_MSG_PUB.initialize();

2493: END IF;
2494:
2495: -- initialize meesage list
2496: IF (FND_API.to_Boolean(nvl(p_init_msg_list, FND_API.G_FALSE))) THEN
2497: FND_MSG_PUB.initialize();
2498: END IF;
2499:
2500: begin
2501: select

Line 2513: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

2509: line_number = p_auction_line_number;
2510: exception
2511: when others then
2512: x_return_status := FND_API.G_RET_STS_ERROR;
2513: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
2514: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);
2515: IF ( FND_LOG.level_error >= fnd_log.g_current_runtime_level) then
2516: FND_LOG.string(log_level => FND_LOG.level_error,
2517: module => l_pkg_name || '.' || l_api_name,

Line 2514: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);

2510: exception
2511: when others then
2512: x_return_status := FND_API.G_RET_STS_ERROR;
2513: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
2514: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);
2515: IF ( FND_LOG.level_error >= fnd_log.g_current_runtime_level) then
2516: FND_LOG.string(log_level => FND_LOG.level_error,
2517: module => l_pkg_name || '.' || l_api_name,
2518: message => 'Negotiation ' || p_auction_header_id || ' and line ' || p_auction_line_number || ' not found. ' || SQLERRM);

Line 2521: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count,

2517: module => l_pkg_name || '.' || l_api_name,
2518: message => 'Negotiation ' || p_auction_header_id || ' and line ' || p_auction_line_number || ' not found. ' || SQLERRM);
2519: END IF;
2520: END IF;
2521: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count,
2522: p_data => x_msg_data);
2523: return;
2524: end;
2525:

Line 2531: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

2527:
2528: exception
2529: when others then
2530: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2531: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
2532: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);
2533: IF (FND_LOG.level_unexpected >= fnd_log.g_current_runtime_level) then
2534: FND_LOG.string(log_level => FND_LOG.level_unexpected,
2535: module => l_pkg_name ||'.'|| l_api_name,

Line 2532: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);

2528: exception
2529: when others then
2530: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2531: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
2532: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);
2533: IF (FND_LOG.level_unexpected >= fnd_log.g_current_runtime_level) then
2534: FND_LOG.string(log_level => FND_LOG.level_unexpected,
2535: module => l_pkg_name ||'.'|| l_api_name,
2536: message => SQLERRM);

Line 2539: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count,

2535: module => l_pkg_name ||'.'|| l_api_name,
2536: message => SQLERRM);
2537: END IF;
2538: END IF;
2539: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count,
2540: p_data => x_msg_data);
2541: end get_display_line_number;
2542:
2543: