DBA Data[Home] [Help]

PACKAGE: APPS.WIP_MASSLOAD_PUB

Source


1 package wip_massload_pub AUTHID CURRENT_USER as
2  /* $Header: wipmlpps.pls 120.1.12010000.1 2008/07/24 05:23:50 appldev ship $ */
3 
4   /* Pass 1 for p_commitFlag if you want this API to commit changes. Pass
5    0 otherwise. */
6   procedure massLoadJobs(p_groupID         in number,
7                          p_validationLevel in number,
8                          p_commitFlag      in number,
9                          x_returnStatus out nocopy varchar2,
10                          x_errorMsg     out nocopy varchar2);
11 
12   -- this API is used to create one job for the given interface id. Please note that there should be no
13   -- other records under the same group id as the given interface id. This API will fail that case.
14   -- also, the load type for this record must be create standard or non-std job.
15   procedure createOneJob(p_interfaceID in number,
16                          p_validationLevel in number,
17                          x_wipEntityID out nocopy number,
18                          x_returnStatus out nocopy varchar2,
19                          x_errorMsg     out nocopy varchar2);
20 end wip_massload_pub;