DBA Data[Home] [Help]

APPS.IGS_EN_SPA_LGCY_PUB dependencies on FND_API

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

86: * populating rows with data during a system conversion. This API is also used by the Legacy
87: * Import Process for Enrollment and Records when importing rows from the IGS_EN_LGCY_SPA_INT interface table.
88: * @param p_api_version The version number will be used to compare with
89: * claim public api's current version number.Unexpected error is raised if version in-compatibility exists.
90: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
91: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
92: * @param p_validation_level Public API will always perform full level of validation.
93: * @param p_sca_re_rec Legacy Student Program Attempt record type. Refer to IGS_EN_LGCY_SPA_INT for detail column descriptions.
94: * @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 91: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.

87: * Import Process for Enrollment and Records when importing rows from the IGS_EN_LGCY_SPA_INT interface table.
88: * @param p_api_version The version number will be used to compare with
89: * claim public api's current version number.Unexpected error is raised if version in-compatibility exists.
90: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
91: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
92: * @param p_validation_level Public API will always perform full level of validation.
93: * @param p_sca_re_rec Legacy Student Program Attempt record type. Refer to IGS_EN_LGCY_SPA_INT for detail column descriptions.
94: * @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.
95: * @param x_msg_count Message count.

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

90: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
91: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
92: * @param p_validation_level Public API will always perform full level of validation.
93: * @param p_sca_re_rec Legacy Student Program Attempt record type. Refer to IGS_EN_LGCY_SPA_INT for detail column descriptions.
94: * @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.
95: * @param x_msg_count Message count.
96: * @param x_msg_data Message data.
97: * @rep:scope public
98: * @rep:lifecycle active

Line 103: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,

99: * @rep:displayname Import Legacy Student Program Attempt
100: */
101: PROCEDURE create_spa(
102: p_api_version IN NUMBER,
103: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
104: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
105: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
106: p_sca_re_rec IN SCA_RE_REC_TYPE,
107: x_return_status OUT NOCOPY VARCHAR2,

Line 104: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

100: */
101: PROCEDURE create_spa(
102: p_api_version IN NUMBER,
103: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
104: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
105: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
106: p_sca_re_rec IN SCA_RE_REC_TYPE,
107: x_return_status OUT NOCOPY VARCHAR2,
108: x_msg_count OUT NOCOPY NUMBER,

Line 105: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,

101: PROCEDURE create_spa(
102: p_api_version IN NUMBER,
103: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
104: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
105: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
106: p_sca_re_rec IN SCA_RE_REC_TYPE,
107: x_return_status OUT NOCOPY VARCHAR2,
108: x_msg_count OUT NOCOPY NUMBER,
109: x_msg_data OUT NOCOPY VARCHAR2);