DBA Data[Home] [Help]

APPS.IGS_EN_SUA_LGCY_PUB dependencies on FND_API

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

75: * The Student Unit Attempt Import process is a public API designed for use in populating rows with
76: * data during a system conversion. This API is also used by the Legacy Import Process for Enrollment
77: * and Records when importing rows from the IGS_EN_LGCY_SUA_INT interface table.
78: * @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.
79: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
80: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
81: * @param p_validation_level Public API will always perform full level of validation.
82: * @param p_sua_dtls_rec Legacy Student Unit Attempt record type. Refer to IGS_EN_LGCY_SUA_INT for detail column descriptions.
83: * @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 80: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.

76: * data during a system conversion. This API is also used by the Legacy Import Process for Enrollment
77: * and Records when importing rows from the IGS_EN_LGCY_SUA_INT interface table.
78: * @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.
79: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
80: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
81: * @param p_validation_level Public API will always perform full level of validation.
82: * @param p_sua_dtls_rec Legacy Student Unit Attempt record type. Refer to IGS_EN_LGCY_SUA_INT for detail column descriptions.
83: * @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.
84: * @param x_msg_count Message count.

Line 83: * @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.

79: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
80: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
81: * @param p_validation_level Public API will always perform full level of validation.
82: * @param p_sua_dtls_rec Legacy Student Unit Attempt record type. Refer to IGS_EN_LGCY_SUA_INT for detail column descriptions.
83: * @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.
84: * @param x_msg_count Message count.
85: * @param x_msg_data Message data.
86: * @rep:scope public
87: * @rep:lifecycle active

Line 91: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,

87: * @rep:lifecycle active
88: * @rep:displayname Import Legacy Student Unit Attempt
89: */
90: PROCEDURE create_sua ( p_api_version IN NUMBER,
91: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
92: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
93: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
94: p_sua_dtls_rec IN sua_dtls_rec_type ,
95: x_return_status OUT NOCOPY VARCHAR2,

Line 92: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

88: * @rep:displayname Import Legacy Student Unit Attempt
89: */
90: PROCEDURE create_sua ( p_api_version IN NUMBER,
91: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
92: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
93: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
94: p_sua_dtls_rec IN sua_dtls_rec_type ,
95: x_return_status OUT NOCOPY VARCHAR2,
96: x_msg_count OUT NOCOPY NUMBER,

Line 93: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,

89: */
90: PROCEDURE create_sua ( p_api_version IN NUMBER,
91: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
92: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
93: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
94: p_sua_dtls_rec IN sua_dtls_rec_type ,
95: x_return_status OUT NOCOPY VARCHAR2,
96: x_msg_count OUT NOCOPY NUMBER,
97: x_msg_data OUT NOCOPY VARCHAR2);