DBA Data[Home] [Help]

APPS.ZX_R11I_TAX_PARTNER_PKG dependencies on FND_MESSAGE

Line 2296: fnd_message.set_name('ZX', 'ZX_TAX_PARTNER_NOTFOUND');

2292: AND pty.party_id = ptp.party_id
2293: AND ptp.provider_type_code in ('BOTH', 'SERVICE');
2294: Exception
2295: When others then
2296: fnd_message.set_name('ZX', 'ZX_TAX_PARTNER_NOTFOUND');
2297: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2298: x_return_status := FND_API.G_RET_STS_ERROR;
2299: l_error_counter := l_error_counter+1;
2300: return;

Line 2297: x_error_msg_tbl(l_error_counter) := fnd_message.get;

2293: AND ptp.provider_type_code in ('BOTH', 'SERVICE');
2294: Exception
2295: When others then
2296: fnd_message.set_name('ZX', 'ZX_TAX_PARTNER_NOTFOUND');
2297: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2298: x_return_status := FND_API.G_RET_STS_ERROR;
2299: l_error_counter := l_error_counter+1;
2300: return;
2301: End;

Line 2378: fnd_message.set_name('ZX', 'ZX_TAX_PARTNER_NOTFOUND');

2374: p_business_flow,
2375: 'ZX_TAXWARE_TAX_SERVICE_PKG',
2376: 'GLOBAL_DOCUMENT_UPDATE');
2377: else
2378: fnd_message.set_name('ZX', 'ZX_TAX_PARTNER_NOTFOUND');
2379: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2380: x_return_status := FND_API.G_RET_STS_ERROR;
2381: l_error_counter := l_error_counter+1;
2382: return;

Line 2379: x_error_msg_tbl(l_error_counter) := fnd_message.get;

2375: 'ZX_TAXWARE_TAX_SERVICE_PKG',
2376: 'GLOBAL_DOCUMENT_UPDATE');
2377: else
2378: fnd_message.set_name('ZX', 'ZX_TAX_PARTNER_NOTFOUND');
2379: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2380: x_return_status := FND_API.G_RET_STS_ERROR;
2381: l_error_counter := l_error_counter+1;
2382: return;
2383:

Line 2582: x_error_msg_tbl(l_error_counter) := fnd_message.get;

2578: X_RETURN_STATUS => x_return_status ,
2579: P_API_OWNER_ID => l_api_owner_id ,
2580: P_CONTEXT_CC_ID => l_context_cc_id );
2581: Exception When Others then
2582: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2583: x_return_status := FND_API.G_RET_STS_ERROR;
2584: l_error_counter := l_error_counter+1;
2585: return;
2586: End;

Line 2630: fnd_message.set_name('ZX', 'ZX_TAX_PARTNER_NOTFOUND');

2626: AND pty.party_id = ptp.party_id
2627: AND ptp.provider_type_code in ('BOTH', 'SERVICE');
2628: Exception
2629: When others then
2630: fnd_message.set_name('ZX', 'ZX_TAX_PARTNER_NOTFOUND');
2631: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2632: x_return_status := FND_API.G_RET_STS_ERROR;
2633: l_error_counter := l_error_counter+1;
2634: return;

Line 2631: x_error_msg_tbl(l_error_counter) := fnd_message.get;

2627: AND ptp.provider_type_code in ('BOTH', 'SERVICE');
2628: Exception
2629: When others then
2630: fnd_message.set_name('ZX', 'ZX_TAX_PARTNER_NOTFOUND');
2631: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2632: x_return_status := FND_API.G_RET_STS_ERROR;
2633: l_error_counter := l_error_counter+1;
2634: return;
2635: End;

Line 2643: x_error_msg_tbl(l_error_counter) := fnd_message.get;

2639: x_return_status,
2640: l_srvc_prvdr_name);
2641:
2642: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2643: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2644: x_return_status := FND_API.G_RET_STS_ERROR;
2645: l_error_counter := l_error_counter+1;
2646: return;
2647: End if;

Line 2720: fnd_message.set_name('ZX', 'ZX_UNEXPECTED_ERROR');

2716: EXCEPTION
2717: WHEN OTHERS THEN
2718: ROLLBACK TO execute_srvc_plugin_pvt;
2719: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2720: fnd_message.set_name('ZX', 'ZX_UNEXPECTED_ERROR');
2721: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2722: l_error_counter := l_error_counter+1;
2723: IF ( G_LEVEL_UNEXPECTED >= G_CURRENT_RUNTIME_LEVEL) THEN
2724: FND_LOG.STRING(G_LEVEL_UNEXPECTED,G_MODULE_NAME||l_api_name,SQLERRM);

Line 2721: x_error_msg_tbl(l_error_counter) := fnd_message.get;

2717: WHEN OTHERS THEN
2718: ROLLBACK TO execute_srvc_plugin_pvt;
2719: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2720: fnd_message.set_name('ZX', 'ZX_UNEXPECTED_ERROR');
2721: x_error_msg_tbl(l_error_counter) := fnd_message.get;
2722: l_error_counter := l_error_counter+1;
2723: IF ( G_LEVEL_UNEXPECTED >= G_CURRENT_RUNTIME_LEVEL) THEN
2724: FND_LOG.STRING(G_LEVEL_UNEXPECTED,G_MODULE_NAME||l_api_name,SQLERRM);
2725: END IF;