DBA Data[Home] [Help]

APPS.POS_VENDOR_PUB_PKG dependencies on ERROR_HANDLER

Line 3148: p_init_error_handler IN VARCHAR2 DEFAULT NULL,

3144: p_entity_id IN NUMBER DEFAULT NULL,
3145: p_entity_index IN NUMBER DEFAULT NULL,
3146: p_entity_code IN VARCHAR2 DEFAULT NULL,
3147: p_debug_level IN NUMBER DEFAULT 0,
3148: p_init_error_handler IN VARCHAR2 DEFAULT NULL,
3149: p_write_to_concurrent_log IN VARCHAR2 DEFAULT NULL,
3150: p_init_fnd_msg_list IN VARCHAR2 DEFAULT NULL,
3151: p_log_errors IN VARCHAR2 DEFAULT NULL,
3152: p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT NULL,

Line 3174: -- p_init_error_handler IN VARCHAR2 DEFAULT NULL,

3170: -- user skips them. Now changed to DEFAULT NULL, retaining the same
3171: -- default semantics by NVL in the body. This is done according to
3172: -- current performance coding standard.
3173: --
3174: -- p_init_error_handler IN VARCHAR2 DEFAULT NULL,
3175: -- p_write_to_concurrent_log IN VARCHAR2 DEFAULT NULL,
3176: -- p_init_fnd_msg_list IN VARCHAR2 DEFAULT NULL,
3177: -- p_log_errors IN VARCHAR2 DEFAULT NULL,
3178: -- p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT NULL,

Line 3269: ERROR_HANDLER.Get_Message(x_msg_data, x_errorcode, l_entity_id, l_message_type);

3265: );
3266:
3267: IF (l_return_status <> 'S') THEN
3268: ROLLBACK TO Process_User_Attrs_Data_PUB;
3269: ERROR_HANDLER.Get_Message(x_msg_data, x_errorcode, l_entity_id, l_message_type);
3270: x_return_status := l_return_status;
3271: x_msg_count := l_msg_count;
3272: EXIT;
3273: END IF;

Line 3289: p_init_error_handler IN VARCHAR2 DEFAULT NULL,

3285: p_entity_id IN VARCHAR2 DEFAULT NULL,
3286: p_entity_index IN NUMBER DEFAULT NULL,
3287: p_entity_code IN VARCHAR2 DEFAULT NULL,
3288: p_debug_level IN NUMBER DEFAULT 0,
3289: p_init_error_handler IN VARCHAR2 DEFAULT NULL,
3290: p_init_fnd_msg_list IN VARCHAR2 DEFAULT NULL,
3291: p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT NULL,
3292: x_attributes_row_table OUT NOCOPY EGO_USER_ATTR_ROW_TABLE,
3293: x_attributes_data_table OUT NOCOPY EGO_USER_ATTR_DATA_TABLE,

Line 3313: -- p_init_error_handler IN VARCHAR2 DEFAULT NULL,

3309: -- user skips them. Now changed to DEFAULT NULL, retaining the same
3310: -- default semantics by NVL in the body. This is done according to
3311: -- current performance coding standard.
3312: --
3313: -- p_init_error_handler IN VARCHAR2 DEFAULT NULL,
3314: -- p_init_fnd_msg_list IN VARCHAR2 DEFAULT NULL,
3315: -- p_add_errors_to_fnd_stack IN VARCHAR2 DEFAULT NULL,
3316: --
3317: -- Tue Sep 1 09:51:26 PDT 2009 bso R12.1.2

Line 3330: p_init_error_handler =>

3326: p_entity_id => p_entity_id,
3327: p_entity_index => p_entity_index,
3328: p_entity_code => p_entity_code,
3329: p_debug_level => p_debug_level,
3330: p_init_error_handler =>
3331: nvl(p_init_error_handler, fnd_api.g_false),
3332: p_init_fnd_msg_list =>
3333: nvl(p_init_fnd_msg_list, fnd_api.g_false),
3334: p_add_errors_to_fnd_stack =>

Line 3331: nvl(p_init_error_handler, fnd_api.g_false),

3327: p_entity_index => p_entity_index,
3328: p_entity_code => p_entity_code,
3329: p_debug_level => p_debug_level,
3330: p_init_error_handler =>
3331: nvl(p_init_error_handler, fnd_api.g_false),
3332: p_init_fnd_msg_list =>
3333: nvl(p_init_fnd_msg_list, fnd_api.g_false),
3334: p_add_errors_to_fnd_stack =>
3335: nvl(p_add_errors_to_fnd_stack, fnd_api.g_false),