DBA Data[Home] [Help]

APPS.CSD_REPAIR_ESTIMATE_PVT dependencies on CSD_ESTIMATE_UTILS_PVT

Line 6882: csd_estimate_utils_pvt.validate_est_hdr_rec(p_estimate_hdr_rec => l_estimate_hdr_rec,

6878: p_estimate_hdr_rec.repair_line_id || ']');
6879:
6880: l_estimate_hdr_rec := p_estimate_hdr_rec;
6881:
6882: csd_estimate_utils_pvt.validate_est_hdr_rec(p_estimate_hdr_rec => l_estimate_hdr_rec,
6883: p_validation_level => p_validation_level);
6884:
6885: csd_estimate_utils_pvt.default_est_hdr_rec(l_estimate_hdr_rec);
6886:

Line 6885: csd_estimate_utils_pvt.default_est_hdr_rec(l_estimate_hdr_rec);

6881:
6882: csd_estimate_utils_pvt.validate_est_hdr_rec(p_estimate_hdr_rec => l_estimate_hdr_rec,
6883: p_validation_level => p_validation_level);
6884:
6885: csd_estimate_utils_pvt.default_est_hdr_rec(l_estimate_hdr_rec);
6886:
6887: csd_estimate_utils_pvt.validate_defaulted_est_hdr(l_estimate_hdr_rec,
6888: p_validation_level);
6889:

Line 6887: csd_estimate_utils_pvt.validate_defaulted_est_hdr(l_estimate_hdr_rec,

6883: p_validation_level => p_validation_level);
6884:
6885: csd_estimate_utils_pvt.default_est_hdr_rec(l_estimate_hdr_rec);
6886:
6887: csd_estimate_utils_pvt.validate_defaulted_est_hdr(l_estimate_hdr_rec,
6888: p_validation_level);
6889:
6890: --If the estiamte_status is accepted or rejected then update the
6891: -- repair order status.

Line 6907: Csd_Estimate_Utils_Pvt.VALIDATE_REASON(l_estimate_hdr_rec.estimate_reason_code,

6903:
6904: debug('status is accepted or rejected');
6905:
6906: IF (l_estimate_hdr_rec.estimate_reason_code IS NOT NULL AND NOT
6907: Csd_Estimate_Utils_Pvt.VALIDATE_REASON(l_estimate_hdr_rec.estimate_reason_code,
6908: l_estimate_hdr_rec.estimate_status))
6909: THEN
6910: debug('Invalid estimate_reason_code[' ||
6911: l_estimate_hdr_rec.estimate_reason_code || ']');

Line 6938: csd_estimate_utils_pvt.COPY_TO_EST_HDR_REC(l_estimate_hdr_rec,

6934: l_estimate_hdr_rec.estimate_reason_code := NULL;
6935: END IF;
6936: debug('creating estimate header');
6937:
6938: csd_estimate_utils_pvt.COPY_TO_EST_HDR_REC(l_estimate_hdr_rec,
6939: l_est_hdr_pvt_rec);
6940: Csd_Repair_Estimate_Pvt.create_repair_estimate(p_api_version => 1.0,
6941: p_commit => Fnd_Api.G_FALSE,
6942: p_init_msg_list => Fnd_Api.G_FALSE,

Line 7082: csd_estimate_utils_pvt.validate_est_LINE_rec(l_estimate_line_rec,

7078: END IF;
7079:
7080: l_estimate_line_rec := p_estimate_line_rec;
7081:
7082: csd_estimate_utils_pvt.validate_est_LINE_rec(l_estimate_line_rec,
7083: p_validation_level);
7084:
7085: csd_estimate_utils_pvt.default_est_line_rec(l_estimate_line_rec);
7086:

Line 7085: csd_estimate_utils_pvt.default_est_line_rec(l_estimate_line_rec);

7081:
7082: csd_estimate_utils_pvt.validate_est_LINE_rec(l_estimate_line_rec,
7083: p_validation_level);
7084:
7085: csd_estimate_utils_pvt.default_est_line_rec(l_estimate_line_rec);
7086:
7087: csd_estimate_utils_pvt.validate_defaulted_est_line(l_estimate_line_rec,
7088: p_validation_level);
7089:

Line 7087: csd_estimate_utils_pvt.validate_defaulted_est_line(l_estimate_line_rec,

7083: p_validation_level);
7084:
7085: csd_estimate_utils_pvt.default_est_line_rec(l_estimate_line_rec);
7086:
7087: csd_estimate_utils_pvt.validate_defaulted_est_line(l_estimate_line_rec,
7088: p_validation_level);
7089:
7090: -- yvchen: bug 12545399
7091: -- uncomment this procedure since we need to convert the public record

Line 7093: csd_estimate_utils_pvt.copy_to_est_pvt_line_rec(l_estimate_line_rec,

7089:
7090: -- yvchen: bug 12545399
7091: -- uncomment this procedure since we need to convert the public record
7092: -- to a private one before calling create_repair_estimate_lines.
7093: csd_estimate_utils_pvt.copy_to_est_pvt_line_rec(l_estimate_line_rec,
7094: l_est_pvt_line_rec);
7095:
7096: debug('Calling create estimate_lines...');
7097:

Line 7353: csd_estimate_utils_pvt.VALIDATE_REASON(l_estimate_hdr_rec.estimate_reason_code,

7349: --bug#9733109
7350: debug('status is accepted or rejected');
7351:
7352: IF (l_est_pvt_hdr_rec.estimate_reason_code IS NOT NULL AND NOT
7353: csd_estimate_utils_pvt.VALIDATE_REASON(l_estimate_hdr_rec.estimate_reason_code,
7354: l_estimate_hdr_rec.estimate_status))
7355: THEN
7356: debug('Invalid estimate_reason_code[' ||
7357: l_estimate_hdr_rec.estimate_reason_code || ']');

Line 7383: csd_estimate_utils_pvt.COPY_TO_EST_HDR_REC_UPD(l_estimate_hdr_rec,

7379: ELSE
7380: l_estimate_hdr_rec.estimate_reason_code := NULL;
7381: END IF;
7382:
7383: csd_estimate_utils_pvt.COPY_TO_EST_HDR_REC_UPD(l_estimate_hdr_rec,
7384: l_est_pvt_hdr_rec);
7385:
7386: Csd_Repair_Estimate_Pvt.update_repair_estimate(p_api_version => 1.0,
7387: p_commit => Fnd_Api.G_FALSE,