DBA Data[Home] [Help]

APPS.HZ_EXTRACT_PERSON_BO_PVT dependencies on FND_API

Line 26: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

22: -- ARGUMENTS
23: -- IN:
24: -- p_init_msg_list Initialize message stack if it is set to
25: -- p_person_id Person ID.
26: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
27: -- OUT:
28: -- x_person_obj Logical person record.
29: -- x_return_status Return status after the call. The status can
30: -- be fnd_api.g_ret_sts_success (success),

Line 30: -- be fnd_api.g_ret_sts_success (success),

26: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
27: -- OUT:
28: -- x_person_obj Logical person record.
29: -- x_return_status Return status after the call. The status can
30: -- be fnd_api.g_ret_sts_success (success),
31: -- fnd_api.g_ret_sts_error (error),
32: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
33: -- x_msg_count Number of messages in message stack.
34: -- x_msg_data Message text if x_msg_count is 1.

Line 31: -- fnd_api.g_ret_sts_error (error),

27: -- OUT:
28: -- x_person_obj Logical person record.
29: -- x_return_status Return status after the call. The status can
30: -- be fnd_api.g_ret_sts_success (success),
31: -- fnd_api.g_ret_sts_error (error),
32: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
33: -- x_msg_count Number of messages in message stack.
34: -- x_msg_data Message text if x_msg_count is 1.
35: --

Line 32: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

28: -- x_person_obj Logical person record.
29: -- x_return_status Return status after the call. The status can
30: -- be fnd_api.g_ret_sts_success (success),
31: -- fnd_api.g_ret_sts_error (error),
32: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
33: -- x_msg_count Number of messages in message stack.
34: -- x_msg_data Message text if x_msg_count is 1.
35: --
36: -- NOTES

Line 84: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

80:
81:
82:
83: PROCEDURE get_person_bo(
84: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
85: p_person_id IN NUMBER,
86: p_action_type IN VARCHAR2 := NULL,
87: x_person_obj OUT NOCOPY HZ_PERSON_BO,
88: x_return_status OUT NOCOPY VARCHAR2,

Line 109: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

105: -- ARGUMENTS
106: -- IN:
107: -- p_init_msg_list Initialize message stack if it is set to
108: -- p_event_id BES Event identifier.
109: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
110: -- OUT:
111: -- x_person_obj One or more created logical person.
112: -- x_return_status Return status after the call. The status can
113: -- be fnd_api.g_ret_sts_success (success),

Line 113: -- be fnd_api.g_ret_sts_success (success),

109: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
110: -- OUT:
111: -- x_person_obj One or more created logical person.
112: -- x_return_status Return status after the call. The status can
113: -- be fnd_api.g_ret_sts_success (success),
114: -- fnd_api.g_ret_sts_error (error),
115: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
116: -- x_msg_count Number of messages in message stack.
117: -- x_msg_data Message text if x_msg_count is 1.

Line 114: -- fnd_api.g_ret_sts_error (error),

110: -- OUT:
111: -- x_person_obj One or more created logical person.
112: -- x_return_status Return status after the call. The status can
113: -- be fnd_api.g_ret_sts_success (success),
114: -- fnd_api.g_ret_sts_error (error),
115: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
116: -- x_msg_count Number of messages in message stack.
117: -- x_msg_data Message text if x_msg_count is 1.
118: --

Line 115: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

111: -- x_person_obj One or more created logical person.
112: -- x_return_status Return status after the call. The status can
113: -- be fnd_api.g_ret_sts_success (success),
114: -- fnd_api.g_ret_sts_error (error),
115: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
116: -- x_msg_count Number of messages in message stack.
117: -- x_msg_data Message text if x_msg_count is 1.
118: --
119: -- NOTES

Line 143: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

139: */
140:
141:
142: PROCEDURE get_persons_created(
143: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
144: p_event_id IN NUMBER,
145: x_person_objs OUT NOCOPY HZ_PERSON_BO_TBL,
146: x_return_status OUT NOCOPY VARCHAR2,
147: x_msg_count OUT NOCOPY NUMBER,

Line 169: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

165: -- ARGUMENTS
166: -- IN:
167: -- p_init_msg_list Initialize message stack if it is set to
168: -- p_event_id BES Event identifier.
169: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
170: -- OUT:
171: -- x_person_objs One or more created logical person.
172: -- x_return_status Return status after the call. The status can
173: -- be fnd_api.g_ret_sts_success (success),

Line 173: -- be fnd_api.g_ret_sts_success (success),

169: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
170: -- OUT:
171: -- x_person_objs One or more created logical person.
172: -- x_return_status Return status after the call. The status can
173: -- be fnd_api.g_ret_sts_success (success),
174: -- fnd_api.g_ret_sts_error (error),
175: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
176: -- x_msg_count Number of messages in message stack.
177: -- x_msg_data Message text if x_msg_count is 1.

Line 174: -- fnd_api.g_ret_sts_error (error),

170: -- OUT:
171: -- x_person_objs One or more created logical person.
172: -- x_return_status Return status after the call. The status can
173: -- be fnd_api.g_ret_sts_success (success),
174: -- fnd_api.g_ret_sts_error (error),
175: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
176: -- x_msg_count Number of messages in message stack.
177: -- x_msg_data Message text if x_msg_count is 1.
178: --

Line 175: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

171: -- x_person_objs One or more created logical person.
172: -- x_return_status Return status after the call. The status can
173: -- be fnd_api.g_ret_sts_success (success),
174: -- fnd_api.g_ret_sts_error (error),
175: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
176: -- x_msg_count Number of messages in message stack.
177: -- x_msg_data Message text if x_msg_count is 1.
178: --
179: -- NOTES

Line 199: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

195: and returns them to the caller.
196: */
197:
198: PROCEDURE get_persons_updated(
199: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
200: p_event_id IN NUMBER,
201: x_person_objs OUT NOCOPY HZ_PERSON_BO_TBL,
202: x_return_status OUT NOCOPY VARCHAR2,
203: x_msg_count OUT NOCOPY NUMBER,

Line 223: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

219: -- IN:
220: -- p_init_msg_list Initialize message stack if it is set to
221: -- p_event_id BES Event identifier.
222: -- p_person_id Person identifier.
223: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
224: -- OUT:
225: -- x_person_objs One or more created logical person.
226: -- x_return_status Return status after the call. The status can
227: -- be fnd_api.g_ret_sts_success (success),

Line 227: -- be fnd_api.g_ret_sts_success (success),

223: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
224: -- OUT:
225: -- x_person_objs One or more created logical person.
226: -- x_return_status Return status after the call. The status can
227: -- be fnd_api.g_ret_sts_success (success),
228: -- fnd_api.g_ret_sts_error (error),
229: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
230: -- x_msg_count Number of messages in message stack.
231: -- x_msg_data Message text if x_msg_count is 1.

Line 228: -- fnd_api.g_ret_sts_error (error),

224: -- OUT:
225: -- x_person_objs One or more created logical person.
226: -- x_return_status Return status after the call. The status can
227: -- be fnd_api.g_ret_sts_success (success),
228: -- fnd_api.g_ret_sts_error (error),
229: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
230: -- x_msg_count Number of messages in message stack.
231: -- x_msg_data Message text if x_msg_count is 1.
232: --

Line 229: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

225: -- x_person_objs One or more created logical person.
226: -- x_return_status Return status after the call. The status can
227: -- be fnd_api.g_ret_sts_success (success),
228: -- fnd_api.g_ret_sts_error (error),
229: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
230: -- x_msg_count Number of messages in message stack.
231: -- x_msg_data Message text if x_msg_count is 1.
232: --
233: -- NOTES

Line 245: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

241:
242: -- Get only one person object based on p_person_id and event_id
243:
244: PROCEDURE get_person_updated(
245: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
246: p_event_id IN NUMBER,
247: p_person_id IN NUMBER,
248: x_person_obj OUT NOCOPY HZ_PERSON_BO,
249: x_return_status OUT NOCOPY VARCHAR2,