DBA Data[Home] [Help]

APPS.EGO_USER_ATTRS_DATA_PUB dependencies on FND_API

Line 288: * program and when p_log_errors is passed as FND_API.G_TRUE).

284: * @param p_init_error_handler Indicates whether to initialize ERROR_HANDLER
285: * message stack (and open debug session, if applicable)
286: * @param p_write_to_concurrent_log Indicates whether to log ERROR_HANDLER
287: * messages to concurrent log (only applicable when called from concurrent
288: * program and when p_log_errors is passed as FND_API.G_TRUE).
289: * @param p_init_fnd_msg_list Indicates whether to initialize FND_MSG_PUB
290: * message stack.
291: * @param p_log_errors Indicates whether to write ERROR_HANDLER message
292: * stack to MTL_INTERFACE_ERRORS, the concurrent log (if applicable),

Line 293: * and the debug file (if applicable); if FND_API.G_FALSE is passed,

289: * @param p_init_fnd_msg_list Indicates whether to initialize FND_MSG_PUB
290: * message stack.
291: * @param p_log_errors Indicates whether to write ERROR_HANDLER message
292: * stack to MTL_INTERFACE_ERRORS, the concurrent log (if applicable),
293: * and the debug file (if applicable); if FND_API.G_FALSE is passed,
294: * messages will still be added to ERROR_HANDLER's message stack, but
295: * the message stack will not be written to any destination.
296: * @param p_add_errors_to_fnd_stack Indicates whether messages written
297: * to ERROR_HANDLER message stack will also be written to FND_MSG_PUB

Line 300: * group rows that are processed successfully; if FND_API.G_FALSE is

296: * @param p_add_errors_to_fnd_stack Indicates whether messages written
297: * to ERROR_HANDLER message stack will also be written to FND_MSG_PUB
298: * message stack.
299: * @param p_commit Indicates whether to commit work for all attribute
300: * group rows that are processed successfully; if FND_API.G_FALSE is
301: * passed, the API will not commit any work.
302: * @param x_failed_row_id_list Returns a comma-delimited list of
303: * ROW_IDENTIFIERs (the field in EGO_USER_ATTR_ROW_OBJ, which is
304: * discussed above) indicating attribute group rows that failed

Line 308: * FND_API.G_RET_STS_SUCCESS if no errors occurred,

304: * discussed above) indicating attribute group rows that failed
305: * in processing. An error will be logged for each failed row.
306: * @param x_return_status Returns one of three values indicating the
307: * most serious error encountered during processing:
308: * FND_API.G_RET_STS_SUCCESS if no errors occurred,
309: * FND_API.G_RET_STS_ERROR if at least one row encountered an error, and
310: * FND_API.G_RET_STS_UNEXP_ERROR if at least one row encountered an
311: * unexpected error.
312: * @param x_errorcode Reserved for future use.

Line 309: * FND_API.G_RET_STS_ERROR if at least one row encountered an error, and

305: * in processing. An error will be logged for each failed row.
306: * @param x_return_status Returns one of three values indicating the
307: * most serious error encountered during processing:
308: * FND_API.G_RET_STS_SUCCESS if no errors occurred,
309: * FND_API.G_RET_STS_ERROR if at least one row encountered an error, and
310: * FND_API.G_RET_STS_UNEXP_ERROR if at least one row encountered an
311: * unexpected error.
312: * @param x_errorcode Reserved for future use.
313: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER

Line 310: * FND_API.G_RET_STS_UNEXP_ERROR if at least one row encountered an

306: * @param x_return_status Returns one of three values indicating the
307: * most serious error encountered during processing:
308: * FND_API.G_RET_STS_SUCCESS if no errors occurred,
309: * FND_API.G_RET_STS_ERROR if at least one row encountered an error, and
310: * FND_API.G_RET_STS_UNEXP_ERROR if at least one row encountered an
311: * unexpected error.
312: * @param x_errorcode Reserved for future use.
313: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER
314: * message stack upon completion of processing.

Line 335: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE

331: ,p_entity_id IN NUMBER DEFAULT NULL
332: ,p_entity_index IN NUMBER DEFAULT NULL
333: ,p_entity_code IN VARCHAR2 DEFAULT NULL
334: ,p_debug_level IN NUMBER DEFAULT 0
335: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
336: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
337: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
338: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
339: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE

Line 336: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE

332: ,p_entity_index IN NUMBER DEFAULT NULL
333: ,p_entity_code IN VARCHAR2 DEFAULT NULL
334: ,p_debug_level IN NUMBER DEFAULT 0
335: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
336: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
337: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
338: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
339: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
340: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE

Line 337: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE

333: ,p_entity_code IN VARCHAR2 DEFAULT NULL
334: ,p_debug_level IN NUMBER DEFAULT 0
335: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
336: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
337: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
338: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
339: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
340: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
341: ,x_failed_row_id_list OUT NOCOPY VARCHAR2

Line 338: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE

334: ,p_debug_level IN NUMBER DEFAULT 0
335: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
336: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
337: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
338: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
339: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
340: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
341: ,x_failed_row_id_list OUT NOCOPY VARCHAR2
342: ,x_return_status OUT NOCOPY VARCHAR2

Line 339: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE

335: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
336: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
337: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
338: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
339: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
340: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
341: ,x_failed_row_id_list OUT NOCOPY VARCHAR2
342: ,x_return_status OUT NOCOPY VARCHAR2
343: ,x_errorcode OUT NOCOPY NUMBER

Line 340: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE

336: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
337: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
338: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
339: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
340: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
341: ,x_failed_row_id_list OUT NOCOPY VARCHAR2
342: ,x_return_status OUT NOCOPY VARCHAR2
343: ,x_errorcode OUT NOCOPY NUMBER
344: ,x_msg_count OUT NOCOPY NUMBER

Line 362: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE

358: ,p_entity_id IN NUMBER DEFAULT NULL
359: ,p_entity_index IN NUMBER DEFAULT NULL
360: ,p_entity_code IN VARCHAR2 DEFAULT NULL
361: ,p_debug_level IN NUMBER DEFAULT 0
362: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
363: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
364: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
365: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
366: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE

Line 363: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE

359: ,p_entity_index IN NUMBER DEFAULT NULL
360: ,p_entity_code IN VARCHAR2 DEFAULT NULL
361: ,p_debug_level IN NUMBER DEFAULT 0
362: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
363: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
364: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
365: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
366: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
367: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE

Line 364: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE

360: ,p_entity_code IN VARCHAR2 DEFAULT NULL
361: ,p_debug_level IN NUMBER DEFAULT 0
362: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
363: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
364: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
365: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
366: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
367: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
368: ,x_extension_id OUT NOCOPY NUMBER

Line 365: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE

361: ,p_debug_level IN NUMBER DEFAULT 0
362: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
363: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
364: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
365: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
366: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
367: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
368: ,x_extension_id OUT NOCOPY NUMBER
369: ,x_mode OUT NOCOPY VARCHAR2

Line 366: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE

362: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
363: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
364: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
365: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
366: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
367: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
368: ,x_extension_id OUT NOCOPY NUMBER
369: ,x_mode OUT NOCOPY VARCHAR2
370: ,x_failed_row_id_list OUT NOCOPY VARCHAR2

Line 367: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE

363: ,p_write_to_concurrent_log IN VARCHAR2 DEFAULT FND_API.G_FALSE
364: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
365: ,p_log_errors IN VARCHAR2 DEFAULT FND_API.G_FALSE
366: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
367: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
368: ,x_extension_id OUT NOCOPY NUMBER
369: ,x_mode OUT NOCOPY VARCHAR2
370: ,x_failed_row_id_list OUT NOCOPY VARCHAR2
371: ,x_return_status OUT NOCOPY VARCHAR2

Line 421: * any database values); if FND_API.G_FALSE is passed, the API will not

417: * to ERROR_HANDLER message stack will also be written to FND_MSG_PUB
418: * message stack.
419: * @param p_commit Indicates whether to commit work for all processing
420: * done by the API (which is currently none, as this API does not alter
421: * any database values); if FND_API.G_FALSE is passed, the API will not
422: * commit any work.
423: * @param x_attributes_row_table Contains row-level data and metadata
424: * about each attribute group whose data is being returned. See above
425: * for details about this data type.

Line 431: * FND_API.G_RET_STS_SUCCESS if no errors occurred,

427: * attribute whose data is being returned. See above for details about
428: * this data type.
429: * @param x_return_status Returns one of three values indicating the
430: * most serious error encountered during processing:
431: * FND_API.G_RET_STS_SUCCESS if no errors occurred,
432: * FND_API.G_RET_STS_ERROR if at least one error occurred, and
433: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred.
434: * @param x_errorcode Reserved for future use.
435: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER

Line 432: * FND_API.G_RET_STS_ERROR if at least one error occurred, and

428: * this data type.
429: * @param x_return_status Returns one of three values indicating the
430: * most serious error encountered during processing:
431: * FND_API.G_RET_STS_SUCCESS if no errors occurred,
432: * FND_API.G_RET_STS_ERROR if at least one error occurred, and
433: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred.
434: * @param x_errorcode Reserved for future use.
435: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER
436: * message stack upon completion of processing.

Line 433: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred.

429: * @param x_return_status Returns one of three values indicating the
430: * most serious error encountered during processing:
431: * FND_API.G_RET_STS_SUCCESS if no errors occurred,
432: * FND_API.G_RET_STS_ERROR if at least one error occurred, and
433: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred.
434: * @param x_errorcode Reserved for future use.
435: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER
436: * message stack upon completion of processing.
437: * @param x_msg_data If exactly one message exists on ERROR_HANDLER

Line 455: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE

451: ,p_entity_id IN VARCHAR2 DEFAULT NULL
452: ,p_entity_index IN NUMBER DEFAULT NULL
453: ,p_entity_code IN VARCHAR2 DEFAULT NULL
454: ,p_debug_level IN NUMBER DEFAULT 0
455: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
456: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
457: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
458: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
459: ,x_attributes_row_table OUT NOCOPY EGO_USER_ATTR_ROW_TABLE

Line 456: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE

452: ,p_entity_index IN NUMBER DEFAULT NULL
453: ,p_entity_code IN VARCHAR2 DEFAULT NULL
454: ,p_debug_level IN NUMBER DEFAULT 0
455: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
456: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
457: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
458: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
459: ,x_attributes_row_table OUT NOCOPY EGO_USER_ATTR_ROW_TABLE
460: ,x_attributes_data_table OUT NOCOPY EGO_USER_ATTR_DATA_TABLE

Line 457: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE

453: ,p_entity_code IN VARCHAR2 DEFAULT NULL
454: ,p_debug_level IN NUMBER DEFAULT 0
455: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
456: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
457: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
458: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
459: ,x_attributes_row_table OUT NOCOPY EGO_USER_ATTR_ROW_TABLE
460: ,x_attributes_data_table OUT NOCOPY EGO_USER_ATTR_DATA_TABLE
461: ,x_return_status OUT NOCOPY VARCHAR2

Line 458: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE

454: ,p_debug_level IN NUMBER DEFAULT 0
455: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
456: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
457: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
458: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
459: ,x_attributes_row_table OUT NOCOPY EGO_USER_ATTR_ROW_TABLE
460: ,x_attributes_data_table OUT NOCOPY EGO_USER_ATTR_DATA_TABLE
461: ,x_return_status OUT NOCOPY VARCHAR2
462: ,x_errorcode OUT NOCOPY NUMBER

Line 529: * group rows are copied successfully; if FND_API.G_FALSE is passed,

525: * @param p_add_errors_to_fnd_stack Indicates whether messages written
526: * to ERROR_HANDLER message stack will also be written to FND_MSG_PUB
527: * message stack.
528: * @param p_commit Indicates whether to commit work if all attribute
529: * group rows are copied successfully; if FND_API.G_FALSE is passed,
530: * the API will not commit any work.
531: * @param x_return_status Returns one of three values indicating the
532: * most serious error encountered during processing:
533: * FND_API.G_RET_STS_SUCCESS if no errors occurred,

Line 533: * FND_API.G_RET_STS_SUCCESS if no errors occurred,

529: * group rows are copied successfully; if FND_API.G_FALSE is passed,
530: * the API will not commit any work.
531: * @param x_return_status Returns one of three values indicating the
532: * most serious error encountered during processing:
533: * FND_API.G_RET_STS_SUCCESS if no errors occurred,
534: * FND_API.G_RET_STS_ERROR if at least one error occurred, and
535: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred.
536: * @param x_errorcode Reserved for future use.
537: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER

Line 534: * FND_API.G_RET_STS_ERROR if at least one error occurred, and

530: * the API will not commit any work.
531: * @param x_return_status Returns one of three values indicating the
532: * most serious error encountered during processing:
533: * FND_API.G_RET_STS_SUCCESS if no errors occurred,
534: * FND_API.G_RET_STS_ERROR if at least one error occurred, and
535: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred.
536: * @param x_errorcode Reserved for future use.
537: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER
538: * message stack upon completion of processing.

Line 535: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred.

531: * @param x_return_status Returns one of three values indicating the
532: * most serious error encountered during processing:
533: * FND_API.G_RET_STS_SUCCESS if no errors occurred,
534: * FND_API.G_RET_STS_ERROR if at least one error occurred, and
535: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred.
536: * @param x_errorcode Reserved for future use.
537: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER
538: * message stack upon completion of processing.
539: * @param x_msg_data If exactly one message exists on ERROR_HANDLER

Line 559: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE

555: ,p_new_pk_col_value_pairs IN EGO_COL_NAME_VALUE_PAIR_ARRAY
556: ,p_new_data_level_id IN NUMBER DEFAULT NULL --bug 8941665
557: ,p_new_dtlevel_col_value_pairs IN EGO_COL_NAME_VALUE_PAIR_ARRAY DEFAULT NULL
558: ,p_new_cc_col_value_pairs IN EGO_COL_NAME_VALUE_PAIR_ARRAY DEFAULT NULL
559: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
560: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
561: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
562: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
563: ,x_return_status OUT NOCOPY VARCHAR2

Line 560: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE

556: ,p_new_data_level_id IN NUMBER DEFAULT NULL --bug 8941665
557: ,p_new_dtlevel_col_value_pairs IN EGO_COL_NAME_VALUE_PAIR_ARRAY DEFAULT NULL
558: ,p_new_cc_col_value_pairs IN EGO_COL_NAME_VALUE_PAIR_ARRAY DEFAULT NULL
559: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
560: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
561: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
562: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
563: ,x_return_status OUT NOCOPY VARCHAR2
564: ,x_errorcode OUT NOCOPY NUMBER

Line 561: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE

557: ,p_new_dtlevel_col_value_pairs IN EGO_COL_NAME_VALUE_PAIR_ARRAY DEFAULT NULL
558: ,p_new_cc_col_value_pairs IN EGO_COL_NAME_VALUE_PAIR_ARRAY DEFAULT NULL
559: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
560: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
561: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
562: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
563: ,x_return_status OUT NOCOPY VARCHAR2
564: ,x_errorcode OUT NOCOPY NUMBER
565: ,x_msg_count OUT NOCOPY NUMBER

Line 562: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE

558: ,p_new_cc_col_value_pairs IN EGO_COL_NAME_VALUE_PAIR_ARRAY DEFAULT NULL
559: ,p_init_error_handler IN VARCHAR2 DEFAULT FND_API.G_FALSE
560: ,p_init_fnd_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE
561: ,p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT FND_API.G_FALSE
562: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE
563: ,x_return_status OUT NOCOPY VARCHAR2
564: ,x_errorcode OUT NOCOPY NUMBER
565: ,x_msg_count OUT NOCOPY NUMBER
566: ,x_msg_data OUT NOCOPY VARCHAR2

Line 609: * program and when p_log_errors is passed as FND_API.G_TRUE).

605: * @param p_init_error_handler Indicates whether to initialize ERROR_HANDLER
606: * message stack (and open debug session, if applicable)
607: * @param p_write_to_concurrent_log Indicates whether to log ERROR_HANDLER
608: * messages to concurrent log (only applicable when called from concurrent
609: * program and when p_log_errors is passed as FND_API.G_TRUE).
610: * @param p_init_fnd_msg_list Indicates whether to initialize FND_MSG_PUB
611: * message stack.
612: * @param p_log_errors Indicates whether to write ERROR_HANDLER message
613: * stack to MTL_INTERFACE_ERRORS, the concurrent log (if applicable),

Line 614: * and the debug file (if applicable); if FND_API.G_FALSE is passed,

610: * @param p_init_fnd_msg_list Indicates whether to initialize FND_MSG_PUB
611: * message stack.
612: * @param p_log_errors Indicates whether to write ERROR_HANDLER message
613: * stack to MTL_INTERFACE_ERRORS, the concurrent log (if applicable),
614: * and the debug file (if applicable); if FND_API.G_FALSE is passed,
615: * messages will still be added to ERROR_HANDLER's message stack, but
616: * the message stack will not be written to any destination.
617: * @param p_add_errors_to_fnd_stack Indicates whether messages written
618: * to ERROR_HANDLER message stack will also be written to FND_MSG_PUB

Line 625: * FND_API.G_RET_STS_SUCCESS if no errors occurred

621: * object listing required attributes for which the object does not
622: * have a value.
623: * @param x_return_status Returns one of three values indicating the
624: * most serious error encountered during processing:
625: * FND_API.G_RET_STS_SUCCESS if no errors occurred
626: * FND_API.G_RET_STS_ERROR if at least one error occurred
627: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred
628: * @param x_errorcode Reserved for future use.
629: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER

Line 626: * FND_API.G_RET_STS_ERROR if at least one error occurred

622: * have a value.
623: * @param x_return_status Returns one of three values indicating the
624: * most serious error encountered during processing:
625: * FND_API.G_RET_STS_SUCCESS if no errors occurred
626: * FND_API.G_RET_STS_ERROR if at least one error occurred
627: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred
628: * @param x_errorcode Reserved for future use.
629: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER
630: * message stack upon completion of processing.

Line 627: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred

623: * @param x_return_status Returns one of three values indicating the
624: * most serious error encountered during processing:
625: * FND_API.G_RET_STS_SUCCESS if no errors occurred
626: * FND_API.G_RET_STS_ERROR if at least one error occurred
627: * FND_API.G_RET_STS_UNEXP_ERROR if at least one unexpected error occurred
628: * @param x_errorcode Reserved for future use.
629: * @param x_msg_count Indicates how many messages exist on ERROR_HANDLER
630: * message stack upon completion of processing.
631: * @param x_msg_data If exactly one message exists on ERROR_HANDLER