DBA Data[Home] [Help]

APPS.OZF_ADJUSTMENT_EXT_PVT dependencies on FND_MESSAGE

Line 3828: FND_MESSAGE.set_name('OZF', 'OZF_ORDER_INSERT_ERR');

3824: END IF;
3825:
3826: IF l_return_status_code <> FND_API.G_RET_STS_SUCCESS THEN
3827: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
3828: FND_MESSAGE.set_name('OZF', 'OZF_ORDER_INSERT_ERR');
3829: FND_MSG_PUB.add;
3830: dbms_output.put_line(l_price_return_msg);
3831: END IF;
3832: RAISE FND_API.G_EXC_ERROR;

Line 5081: fnd_message.set_name('OZF', 'OZF_COST_PRICE_NOT_FOUND');

5077:
5078:
5079: IF (l_cost_price = -1) THEN
5080: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_debug_low) THEN
5081: fnd_message.set_name('OZF', 'OZF_COST_PRICE_NOT_FOUND');
5082: FND_MESSAGE.Set_Token('OFFR',l_offer_info.description); --OR LIST_HEADER_ID?
5083: FND_MESSAGE.Set_Token('ORDER',p_line_rec.header_id);
5084: FND_MESSAGE.Set_Token('ITEM',p_line_rec.inventory_item_id);
5085: FND_MESSAGE.Set_Token('TEXT',sqlerrm);

Line 5082: FND_MESSAGE.Set_Token('OFFR',l_offer_info.description); --OR LIST_HEADER_ID?

5078:
5079: IF (l_cost_price = -1) THEN
5080: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_debug_low) THEN
5081: fnd_message.set_name('OZF', 'OZF_COST_PRICE_NOT_FOUND');
5082: FND_MESSAGE.Set_Token('OFFR',l_offer_info.description); --OR LIST_HEADER_ID?
5083: FND_MESSAGE.Set_Token('ORDER',p_line_rec.header_id);
5084: FND_MESSAGE.Set_Token('ITEM',p_line_rec.inventory_item_id);
5085: FND_MESSAGE.Set_Token('TEXT',sqlerrm);
5086: fnd_msg_pub.add;

Line 5083: FND_MESSAGE.Set_Token('ORDER',p_line_rec.header_id);

5079: IF (l_cost_price = -1) THEN
5080: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_debug_low) THEN
5081: fnd_message.set_name('OZF', 'OZF_COST_PRICE_NOT_FOUND');
5082: FND_MESSAGE.Set_Token('OFFR',l_offer_info.description); --OR LIST_HEADER_ID?
5083: FND_MESSAGE.Set_Token('ORDER',p_line_rec.header_id);
5084: FND_MESSAGE.Set_Token('ITEM',p_line_rec.inventory_item_id);
5085: FND_MESSAGE.Set_Token('TEXT',sqlerrm);
5086: fnd_msg_pub.add;
5087: END IF;

Line 5084: FND_MESSAGE.Set_Token('ITEM',p_line_rec.inventory_item_id);

5080: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_debug_low) THEN
5081: fnd_message.set_name('OZF', 'OZF_COST_PRICE_NOT_FOUND');
5082: FND_MESSAGE.Set_Token('OFFR',l_offer_info.description); --OR LIST_HEADER_ID?
5083: FND_MESSAGE.Set_Token('ORDER',p_line_rec.header_id);
5084: FND_MESSAGE.Set_Token('ITEM',p_line_rec.inventory_item_id);
5085: FND_MESSAGE.Set_Token('TEXT',sqlerrm);
5086: fnd_msg_pub.add;
5087: END IF;
5088: RETURN;

Line 5085: FND_MESSAGE.Set_Token('TEXT',sqlerrm);

5081: fnd_message.set_name('OZF', 'OZF_COST_PRICE_NOT_FOUND');
5082: FND_MESSAGE.Set_Token('OFFR',l_offer_info.description); --OR LIST_HEADER_ID?
5083: FND_MESSAGE.Set_Token('ORDER',p_line_rec.header_id);
5084: FND_MESSAGE.Set_Token('ITEM',p_line_rec.inventory_item_id);
5085: FND_MESSAGE.Set_Token('TEXT',sqlerrm);
5086: fnd_msg_pub.add;
5087: END IF;
5088: RETURN;
5089: END IF;

Line 6685: l_act_budgets_rec.justification := fnd_message.get_string ('OZF', 'OZF_BACKDATE_AMOUNT_ADJUSTMENT');

6681: write_conc_log (l_full_name || ' : '
6682: || 'resourceid '
6683: || l_act_budgets_rec.approver_id);
6684:
6685: l_act_budgets_rec.justification := fnd_message.get_string ('OZF', 'OZF_BACKDATE_AMOUNT_ADJUSTMENT');
6686:
6687: l_act_budgets_rec.parent_source_id := backdate_adj_rec(i).fund_id;
6688: l_act_budgets_rec.parent_src_curr := backdate_adj_rec(i).currency_code;
6689: l_act_util_rec.utilization_type :='ADJUSTMENT';

Line 7212: fnd_message.set_name ('OZF', 'OZF_FUND_NO_BUDGET_FOUND');

7208:
7209: --- if this is not funded by a parent campaign or any budget the error out saying no budgte found
7210: IF l_fund_amt_tbl.COUNT = 0 OR x_return_status <> 'S' THEN
7211: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error) THEN
7212: fnd_message.set_name ('OZF', 'OZF_FUND_NO_BUDGET_FOUND');
7213: fnd_message.set_token ('OFFER_NAME', l_off_name);
7214: fnd_msg_pub.ADD;
7215: END IF;
7216: --dbms_output.put_line(' In error ');

Line 7213: fnd_message.set_token ('OFFER_NAME', l_off_name);

7209: --- if this is not funded by a parent campaign or any budget the error out saying no budgte found
7210: IF l_fund_amt_tbl.COUNT = 0 OR x_return_status <> 'S' THEN
7211: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error) THEN
7212: fnd_message.set_name ('OZF', 'OZF_FUND_NO_BUDGET_FOUND');
7213: fnd_message.set_token ('OFFER_NAME', l_off_name);
7214: fnd_msg_pub.ADD;
7215: END IF;
7216: --dbms_output.put_line(' In error ');
7217: IF x_return_status = fnd_api.g_ret_sts_error THEN

Line 7321: l_act_budgets_rec.justification := fnd_message.get_string ('OZF', 'OZF_ACR_VOL_BDADJ');

7317: l_act_util_rec.org_id := l_adj_info.org_id;
7318: l_act_util_rec.ship_to_site_use_id := l_adj_info.ship_to_site_use_id;
7319: l_act_util_rec.bill_to_site_use_id := l_adj_info.bill_to_site_use_id;
7320:
7321: l_act_budgets_rec.justification := fnd_message.get_string ('OZF', 'OZF_ACR_VOL_BDADJ');
7322: l_act_budgets_rec.transfer_type := 'UTILIZED';
7323: l_act_budgets_rec.request_date := SYSDATE;
7324: l_act_budgets_rec.status_code := 'APPROVED';
7325: l_act_budgets_rec.user_status_id :=