DBA Data[Home] [Help]

APPS.IGS_PR_CLSRNK_LGCY_PUB dependencies on FND_API

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

26: /*#
27: * The Class Rank Legacy import process is a public API designed for use in populating rows with data during a system conversion.
28: * This API is also used by the Legacy Import Process for Enrollment and Records when importing rows from the IGS_PR_LGY_CLSR_INT interface table.
29: * @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.
30: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
31: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
32: * @param p_validation_level Public API will always perform full level of validation.
33: * @param p_lgcy_clsrnk_rec Legacy Class Rank record type. Refer to IGS_PR_LGY_CLSR_INT for detail column descriptions.
34: * @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 31: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.

27: * The Class Rank Legacy import process is a public API designed for use in populating rows with data during a system conversion.
28: * This API is also used by the Legacy Import Process for Enrollment and Records when importing rows from the IGS_PR_LGY_CLSR_INT interface table.
29: * @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.
30: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
31: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
32: * @param p_validation_level Public API will always perform full level of validation.
33: * @param p_lgcy_clsrnk_rec Legacy Class Rank record type. Refer to IGS_PR_LGY_CLSR_INT for detail column descriptions.
34: * @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.
35: * @param x_msg_count Message count.

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

30: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
31: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
32: * @param p_validation_level Public API will always perform full level of validation.
33: * @param p_lgcy_clsrnk_rec Legacy Class Rank record type. Refer to IGS_PR_LGY_CLSR_INT for detail column descriptions.
34: * @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.
35: * @param x_msg_count Message count.
36: * @param x_msg_data Message data.
37: * @rep:scope public
38: * @rep:lifecycle active

Line 43: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,

39: * @rep:displayname Import Legacy Class Rank
40: */
41: PROCEDURE create_class_rank
42: (p_api_version IN NUMBER,
43: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
44: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
45: p_validation_level IN VARCHAR2 DEFAULT FND_API.G_VALID_LEVEL_FULL,
46: p_lgcy_clsrnk_rec IN lgcy_clsrnk_rec_type,
47: x_return_status OUT NOCOPY VARCHAR2,

Line 44: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

40: */
41: PROCEDURE create_class_rank
42: (p_api_version IN NUMBER,
43: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
44: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
45: p_validation_level IN VARCHAR2 DEFAULT FND_API.G_VALID_LEVEL_FULL,
46: p_lgcy_clsrnk_rec IN lgcy_clsrnk_rec_type,
47: x_return_status OUT NOCOPY VARCHAR2,
48: x_msg_count OUT NOCOPY NUMBER,

Line 45: p_validation_level IN VARCHAR2 DEFAULT FND_API.G_VALID_LEVEL_FULL,

41: PROCEDURE create_class_rank
42: (p_api_version IN NUMBER,
43: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
44: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
45: p_validation_level IN VARCHAR2 DEFAULT FND_API.G_VALID_LEVEL_FULL,
46: p_lgcy_clsrnk_rec IN lgcy_clsrnk_rec_type,
47: x_return_status OUT NOCOPY VARCHAR2,
48: x_msg_count OUT NOCOPY NUMBER,
49: x_msg_data OUT NOCOPY VARCHAR2