DBA Data[Home] [Help]

APPS.IGF_SP_ASSIGN_PUB dependencies on FND_API

Line 34: -- IN : p_init_msg_list IN VARCHAR2 Optional, Default:fnd_api.g_false

30: -- Parameters :
31: -- IN : p_api_version IN NUMBER Required
32: -- Current Version number of the Public API
33: --
34: -- IN : p_init_msg_list IN VARCHAR2 Optional, Default:fnd_api.g_false
35: -- Message stack initialization parameter
36: --
37: -- IN : p_commit IN VARCHAR2 Optional, Default:fnd_api.g_false
38: -- Parameter to check if the current transactions have

Line 37: -- IN : p_commit IN VARCHAR2 Optional, Default:fnd_api.g_false

33: --
34: -- IN : p_init_msg_list IN VARCHAR2 Optional, Default:fnd_api.g_false
35: -- Message stack initialization parameter
36: --
37: -- IN : p_commit IN VARCHAR2 Optional, Default:fnd_api.g_false
38: -- Parameter to check if the current transactions have
39: -- to be committed explicitly.
40: --
41: --

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

93: /*#
94: * The Sponsorship Assignment API is a public API that is used to assign a number of students to a sponsor automatically.
95: * Oracle Student System allows you to create student-sponsor assignment records though the interface. This API is a means to automatically create multiple student-sponsor assignment records.
96: * @param p_api_version The version number will be used to compare with the public api's current version number. Unexpected error is raised if version in-compatibility exists.
97: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
98: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
99: * @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
100: * @param x_msg_count The message count.
101: * @param x_msg_data The message data.

Line 98: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.

94: * The Sponsorship Assignment API is a public API that is used to assign a number of students to a sponsor automatically.
95: * Oracle Student System allows you to create student-sponsor assignment records though the interface. This API is a means to automatically create multiple student-sponsor assignment records.
96: * @param p_api_version The version number will be used to compare with the public api's current version number. Unexpected error is raised if version in-compatibility exists.
97: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
98: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
99: * @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
100: * @param x_msg_count The message count.
101: * @param x_msg_data The message data.
102: * @param p_person_id Person Identifier of the person for creating a Student-Sponsor relationship.

Line 99: * @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: * Oracle Student System allows you to create student-sponsor assignment records though the interface. This API is a means to automatically create multiple student-sponsor assignment records.
96: * @param p_api_version The version number will be used to compare with the public api's current version number. Unexpected error is raised if version in-compatibility exists.
97: * @param p_init_msg_list Set to FND_API.G_TRUE to have API automatically to initialize message list.
98: * @param p_commit Set to FND_API.G_TRUE to have API to commit automatically.
99: * @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
100: * @param x_msg_count The message count.
101: * @param x_msg_data The message data.
102: * @param p_person_id Person Identifier of the person for creating a Student-Sponsor relationship.
103: * @param p_alt_person_id_type User defined Person ID Type.

Line 116: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,

112: * @rep:lifecycle active
113: * @rep:displayname Import Sponsorship Relationships
114: */
115: PROCEDURE create_stdnt_spnsr_rel(p_api_version IN NUMBER,
116: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,
117: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,
118: x_return_status OUT NOCOPY VARCHAR2,
119: x_msg_count OUT NOCOPY NUMBER,
120: x_msg_data OUT NOCOPY VARCHAR2,

Line 117: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,

113: * @rep:displayname Import Sponsorship Relationships
114: */
115: PROCEDURE create_stdnt_spnsr_rel(p_api_version IN NUMBER,
116: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,
117: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,
118: x_return_status OUT NOCOPY VARCHAR2,
119: x_msg_count OUT NOCOPY NUMBER,
120: x_msg_data OUT NOCOPY VARCHAR2,
121: p_person_id IN NUMBER,