DBA Data[Home] [Help]

APPS.OE_VALIDATE_HEADER dependencies on OE_ORDER_PUB

Line 19: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type

15: against transaction phase (Negotiation vs Fulfillment).
16: --------------------------------------------------------*/
17:
18: PROCEDURE Check_Negotiation_Attributes
19: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type
20: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type
21: , x_return_status IN OUT NOCOPY VARCHAR2
22: )
23: IS

Line 20: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type

16: --------------------------------------------------------*/
17:
18: PROCEDURE Check_Negotiation_Attributes
19: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type
20: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type
21: , x_return_status IN OUT NOCOPY VARCHAR2
22: )
23: IS
24: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

Line 188: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type

184: Description:
185: --------------------------------------------------------*/
186:
187: PROCEDURE Check_Book_Reqd_Attributes
188: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type
189: , x_return_status IN OUT NOCOPY /* file.sql.39 change */ VARCHAR2
190: )
191: IS
192: l_order_type_rec OE_Order_Cache.Order_Type_Rec_Type;

Line 718: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type,

714: -- Procedure Validate_Blanket_Values
715: ----------------------------------------------------------------------------
716:
717: Procedure Validate_Blanket_Values
718: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type,
719: p_old_header_rec IN OE_Order_PUB.Header_Rec_Type,
720: x_return_status OUT NOCOPY VARCHAR2
721: )
722:

Line 719: p_old_header_rec IN OE_Order_PUB.Header_Rec_Type,

715: ----------------------------------------------------------------------------
716:
717: Procedure Validate_Blanket_Values
718: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type,
719: p_old_header_rec IN OE_Order_PUB.Header_Rec_Type,
720: x_return_status OUT NOCOPY VARCHAR2
721: )
722:
723: IS

Line 927: , p_header_rec IN OUT NOCOPY /* file.sql.39 change */ OE_Order_PUB.Header_Rec_Type

923: --------------------------------------------------------*/
924:
925: PROCEDURE Entity
926: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
927: , p_header_rec IN OUT NOCOPY /* file.sql.39 change */ OE_Order_PUB.Header_Rec_Type
928: /* modified the above line to fix the bug 2824240 */
929: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
930: OE_Order_PUB.G_MISS_HEADER_REC
931: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL

Line 929: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=

925: PROCEDURE Entity
926: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
927: , p_header_rec IN OUT NOCOPY /* file.sql.39 change */ OE_Order_PUB.Header_Rec_Type
928: /* modified the above line to fix the bug 2824240 */
929: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
930: OE_Order_PUB.G_MISS_HEADER_REC
931: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
932: /* added the above line to fix the bug 2824240 */
933: )

Line 930: OE_Order_PUB.G_MISS_HEADER_REC

926: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
927: , p_header_rec IN OUT NOCOPY /* file.sql.39 change */ OE_Order_PUB.Header_Rec_Type
928: /* modified the above line to fix the bug 2824240 */
929: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
930: OE_Order_PUB.G_MISS_HEADER_REC
931: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
932: /* added the above line to fix the bug 2824240 */
933: )
934: IS

Line 962: l_header_rec OE_Order_PUB.Header_Rec_Type := p_header_rec;

958: l_blanket_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
959:
960: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
961: l_control_rec OE_GLOBALS.Control_Rec_Type;
962: l_header_rec OE_Order_PUB.Header_Rec_Type := p_header_rec;
963: l_old_header_rec OE_Order_PUB.Header_Rec_Type := p_old_header_rec;
964: /* Added the above 3 line to fix the bug 2824240 */
965:
966: -- eBTax Changes

Line 963: l_old_header_rec OE_Order_PUB.Header_Rec_Type := p_old_header_rec;

959:
960: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
961: l_control_rec OE_GLOBALS.Control_Rec_Type;
962: l_header_rec OE_Order_PUB.Header_Rec_Type := p_header_rec;
963: l_old_header_rec OE_Order_PUB.Header_Rec_Type := p_old_header_rec;
964: /* Added the above 3 line to fix the bug 2824240 */
965:
966: -- eBTax Changes
967: l_ship_to_cust_Acct_id hz_cust_Accounts.cust_Account_id%type;

Line 2805: , p_x_header_rec IN OUT NOCOPY OE_Order_PUB.Header_Rec_Type

2801: --------------------------------------------------------*/
2802:
2803: PROCEDURE Attributes
2804: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2805: , p_x_header_rec IN OUT NOCOPY OE_Order_PUB.Header_Rec_Type
2806: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
2807: OE_Order_PUB.G_MISS_HEADER_REC
2808: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2809: )

Line 2806: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=

2802:
2803: PROCEDURE Attributes
2804: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2805: , p_x_header_rec IN OUT NOCOPY OE_Order_PUB.Header_Rec_Type
2806: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
2807: OE_Order_PUB.G_MISS_HEADER_REC
2808: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2809: )
2810: IS

Line 2807: OE_Order_PUB.G_MISS_HEADER_REC

2803: PROCEDURE Attributes
2804: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2805: , p_x_header_rec IN OUT NOCOPY OE_Order_PUB.Header_Rec_Type
2806: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
2807: OE_Order_PUB.G_MISS_HEADER_REC
2808: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2809: )
2810: IS
2811: l_cc_security_code_use Varchar2(20);

Line 5172: , p_header_rec IN OE_Order_PUB.Header_Rec_Type

5168: -------------------------------------------------------*/
5169:
5170: PROCEDURE Entity_Delete
5171: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
5172: , p_header_rec IN OE_Order_PUB.Header_Rec_Type
5173: )
5174: IS
5175: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
5176: BEGIN