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 2769: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type

2765: -- Procedure Attributes
2766:
2767: PROCEDURE Attributes
2768: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2769: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2770: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2771: )
2772: IS
2773: l_return_status VARCHAR2(1);

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

2770: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2771: )
2772: IS
2773: l_return_status VARCHAR2(1);
2774: l_line_rec OE_Order_PUB.Line_Rec_Type := OE_Order_PUB.G_MISS_LINE_REC;
2775: l_type_code VARCHAR2(30);
2776: BEGIN
2777: oe_debug_pub.add('Enter procedure OE_CNCL_VALIDATE_line.Attributes',1);
2778:

Line 3875: FUNCTION Get_Item_Type(p_line_rec OE_ORDER_PUB.Line_Rec_Type)

3871: END IF;
3872:
3873: END Attributes;
3874:
3875: FUNCTION Get_Item_Type(p_line_rec OE_ORDER_PUB.Line_Rec_Type)
3876:
3877: RETURN VARCHAR2
3878: IS
3879: l_item_type_code VARCHAR2(30) := NULL;