DBA Data[Home] [Help]

APPS.EAM_WORKORDERBILLING_PVT dependencies on FND_MESSAGE

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

100: (p_ra_line.currency_code is null) or
101: (p_ra_line.invoice_num is null) or
102: (p_ra_line.line_num is null)
103: then
104: FND_MESSAGE.SET_NAME('EAM', 'EAM_NOT_ENOUGH_PARAMS');
105: FND_MSG_PUB.Add;
106: RAISE FND_API.G_EXC_ERROR;
107: end if;
108:

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

121: from hz_cust_accounts
122: where cust_account_id=p_ra_line.customer_id;
123:
124: if (l_count=0) then
125: FND_MESSAGE.SET_NAME('EAM', 'EAM_CUSTOMER_NOT_EXIST');
126: FND_MSG_PUB.Add;
127: RAISE FND_API.G_EXC_ERROR;
128: end if;
129:

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

129:
130: -- validation 3: unit selling price * quantity = amount
131: if not (p_ra_line.unit_selling_price * p_ra_line.quantity = p_ra_line.billed_amount)
132: then
133: FND_MESSAGE.SET_NAME('EAM', 'EAM_RA_WRONG_AMOUNT');
134: FND_MSG_PUB.Add;
135: RAISE FND_API.G_EXC_ERROR;
136: end if;
137:

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

151:
152:
153: exception
154: when no_data_found then
155: FND_MESSAGE.SET_NAME ('EAM', 'EAM_INVALID_ORG_ID');
156: FND_MSG_PUB.Add;
157: RAISE FND_API.G_EXC_ERROR;
158: end;
159:

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

166: from mtl_units_of_measure
167: where uom_code = p_ra_line.uom_code;
168: exception
169: when no_data_found then
170: FND_MESSAGE.SET_NAME ('EAM', 'EAM_INVALID_UOM_CODE');
171: FND_MSG_PUB.Add;
172: RAISE FND_API.G_EXC_ERROR;
173: end;
174:

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

443: --(p_wob_rec.invoice_trx_number is null) or
444: --(p_wob_rec.invoice_line_number is null) or
445: (p_wob_rec.currency_code is null)
446: then
447: FND_MESSAGE.SET_NAME('EAM', 'EAM_WRONG_PARAM_COST_PL');
448: FND_MSG_PUB.Add;
449: RAISE FND_API.G_EXC_ERROR;
450: end if;
451:

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

712: , X_msg_count => l_msg_count
713: , X_msg_data => l_msg_data);
714:
715: if (l_return_status='E') then
716: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_PROJ_ID');
717: FND_MSG_PUB.Add;
718: RAISE FND_API.G_EXC_ERROR;
719: end if;
720: