DBA Data[Home] [Help]

APPS.IBE_CUSTOMER_ACCT_PVT dependencies on FND_MESSAGE

Line 1114: FND_Message.Set_Name('IBE', 'IBE_ERR_OT_INVALID_BILLTO_ADDR');

1110: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS OR
1111: (l_cust_acct_site_id is null OR l_cust_acct_site_id = FND_API.G_MISS_NUM))
1112: THEN
1113: -- Creation Failed.
1114: FND_Message.Set_Name('IBE', 'IBE_ERR_OT_INVALID_BILLTO_ADDR');
1115: FND_Msg_Pub.Add;
1116: RAISE FND_API.G_EXC_ERROR;
1117: END IF;
1118:

Line 1127: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_BILLTO_ADDR'); -- need error message

1123: Ibe_util.Debug('Inside Invalid CustAcctSiteId Flow - Raise Exception');
1124: END IF;
1125:
1126: IF p_siteuse_type = 'BILL_TO' THEN
1127: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_BILLTO_ADDR'); -- need error message
1128: ELSE
1129: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_SHIPTO_ADDR'); -- need error message
1130: END IF;
1131: FND_MSG_PUB.ADD;

Line 1129: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_SHIPTO_ADDR'); -- need error message

1125:
1126: IF p_siteuse_type = 'BILL_TO' THEN
1127: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_BILLTO_ADDR'); -- need error message
1128: ELSE
1129: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_SHIPTO_ADDR'); -- need error message
1130: END IF;
1131: FND_MSG_PUB.ADD;
1132: RAISE FND_API.G_EXC_ERROR;
1133:

Line 1172: FND_Message.Set_Name('IBE', 'IBE_ERR_OT_INVALID_BILLTO_ADDR');

1168: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS OR
1169: (l_cust_acct_site_id is null OR l_cust_acct_site_id = FND_API.G_MISS_NUM))
1170: THEN
1171: -- Creation Failed.
1172: FND_Message.Set_Name('IBE', 'IBE_ERR_OT_INVALID_BILLTO_ADDR');
1173: FND_Msg_Pub.Add;
1174: RAISE FND_API.G_EXC_ERROR;
1175: ELSE
1176: x_siteuse_id := l_site_use_id;

Line 1190: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_BILLTO_ADDR'); -- need error message

1186: Ibe_util.Debug('nproc1 Inside Invalid CustAcctSiteUseId Flow - Raise Exception:' || l_custsite_use_status);
1187: END IF;
1188:
1189: IF p_siteuse_type = 'BILL_TO' THEN
1190: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_BILLTO_ADDR'); -- need error message
1191: ELSE
1192: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_SHIPTO_ADDR'); -- need error message
1193: END IF;
1194: FND_MSG_PUB.ADD;

Line 1192: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_SHIPTO_ADDR'); -- need error message

1188:
1189: IF p_siteuse_type = 'BILL_TO' THEN
1190: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_BILLTO_ADDR'); -- need error message
1191: ELSE
1192: FND_MESSAGE.Set_Name('IBE','IBE_ERR_OT_INVALID_SHIPTO_ADDR'); -- need error message
1193: END IF;
1194: FND_MSG_PUB.ADD;
1195: RAISE FND_API.G_EXC_ERROR;
1196:

Line 1572: FND_Message.Set_Name('IBE', 'IBE_ERR_OT_INVALID_CUST'); --need err msg

1568: END IF;
1569: open c_cust_acct_det(p_invoice_to_org_id);
1570: fetch c_cust_acct_det into lc_cust_acct_det;
1571: if(c_cust_acct_det%notfound) then
1572: FND_Message.Set_Name('IBE', 'IBE_ERR_OT_INVALID_CUST'); --need err msg
1573: FND_Msg_Pub.Add;
1574: RAISE FND_API.G_EXC_ERROR;
1575: else
1576: IF (IBE_UTIL.G_DEBUGON = l_true) THEN

Line 1604: FND_Message.Set_Name('IBE', 'IBE_ERR_OT_INVALID_CUST'); --need err msg

1600:
1601: open c_customer_details(l_cust_account_id);
1602: fetch c_customer_details into lc_customer_details;
1603: if(c_customer_details%notfound) then
1604: FND_Message.Set_Name('IBE', 'IBE_ERR_OT_INVALID_CUST'); --need err msg
1605: FND_Msg_Pub.Add;
1606: RAISE FND_API.G_EXC_ERROR;
1607: else
1608: x_cust_party_id := lc_customer_details.party_id;