DBA Data[Home] [Help]

APPS.IBE_CUSTOMER_ACCT_PVT dependencies on FND_MESSAGE

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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