DBA Data[Home] [Help]

APPS.IGS_EN_SPAT_LGCY_PUB dependencies on FND_API

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

52: * The Student Program Attempt Term Record Import process is a public API designed for use in populating
53: * rows with data during a system conversion. This API is also used by the Legacy Import Process for
54: * Enrollment and Records when importing rows from the IGS_EN_LGY_SPAT_INT interface table.
55: * @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.
56: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
57: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
58: * @param p_validation_level Public API will always perform full level of validation.
59: * @param p_spat_rec Legacy Student Program Attempt Term record type. Refer to IGS_EN_LGY_SPAT_INT for detail column descriptions.
60: * @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 57: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.

53: * rows with data during a system conversion. This API is also used by the Legacy Import Process for
54: * Enrollment and Records when importing rows from the IGS_EN_LGY_SPAT_INT interface table.
55: * @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.
56: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
57: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
58: * @param p_validation_level Public API will always perform full level of validation.
59: * @param p_spat_rec Legacy Student Program Attempt Term record type. Refer to IGS_EN_LGY_SPAT_INT for detail column descriptions.
60: * @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.
61: * @param x_msg_count Message count.

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

56: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
57: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
58: * @param p_validation_level Public API will always perform full level of validation.
59: * @param p_spat_rec Legacy Student Program Attempt Term record type. Refer to IGS_EN_LGY_SPAT_INT for detail column descriptions.
60: * @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.
61: * @param x_msg_count Message count.
62: * @param x_msg_data Message data.
63: * @rep:scope public
64: * @rep:lifecycle active

Line 69: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,

65: * @rep:displayname Import Legacy Student Term Record
66: */
67: PROCEDURE create_spa_t (
68: p_api_version IN NUMBER,
69: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
70: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
71: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
72: p_spat_rec IN spat_rec_type,
73: x_return_status OUT NOCOPY VARCHAR2,

Line 70: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

66: */
67: PROCEDURE create_spa_t (
68: p_api_version IN NUMBER,
69: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
70: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
71: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
72: p_spat_rec IN spat_rec_type,
73: x_return_status OUT NOCOPY VARCHAR2,
74: x_msg_count OUT NOCOPY NUMBER,

Line 71: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,

67: PROCEDURE create_spa_t (
68: p_api_version IN NUMBER,
69: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
70: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
71: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
72: p_spat_rec IN spat_rec_type,
73: x_return_status OUT NOCOPY VARCHAR2,
74: x_msg_count OUT NOCOPY NUMBER,
75: x_msg_data OUT NOCOPY VARCHAR2 );