DBA Data[Home] [Help]

APPS.IGS_EN_SUSA_LGCY_PUB dependencies on FND_API

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

67: /*#
68: * The Student Unit Set Attempt Import process is a public API designed for use in populating
69: * rows with data during a system conversion. This API is also used by the Legacy Import Process for Enrollment and Records when importing rows from the IGS_EN_LGY_SUSA_INT interface table.
70: * @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.
71: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
72: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
73: * @param p_validation_level Public API will always perform full level of validation.
74: * @param p_susa_rec Legacy Student Unit Set Attempt record type. Refer to IGS_EN_LGY_SUSA_INT for detail column descriptions.
75: * @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 72: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.

68: * The Student Unit Set Attempt Import process is a public API designed for use in populating
69: * rows with data during a system conversion. This API is also used by the Legacy Import Process for Enrollment and Records when importing rows from the IGS_EN_LGY_SUSA_INT interface table.
70: * @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.
71: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
72: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
73: * @param p_validation_level Public API will always perform full level of validation.
74: * @param p_susa_rec Legacy Student Unit Set Attempt record type. Refer to IGS_EN_LGY_SUSA_INT for detail column descriptions.
75: * @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.
76: * @param x_msg_count Message count.

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

71: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
72: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
73: * @param p_validation_level Public API will always perform full level of validation.
74: * @param p_susa_rec Legacy Student Unit Set Attempt record type. Refer to IGS_EN_LGY_SUSA_INT for detail column descriptions.
75: * @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.
76: * @param x_msg_count Message count.
77: * @param x_msg_data Message data.
78: * @rep:scope public
79: * @rep:lifecycle active

Line 83: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,

79: * @rep:lifecycle active
80: * @rep:displayname Import Legacy Student Unit Set Attempt
81: */
82: PROCEDURE create_unit_set_atmpt (p_api_version IN NUMBER,
83: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
84: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
85: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
86: p_susa_rec IN susa_rec_type,
87: x_return_status OUT NOCOPY VARCHAR2,

Line 84: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

80: * @rep:displayname Import Legacy Student Unit Set Attempt
81: */
82: PROCEDURE create_unit_set_atmpt (p_api_version IN NUMBER,
83: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
84: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
85: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
86: p_susa_rec IN susa_rec_type,
87: x_return_status OUT NOCOPY VARCHAR2,
88: x_msg_count OUT NOCOPY NUMBER,

Line 85: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,

81: */
82: PROCEDURE create_unit_set_atmpt (p_api_version IN NUMBER,
83: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
84: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
85: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
86: p_susa_rec IN susa_rec_type,
87: x_return_status OUT NOCOPY VARCHAR2,
88: x_msg_count OUT NOCOPY NUMBER,
89: x_msg_data OUT NOCOPY VARCHAR2);