DBA Data[Home] [Help]

APPS.PO_STORE_TIMECARD_PKG_GRP dependencies on FND_API

Line 363: x_return_status := FND_API.G_RET_STS_SUCCESS;

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

Line 369: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

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

Line 457: x_return_status := FND_API.G_RET_STS_SUCCESS;

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

Line 464: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

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

Line 511: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

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

Line 630: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

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

Line 636: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

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