DBA Data[Home] [Help]

APPS.OZF_CHARGEBACK_PVT dependencies on FND_MSG_PUB

Line 44: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);

40: G_PRICING_EVENT CONSTANT VARCHAR2(30) := 'PRICE';
41: G_TP_ACCRUAL CONSTANT VARCHAR2(30) := 'TP_ACCRUAL';
42: G_CHBK_UTIL_TYPE CONSTANT VARCHAR2(30) := 'CHARGEBACK';
43:
44: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
45: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);
46: OZF_UNEXP_ERROR BOOLEAN := FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.g_msg_lvl_unexp_error);
47:
48: ---------------------------------------------------------------------

Line 45: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);

41: G_TP_ACCRUAL CONSTANT VARCHAR2(30) := 'TP_ACCRUAL';
42: G_CHBK_UTIL_TYPE CONSTANT VARCHAR2(30) := 'CHARGEBACK';
43:
44: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
45: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);
46: OZF_UNEXP_ERROR BOOLEAN := FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.g_msg_lvl_unexp_error);
47:
48: ---------------------------------------------------------------------
49: -- PROCEDURE

Line 46: OZF_UNEXP_ERROR BOOLEAN := FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.g_msg_lvl_unexp_error);

42: G_CHBK_UTIL_TYPE CONSTANT VARCHAR2(30) := 'CHARGEBACK';
43:
44: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
45: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);
46: OZF_UNEXP_ERROR BOOLEAN := FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.g_msg_lvl_unexp_error);
47:
48: ---------------------------------------------------------------------
49: -- PROCEDURE
50: -- Initiate_Payment

Line 341: FND_MSG_PUB.initialize;

337: END IF;
338:
339: --Initialize message if p_init_msg_list IS TRUE.
340: IF FND_API.To_BOOLEAN (p_init_msg_list) THEN
341: FND_MSG_PUB.initialize;
342: END IF;
343:
344: -- Debug Message
345: IF OZF_DEBUG_HIGH_ON THEN

Line 1128: FND_MSG_PUB.Count_and_Get (

1124: OZF_UTILITY_PVT.debug_message(l_full_name||': End');
1125: END IF;
1126:
1127: --Standard call to get message count AND if count=1, get the message
1128: FND_MSG_PUB.Count_and_Get (
1129: p_encoded => FND_API.G_FALSE,
1130: p_count => x_msg_count,
1131: p_data => x_msg_data
1132: );

Line 1137: FND_MSG_PUB.Count_And_Get (

1133:
1134: EXCEPTION
1135: WHEN error_no_rollback THEN
1136: x_return_status := FND_API.G_RET_STS_ERROR;
1137: FND_MSG_PUB.Count_And_Get (
1138: p_encoded => FND_API.G_FALSE,
1139: p_count => x_msg_count,
1140: p_data => x_msg_data
1141: );

Line 1146: FND_MSG_PUB.Count_And_Get (

1142: WHEN FND_API.g_exc_error THEN
1143: ROLLBACK TO Initiate_Payment;
1144: x_return_status := FND_API.G_RET_STS_ERROR;
1145: -- Standard call to get message count AND IF count=1, get the message
1146: FND_MSG_PUB.Count_And_Get (
1147: p_encoded => FND_API.G_FALSE,
1148: p_count => x_msg_count,
1149: p_data => x_msg_data
1150: );

Line 1155: FND_MSG_PUB.Count_And_Get (

1151: WHEN FND_API.g_exc_unexpected_error THEN
1152: ROLLBACK TO Initiate_Payment;
1153: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1154: -- Standard call to get message count AND IF count=1, get the message
1155: FND_MSG_PUB.Count_And_Get (
1156: p_encoded => FND_API.G_FALSE,
1157: p_count => x_msg_count,
1158: p_data => x_msg_data
1159: );

Line 1164: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

1160: WHEN OTHERS THEN
1161: ROLLBACK TO Initiate_Payment;
1162: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1163: IF OZF_UNEXP_ERROR THEN
1164: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1165: END IF;
1166: -- Standard call to get message count AND IF count=1, get the message
1167: FND_MSG_PUB.Count_And_Get (
1168: p_encoded => FND_API.G_FALSE,

Line 1167: FND_MSG_PUB.Count_And_Get (

1163: IF OZF_UNEXP_ERROR THEN
1164: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1165: END IF;
1166: -- Standard call to get message count AND IF count=1, get the message
1167: FND_MSG_PUB.Count_And_Get (
1168: p_encoded => FND_API.G_FALSE,
1169: p_count => x_msg_count,
1170: p_data => x_msg_data
1171: );

Line 1237: FND_MSG_PUB.initialize;

1233: END IF;
1234:
1235: --Initialize message lISt if p_init_msg_list IS TRUE.
1236: IF FND_API.To_BOOLEAN (p_init_msg_list) THEN
1237: FND_MSG_PUB.initialize;
1238: END IF;
1239:
1240: -- Initialize API return status to sucess
1241: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1297: FND_MSG_PUB.Count_and_Get (

1293: OZF_UTILITY_PVT.debug_message(l_full_name||': End');
1294: END IF;
1295:
1296: --Standard call to get message count AND if count=1, get the message
1297: FND_MSG_PUB.Count_and_Get (
1298: p_encoded => FND_API.G_FALSE,
1299: p_count => x_msg_count,
1300: p_data => x_msg_data
1301: );

Line 1307: FND_MSG_PUB.Count_and_Get (

1303: EXCEPTION
1304: WHEN FND_API.g_exc_error THEN
1305: x_return_status := FND_API.G_RET_STS_ERROR;
1306: -- Standard call to get message count AND if count=1, get the message
1307: FND_MSG_PUB.Count_and_Get (
1308: p_encoded => FND_API.G_FALSE,
1309: p_count => x_msg_count,
1310: p_data => x_msg_data
1311: );

Line 1315: FND_MSG_PUB.Count_and_Get (

1311: );
1312: WHEN FND_API.g_exc_unexpected_error THEN
1313: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1314: -- Standard call to get message count AND if count=1, get the message
1315: FND_MSG_PUB.Count_and_Get (
1316: p_encoded => FND_API.G_FALSE,
1317: p_count => x_msg_count,
1318: p_data => x_msg_data
1319: );

Line 1323: FND_MSG_PUB.Count_and_Get (

1319: );
1320: WHEN OTHERS THEN
1321: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1322: -- Standard call to get message count AND if count=1, get the message
1323: FND_MSG_PUB.Count_and_Get (
1324: p_encoded => FND_API.G_FALSE,
1325: p_count => x_msg_count,
1326: p_data => x_msg_data
1327: );

Line 1822: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

1818: WHEN OTHERS THEN
1819: ROLLBACK TO Process_Pricing_Result;
1820: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1821: IF OZF_UNEXP_ERROR THEN
1822: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1823: END IF;
1824: END Process_Pricing_Result;
1825:
1826: ---------------------------------------------------------------------

Line 2063: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

2059: AND resale_id_type = OZF_RESALE_COMMON_PVT.G_ID_TYPE_IFACE;
2060: EXCEPTION
2061: WHEN OTHERS THEN
2062: IF OZF_UNEXP_ERROR THEN
2063: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2064: END IF;
2065: RAISE FND_API.g_exc_unexpected_error;
2066: END;
2067: IF OZF_DEBUG_LOW_ON THEN

Line 2319: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

2315: WHEN OTHERS THEN
2316: ROLLBACK TO Get_Order_Price;
2317: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2318: IF OZF_UNEXP_ERROR THEN
2319: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2320: END IF;
2321: END Get_Order_Price;
2322:
2323: ---------------------------------------------------------------------

Line 2406: FND_MSG_PUB.initialize;

2402: END IF;
2403:
2404: --Initialize message lISt if p_init_msg_list IS TRUE.
2405: IF FND_API.To_BOOLEAN (p_init_msg_list) THEN
2406: FND_MSG_PUB.initialize;
2407: END IF;
2408:
2409: -- Debug Message
2410: IF OZF_DEBUG_HIGH_ON THEN

Line 2669: FND_MSG_PUB.Count_and_Get (

2665: IF OZF_DEBUG_HIGH_ON THEN
2666: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
2667: END IF;
2668: --Standard call to get message count AND if count=1, get the message
2669: FND_MSG_PUB.Count_and_Get (
2670: p_encoded => FND_API.G_FALSE,
2671: p_count => x_msg_count,
2672: p_data => x_msg_data
2673: );

Line 2679: FND_MSG_PUB.Count_and_Get (

2675: WHEN FND_API.g_exc_error THEN
2676: ROLLBACK TO Process_Order;
2677: x_return_status := FND_API.G_RET_STS_ERROR;
2678: -- Standard call to get message count AND IF count=1, get the message
2679: FND_MSG_PUB.Count_and_Get (
2680: p_encoded => FND_API.G_FALSE,
2681: p_count => x_msg_count,
2682: p_data => x_msg_data
2683: );

Line 2688: FND_MSG_PUB.Count_and_Get (

2684: WHEN FND_API.g_exc_unexpected_error THEN
2685: ROLLBACK TO Process_Order;
2686: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2687: -- Standard call to get message count AND IF count=1, get the message
2688: FND_MSG_PUB.Count_and_Get (
2689: p_encoded => FND_API.G_FALSE,
2690: p_count => x_msg_count,
2691: p_data => x_msg_data
2692: );

Line 2697: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

2693: WHEN OTHERS THEN
2694: ROLLBACK TO Process_Order;
2695: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2696: IF OZF_UNEXP_ERROR THEN
2697: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2698: END IF;
2699: -- Standard call to get message count AND IF count=1, get the message
2700: FND_MSG_PUB.Count_and_Get (
2701: p_encoded => FND_API.G_FALSE,

Line 2700: FND_MSG_PUB.Count_and_Get (

2696: IF OZF_UNEXP_ERROR THEN
2697: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2698: END IF;
2699: -- Standard call to get message count AND IF count=1, get the message
2700: FND_MSG_PUB.Count_and_Get (
2701: p_encoded => FND_API.G_FALSE,
2702: p_count => x_msg_count,
2703: p_data => x_msg_data
2704: );