DBA Data[Home] [Help]

APPS.HZ_PARTY_BO_PVT dependencies on FND_API

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

15: -- p_party_pref_objs List of party preference objects.
16: -- p_party_id Party Id.
17: -- OUT:
18: -- x_return_status Return status after the call. The status can
19: -- be fnd_api.g_ret_sts_success (success),
20: -- fnd_api.g_ret_sts_error (error),
21: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
22: -- x_msg_count Number of messages in message stack.
23: -- x_msg_data Message text if x_msg_count is 1.

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

16: -- p_party_id Party Id.
17: -- OUT:
18: -- x_return_status Return status after the call. The status can
19: -- be fnd_api.g_ret_sts_success (success),
20: -- fnd_api.g_ret_sts_error (error),
21: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
22: -- x_msg_count Number of messages in message stack.
23: -- x_msg_data Message text if x_msg_count is 1.
24: --

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

17: -- OUT:
18: -- x_return_status Return status after the call. The status can
19: -- be fnd_api.g_ret_sts_success (success),
20: -- fnd_api.g_ret_sts_error (error),
21: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
22: -- x_msg_count Number of messages in message stack.
23: -- x_msg_data Message text if x_msg_count is 1.
24: --
25: -- NOTES

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

50: -- p_subject_id Subject Id.
51: -- p_subject_type Subject type.
52: -- OUT:
53: -- x_return_status Return status after the call. The status can
54: -- be fnd_api.g_ret_sts_success (success),
55: -- fnd_api.g_ret_sts_error (error),
56: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
57: -- x_msg_count Number of messages in message stack.
58: -- x_msg_data Message text if x_msg_count is 1.

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

51: -- p_subject_type Subject type.
52: -- OUT:
53: -- x_return_status Return status after the call. The status can
54: -- be fnd_api.g_ret_sts_success (success),
55: -- fnd_api.g_ret_sts_error (error),
56: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
57: -- x_msg_count Number of messages in message stack.
58: -- x_msg_data Message text if x_msg_count is 1.
59: --

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

52: -- OUT:
53: -- x_return_status Return status after the call. The status can
54: -- be fnd_api.g_ret_sts_success (success),
55: -- fnd_api.g_ret_sts_error (error),
56: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
57: -- x_msg_count Number of messages in message stack.
58: -- x_msg_data Message text if x_msg_count is 1.
59: --
60: -- NOTES

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

73: x_msg_data OUT NOCOPY VARCHAR2
74: );
75:
76: PROCEDURE create_relationship_obj(
77: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
78: p_rel_obj IN OUT NOCOPY HZ_RELATIONSHIP_OBJ,
79: p_created_by_module IN VARCHAR2,
80: x_relationship_id OUT NOCOPY NUMBER,
81: x_return_status OUT NOCOPY VARCHAR2,

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

83: x_msg_data OUT NOCOPY VARCHAR2
84: );
85:
86: PROCEDURE update_relationship_obj(
87: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
88: p_rel_obj IN OUT NOCOPY HZ_RELATIONSHIP_OBJ,
89: x_relationship_id OUT NOCOPY NUMBER,
90: x_return_status OUT NOCOPY VARCHAR2,
91: x_msg_count OUT NOCOPY NUMBER,

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

92: x_msg_data OUT NOCOPY VARCHAR2
93: );
94:
95: PROCEDURE save_relationship_obj(
96: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
97: p_rel_obj IN OUT NOCOPY HZ_RELATIONSHIP_OBJ,
98: p_created_by_module IN VARCHAR2,
99: x_relationship_id OUT NOCOPY NUMBER,
100: x_return_status OUT NOCOPY VARCHAR2,

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

115: -- p_subject_id Subject Id.
116: -- p_subject_type Subject type.
117: -- OUT:
118: -- x_return_status Return status after the call. The status can
119: -- be fnd_api.g_ret_sts_success (success),
120: -- fnd_api.g_ret_sts_error (error),
121: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
122: -- x_msg_count Number of messages in message stack.
123: -- x_msg_data Message text if x_msg_count is 1.

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

116: -- p_subject_type Subject type.
117: -- OUT:
118: -- x_return_status Return status after the call. The status can
119: -- be fnd_api.g_ret_sts_success (success),
120: -- fnd_api.g_ret_sts_error (error),
121: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
122: -- x_msg_count Number of messages in message stack.
123: -- x_msg_data Message text if x_msg_count is 1.
124: --

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

117: -- OUT:
118: -- x_return_status Return status after the call. The status can
119: -- be fnd_api.g_ret_sts_success (success),
120: -- fnd_api.g_ret_sts_error (error),
121: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
122: -- x_msg_count Number of messages in message stack.
123: -- x_msg_data Message text if x_msg_count is 1.
124: --
125: -- NOTES

Line 150: -- p_init_msg_list Initialize message stack if it is set to FND_API.G_TRUE. Default is FND_API.G_FALSE.

146: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
147: --
148: -- ARGUMENTS
149: -- IN:
150: -- p_init_msg_list Initialize message stack if it is set to FND_API.G_TRUE. Default is FND_API.G_FALSE.
151: -- p_relationship_id Relationship Id.
152: -- OUT:
153: -- x_relationship_obj Relationship object.
154: -- x_return_status Return status after the call. The status can

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

151: -- p_relationship_id Relationship Id.
152: -- OUT:
153: -- x_relationship_obj Relationship object.
154: -- x_return_status Return status after the call. The status can
155: -- be fnd_api.g_ret_sts_success (success),
156: -- fnd_api.g_ret_sts_error (error),
157: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
158: -- x_msg_count Number of messages in message stack.
159: -- x_msg_data Message text if x_msg_count is 1.

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

152: -- OUT:
153: -- x_relationship_obj Relationship object.
154: -- x_return_status Return status after the call. The status can
155: -- be fnd_api.g_ret_sts_success (success),
156: -- fnd_api.g_ret_sts_error (error),
157: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
158: -- x_msg_count Number of messages in message stack.
159: -- x_msg_data Message text if x_msg_count is 1.
160: --

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

153: -- x_relationship_obj Relationship object.
154: -- x_return_status Return status after the call. The status can
155: -- be fnd_api.g_ret_sts_success (success),
156: -- fnd_api.g_ret_sts_error (error),
157: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
158: -- x_msg_count Number of messages in message stack.
159: -- x_msg_data Message text if x_msg_count is 1.
160: --
161: -- NOTES

Line 169: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

165: -- 14-DEC-2004 Arnold Ng Created.
166: --
167:
168: PROCEDURE get_relationship_obj(
169: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
170: p_relationship_id IN NUMBER,
171: x_relationship_obj OUT NOCOPY HZ_RELATIONSHIP_OBJ,
172: x_return_status OUT NOCOPY VARCHAR2,
173: x_msg_count OUT NOCOPY NUMBER,

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

187: -- p_owner_table_name Owner table name.
188: -- p_owner_table_id Owner table Id.
189: -- OUT:
190: -- x_return_status Return status after the call. The status can
191: -- be fnd_api.g_ret_sts_success (success),
192: -- fnd_api.g_ret_sts_error (error),
193: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
194: -- x_msg_count Number of messages in message stack.
195: -- x_msg_data Message text if x_msg_count is 1.

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

188: -- p_owner_table_id Owner table Id.
189: -- OUT:
190: -- x_return_status Return status after the call. The status can
191: -- be fnd_api.g_ret_sts_success (success),
192: -- fnd_api.g_ret_sts_error (error),
193: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
194: -- x_msg_count Number of messages in message stack.
195: -- x_msg_data Message text if x_msg_count is 1.
196: --

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

189: -- OUT:
190: -- x_return_status Return status after the call. The status can
191: -- be fnd_api.g_ret_sts_success (success),
192: -- fnd_api.g_ret_sts_error (error),
193: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
194: -- x_msg_count Number of messages in message stack.
195: -- x_msg_data Message text if x_msg_count is 1.
196: --
197: -- NOTES

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

223: -- p_owner_table_name Owner table name.
224: -- p_owner_table_id Owner table Id.
225: -- OUT:
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: -- p_owner_table_id Owner table Id.
225: -- OUT:
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: -- OUT:
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 262: -- be fnd_api.g_ret_sts_success (success),

258: -- p_cert_objs List of certification objects.
259: -- p_party_id Party Id.
260: -- OUT:
261: -- x_return_status Return status after the call. The status can
262: -- be fnd_api.g_ret_sts_success (success),
263: -- fnd_api.g_ret_sts_error (error),
264: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
265: -- x_msg_count Number of messages in message stack.
266: -- x_msg_data Message text if x_msg_count is 1.

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

259: -- p_party_id Party Id.
260: -- OUT:
261: -- x_return_status Return status after the call. The status can
262: -- be fnd_api.g_ret_sts_success (success),
263: -- fnd_api.g_ret_sts_error (error),
264: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
265: -- x_msg_count Number of messages in message stack.
266: -- x_msg_data Message text if x_msg_count is 1.
267: --

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

260: -- OUT:
261: -- x_return_status Return status after the call. The status can
262: -- be fnd_api.g_ret_sts_success (success),
263: -- fnd_api.g_ret_sts_error (error),
264: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
265: -- x_msg_count Number of messages in message stack.
266: -- x_msg_data Message text if x_msg_count is 1.
267: --
268: -- NOTES

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

292: -- p_cert_objs List of certification objects.
293: -- p_party_id Party Id.
294: -- OUT:
295: -- x_return_status Return status after the call. The status can
296: -- be fnd_api.g_ret_sts_success (success),
297: -- fnd_api.g_ret_sts_error (error),
298: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
299: -- x_msg_count Number of messages in message stack.
300: -- x_msg_data Message text if x_msg_count is 1.

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

293: -- p_party_id Party Id.
294: -- OUT:
295: -- x_return_status Return status after the call. The status can
296: -- be fnd_api.g_ret_sts_success (success),
297: -- fnd_api.g_ret_sts_error (error),
298: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
299: -- x_msg_count Number of messages in message stack.
300: -- x_msg_data Message text if x_msg_count is 1.
301: --

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

294: -- OUT:
295: -- x_return_status Return status after the call. The status can
296: -- be fnd_api.g_ret_sts_success (success),
297: -- fnd_api.g_ret_sts_error (error),
298: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
299: -- x_msg_count Number of messages in message stack.
300: -- x_msg_data Message text if x_msg_count is 1.
301: --
302: -- NOTES

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

326: -- p_fin_prof_objs List of financial profile objects.
327: -- p_party_id Party Id.
328: -- OUT:
329: -- x_return_status Return status after the call. The status can
330: -- be fnd_api.g_ret_sts_success (success),
331: -- fnd_api.g_ret_sts_error (error),
332: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
333: -- x_msg_count Number of messages in message stack.
334: -- x_msg_data Message text if x_msg_count is 1.

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

327: -- p_party_id Party Id.
328: -- OUT:
329: -- x_return_status Return status after the call. The status can
330: -- be fnd_api.g_ret_sts_success (success),
331: -- fnd_api.g_ret_sts_error (error),
332: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
333: -- x_msg_count Number of messages in message stack.
334: -- x_msg_data Message text if x_msg_count is 1.
335: --

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

328: -- OUT:
329: -- x_return_status Return status after the call. The status can
330: -- be fnd_api.g_ret_sts_success (success),
331: -- fnd_api.g_ret_sts_error (error),
332: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
333: -- x_msg_count Number of messages in message stack.
334: -- x_msg_data Message text if x_msg_count is 1.
335: --
336: -- NOTES

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

360: -- p_fin_prof_objs List of financial profile objects.
361: -- p_party_id Party Id.
362: -- OUT:
363: -- x_return_status Return status after the call. The status can
364: -- be fnd_api.g_ret_sts_success (success),
365: -- fnd_api.g_ret_sts_error (error),
366: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
367: -- x_msg_count Number of messages in message stack.
368: -- x_msg_data Message text if x_msg_count is 1.

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

361: -- p_party_id Party Id.
362: -- OUT:
363: -- x_return_status Return status after the call. The status can
364: -- be fnd_api.g_ret_sts_success (success),
365: -- fnd_api.g_ret_sts_error (error),
366: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
367: -- x_msg_count Number of messages in message stack.
368: -- x_msg_data Message text if x_msg_count is 1.
369: --

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

362: -- OUT:
363: -- x_return_status Return status after the call. The status can
364: -- be fnd_api.g_ret_sts_success (success),
365: -- fnd_api.g_ret_sts_error (error),
366: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
367: -- x_msg_count Number of messages in message stack.
368: -- x_msg_data Message text if x_msg_count is 1.
369: --
370: -- NOTES

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

395: -- p_party_usg_objs List of Party Usage objects.
396: -- p_party_id Party Id.
397: -- OUT:
398: -- x_return_status Return status after the call. The status can
399: -- be fnd_api.g_ret_sts_success (success),
400: -- fnd_api.g_ret_sts_error (error),
401: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
402: -- x_msg_count Number of messages in message stack.
403: -- x_msg_data Message text if x_msg_count is 1.

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

396: -- p_party_id Party Id.
397: -- OUT:
398: -- x_return_status Return status after the call. The status can
399: -- be fnd_api.g_ret_sts_success (success),
400: -- fnd_api.g_ret_sts_error (error),
401: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
402: -- x_msg_count Number of messages in message stack.
403: -- x_msg_data Message text if x_msg_count is 1.
404: --

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

397: -- OUT:
398: -- x_return_status Return status after the call. The status can
399: -- be fnd_api.g_ret_sts_success (success),
400: -- fnd_api.g_ret_sts_error (error),
401: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
402: -- x_msg_count Number of messages in message stack.
403: -- x_msg_data Message text if x_msg_count is 1.
404: --
405: -- NOTES

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

430: -- p_party_usg_objs List of Party Usage objects.
431: -- p_party_id Party Id.
432: -- OUT:
433: -- x_return_status Return status after the call. The status can
434: -- be fnd_api.g_ret_sts_success (success),
435: -- fnd_api.g_ret_sts_error (error),
436: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
437: -- x_msg_count Number of messages in message stack.
438: -- x_msg_data Message text if x_msg_count is 1.

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

431: -- p_party_id Party Id.
432: -- OUT:
433: -- x_return_status Return status after the call. The status can
434: -- be fnd_api.g_ret_sts_success (success),
435: -- fnd_api.g_ret_sts_error (error),
436: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
437: -- x_msg_count Number of messages in message stack.
438: -- x_msg_data Message text if x_msg_count is 1.
439: --

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

432: -- OUT:
433: -- x_return_status Return status after the call. The status can
434: -- be fnd_api.g_ret_sts_success (success),
435: -- fnd_api.g_ret_sts_error (error),
436: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
437: -- x_msg_count Number of messages in message stack.
438: -- x_msg_data Message text if x_msg_count is 1.
439: --
440: -- NOTES