DBA Data[Home] [Help]

APPS.WIP_ATO_JOBS_PRIV dependencies on WIP_MASSLOAD_PUB

Line 811: fnd_file.put_line(which => fnd_file.log, buff => 'Calling wip_massload_pub.massLoadJobs with group Id: '|| l_wip_group_id);

807: | jobs for records loaded into the interface table. |
808: | |
809: | Calling MASSLOAD PL/SQL Routine |
810: +---------------------------------------------------------+*/
811: fnd_file.put_line(which => fnd_file.log, buff => 'Calling wip_massload_pub.massLoadJobs with group Id: '|| l_wip_group_id);
812:
813: wip_massload_pub.massLoadJobs(
814: p_groupID => l_wip_group_id,
815: p_validationLevel => 2,

Line 813: wip_massload_pub.massLoadJobs(

809: | Calling MASSLOAD PL/SQL Routine |
810: +---------------------------------------------------------+*/
811: fnd_file.put_line(which => fnd_file.log, buff => 'Calling wip_massload_pub.massLoadJobs with group Id: '|| l_wip_group_id);
812:
813: wip_massload_pub.massLoadJobs(
814: p_groupID => l_wip_group_id,
815: p_validationLevel => 2,
816: p_commitFlag => 1, --commit in Massload
817: x_returnStatus => retCode,

Line 820: fnd_file.put_line(which => fnd_file.log, buff => 'Returned from wip_massload_pub.massLoadJobs:');

816: p_commitFlag => 1, --commit in Massload
817: x_returnStatus => retCode,
818: x_errorMsg => errBuf);
819:
820: fnd_file.put_line(which => fnd_file.log, buff => 'Returned from wip_massload_pub.massLoadJobs:');
821:
822: IF (retCode <> fnd_api.g_ret_sts_success) THEN
823: fnd_file.put_line(which => fnd_file.log, buff => 'Failed in wip_massload_pub.massLoadJobs.');
824:

Line 823: fnd_file.put_line(which => fnd_file.log, buff => 'Failed in wip_massload_pub.massLoadJobs.');

819:
820: fnd_file.put_line(which => fnd_file.log, buff => 'Returned from wip_massload_pub.massLoadJobs:');
821:
822: IF (retCode <> fnd_api.g_ret_sts_success) THEN
823: fnd_file.put_line(which => fnd_file.log, buff => 'Failed in wip_massload_pub.massLoadJobs.');
824:
825: if (l_logLevel <= wip_constants.full_logging) then
826: wip_logger.log( 'Dbg:Failed in wip_massload_pub.massLoadJobs', l_returnStatus);
827: END IF;

Line 826: wip_logger.log( 'Dbg:Failed in wip_massload_pub.massLoadJobs', l_returnStatus);

822: IF (retCode <> fnd_api.g_ret_sts_success) THEN
823: fnd_file.put_line(which => fnd_file.log, buff => 'Failed in wip_massload_pub.massLoadJobs.');
824:
825: if (l_logLevel <= wip_constants.full_logging) then
826: wip_logger.log( 'Dbg:Failed in wip_massload_pub.massLoadJobs', l_returnStatus);
827: END IF;
828:
829: -- Bug 9314772.Should not raise exception here so that reservations
830: -- are created for jobs created with warnings.In case when the status

Line 834: fnd_file.put_line(which => fnd_file.log, buff => 'Failed in wip_massload_pub.massLoadJobs returned with status retCode:'||retCode);

830: -- are created for jobs created with warnings.In case when the status
831: -- returned is error, the reservation api will not pick the record to
832: -- create reservation.pdube
833: -- APP_EXCEPTION.RAISE_EXCEPTION;
834: fnd_file.put_line(which => fnd_file.log, buff => 'Failed in wip_massload_pub.massLoadJobs returned with status retCode:'||retCode);
835:
836: --Begin Bugfix 11818437
837: --Check if there are any records that got completed either successfully or in warning
838: begin

Line 870: fnd_file.put_line(which => fnd_file.log, buff => 'Returned successfully from wip_massload_pub.massLoadJobs.');

866: --End Bugfix 11818437
867:
868: END IF;
869:
870: fnd_file.put_line(which => fnd_file.log, buff => 'Returned successfully from wip_massload_pub.massLoadJobs.');
871:
872: END IF; /* end of logic skipped when failed_req_id <> -1 */
873:
874: /*================================================================+