DBA Data[Home] [Help]

APPS.IGS_AV_LVL_LGCY_PUB dependencies on FND_API

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

57: /*#
58: * The Advanced Standing Unit Level Legacy Import process is a public API designed for use in populating rows with data during a system conversion.
59: * This API is also used by the Legacy Import Process for Enrollment and Records when importing rows from the IGS_AV_LGCY_LVL_INT interface table.
60: * @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.
61: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
62: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
63: * @param p_validation_level Public API will always perform full level of validation.
64: * @param p_lgcy_adstlvl_rec Legacy Advanced Standing Unit Level record type. Refer to IGS_AV_LGCY_LVL_INT for detail column descriptions.
65: * @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 62: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.

58: * The Advanced Standing Unit Level Legacy Import process is a public API designed for use in populating rows with data during a system conversion.
59: * This API is also used by the Legacy Import Process for Enrollment and Records when importing rows from the IGS_AV_LGCY_LVL_INT interface table.
60: * @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.
61: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
62: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
63: * @param p_validation_level Public API will always perform full level of validation.
64: * @param p_lgcy_adstlvl_rec Legacy Advanced Standing Unit Level record type. Refer to IGS_AV_LGCY_LVL_INT for detail column descriptions.
65: * @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.
66: * @param x_msg_count Message count.

Line 65: * @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 p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
62: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
63: * @param p_validation_level Public API will always perform full level of validation.
64: * @param p_lgcy_adstlvl_rec Legacy Advanced Standing Unit Level record type. Refer to IGS_AV_LGCY_LVL_INT for detail column descriptions.
65: * @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.
66: * @param x_msg_count Message count.
67: * @param x_msg_data Message data.
68: * @rep:scope public
69: * @rep:lifecycle active

Line 74: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,

70: * @rep:displayname Import Legacy Level Advanced Standing
71: */
72: PROCEDURE create_adv_stnd_level
73: (p_api_version IN NUMBER,
74: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
75: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
76: p_validation_level IN VARCHAR2 DEFAULT FND_API.G_VALID_LEVEL_FULL,
77: p_lgcy_adstlvl_rec IN OUT NOCOPY lgcy_adstlvl_rec_type,
78: x_return_status OUT NOCOPY VARCHAR2,

Line 75: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

71: */
72: PROCEDURE create_adv_stnd_level
73: (p_api_version IN NUMBER,
74: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
75: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
76: p_validation_level IN VARCHAR2 DEFAULT FND_API.G_VALID_LEVEL_FULL,
77: p_lgcy_adstlvl_rec IN OUT NOCOPY lgcy_adstlvl_rec_type,
78: x_return_status OUT NOCOPY VARCHAR2,
79: x_msg_count OUT NOCOPY NUMBER,

Line 76: p_validation_level IN VARCHAR2 DEFAULT FND_API.G_VALID_LEVEL_FULL,

72: PROCEDURE create_adv_stnd_level
73: (p_api_version IN NUMBER,
74: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
75: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
76: p_validation_level IN VARCHAR2 DEFAULT FND_API.G_VALID_LEVEL_FULL,
77: p_lgcy_adstlvl_rec IN OUT NOCOPY lgcy_adstlvl_rec_type,
78: x_return_status OUT NOCOPY VARCHAR2,
79: x_msg_count OUT NOCOPY NUMBER,
80: x_msg_data OUT NOCOPY VARCHAR2