DBA Data[Home] [Help]

APPS.HZ_CUST_ACCOUNT_V2PUB dependencies on FND_API

Line 171: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

167: *
168: * ARGUMENTS
169: * IN:
170: * p_init_msg_list Initialize message stack if it is set to
171: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
172: * p_cust_account_rec Customer account record.
173: * p_person_rec Person party record which being created account
174: * belongs to. If party_id in person record is not
175: * passed in or party_id does not exist in hz_parties,

Line 179: * p_create_profile_amt If it is set to FND_API.G_TRUE, API create customer

175: * passed in or party_id does not exist in hz_parties,
176: * API ceates a person party based on this record.
177: * p_customer_profile_rec Customer profile record. One customer account
178: * must have a customer profile.
179: * p_create_profile_amt If it is set to FND_API.G_TRUE, API create customer
180: * profile amounts by copying corresponding data
181: * from customer profile class amounts.
182: * IN/OUT:
183: * OUT:

Line 192: * be FND_API.G_RET_STS_SUCCESS (success),

188: * x_party_number Party number of the person party which this account
189: * belongs to.
190: * x_profile_id Person profile ID.
191: * x_return_status Return status after the call. The status can
192: * be FND_API.G_RET_STS_SUCCESS (success),
193: * FND_API.G_RET_STS_ERROR (error),
194: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
195: * x_msg_count Number of messages in message stack.
196: * x_msg_data Message text if x_msg_count is 1.

Line 193: * FND_API.G_RET_STS_ERROR (error),

189: * belongs to.
190: * x_profile_id Person profile ID.
191: * x_return_status Return status after the call. The status can
192: * be FND_API.G_RET_STS_SUCCESS (success),
193: * FND_API.G_RET_STS_ERROR (error),
194: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
195: * x_msg_count Number of messages in message stack.
196: * x_msg_data Message text if x_msg_count is 1.
197: *

Line 194: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

190: * x_profile_id Person profile ID.
191: * x_return_status Return status after the call. The status can
192: * be FND_API.G_RET_STS_SUCCESS (success),
193: * FND_API.G_RET_STS_ERROR (error),
194: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
195: * x_msg_count Number of messages in message stack.
196: * x_msg_data Message text if x_msg_count is 1.
197: *
198: * NOTES

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

219: * @rep:businessevent oracle.apps.ar.hz.CustAccount.create
220: * @rep:doccd 120hztig.pdf Customer Account APIs, Oracle Trading Community Architecture Technical Implementation Guide
221: */
222: PROCEDURE create_cust_account (
223: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
224: p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
225: p_person_rec IN HZ_PARTY_V2PUB.PERSON_REC_TYPE,
226: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
227: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,

Line 227: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,

223: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
224: p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
225: p_person_rec IN HZ_PARTY_V2PUB.PERSON_REC_TYPE,
226: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
227: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,
228: x_cust_account_id OUT NOCOPY NUMBER,
229: x_account_number OUT NOCOPY VARCHAR2,
230: x_party_id OUT NOCOPY NUMBER,
231: x_party_number OUT NOCOPY VARCHAR2,

Line 251: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

247: *
248: * ARGUMENTS
249: * IN:
250: * p_init_msg_list Initialize message stack if it is set to
251: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
252: * p_cust_account_rec Customer account record.
253: * p_organization_rec Organization party record which being created account
254: * belongs to. If party_id in organization record is not
255: * passed in or party_id does not exist in hz_parties,

Line 259: * p_create_profile_amt If it is set to FND_API.G_TRUE, API create customer

255: * passed in or party_id does not exist in hz_parties,
256: * API ceates a organization party based on this record.
257: * p_customer_profile_rec Customer profile record. One customer account
258: * must have a customer profile.
259: * p_create_profile_amt If it is set to FND_API.G_TRUE, API create customer
260: * profile amounts by copying corresponding data
261: * from customer profile class amounts.
262: * IN/OUT:
263: * OUT:

Line 272: * be FND_API.G_RET_STS_SUCCESS (success),

268: * x_party_number Party number of the organization party which this
269: * account belongs to.
270: * x_profile_id Organization profile ID.
271: * x_return_status Return status after the call. The status can
272: * be FND_API.G_RET_STS_SUCCESS (success),
273: * FND_API.G_RET_STS_ERROR (error),
274: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
275: * x_msg_count Number of messages in message stack.
276: * x_msg_data Message text if x_msg_count is 1.

Line 273: * FND_API.G_RET_STS_ERROR (error),

269: * account belongs to.
270: * x_profile_id Organization profile ID.
271: * x_return_status Return status after the call. The status can
272: * be FND_API.G_RET_STS_SUCCESS (success),
273: * FND_API.G_RET_STS_ERROR (error),
274: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
275: * x_msg_count Number of messages in message stack.
276: * x_msg_data Message text if x_msg_count is 1.
277: *

Line 274: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

270: * x_profile_id Organization profile ID.
271: * x_return_status Return status after the call. The status can
272: * be FND_API.G_RET_STS_SUCCESS (success),
273: * FND_API.G_RET_STS_ERROR (error),
274: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
275: * x_msg_count Number of messages in message stack.
276: * x_msg_data Message text if x_msg_count is 1.
277: *
278: * NOTES

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

299: * @rep:businessevent oracle.apps.ar.hz.CustAccount.create
300: * @rep:doccd 120hztig.pdf Customer Account APIs, Oracle Trading Community Architecture Technical Implementation Guide
301: */
302: PROCEDURE create_cust_account (
303: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
304: p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
305: p_organization_rec IN HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE,
306: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
307: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,

Line 307: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,

303: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
304: p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
305: p_organization_rec IN HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE,
306: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
307: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,
308: x_cust_account_id OUT NOCOPY NUMBER,
309: x_account_number OUT NOCOPY VARCHAR2,
310: x_party_id OUT NOCOPY NUMBER,
311: x_party_number OUT NOCOPY VARCHAR2,

Line 329: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

325: *
326: * ARGUMENTS
327: * IN:
328: * p_init_msg_list Initialize message stack if it is set to
329: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
330: * p_cust_account_rec Customer account record.
331: * IN/OUT:
332: * p_object_version_number Used for locking the being updated record.
333: * OUT:

Line 335: * be FND_API.G_RET_STS_SUCCESS (success),

331: * IN/OUT:
332: * p_object_version_number Used for locking the being updated record.
333: * OUT:
334: * x_return_status Return status after the call. The status can
335: * be FND_API.G_RET_STS_SUCCESS (success),
336: * FND_API.G_RET_STS_ERROR (error),
337: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
338: * x_msg_count Number of messages in message stack.
339: * x_msg_data Message text if x_msg_count is 1.

Line 336: * FND_API.G_RET_STS_ERROR (error),

332: * p_object_version_number Used for locking the being updated record.
333: * OUT:
334: * x_return_status Return status after the call. The status can
335: * be FND_API.G_RET_STS_SUCCESS (success),
336: * FND_API.G_RET_STS_ERROR (error),
337: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
338: * x_msg_count Number of messages in message stack.
339: * x_msg_data Message text if x_msg_count is 1.
340: *

Line 337: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

333: * OUT:
334: * x_return_status Return status after the call. The status can
335: * be FND_API.G_RET_STS_SUCCESS (success),
336: * FND_API.G_RET_STS_ERROR (error),
337: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
338: * x_msg_count Number of messages in message stack.
339: * x_msg_data Message text if x_msg_count is 1.
340: *
341: * NOTES

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

359: * @rep:businessevent oracle.apps.ar.hz.CustAccount.update
360: * @rep:doccd 120hztig.pdf Customer Account APIs, Oracle Trading Community Architecture Technical Implementation Guide
361: */
362: PROCEDURE update_cust_account (
363: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
364: p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
365: p_object_version_number IN OUT NOCOPY NUMBER,
366: x_return_status OUT NOCOPY VARCHAR2,
367: x_msg_count OUT NOCOPY NUMBER,

Line 382: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

378: *
379: * ARGUMENTS
380: * IN:
381: * p_init_msg_list Initialize message stack if it is set to
382: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
383: * p_cust_account_id Customer account id.
384: * IN/OUT:
385: * OUT:
386: * x_cust_account_rec Returned customer account record.

Line 389: * be FND_API.G_RET_STS_SUCCESS (success),

385: * OUT:
386: * x_cust_account_rec Returned customer account record.
387: * x_customer_profile_rec Returned customer profile record.
388: * x_return_status Return status after the call. The status can
389: * be FND_API.G_RET_STS_SUCCESS (success),
390: * FND_API.G_RET_STS_ERROR (error),
391: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
392: * x_msg_count Number of messages in message stack.
393: * x_msg_data Message text if x_msg_count is 1.

Line 390: * FND_API.G_RET_STS_ERROR (error),

386: * x_cust_account_rec Returned customer account record.
387: * x_customer_profile_rec Returned customer profile record.
388: * x_return_status Return status after the call. The status can
389: * be FND_API.G_RET_STS_SUCCESS (success),
390: * FND_API.G_RET_STS_ERROR (error),
391: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
392: * x_msg_count Number of messages in message stack.
393: * x_msg_data Message text if x_msg_count is 1.
394: *

Line 391: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

387: * x_customer_profile_rec Returned customer profile record.
388: * x_return_status Return status after the call. The status can
389: * be FND_API.G_RET_STS_SUCCESS (success),
390: * FND_API.G_RET_STS_ERROR (error),
391: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
392: * x_msg_count Number of messages in message stack.
393: * x_msg_data Message text if x_msg_count is 1.
394: *
395: * NOTES

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

400: *
401: */
402:
403: PROCEDURE get_cust_account_rec (
404: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
405: p_cust_account_id IN NUMBER,
406: x_cust_account_rec OUT NOCOPY CUST_ACCOUNT_REC_TYPE,
407: x_customer_profile_rec OUT NOCOPY HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
408: x_return_status OUT NOCOPY VARCHAR2,

Line 424: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

420: *
421: * ARGUMENTS
422: * IN:
423: * p_init_msg_list Initialize message stack if it is set to
424: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
425: * p_cust_acct_relate_rec Customer account relate record.
426: * IN/OUT:
427: * OUT:
428: * x_return_status Return status after the call. The status can

Line 429: * be FND_API.G_RET_STS_SUCCESS (success),

425: * p_cust_acct_relate_rec Customer account relate record.
426: * IN/OUT:
427: * OUT:
428: * x_return_status Return status after the call. The status can
429: * be FND_API.G_RET_STS_SUCCESS (success),
430: * FND_API.G_RET_STS_ERROR (error),
431: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
432: * x_msg_count Number of messages in message stack.
433: * x_msg_data Message text if x_msg_count is 1.

Line 430: * FND_API.G_RET_STS_ERROR (error),

426: * IN/OUT:
427: * OUT:
428: * x_return_status Return status after the call. The status can
429: * be FND_API.G_RET_STS_SUCCESS (success),
430: * FND_API.G_RET_STS_ERROR (error),
431: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
432: * x_msg_count Number of messages in message stack.
433: * x_msg_data Message text if x_msg_count is 1.
434: *

Line 431: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

427: * OUT:
428: * x_return_status Return status after the call. The status can
429: * be FND_API.G_RET_STS_SUCCESS (success),
430: * FND_API.G_RET_STS_ERROR (error),
431: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
432: * x_msg_count Number of messages in message stack.
433: * x_msg_data Message text if x_msg_count is 1.
434: *
435: * NOTES

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

449: * @rep:businessevent oracle.apps.ar.hz.CustAcctRelate.create
450: * @rep:doccd 120hztig.pdf Customer Account APIs, Oracle Trading Community Architecture Technical Implementation Guide
451: */
452: PROCEDURE create_cust_acct_relate (
453: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
454: p_cust_acct_relate_rec IN CUST_ACCT_RELATE_REC_TYPE,
455: x_return_status OUT NOCOPY VARCHAR2,
456: x_msg_count OUT NOCOPY NUMBER,
457: x_msg_data OUT NOCOPY VARCHAR2

Line 474: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

470: *
471: * ARGUMENTS
472: * IN:
473: * p_init_msg_list Initialize message stack if it is set to
474: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
475: * p_cust_acct_relate_rec Customer account relate record.
476: * IN/OUT:
477: * OUT:
478: * x_cust_acct_relate_id Return primary key after creation of record.

Line 480: * be FND_API.G_RET_STS_SUCCESS (success),

476: * IN/OUT:
477: * OUT:
478: * x_cust_acct_relate_id Return primary key after creation of record.
479: * x_return_status Return status after the call. The status can
480: * be FND_API.G_RET_STS_SUCCESS (success),
481: * FND_API.G_RET_STS_ERROR (error),
482: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
483: * x_msg_count Number of messages in message stack.
484: * x_msg_data Message text if x_msg_count is 1.

Line 481: * FND_API.G_RET_STS_ERROR (error),

477: * OUT:
478: * x_cust_acct_relate_id Return primary key after creation of record.
479: * x_return_status Return status after the call. The status can
480: * be FND_API.G_RET_STS_SUCCESS (success),
481: * FND_API.G_RET_STS_ERROR (error),
482: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
483: * x_msg_count Number of messages in message stack.
484: * x_msg_data Message text if x_msg_count is 1.
485: *

Line 482: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

478: * x_cust_acct_relate_id Return primary key after creation of record.
479: * x_return_status Return status after the call. The status can
480: * be FND_API.G_RET_STS_SUCCESS (success),
481: * FND_API.G_RET_STS_ERROR (error),
482: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
483: * x_msg_count Number of messages in message stack.
484: * x_msg_data Message text if x_msg_count is 1.
485: *
486: * NOTES

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

500: * @rep:businessevent oracle.apps.ar.hz.CustAcctRelate.create
501: * @rep:doccd 120hztig.pdf Customer Account APIs, Oracle Trading Community Architecture Technical Implementation Guide
502: */
503: PROCEDURE create_cust_acct_relate (
504: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
505: p_cust_acct_relate_rec IN CUST_ACCT_RELATE_REC_TYPE,
506: x_cust_acct_relate_id OUT NOCOPY NUMBER,
507: x_return_status OUT NOCOPY VARCHAR2,
508: x_msg_count OUT NOCOPY NUMBER,

Line 527: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

523: *
524: * ARGUMENTS
525: * IN:
526: * p_init_msg_list Initialize message stack if it is set to
527: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
528: * p_cust_acct_relate_rec Customer account relate record.
529: * IN/OUT:
530: * p_object_version_number Used for locking the being updated record.
531: * OUT:

Line 533: * be FND_API.G_RET_STS_SUCCESS (success),

529: * IN/OUT:
530: * p_object_version_number Used for locking the being updated record.
531: * OUT:
532: * x_return_status Return status after the call. The status can
533: * be FND_API.G_RET_STS_SUCCESS (success),
534: * FND_API.G_RET_STS_ERROR (error),
535: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
536: * x_msg_count Number of messages in message stack.
537: * x_msg_data Message text if x_msg_count is 1.

Line 534: * FND_API.G_RET_STS_ERROR (error),

530: * p_object_version_number Used for locking the being updated record.
531: * OUT:
532: * x_return_status Return status after the call. The status can
533: * be FND_API.G_RET_STS_SUCCESS (success),
534: * FND_API.G_RET_STS_ERROR (error),
535: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
536: * x_msg_count Number of messages in message stack.
537: * x_msg_data Message text if x_msg_count is 1.
538: *

Line 535: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

531: * OUT:
532: * x_return_status Return status after the call. The status can
533: * be FND_API.G_RET_STS_SUCCESS (success),
534: * FND_API.G_RET_STS_ERROR (error),
535: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
536: * x_msg_count Number of messages in message stack.
537: * x_msg_data Message text if x_msg_count is 1.
538: *
539: * NOTES

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

552: * @rep:businessevent oracle.apps.ar.hz.CustAcctRelate.update
553: * @rep:doccd 120hztig.pdf Customer Account APIs, Oracle Trading Community Architecture Technical Implementation Guide
554: */
555: PROCEDURE update_cust_acct_relate (
556: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
557: p_cust_acct_relate_rec IN CUST_ACCT_RELATE_REC_TYPE,
558: p_object_version_number IN OUT NOCOPY NUMBER,
559: x_return_status OUT NOCOPY VARCHAR2,
560: x_msg_count OUT NOCOPY NUMBER,

Line 579: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

575: * ARGUMENTS
576: * IN:
577: *
578: * p_init_msg_list Initialize message stack if it is set to
579: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
580: *
581: * p_cust_acct_relate_rec Customer account relate record.
582: *
583: * p_rowid Rowid of record in HZ_CUST_ACCT_RELATE.

Line 592: * be FND_API.G_RET_STS_SUCCESS (success),

588: *
589: * OUT:
590: *
591: * x_return_status Return status after the call. The status can
592: * be FND_API.G_RET_STS_SUCCESS (success),
593: * FND_API.G_RET_STS_ERROR (error),
594: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
595: *
596: * x_msg_count Number of messages in message stack.

Line 593: * FND_API.G_RET_STS_ERROR (error),

589: * OUT:
590: *
591: * x_return_status Return status after the call. The status can
592: * be FND_API.G_RET_STS_SUCCESS (success),
593: * FND_API.G_RET_STS_ERROR (error),
594: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
595: *
596: * x_msg_count Number of messages in message stack.
597: *

Line 594: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

590: *
591: * x_return_status Return status after the call. The status can
592: * be FND_API.G_RET_STS_SUCCESS (success),
593: * FND_API.G_RET_STS_ERROR (error),
594: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
595: *
596: * x_msg_count Number of messages in message stack.
597: *
598: * x_msg_data Message text if x_msg_count is 1.

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

604: * 04-21-2004 Rajib Ranjan Borah o Bug 3449118. Created.
605: */
606:
607: PROCEDURE update_cust_acct_relate (
608: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
609: p_cust_acct_relate_rec IN CUST_ACCT_RELATE_REC_TYPE,
610: p_rowid IN ROWID,
611: p_object_version_number IN OUT NOCOPY NUMBER,
612: x_return_status OUT NOCOPY VARCHAR2,

Line 629: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

625: *
626: * ARGUMENTS
627: * IN:
628: * p_init_msg_list Initialize message stack if it is set to
629: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
630: * p_cust_account_id Customer account id.
631: * p_related_cust_account_id Related customer account id.
632: * p_cust_acct_relate_id Customer account relate id.
633: * IN/OUT:

Line 637: * be FND_API.G_RET_STS_SUCCESS (success),

633: * IN/OUT:
634: * OUT:
635: * x_cust_acct_relate_rec Returned customer account relate record.
636: * x_return_status Return status after the call. The status can
637: * be FND_API.G_RET_STS_SUCCESS (success),
638: * FND_API.G_RET_STS_ERROR (error),
639: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
640: * x_msg_count Number of messages in message stack.
641: * x_msg_data Message text if x_msg_count is 1.

Line 638: * FND_API.G_RET_STS_ERROR (error),

634: * OUT:
635: * x_cust_acct_relate_rec Returned customer account relate record.
636: * x_return_status Return status after the call. The status can
637: * be FND_API.G_RET_STS_SUCCESS (success),
638: * FND_API.G_RET_STS_ERROR (error),
639: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
640: * x_msg_count Number of messages in message stack.
641: * x_msg_data Message text if x_msg_count is 1.
642: *

Line 639: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

635: * x_cust_acct_relate_rec Returned customer account relate record.
636: * x_return_status Return status after the call. The status can
637: * be FND_API.G_RET_STS_SUCCESS (success),
638: * FND_API.G_RET_STS_ERROR (error),
639: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
640: * x_msg_count Number of messages in message stack.
641: * x_msg_data Message text if x_msg_count is 1.
642: *
643: * NOTES

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

649: * 08-12-2004 Idris Ali o Bug 4529413. Added p_cust_acct_relate_id parameter
650: */
651:
652: PROCEDURE get_cust_acct_relate_rec (
653: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
654: p_cust_account_id IN NUMBER,
655: p_related_cust_account_id IN NUMBER,
656: p_cust_acct_relate_id IN NUMBER, -- Bug 4529413
657: p_rowid IN ROWID,