DBA Data[Home] [Help]

APPS.EAM_OPERATIONS_JSP dependencies on EAM_EXECUTION_JSP

Line 282: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_WO_STALED_DATA');

278: END IF;
279:
280:
281: IF l_db_last_update_date <> p_stored_last_update_date THEN
282: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_WO_STALED_DATA');
283: x_return_status := FND_API.G_RET_STS_ERROR;
284: END IF;
285: IF ( (p_transaction_type = 1 AND l_db_status = 'Y') or
286: (p_transaction_type = 2 and nvl(l_db_status,'N') = 'N' )) THEN

Line 287: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_WO_STALED_DATA');

283: x_return_status := FND_API.G_RET_STS_ERROR;
284: END IF;
285: IF ( (p_transaction_type = 1 AND l_db_status = 'Y') or
286: (p_transaction_type = 2 and nvl(l_db_status,'N') = 'N' )) THEN
287: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_WO_STALED_DATA');
288: x_return_status := FND_API.G_RET_STS_ERROR;
289: END IF;
290: IF ( not( p_shutdown_start_date is null and p_shutdown_end_date is null) and
291: ( p_shutdown_start_date is null or p_shutdown_end_date is null) ) THEN

Line 292: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DATE_MISS');

288: x_return_status := FND_API.G_RET_STS_ERROR;
289: END IF;
290: IF ( not( p_shutdown_start_date is null and p_shutdown_end_date is null) and
291: ( p_shutdown_start_date is null or p_shutdown_end_date is null) ) THEN
292: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DATE_MISS');
293: x_return_status := FND_API.G_RET_STS_ERROR;
294: END IF;
295: --changed the following if condition as part of bug 5476770
296: IF ( p_shutdown_start_date is not null and p_shutdown_end_date is not null and

Line 298: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DATE_IN_FUTURE');

294: END IF;
295: --changed the following if condition as part of bug 5476770
296: IF ( p_shutdown_start_date is not null and p_shutdown_end_date is not null and
297: p_shutdown_end_date > sysdate ) THEN
298: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DATE_IN_FUTURE');
299: x_return_status := FND_API.G_RET_STS_ERROR;
300: ELSIF ( p_shutdown_start_date is not null and p_shutdown_end_date is not null and
301: p_shutdown_start_date > p_shutdown_end_date ) THEN
302: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DATE_BAD');

Line 302: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DATE_BAD');

298: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DATE_IN_FUTURE');
299: x_return_status := FND_API.G_RET_STS_ERROR;
300: ELSIF ( p_shutdown_start_date is not null and p_shutdown_end_date is not null and
301: p_shutdown_start_date > p_shutdown_end_date ) THEN
302: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_SHUTDOWN_DATE_BAD');
303: x_return_status := FND_API.G_RET_STS_ERROR;
304: END IF;
305: --end of change for bug 5476770
306: IF (l_act_duration < 0) THEN

Line 307: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_COMP_DURATION_BAD');

303: x_return_status := FND_API.G_RET_STS_ERROR;
304: END IF;
305: --end of change for bug 5476770
306: IF (l_act_duration < 0) THEN
307: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_COMP_DURATION_BAD');
308: x_return_status := FND_API.G_RET_STS_ERROR;
309: END IF;
310:
311: EXCEPTION WHEN NO_DATA_FOUND THEN -- Bug 3133704 .changed WHEN OTHERS to WHEN NO_DATA_FOUND

Line 312: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_OP_NOT_FOUND');

308: x_return_status := FND_API.G_RET_STS_ERROR;
309: END IF;
310:
311: EXCEPTION WHEN NO_DATA_FOUND THEN -- Bug 3133704 .changed WHEN OTHERS to WHEN NO_DATA_FOUND
312: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_OP_NOT_FOUND');
313: x_return_status := FND_API.G_RET_STS_ERROR;
314: END;
315:
316:

Line 327: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_END_LATER_THAN_TODAY');

323: and open_flag = 'Y';
324:
325: if (l_act_st_date is not null) and (l_act_duration is not null) then
326: if (l_act_end_date > sysdate) then
327: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_END_LATER_THAN_TODAY');
328: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
329: end if;
330: /* The following line is commented out for bug no:2728447 */
331: -- if (p_actual_start_date < l_open_acct_per_date) then

Line 335: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_TRANSACTION_DATE_INVALID');

331: -- if (p_actual_start_date < l_open_acct_per_date) then
332: /*Fix for bug 3235163*/
333: --Previously end date was checked with closed period.Changed that to check transaction_date
334: if (p_transaction_date < l_open_acct_per_date) then
335: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_TRANSACTION_DATE_INVALID');
336: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
337: end if;
338: /*End of fix for bug 3235163*/
339: end if;

Line 353: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_RECONCILIATION_CODE_INV');

349: where ml.lookup_type = 'WIP_EAM_RECONCILIATION_CODE'
350: and ml.meaning = p_reconciliation_code;
351: end if;
352: EXCEPTION WHEN NO_DATA_FOUND THEN -- Bug 3133704,changed OTHERS to NO_DATA_FOUND
353: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_RECONCILIATION_CODE_INV');
354: x_return_status := FND_API.G_RET_STS_ERROR; --Bug .
355: END;
356:
357: -- if validate not passed then raise error

Line 360: eam_execution_jsp.Get_Messages

356:
357: -- if validate not passed then raise error
358: l_msg_count := FND_MSG_PUB.count_msg;
359: IF l_msg_count = 1 THEN
360: eam_execution_jsp.Get_Messages
361: (p_encoded => FND_API.G_FALSE,
362: p_msg_index => 1,
363: p_msg_count => l_msg_count,
364: p_msg_data => l_msg_data, -- removed g_miss_char

Line 439: eam_execution_jsp.Get_Messages

435: end if;
436:
437: l_msg_count := FND_MSG_PUB.count_msg;
438: IF l_msg_count = 1 THEN
439: eam_execution_jsp.Get_Messages
440: (p_encoded => FND_API.G_FALSE,
441: p_msg_index => 1,
442: p_msg_count => l_msg_count,
443: p_msg_data => l_msg_data, -- removed g_miss_char

Line 632: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_OP_STALED_DATA');

628:
629:
630: -- checking stuff
631: IF l_db_last_update_date <> nvl(p_stored_last_update_date, l_db_last_update_date) THEN
632: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_OP_STALED_DATA');
633: x_return_status := FND_API.G_RET_STS_ERROR;
634: END IF;
635: IF ( nvl(l_completed, 'N') = 'Y' ) THEN
636: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_CANT_STATUS_Y');

Line 636: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_CANT_STATUS_Y');

632: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_OP_STALED_DATA');
633: x_return_status := FND_API.G_RET_STS_ERROR;
634: END IF;
635: IF ( nvl(l_completed, 'N') = 'Y' ) THEN
636: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_CANT_STATUS_Y');
637: x_return_status := FND_API.G_RET_STS_ERROR;
638: END IF;
639:
640: IF (p_start_date > p_completion_date) THEN

Line 641: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DATE_BAD');

637: x_return_status := FND_API.G_RET_STS_ERROR;
638: END IF;
639:
640: IF (p_start_date > p_completion_date) THEN
641: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DATE_BAD');
642: x_return_status := FND_API.G_RET_STS_ERROR;
643: END IF;
644:
645:

Line 650: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_OP_EXISTED');

646: select count(*)
647: into l_count from wip_operations
648: where wip_entity_id = p_wip_entity_id and operation_seq_num = p_new_op_seq_num;
649: IF( l_count > 0 ) THEN
650: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_OP_EXISTED');
651: x_return_status := FND_API.G_RET_STS_ERROR;
652: END IF;
653:
654: -- Bug 3133704 . removed count for department_code within an org. For a given org id , dept code is unique.

Line 661: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DEPT_SAME');

657: from bom_departments
658: where organization_id = l_org_id
659: and department_code like p_assigned_department;
660: if(l_department_id = l_old_dept_id) then
661: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DEPT_SAME');
662: x_return_status := FND_API.G_RET_STS_ERROR;
663: end if;
664:
665:

Line 667: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_OP_NOT_FOUND');

663: end if;
664:
665:
666: EXCEPTION WHEN NO_DATA_FOUND THEN
667: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_OP_NOT_FOUND');
668: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
669: END;
670:
671: -- if validate not passed then raise error

Line 674: eam_execution_jsp.Get_Messages

670:
671: -- if validate not passed then raise error
672: l_msg_count := FND_MSG_PUB.count_msg;
673: IF l_msg_count = 1 THEN
674: eam_execution_jsp.Get_Messages
675: (p_encoded => FND_API.G_FALSE,
676: p_msg_index => 1,
677: p_msg_count => l_msg_count,
678: p_msg_data => l_msg_data, -- removed g_miss_char

Line 885: eam_execution_jsp.Get_Messages

881:
882: -- check error
883: l_msg_count := FND_MSG_PUB.count_msg;
884: IF l_msg_count = 1 THEN
885: eam_execution_jsp.Get_Messages
886: (p_encoded => FND_API.G_FALSE,
887: p_msg_index => 1,
888: p_msg_count => l_msg_count,
889: p_msg_data => l_msg_data,

Line 1047: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_INV_START_DATE');

1043:
1044: END IF;
1045:
1046: IF (p_operation_start_date < l_actual_end_date) THEN
1047: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_INV_START_DATE');
1048: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1049: END IF;
1050:
1051: IF NVL(l_completed,'N') = 'N' THEN

Line 1052: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INVALID_COMPLETE_OP2');

1048: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1049: END IF;
1050:
1051: IF NVL(l_completed,'N') = 'N' THEN
1052: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INVALID_COMPLETE_OP2');
1053: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1054: END IF;
1055:
1056:

Line 1058: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_OP_NOTFOUND');

1054: END IF;
1055:
1056:
1057: EXCEPTION WHEN NO_DATA_FOUND THEN -- Bug 3133704, others -> no_data_found
1058: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_OP_NOTFOUND');
1059: x_return_status := FND_API.G_RET_STS_ERROR;
1060: END;
1061:
1062: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN

Line 1152: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INVALID_COMPLETE_OP1');

1148:
1149: END IF;
1150:
1151: IF (NVL(l_completed, 'N' ) = 'Y') THEN
1152: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INVALID_COMPLETE_OP1');
1153: x_return_status := FND_API.G_RET_STS_ERROR;
1154: END IF;
1155:
1156: IF (l_actual_start_date < p_operation_completion_date ) THEN

Line 1157: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_INV_END_DATE');

1153: x_return_status := FND_API.G_RET_STS_ERROR;
1154: END IF;
1155:
1156: IF (l_actual_start_date < p_operation_completion_date ) THEN
1157: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_INV_END_DATE');
1158: x_return_status := FND_API.G_RET_STS_ERROR;
1159: END IF;
1160:
1161: EXCEPTION WHEN NO_DATA_FOUND THEN -- Bug 3133704, others -> no_data_found

Line 1162: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_OP_NOTFOUND');

1158: x_return_status := FND_API.G_RET_STS_ERROR;
1159: END IF;
1160:
1161: EXCEPTION WHEN NO_DATA_FOUND THEN -- Bug 3133704, others -> no_data_found
1162: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_OP_NOTFOUND');
1163: x_return_status := FND_API.G_RET_STS_ERROR;
1164: END;
1165:
1166: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN

Line 1357: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DURATION');

1353:
1354: -----------------------------------------------------------------
1355: -- validation
1356: if(p_duration <0) then
1357: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DURATION');
1358: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1359: else
1360: l_duration := trunc(p_duration * 60 * 60, 0) / ( 24 * 60 * 60);
1361: end if;

Line 1372: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_OP_NOTFOUND');

1368: from wip_operations
1369: where wip_entity_id = p_wip_entity_id
1370: and operation_seq_num = p_new_op_seq_num;
1371: Exception when others then
1372: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_OP_NOTFOUND');
1373: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1374: END;
1375: /* Fix for Bug 2108778 */
1376:

Line 1393: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DEPT_INVALID'

1389: and bd.department_id in (select department_id
1390: from bom_departments
1391: where department_code=p_department);
1392: if(l_dept=null) then
1393: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DEPT_INVALID'
1394: ,p_token1 => 'RESOURCE_SEQ_NUM', p_value1 => p_resource_seq_num ,p_token2 => 'DEPARTMENT',p_value2 =>p_department);
1395: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1396: END IF;
1397: end;

Line 1420: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_RSRC_NOTFOUND'

1416: l_quantity_open := 0;
1417: END IF ;
1418:
1419: Exception when others then
1420: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_RSRC_NOTFOUND'
1421: ,p_token1 => 'RESOURCE_SEQ_NUM', p_value1 => p_resource_seq_num);
1422: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1423:
1424:

Line 1439: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DEPT_INV'

1435: and nvl(bd.disable_date, sysdate) >= sysdate;
1436:
1437:
1438: Exception when others then
1439: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DEPT_INV'
1440: ,p_token1 => 'RESOURCE_SEQ_NUM', p_value1 => p_resource_seq_num
1441: ,p_token2 => 'ERR', p_value2 => SQLERRM );
1442: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1443: END;

Line 1460: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DEPT_NOTOK'

1456: from bom_department_resources bdr
1457: where bdr.department_id = l_department_id
1458: );
1459: if( l_num_non_compatible_resources >0) then
1460: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_DEPT_NOTOK'
1461: ,p_token1 => 'RESOURCE_SEQ_NUM', p_value1 => p_resource_seq_num);
1462: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1463: end if;
1464: end if;

Line 1474: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_S_QUANTITY_INV');

1470: from wip_discrete_jobs wdj
1471: where wdj.wip_entity_id = p_wip_entity_id;
1472:
1473: if(l_start_quantity <> 1 ) then
1474: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_S_QUANTITY_INV');
1475: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1476: end if;
1477:
1478:

Line 1597: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_RI_ALREADY_EXISTS'

1593: and papf.person_id = bre.person_id
1594: and( trunc(sysdate) between papf.effective_start_date
1595: and papf.effective_end_date);
1596:
1597: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_RI_ALREADY_EXISTS'
1598: ,p_token1 => 'INSTANCE_NAME', p_value1 => l_employee_name);
1599: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1600: END IF; -- end of l_inst_valid check
1601:

Line 1654: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_EXCEPTION'

1650:
1651:
1652:
1653: EXCEPTION WHEN OTHERS THEN
1654: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_HANDOVER_EXCEPTION'
1655: ,p_token1 => 'RESOURCE_SEQ_NUM', p_value1 => p_resource_seq_num
1656: ,p_token2 => 'ERR_MSG', p_value2 => SQLERRM);
1657: END;
1658:

Line 1664: eam_execution_jsp.Get_Messages

1660:
1661: -- check error
1662: l_msg_count := FND_MSG_PUB.count_msg;
1663: IF l_msg_count = 1 THEN
1664: eam_execution_jsp.Get_Messages
1665: (p_encoded => FND_API.G_FALSE,
1666: p_msg_index => 1,
1667: p_msg_count => l_msg_count,
1668: p_msg_data => l_msg_data, -- removed g_miss_char

Line 3570: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INSTANCES_EXIST');

3566:
3567: if(l_exists <> 0) then
3568:
3569: l_validate_st := 1;
3570: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => 'EAM_INSTANCES_EXIST');
3571: x_return_status := FND_API.G_RET_STS_ERROR;
3572: end if;
3573:
3574: end if; -- End of l_resource_id is not null ........

Line 3580: eam_execution_jsp.Get_Messages

3576: -- if validate not passed then raise error
3577: l_msg_count := FND_MSG_PUB.count_msg;
3578: IF l_msg_count = 1 THEN
3579:
3580: eam_execution_jsp.Get_Messages
3581: (p_encoded => FND_API.G_FALSE,
3582: p_msg_index => 1,
3583: p_msg_count => l_msg_count,
3584: p_msg_data => l_msg_data,

Line 4492: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => x_error_mssg);

4488: x_error_mssg ) ;
4489:
4490: if(x_error_flag <> FND_API.G_RET_STS_SUCCESS) then
4491: FND_MSG_PUB.Initialize;
4492: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => x_error_mssg);
4493: eam_execution_jsp.Get_Messages(
4494: p_encoded => FND_API.G_FALSE,
4495: p_msg_index => 1,
4496: p_msg_count => 1,

Line 4493: eam_execution_jsp.Get_Messages(

4489:
4490: if(x_error_flag <> FND_API.G_RET_STS_SUCCESS) then
4491: FND_MSG_PUB.Initialize;
4492: eam_execution_jsp.add_message(p_app_short_name => 'EAM', p_msg_name => x_error_mssg);
4493: eam_execution_jsp.Get_Messages(
4494: p_encoded => FND_API.G_FALSE,
4495: p_msg_index => 1,
4496: p_msg_count => 1,
4497: p_msg_data => l_mssg_data,