DBA Data[Home] [Help]

APPS.PO_STORE_TIMECARD_PKG_GRP dependencies on FND_API

Line 361: x_return_status := FND_API.G_RET_STS_SUCCESS;

357: l_action,
358: l_tc_entry_seq
359: );
360:
361: x_return_status := FND_API.G_RET_STS_SUCCESS;
362:
363: --Do not commit
364:
365: exception

Line 367: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

363: --Do not commit
364:
365: exception
366: when others then
367: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
368: x_msg_data := 'Action = ' || p_action || 'Stage = ' || l_stage || ' PO Number: ' || p_po_num ||
369: ' Line : ' || to_char(p_po_line_number) ||
370: ' TC_ID : ' || to_char (p_tc_id) ||
371: ' TC_DAY_ID : ' || to_char(p_tc_day_id) ||

Line 455: x_return_status := FND_API.G_RET_STS_SUCCESS;

451: delete po_retrieved_timecards
452: where action_flag in ('U', 'D');
453:
454:
455: x_return_status := FND_API.G_RET_STS_SUCCESS;
456:
457: --Do not commit
458:
459:

Line 462: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

458:
459:
460: exception
461: when others then
462: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
463: x_msg_data := ' Error : ' || SQLERRM;
464: end;
465:
466:

Line 509: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

505: );
506:
507: exception
508: when others then
509: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
510: x_msg_data := ' Error : ' || SQLERRM;
511: end store_timecard_details_rec;
512:
513:

Line 628: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

624: end if;
625:
626: exception
627: when dml_errors then
628: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
629: x_msg_data := '';
630:
631: x_errs := add_error (p_rtrvd_tcs);
632:

Line 634: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

630:
631: x_errs := add_error (p_rtrvd_tcs);
632:
633: when others then
634: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
635: x_msg_data := ' Error : ' || SQLERRM;
636:
637: end store_timecard_details_bulk;
638: