DBA Data[Home] [Help]

APPS.PON_SOURCING_OPENAPI_GRP dependencies on FND_MSG_PUB

Line 2914: FND_MSG_PUB.initialize;

2910: x_return_status:= FND_API.G_RET_STS_SUCCESS;
2911:
2912: -- initialize meesage list
2913: IF (FND_API.to_Boolean(nvl(p_init_msg_list,FND_API.G_FALSE))) THEN
2914: FND_MSG_PUB.initialize;
2915: END IF;
2916:
2917: x_cpa_enabled := 'Y';
2918:

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

2918:
2919: EXCEPTION
2920: WHEN OTHERS THEN
2921: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2922: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
2923: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name,SQLERRM);
2924: IF ( FND_LOG.level_unexpected >= fnd_log.g_current_runtime_level) then
2925: FND_LOG.string(log_level => FND_LOG.level_unexpected
2926: ,module => l_pkg_name ||'.'||l_api_name

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

2919: EXCEPTION
2920: WHEN OTHERS THEN
2921: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2922: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
2923: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name,SQLERRM);
2924: IF ( FND_LOG.level_unexpected >= fnd_log.g_current_runtime_level) then
2925: FND_LOG.string(log_level => FND_LOG.level_unexpected
2926: ,module => l_pkg_name ||'.'||l_api_name
2927: ,message => SQLERRM);

Line 2930: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count

2926: ,module => l_pkg_name ||'.'||l_api_name
2927: ,message => SQLERRM);
2928: END IF;
2929: END IF;
2930: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count
2931: ,p_data => x_msg_data);
2932: END is_cpa_integration_enabled;
2933:
2934: /* ======================================================================

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

2934: /* ======================================================================
2935: PROCEDURE : get_display_line_number PUBLIC
2936: PARAMETERS:
2937: p_api_version IN API Version (currently 1.0)
2938: p_init_msg_list IN call FND_MSG_PUB.initialize() ? T/F
2939: p_auction_header_id IN Auction Header Id of Sourcing document
2940: p_auction_line_number IN Line Number (internal) within the Sourcing document
2941: x_display_line_number OUT Line Number for display to users (buffer size 25)
2942: x_result OUT One of G_RET_STS_SUCCESS, G_RET_STS_ERROR, G_RET_STS_UNEXP_ERROR

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

2971: IF NOT (FND_API.compatible_api_call(l_api_version,
2972: p_api_version,
2973: l_api_name,
2974: l_pkg_name)) THEN
2975: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count,
2976: p_data => x_msg_data);
2977: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2978: END IF;
2979:

Line 2982: FND_MSG_PUB.initialize();

2978: END IF;
2979:
2980: -- initialize meesage list
2981: IF (FND_API.to_Boolean(nvl(p_init_msg_list, FND_API.G_FALSE))) THEN
2982: FND_MSG_PUB.initialize();
2983: END IF;
2984:
2985: begin
2986: select

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

3008: END IF;
3009: exception
3010: when others then
3011: x_return_status := FND_API.G_RET_STS_ERROR;
3012: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
3013: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);
3014: IF ( FND_LOG.level_error >= fnd_log.g_current_runtime_level) then
3015: FND_LOG.string(log_level => FND_LOG.level_error,
3016: module => l_pkg_name || '.' || l_api_name,

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

3009: exception
3010: when others then
3011: x_return_status := FND_API.G_RET_STS_ERROR;
3012: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
3013: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);
3014: IF ( FND_LOG.level_error >= fnd_log.g_current_runtime_level) then
3015: FND_LOG.string(log_level => FND_LOG.level_error,
3016: module => l_pkg_name || '.' || l_api_name,
3017: message => 'Negotiation ' || p_auction_header_id || ' and line ' || p_auction_line_number || ' not found. ' || SQLERRM);

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

3016: module => l_pkg_name || '.' || l_api_name,
3017: message => 'Negotiation ' || p_auction_header_id || ' and line ' || p_auction_line_number || ' not found. ' || SQLERRM);
3018: END IF;
3019: END IF;
3020: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count,
3021: p_data => x_msg_data);
3022: return;
3023: end;
3024:

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

3026:
3027: exception
3028: when others then
3029: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3030: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
3031: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);
3032: IF (FND_LOG.level_unexpected >= fnd_log.g_current_runtime_level) then
3033: FND_LOG.string(log_level => FND_LOG.level_unexpected,
3034: module => l_pkg_name ||'.'|| l_api_name,

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

3027: exception
3028: when others then
3029: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3030: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
3031: FND_MSG_PUB.add_exc_msg(l_pkg_name, l_api_name, SQLERRM);
3032: IF (FND_LOG.level_unexpected >= fnd_log.g_current_runtime_level) then
3033: FND_LOG.string(log_level => FND_LOG.level_unexpected,
3034: module => l_pkg_name ||'.'|| l_api_name,
3035: message => SQLERRM);

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

3034: module => l_pkg_name ||'.'|| l_api_name,
3035: message => SQLERRM);
3036: END IF;
3037: END IF;
3038: FND_MSG_PUB.Count_and_Get(p_count => x_msg_count,
3039: p_data => x_msg_data);
3040: end get_display_line_number;
3041:
3042: