DBA Data[Home] [Help]

APPS.ZX_TAXWARE_USER_PKG dependencies on ZX_EXEMPTIONS

Line 1115: FROM ZX_EXEMPTIONS EXMP

1111: /*Proceed further only if the exemption id fetched is not null*/
1112: BEGIN
1113: SELECT rate_modifier
1114: INTO x_exempt_record.percent_exempt
1115: FROM ZX_EXEMPTIONS EXMP
1116: WHERE tax_exemption_id = x_exempt_record.exemption_id;
1117: EXCEPTION WHEN NO_DATA_FOUND THEN
1118: IF (g_level_exception >= g_current_runtime_level ) THEN
1119: FND_LOG.STRING(G_LEVEL_EXCEPTION,G_MODULE_NAME||l_api_name,SQLERRM);

Line 1122: g_string :='No Data found from ZX_EXEMPTIONS for provided id';

1118: IF (g_level_exception >= g_current_runtime_level ) THEN
1119: FND_LOG.STRING(G_LEVEL_EXCEPTION,G_MODULE_NAME||l_api_name,SQLERRM);
1120: END IF;
1121: x_ret_status := FND_API.G_RET_STS_UNEXP_ERROR;
1122: g_string :='No Data found from ZX_EXEMPTIONS for provided id';
1123: error_exception_handle(g_string);
1124: --x_messages_tbl:=g_messages_tbl;
1125: RETURN;
1126: END;