DBA Data[Home] [Help]

APPS.EAM_WORKORDERBILLING_PVT dependencies on FND_MESSAGE

Line 109: FND_MESSAGE.SET_NAME('EAM', 'EAM_NOT_ENOUGH_PARAMS');

105: (p_ra_line.currency_code is null) or
106: (p_ra_line.invoice_num is null) or
107: (p_ra_line.line_num is null)
108: then
109: FND_MESSAGE.SET_NAME('EAM', 'EAM_NOT_ENOUGH_PARAMS');
110: FND_MSG_PUB.Add;
111: RAISE FND_API.G_EXC_ERROR;
112: end if;
113:

Line 130: FND_MESSAGE.SET_NAME('EAM', 'EAM_CUSTOMER_NOT_EXIST');

126: from hz_cust_accounts
127: where cust_account_id=p_ra_line.customer_id;
128:
129: if (l_count=0) then
130: FND_MESSAGE.SET_NAME('EAM', 'EAM_CUSTOMER_NOT_EXIST');
131: FND_MSG_PUB.Add;
132: RAISE FND_API.G_EXC_ERROR;
133: end if;
134:

Line 138: FND_MESSAGE.SET_NAME('EAM', 'EAM_RA_WRONG_AMOUNT');

134:
135: -- validation 3: unit selling price * quantity = amount
136: if not (p_ra_line.unit_selling_price * p_ra_line.quantity = p_ra_line.billed_amount)
137: then
138: FND_MESSAGE.SET_NAME('EAM', 'EAM_RA_WRONG_AMOUNT');
139: FND_MSG_PUB.Add;
140: RAISE FND_API.G_EXC_ERROR;
141: end if;
142:

Line 160: FND_MESSAGE.SET_NAME ('EAM', 'EAM_INVALID_ORG_ID');

156:
157:
158: exception
159: when no_data_found then
160: FND_MESSAGE.SET_NAME ('EAM', 'EAM_INVALID_ORG_ID');
161: FND_MSG_PUB.Add;
162: RAISE FND_API.G_EXC_ERROR;
163: end;
164:

Line 175: FND_MESSAGE.SET_NAME ('EAM', 'EAM_INVALID_UOM_CODE');

171: from mtl_units_of_measure
172: where uom_code = p_ra_line.uom_code;
173: exception
174: when no_data_found then
175: FND_MESSAGE.SET_NAME ('EAM', 'EAM_INVALID_UOM_CODE');
176: FND_MSG_PUB.Add;
177: RAISE FND_API.G_EXC_ERROR;
178: end;
179:

Line 571: FND_MESSAGE.SET_NAME('EAM', 'EAM_WRONG_PARAM_COST_PL');

567: --(p_wob_rec.invoice_trx_number is null) or
568: --(p_wob_rec.invoice_line_number is null) or
569: (p_wob_rec.currency_code is null)
570: then
571: FND_MESSAGE.SET_NAME('EAM', 'EAM_WRONG_PARAM_COST_PL');
572: FND_MSG_PUB.Add;
573: RAISE FND_API.G_EXC_ERROR;
574: end if;
575:

Line 840: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_PROJ_ID');

836: , X_msg_count => l_msg_count
837: , X_msg_data => l_msg_data);
838:
839: if (l_return_status='E') then
840: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_PROJ_ID');
841: FND_MSG_PUB.Add;
842: RAISE FND_API.G_EXC_ERROR;
843: end if;
844: