DBA Data[Home] [Help]

APPS.OE_ORDER_PVT dependencies on OE_LINE_UTIL

Line 2635: OE_Line_Util.Convert_Miss_To_Null (l_old_line_rec);

2631: l_line_rec.db_flag := FND_API.G_FALSE;
2632:
2633: -- Set missing old record elements to NULL.
2634:
2635: OE_Line_Util.Convert_Miss_To_Null (l_old_line_rec);
2636:
2637: -- Lock the order header for unbooked orders: This would prevent order
2638: -- lines from being inserted on an order when it is being booked
2639: -- as the booking process also locks the order header.

Line 2688: OE_Line_Util.Query_Row

2684: IF l_debug_level > 0 THEN
2685: oe_debug_pub.add( 'QUERYING OLD LINE REC' ,0.5 ) ; --debug added for bug 13435459
2686: END IF;
2687:
2688: OE_Line_Util.Query_Row
2689: ( p_line_id => l_line_rec.line_id
2690: , x_line_rec => l_old_line_rec );
2691:
2692: IF l_debug_level > 0 THEN

Line 2706: OE_Line_Util.Convert_Miss_To_Null (l_old_line_rec);

2702: IF l_debug_level > 0 THEN
2703: oe_debug_pub.add( 'Before convert_miss_to_null'||l_old_line_rec.reserved_quantity , 0.5 ) ; --debug level changed to 0.5 for bug 13435459
2704: END IF;
2705: -- Set missing old record elements to NULL.
2706: OE_Line_Util.Convert_Miss_To_Null (l_old_line_rec);
2707:
2708: IF l_debug_level > 0 THEN
2709: oe_debug_pub.add( 'After convert_miss_to_null'||l_old_line_rec.reserved_quantity , 0.5 ) ; --debug level changed to 0.5 for bug 13435459
2710: END IF;

Line 2725: OE_Line_Util.Complete_Record

2721: IF l_debug_level > 0 THEN
2722: oe_debug_pub.add( 'COMPLETE NEW RECORD FROM OLD' , 0.5 ) ; --debug level changed to 0.5 for 13435459
2723: END IF;
2724:
2725: OE_Line_Util.Complete_Record
2726: ( p_x_line_rec => l_line_rec
2727: ,p_old_line_rec => l_old_line_rec);
2728:
2729: IF l_debug_level > 0 THEN

Line 3191: OE_LINE_UTIL.Pre_Attribute_Security(p_x_line_rec => l_line_rec

3187: ( p_operation => l_line_rec.operation
3188: ,p_control_rec => p_control_rec);
3189:
3190:
3191: OE_LINE_UTIL.Pre_Attribute_Security(p_x_line_rec => l_line_rec
3192: ,p_old_line_rec => l_old_line_rec
3193: ,p_index => I );
3194:
3195: -- CHECK SECURITY

Line 3278: OE_Line_Util_Ext.Clear_Dependent_Attr

3274: IF l_debug_level > 0 THEN
3275: oe_debug_pub.add( 'CLEAR DEPENDENT ATTRIBUTES' , 0.5 ) ; --debug changed to 0.5 for 13435459
3276: END IF;
3277:
3278: OE_Line_Util_Ext.Clear_Dependent_Attr
3279: ( p_x_line_rec => l_line_rec
3280: ,p_old_line_rec => l_old_line_rec );
3281:
3282: IF l_debug_level > 0 THEN

Line 3341: OE_Line_Util.Apply_Attribute_Changes

3337: IF l_debug_level > 0 THEN
3338: oe_debug_pub.add( 'APPLY ATTRIBUTE CHANGES' , 0.5 ) ; --debug level changed to 0.5 for 13435459
3339: END IF;
3340:
3341: OE_Line_Util.Apply_Attribute_Changes
3342: ( p_x_line_rec => l_line_rec
3343: ,p_old_line_rec => l_old_line_rec );
3344:
3345: IF l_debug_level > 0 THEN

Line 3463: OE_LINE_UTIL.PRE_WRITE_PROCESS

3459: -- writing to the DB (like Scheduling).
3460:
3461: IF l_control_rec.write_to_db THEN
3462:
3463: OE_LINE_UTIL.PRE_WRITE_PROCESS
3464: ( p_x_line_rec => l_line_rec
3465: , p_old_line_rec => l_old_line_rec);
3466: END IF;
3467:

Line 3476: OE_Line_Util.Delete_Row

3472: oe_debug_pub.add( 'WRITE TO DB' , 0.5 ) ; -- for bug 13435459
3473: END IF;
3474:
3475: IF l_line_rec.operation = OE_GLOBALS.G_OPR_DELETE THEN
3476: OE_Line_Util.Delete_Row
3477: ( p_line_id => l_line_rec.line_id);
3478:
3479: -- If an OTA line has been deleted, then call the OTA API
3480: -- to delete the event in the OTA tables

Line 3522: OE_Line_Util.Update_Row (l_line_rec);

3518: IF l_debug_level > 0 THEN
3519: oe_debug_pub.add( 'CALLING UPDATE ROW' , 0.5 ) ; --debug changed to 0.5 for 13435459
3520: END IF;
3521:
3522: OE_Line_Util.Update_Row (l_line_rec);
3523: IF l_debug_level > 0 THEN
3524: oe_debug_pub.add( 'AFTER CALLING UPDATE ROW' , 0.5 ) ; --debug changed to 0.5 for 13435459
3525: END IF;
3526:

Line 3541: OE_Line_Util.Insert_Row (l_line_rec);

3537: IF l_debug_level > 0 THEN
3538: oe_debug_pub.add( 'CALLING INSERT ROW' , 0.5 ) ; --debug added for 13435459
3539: END IF;
3540:
3541: OE_Line_Util.Insert_Row (l_line_rec);
3542: IF l_debug_level > 0 THEN
3543: oe_debug_pub.add( 'AFTER CALLING INSERT ROW' , 0.5 ) ; --debug added for 13435459
3544: END IF;
3545:

Line 3551: Oe_Line_Util.Post_Write_Process

3547:
3548: END IF; -- operation = delete
3549:
3550: -- Post Db Processes
3551: Oe_Line_Util.Post_Write_Process
3552: (p_x_line_rec => l_line_rec,
3553: p_old_line_rec => l_old_line_rec );
3554:
3555: END IF; -- write to db true

Line 3748: OE_LINE_UTIL.Post_Line_Process

3744:
3745:
3746: -- New event has been created to handle post line loop issues.
3747:
3748: OE_LINE_UTIL.Post_Line_Process
3749: (p_control_rec => l_control_rec,
3750: p_x_line_tbl => p_x_line_tbl);
3751:
3752:

Line 7061: oe_line_util.query_header

7057: IF (l_header_id IS NOT NULL AND
7058: l_header_id <> FND_API.G_MISS_NUM) THEN
7059: p_x_line_tbl(I).header_id := l_header_id;
7060: ELSE
7061: oe_line_util.query_header
7062: (p_line_id => p_x_line_tbl(I).line_id,
7063: x_header_id => l_header_id);
7064: p_x_line_tbl(I).header_id := l_header_id;
7065: END IF;

Line 9244: oe_line_util.query_header

9240: IF (l_header_id IS NOT NULL AND
9241: l_header_id <> FND_API.G_MISS_NUM) THEN
9242: l_line_tbl(I).header_id := l_header_id;
9243: ELSE
9244: oe_line_util.query_header
9245: (p_line_id => l_line_rec.line_id,
9246: x_header_id => l_header_id);
9247: l_line_tbl(I).header_id := l_header_id;
9248: END IF;

Line 10916: OE_Line_Util.Lock_Row

10912: WHILE I IS NOT NULL LOOP
10913:
10914: IF p_x_line_tbl(I).operation = OE_GLOBALS.G_OPR_LOCK THEN
10915:
10916: OE_Line_Util.Lock_Row
10917: ( p_x_line_rec => p_x_line_tbl(I)
10918: , x_return_status => l_return_status
10919: );
10920:

Line 11406: OE_Line_Util.Query_Rows

11402: END IF;
11403:
11404: -- Get line ( parent = header )
11405:
11406: OE_Line_Util.Query_Rows
11407: ( p_header_id => p_header_id
11408: , x_line_tbl => x_line_tbl
11409: );
11410: