DBA Data[Home] [Help]

APPS.OE_CNCL_VALIDATE_LINE dependencies on OE_ORDER_PUB

Line 15: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type

11: -- This procedure checks for all the attributes that are required
12: -- on booked order lines.
13:
14: PROCEDURE Check_Book_Reqd_Attributes
15: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type
16: , x_return_status IN OUT NOCOPY /* file.sql.39 change */ VARCHAR2
17: )
18: IS
19: l_proj_ref_enabled NUMBER;

Line 348: Procedure Validate_Line_Type(p_line_rec IN oe_order_pub.line_rec_type)

344: OE_DEBUG_PUB.Add('Exiting OE_CNCL_VALIDATE_LINE.Validate_Decimal_Quantity',1);
345: END Validate_Decimal_Quantity;
346:
347:
348: Procedure Validate_Line_Type(p_line_rec IN oe_order_pub.line_rec_type)
349: IS
350: --
351: -- p_old_line_rec IN oe_order_pub.line_rec_type)
352:

Line 351: -- p_old_line_rec IN oe_order_pub.line_rec_type)

347:
348: Procedure Validate_Line_Type(p_line_rec IN oe_order_pub.line_rec_type)
349: IS
350: --
351: -- p_old_line_rec IN oe_order_pub.line_rec_type)
352:
353: lorder_type_id NUMBER;
354: lexists VARCHAR2(30);
355: lprocessname VARCHAR2(80);

Line 1027: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type

1023: We use this procedure to add validations related to source_type
1024: = EXTERNAL.
1025: --------------------------------------------------------------*/
1026: PROCEDURE Validate_Source_Type
1027: ( p_line_rec IN OE_Order_PUB.Line_Rec_Type
1028: ,x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2)
1029: IS
1030: l_purchasing_enabled_flag VARCHAR2(1);
1031: BEGIN

Line 1118: , p_line_rec IN OE_Order_PUB.Line_Rec_Type

1114: -- Procedure Entity
1115:
1116: PROCEDURE Entity
1117: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
1118: , p_line_rec IN OE_Order_PUB.Line_Rec_Type
1119: )
1120: IS
1121: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
1122: l_valid_line_number VARCHAR2(1) := 'Y';

Line 2749: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type

2745: -- Procedure Attributes
2746:
2747: PROCEDURE Attributes
2748: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2749: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2750: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2751: )
2752: IS
2753: l_return_status VARCHAR2(1);

Line 2754: l_line_rec OE_Order_PUB.Line_Rec_Type := OE_Order_PUB.G_MISS_LINE_REC;

2750: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2751: )
2752: IS
2753: l_return_status VARCHAR2(1);
2754: l_line_rec OE_Order_PUB.Line_Rec_Type := OE_Order_PUB.G_MISS_LINE_REC;
2755: l_type_code VARCHAR2(30);
2756: BEGIN
2757: oe_debug_pub.add('Enter procedure OE_CNCL_VALIDATE_line.Attributes',1);
2758:

Line 3855: FUNCTION Get_Item_Type(p_line_rec OE_ORDER_PUB.Line_Rec_Type)

3851: END IF;
3852:
3853: END Attributes;
3854:
3855: FUNCTION Get_Item_Type(p_line_rec OE_ORDER_PUB.Line_Rec_Type)
3856:
3857: RETURN VARCHAR2
3858: IS
3859: l_item_type_code VARCHAR2(30) := NULL;