DBA Data[Home] [Help]

APPS.IGS_GR_GRD_LGCY_PUB dependencies on FND_API

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

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

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

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

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

Line 83: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,

79: * @rep:displayname Import Legacy Graduand
80: */
81: PROCEDURE create_graduand(
82: 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_lgcy_grd_rec IN OUT NOCOPY lgcy_grd_rec_type,
87: x_return_status OUT NOCOPY VARCHAR2,

Line 84: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

80: */
81: PROCEDURE create_graduand(
82: 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_lgcy_grd_rec IN OUT NOCOPY lgcy_grd_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: PROCEDURE create_graduand(
82: 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_lgcy_grd_rec IN OUT NOCOPY lgcy_grd_rec_type,
87: x_return_status OUT NOCOPY VARCHAR2,
88: x_msg_count OUT NOCOPY NUMBER,
89: x_msg_data OUT NOCOPY VARCHAR2);