DBA Data[Home] [Help]

APPS.IGS_AS_TRNCMT_LGCY_PUB dependencies on FND_API

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

42: /*#
43: * The Transcript Comments import process is a public API designed for use in populating rows with data during a system conversion.
44: * This API is also used by the Legacy Import Process for Enrollment and Records when importing rows from the IGS_AS_LGCY_STC_INT interface table.
45: * @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.
46: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
47: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
48: * @param p_validation_level Public API will always perform full level of validation.
49: * @param p_lgcy_trncmt_rec Legacy Transcript Comment record type. Refer to IGS_AS_LGCY_STC_INT for detail column descriptions.
50: * @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 47: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.

43: * The Transcript Comments import process is a public API designed for use in populating rows with data during a system conversion.
44: * This API is also used by the Legacy Import Process for Enrollment and Records when importing rows from the IGS_AS_LGCY_STC_INT interface table.
45: * @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.
46: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
47: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
48: * @param p_validation_level Public API will always perform full level of validation.
49: * @param p_lgcy_trncmt_rec Legacy Transcript Comment record type. Refer to IGS_AS_LGCY_STC_INT for detail column descriptions.
50: * @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.
51: * @param x_msg_count Message count.

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

46: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
47: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
48: * @param p_validation_level Public API will always perform full level of validation.
49: * @param p_lgcy_trncmt_rec Legacy Transcript Comment record type. Refer to IGS_AS_LGCY_STC_INT for detail column descriptions.
50: * @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.
51: * @param x_msg_count Message count.
52: * @param x_msg_data Message data.
53: * @rep:scope public
54: * @rep:lifecycle active

Line 59: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,

55: * @rep:displayname Import Legacy Transcript Comment
56: */
57: PROCEDURE create_trncmt(
58: p_api_version IN NUMBER ,
59: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
60: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
61: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
62: p_lgcy_trncmt_rec IN OUT NOCOPY LGCY_TRNCMT_REC_TYPE,
63: x_return_status OUT NOCOPY VARCHAR2 ,

Line 60: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

56: */
57: PROCEDURE create_trncmt(
58: p_api_version IN NUMBER ,
59: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
60: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
61: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
62: p_lgcy_trncmt_rec IN OUT NOCOPY LGCY_TRNCMT_REC_TYPE,
63: x_return_status OUT NOCOPY VARCHAR2 ,
64: x_msg_count OUT NOCOPY NUMBER ,

Line 61: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,

57: PROCEDURE create_trncmt(
58: p_api_version IN NUMBER ,
59: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
60: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
61: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
62: p_lgcy_trncmt_rec IN OUT NOCOPY LGCY_TRNCMT_REC_TYPE,
63: x_return_status OUT NOCOPY VARCHAR2 ,
64: x_msg_count OUT NOCOPY NUMBER ,
65: x_msg_data OUT NOCOPY VARCHAR2