DBA Data[Home] [Help]

APPS.IGS_RE_THE_LGCY_PUB dependencies on FND_API

Line 23: -- p_init_msg_list IN VARCHAR2 Optional Default = FND_API.G_FALSE

19: -- Function :
20: -- Pre-reqs : None.
21: -- Parameters :
22: -- IN : p_api_version IN NUMBER Required
23: -- p_init_msg_list IN VARCHAR2 Optional Default = FND_API.G_FALSE
24: -- p_commit IN VARCHAR2 Optional Default = FND_API.G_FALSE
25: -- p_validation_level IN NUMBER Optional Default = FND_API.G_VALID_LEVEL_FULL
26: -- p_the_dtls_rec IN the_dtls_rec_type (this is a record type declared in the spec
27: -- contains the below mentioned fields)

Line 24: -- p_commit IN VARCHAR2 Optional Default = FND_API.G_FALSE

20: -- Pre-reqs : None.
21: -- Parameters :
22: -- IN : p_api_version IN NUMBER Required
23: -- p_init_msg_list IN VARCHAR2 Optional Default = FND_API.G_FALSE
24: -- p_commit IN VARCHAR2 Optional Default = FND_API.G_FALSE
25: -- p_validation_level IN NUMBER Optional Default = FND_API.G_VALID_LEVEL_FULL
26: -- p_the_dtls_rec IN the_dtls_rec_type (this is a record type declared in the spec
27: -- contains the below mentioned fields)
28: -- {

Line 25: -- p_validation_level IN NUMBER Optional Default = FND_API.G_VALID_LEVEL_FULL

21: -- Parameters :
22: -- IN : p_api_version IN NUMBER Required
23: -- p_init_msg_list IN VARCHAR2 Optional Default = FND_API.G_FALSE
24: -- p_commit IN VARCHAR2 Optional Default = FND_API.G_FALSE
25: -- p_validation_level IN NUMBER Optional Default = FND_API.G_VALID_LEVEL_FULL
26: -- p_the_dtls_rec IN the_dtls_rec_type (this is a record type declared in the spec
27: -- contains the below mentioned fields)
28: -- {
29: -- person_number :Person Number which will be resolved to get PERSON_ID.

Line 96: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.

92: * The Research Thesis Import process is a public API designed for use in populating rows with data
93: * during a system conversion. This API is also used by the Legacy Import Process for Enrollment and
94: * Records when importing rows from the IGS_RE_LGCY_THE_INT interface table.
95: * @param p_api_version The version number will be used to compare with claim public api's current version number.Unexpected error is raised if version in-compatibility exists.
96: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
97: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
98: * @param p_validation_level Public API will always perform full level of validation.
99: * @param p_the_dtls_rec Legacy Research Thesis record type. Refer to IGS_EN_LGCY_THE_INT for detail column descriptions.
100: * @param x_return_status The return status values are as follows; Success - FND_API.G_RET_STS_SUCCESS ; Error - FND_API.G_RET_STS_ERROR ; Unexpected error - FND_API.G_RET_STS_UNEXP_ERROR.

Line 97: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.

93: * during a system conversion. This API is also used by the Legacy Import Process for Enrollment and
94: * Records when importing rows from the IGS_RE_LGCY_THE_INT interface table.
95: * @param p_api_version The version number will be used to compare with claim public api's current version number.Unexpected error is raised if version in-compatibility exists.
96: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
97: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
98: * @param p_validation_level Public API will always perform full level of validation.
99: * @param p_the_dtls_rec Legacy Research Thesis record type. Refer to IGS_EN_LGCY_THE_INT for detail column descriptions.
100: * @param x_return_status The return status values are as follows; Success - FND_API.G_RET_STS_SUCCESS ; Error - FND_API.G_RET_STS_ERROR ; Unexpected error - FND_API.G_RET_STS_UNEXP_ERROR.
101: * @param x_msg_count Message count.

Line 100: * @param x_return_status The return status values are as follows; Success - FND_API.G_RET_STS_SUCCESS ; Error - FND_API.G_RET_STS_ERROR ; Unexpected error - FND_API.G_RET_STS_UNEXP_ERROR.

96: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
97: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
98: * @param p_validation_level Public API will always perform full level of validation.
99: * @param p_the_dtls_rec Legacy Research Thesis record type. Refer to IGS_EN_LGCY_THE_INT for detail column descriptions.
100: * @param x_return_status The return status values are as follows; Success - FND_API.G_RET_STS_SUCCESS ; Error - FND_API.G_RET_STS_ERROR ; Unexpected error - FND_API.G_RET_STS_UNEXP_ERROR.
101: * @param x_msg_count Message count.
102: * @param x_msg_data Message data.
103: * @rep:scope public
104: * @rep:lifecycle active

Line 109: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE ,

105: * @rep:displayname Import Legacy Research Thesis
106: */
107: PROCEDURE create_the
108: ( p_api_version IN NUMBER,
109: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE ,
110: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE ,
111: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL ,
112: p_the_dtls_rec IN the_dtls_rec_type ,
113: x_return_status OUT NOCOPY VARCHAR2,

Line 110: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE ,

106: */
107: PROCEDURE create_the
108: ( p_api_version IN NUMBER,
109: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE ,
110: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE ,
111: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL ,
112: p_the_dtls_rec IN the_dtls_rec_type ,
113: x_return_status OUT NOCOPY VARCHAR2,
114: x_msg_count OUT NOCOPY NUMBER,

Line 111: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL ,

107: PROCEDURE create_the
108: ( p_api_version IN NUMBER,
109: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE ,
110: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE ,
111: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL ,
112: p_the_dtls_rec IN the_dtls_rec_type ,
113: x_return_status OUT NOCOPY VARCHAR2,
114: x_msg_count OUT NOCOPY NUMBER,
115: x_msg_data OUT NOCOPY VARCHAR2);