DBA Data[Home] [Help]

APPS.CSD_ESTIMATE_UTILS_PVT dependencies on CSD_REPAIR_ESTIMATE_PVT

Line 8: G_PKG_NAME CONSTANT VARCHAR2(30) := 'CSD_REPAIR_ESTIMATE_PVT';

4: -- ---------------------------------------------------------
5: -- Define global variables
6: -- ---------------------------------------------------------
7:
8: G_PKG_NAME CONSTANT VARCHAR2(30) := 'CSD_REPAIR_ESTIMATE_PVT';
9: G_FILE_NAME CONSTANT VARCHAR2(12) := 'csduestb.pls';
10: g_debug NUMBER := Csd_Gen_Utility_Pvt.g_debug_level;
11: ----Begin change for 3931317, wrpper aPI forward port
12:

Line 652: x_est_pvt_hdr_rec OUT NOCOPY Csd_Repair_Estimate_Pvt.REPAIR_ESTIMATE_REC) IS

648: /* */
649: /* Change History : Created 25th June2005 by Vijay */
650: /*------------------------------------------------------------------------*/
651: PROCEDURE COPY_TO_EST_HDR_REC(p_estimate_hdr_rec IN Csd_Repair_Estimate_Pub.estimate_hdr_Rec,
652: x_est_pvt_hdr_rec OUT NOCOPY Csd_Repair_Estimate_Pvt.REPAIR_ESTIMATE_REC) IS
653: BEGIN
654:
655: IF (p_estimate_hdr_rec.repair_estimate_id IS NOT NULL) then
656: x_est_pvt_hdr_rec.repair_estimate_id := p_estimate_hdr_rec.repair_estimate_id;

Line 767: x_est_pvt_hdr_rec OUT NOCOPY Csd_Repair_Estimate_Pvt.REPAIR_ESTIMATE_REC) IS

763: /* */
764: /* Change History : Created 25th June2005 by Vijay */
765: /*------------------------------------------------------------------------*/
766: PROCEDURE COPY_TO_EST_HDR_REC_UPD(p_estimate_hdr_rec IN Csd_Repair_Estimate_Pub.estimate_hdr_Rec,
767: x_est_pvt_hdr_rec OUT NOCOPY Csd_Repair_Estimate_Pvt.REPAIR_ESTIMATE_REC) IS
768: BEGIN
769: -- swai: bug 9462789
770: x_est_pvt_hdr_rec.repair_estimate_id := p_estimate_hdr_rec.repair_estimate_id;
771:

Line 1486: /* to CSD_REPAIR_ESTIMATE_PVT.repair_estimate_line_rec */

1482:
1483: /*------------------------------------------------------------------------*/
1484: /* procedure name: COPY_TO_EST_PVT_LINE_REC */
1485: /* Description: Copy values from CSD_REPAIR_ESTIMATE_PUB.estimate_line_rec*/
1486: /* to CSD_REPAIR_ESTIMATE_PVT.repair_estimate_line_rec */
1487: /* */
1488: /* Change History : Created 05 Dec 2011 by yvchen: bug 12545399 */
1489: /*------------------------------------------------------------------------*/
1490: PROCEDURE COPY_TO_EST_PVT_LINE_REC(p_estimate_line_rec IN Csd_Repair_Estimate_Pub.estimate_line_Rec,

Line 1491: x_est_pvt_line_rec IN OUT NOCOPY Csd_Repair_Estimate_Pvt.REPAIR_ESTIMATE_LINE_REC) IS

1487: /* */
1488: /* Change History : Created 05 Dec 2011 by yvchen: bug 12545399 */
1489: /*------------------------------------------------------------------------*/
1490: PROCEDURE COPY_TO_EST_PVT_LINE_REC(p_estimate_line_rec IN Csd_Repair_Estimate_Pub.estimate_line_Rec,
1491: x_est_pvt_line_rec IN OUT NOCOPY Csd_Repair_Estimate_Pvt.REPAIR_ESTIMATE_LINE_REC) IS
1492: BEGIN
1493: IF (p_estimate_line_rec.repair_estimate_line_id IS NOT NULL) then
1494: x_est_pvt_line_rec.repair_estimate_line_id := p_estimate_line_rec.repair_estimate_line_id ;
1495: END IF;