DBA Data[Home] [Help]

APPS.ENG_OPS_CONTROLLER dependencies on ERROR_HANDLER

Line 145: , x_Mesg_Token_Tbl OUT NOCOPY Error_Handler.Mesg_Token_Tbl_Type

141: PROCEDURE Initialize_Record
142: ( p_OPS_controller_rec IN Controller_OPS_Rec_Type
143: , p_control_rec IN BOM_BO_PUB.Control_Rec_Type
144: , x_OPS_controller_rec IN OUT NOCOPY Controller_OPS_Rec_Type
145: , x_Mesg_Token_Tbl OUT NOCOPY Error_Handler.Mesg_Token_Tbl_Type
146: , x_return_status OUT NOCOPY VARCHAR2
147: )
148: IS
149: l_control_rec BOM_BO_PUB.Control_Rec_Type := p_control_rec;

Line 171: l_mesg_token_tbl Error_Handler.Mesg_Token_Tbl_Type;

167: l_rev_op_resource_tbl BOM_RTG_PUB.Rev_Op_Resource_Tbl_Type;
168: l_rev_sub_resource_tbl BOM_RTG_PUB.Rev_Sub_Resource_Tbl_Type;
169:
170:
171: l_mesg_token_tbl Error_Handler.Mesg_Token_Tbl_Type;
172: l_return_status VARCHAR2(1);
173: l_msg_count NUMBER;
174: l_disable_revision NUMBER; --BUG 3034642
175: BEGIN

Line 228: , x_Mesg_Token_Tbl OUT NOCOPY Error_Handler.Mesg_Token_Tbl_Type

224: ( p_OPS_controller_rec IN Controller_OPS_Rec_Type
225: , p_control_rec IN BOM_BO_PUB.Control_Rec_Type
226: , p_record_status IN VARCHAR2
227: , x_OPS_controller_rec IN OUT NOCOPY Controller_OPS_Rec_Type
228: , x_Mesg_Token_Tbl OUT NOCOPY Error_Handler.Mesg_Token_Tbl_Type
229: , x_return_status OUT NOCOPY VARCHAR2
230: )
231: IS
232: l_control_rec BOM_BO_PUB.Control_Rec_Type := p_control_rec;

Line 254: l_mesg_token_tbl Error_Handler.Mesg_Token_Tbl_Type;

250: l_rev_op_resource_tbl BOM_RTG_PUB.Rev_Op_Resource_Tbl_Type;
251: l_rev_sub_resource_tbl BOM_RTG_PUB.Rev_Sub_Resource_Tbl_Type;
252:
253:
254: l_mesg_token_tbl Error_Handler.Mesg_Token_Tbl_Type;
255: l_return_status VARCHAR2(1);
256: l_msg_count NUMBER;
257: l_disable_revision NUMBER; --BUG 3034642
258: BEGIN

Line 263: error_handler.write_debug('At the beginning of Validate_And_Write,the return status is');

259:
260:
261: IF BOM_Globals.get_debug = 'Y'
262: THEN
263: error_handler.write_debug('At the beginning of Validate_And_Write,the return status is');
264: error_handler.write_debug( l_Return_Status);
265: END IF;
266:
267: Create_Exp_Unexp_Rec

Line 264: error_handler.write_debug( l_Return_Status);

260:
261: IF BOM_Globals.get_debug = 'Y'
262: THEN
263: error_handler.write_debug('At the beginning of Validate_And_Write,the return status is');
264: error_handler.write_debug( l_Return_Status);
265: END IF;
266:
267: Create_Exp_Unexp_Rec
268: ( p_controller_OPS_rec => l_OPS_controller_rec

Line 285: error_handler.write_debug('After Create_Exp_Unexp_Rec, the return status is');

281: l_rev_operation_tbl(1).transaction_type := 'DELETE';
282: END IF;
283: IF BOM_Globals.get_debug = 'Y'
284: THEN
285: error_handler.write_debug('After Create_Exp_Unexp_Rec, the return status is');
286: error_handler.write_debug( l_Return_Status);
287: END IF;
288:
289: ENG_FORM_ECO_PVT.Process_ECO

Line 286: error_handler.write_debug( l_Return_Status);

282: END IF;
283: IF BOM_Globals.get_debug = 'Y'
284: THEN
285: error_handler.write_debug('After Create_Exp_Unexp_Rec, the return status is');
286: error_handler.write_debug( l_Return_Status);
287: END IF;
288:
289: ENG_FORM_ECO_PVT.Process_ECO
290: ( x_return_status => l_return_status

Line 317: error_handler.write_debug('After process_ECO, the return status is');

313: ,x_disable_revision =>l_disable_revision --BUG 3034642
314: );
315: IF BOM_Globals.get_debug = 'Y'
316: THEN
317: error_handler.write_debug('After process_ECO, the return status is');
318: error_handler.write_debug( l_Return_Status);
319: END IF;
320: Create_Controller_Rec
321: ( p_OPS_tbl => l_rev_operation_tbl

Line 318: error_handler.write_debug( l_Return_Status);

314: );
315: IF BOM_Globals.get_debug = 'Y'
316: THEN
317: error_handler.write_debug('After process_ECO, the return status is');
318: error_handler.write_debug( l_Return_Status);
319: END IF;
320: Create_Controller_Rec
321: ( p_OPS_tbl => l_rev_operation_tbl
322: , p_unexp_OPS_rec => l_unexp_OPS_rec

Line 336: , x_Mesg_Token_Tbl OUT NOCOPY Error_Handler.Mesg_Token_Tbl_Type

332:
333: PROCEDURE Delete_Row
334: ( p_OPS_controller_rec IN Controller_OPS_Rec_Type
335: , p_control_rec IN BOM_BO_PUB.Control_Rec_Type
336: , x_Mesg_Token_Tbl OUT NOCOPY Error_Handler.Mesg_Token_Tbl_Type
337: , x_return_status OUT NOCOPY VARCHAR2
338: )
339: IS
340: l_control_rec BOM_BO_PUB.Control_Rec_Type := p_control_rec;

Line 361: l_mesg_token_tbl Error_Handler.Mesg_Token_Tbl_Type;

357: l_rev_operation_tbl BOM_RTG_PUB.Rev_Operation_Tbl_Type;
358: l_rev_op_resource_tbl BOM_RTG_PUB.Rev_Op_Resource_Tbl_Type;
359: l_rev_sub_resource_tbl BOM_RTG_PUB.Rev_Sub_Resource_Tbl_Type;
360:
361: l_mesg_token_tbl Error_Handler.Mesg_Token_Tbl_Type;
362: l_return_status VARCHAR2(1);
363: l_msg_count NUMBER;
364: l_disable_revision NUMBER; --BUG 3034642
365: BEGIN

Line 417: , x_Mesg_Token_Tbl OUT NOCOPY Error_Handler.Mesg_Token_Tbl_Type

413: ( p_OPS_controller_rec IN Controller_OPS_Rec_Type
414: , p_control_rec IN BOM_BO_PUB.Control_Rec_Type
415: , p_record_status IN VARCHAR2
416: , x_OPS_controller_rec IN OUT NOCOPY Controller_OPS_Rec_Type
417: , x_Mesg_Token_Tbl OUT NOCOPY Error_Handler.Mesg_Token_Tbl_Type
418: , x_return_status OUT NOCOPY VARCHAR2
419: )
420: IS
421: l_control_rec BOM_BO_PUB.Control_Rec_Type := p_control_rec;

Line 442: l_mesg_token_tbl Error_Handler.Mesg_Token_Tbl_Type;

438: l_rev_operation_tbl BOM_RTG_PUB.Rev_Operation_Tbl_Type;
439: l_rev_op_resource_tbl BOM_RTG_PUB.Rev_Op_Resource_Tbl_Type;
440: l_rev_sub_resource_tbl BOM_RTG_PUB.Rev_Sub_Resource_Tbl_Type;
441:
442: l_mesg_token_tbl Error_Handler.Mesg_Token_Tbl_Type;
443: l_return_status VARCHAR2(1);
444: l_msg_count NUMBER;
445: l_disable_revision NUMBER; --BUG 3034642
446: BEGIN