DBA Data[Home] [Help]

APPS.IGS_EN_SPAA_LGCY_PUB dependencies on FND_API

Line 24: -- p_init_msg_list IN VARCHAR2 Optional Default = FND_API.G_FALSE

20: -- Award Aims after validating the values for each fields.
21: -- Pre-reqs : None.
22: -- Parameters :
23: -- IN : p_api_version IN NUMBER Required
24: -- p_init_msg_list IN VARCHAR2 Optional Default = FND_API.G_FALSE
25: -- p_commit IN VARCHAR2 Optional Default = FND_API.G_FALSE
26: -- p_validation_level IN NUMBER Optional Default = FND_API.G_VALID_LEVEL_FULL
27: -- p_awd_aim_rec IN awd_aim_rec_type (this is a record type declared in the spec
28: -- contains the below mentioned fields)

Line 25: -- p_commit IN VARCHAR2 Optional Default = FND_API.G_FALSE

21: -- Pre-reqs : None.
22: -- Parameters :
23: -- IN : p_api_version IN NUMBER Required
24: -- p_init_msg_list IN VARCHAR2 Optional Default = FND_API.G_FALSE
25: -- p_commit IN VARCHAR2 Optional Default = FND_API.G_FALSE
26: -- p_validation_level IN NUMBER Optional Default = FND_API.G_VALID_LEVEL_FULL
27: -- p_awd_aim_rec IN awd_aim_rec_type (this is a record type declared in the spec
28: -- contains the below mentioned fields)
29: -- {

Line 26: -- p_validation_level IN NUMBER Optional Default = FND_API.G_VALID_LEVEL_FULL

22: -- Parameters :
23: -- IN : p_api_version IN NUMBER Required
24: -- p_init_msg_list IN VARCHAR2 Optional Default = FND_API.G_FALSE
25: -- p_commit IN VARCHAR2 Optional Default = FND_API.G_FALSE
26: -- p_validation_level IN NUMBER Optional Default = FND_API.G_VALID_LEVEL_FULL
27: -- p_awd_aim_rec IN awd_aim_rec_type (this is a record type declared in the spec
28: -- contains the below mentioned fields)
29: -- {
30: -- person_number :Person number of the student

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

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

70: * during a system conversion. This API is also used by the Legacy Import Process for Enrollment and
71: * Records when importing rows from the IGS_EN_LGY_SPAA_INT interface table.
72: * @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.
73: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
74: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
75: * @param p_validation_level Public API will always perform full level of validation.
76: * @param p_awd_aim_rec Legacy Student Award Aim record type. Refer to IGS_EN_LGY_SPAA_INT for detail column descriptions.
77: * @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.
78: * @param x_msg_count Message count.

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

73: * @param P_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
74: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
75: * @param p_validation_level Public API will always perform full level of validation.
76: * @param p_awd_aim_rec Legacy Student Award Aim record type. Refer to IGS_EN_LGY_SPAA_INT for detail column descriptions.
77: * @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.
78: * @param x_msg_count Message count.
79: * @param x_msg_data Message data.
80: * @rep:scope public
81: * @rep:lifecycle active

Line 86: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,

82: * @rep:displayname Import Legacy Award Aim
83: */
84: PROCEDURE create_student_awd_aim
85: ( p_api_version IN NUMBER,
86: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
87: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
88: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
89: p_awd_aim_rec IN awd_aim_rec_type,
90: x_return_status OUT NOCOPY VARCHAR2,

Line 87: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,

83: */
84: PROCEDURE create_student_awd_aim
85: ( p_api_version IN NUMBER,
86: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
87: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
88: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
89: p_awd_aim_rec IN awd_aim_rec_type,
90: x_return_status OUT NOCOPY VARCHAR2,
91: x_msg_count OUT NOCOPY NUMBER,

Line 88: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,

84: PROCEDURE create_student_awd_aim
85: ( p_api_version IN NUMBER,
86: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
87: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
88: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,
89: p_awd_aim_rec IN awd_aim_rec_type,
90: x_return_status OUT NOCOPY VARCHAR2,
91: x_msg_count OUT NOCOPY NUMBER,
92: x_msg_data OUT NOCOPY VARCHAR2