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 687: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type,

683: -- Procedure Validate_Blanket_Values
684: ----------------------------------------------------------------------------
685:
686: Procedure Validate_Blanket_Values
687: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type,
688: p_old_header_rec IN OE_Order_PUB.Header_Rec_Type,
689: x_return_status OUT NOCOPY VARCHAR2
690: )
691:

Line 688: p_old_header_rec IN OE_Order_PUB.Header_Rec_Type,

684: ----------------------------------------------------------------------------
685:
686: Procedure Validate_Blanket_Values
687: ( p_header_rec IN OE_Order_PUB.Header_Rec_Type,
688: p_old_header_rec IN OE_Order_PUB.Header_Rec_Type,
689: x_return_status OUT NOCOPY VARCHAR2
690: )
691:
692: IS

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

892: --------------------------------------------------------*/
893:
894: PROCEDURE Entity
895: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
896: , p_header_rec IN OUT NOCOPY /* file.sql.39 change */ OE_Order_PUB.Header_Rec_Type
897: /* modified the above line to fix the bug 2824240 */
898: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
899: OE_Order_PUB.G_MISS_HEADER_REC
900: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL

Line 898: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=

894: PROCEDURE Entity
895: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
896: , p_header_rec IN OUT NOCOPY /* file.sql.39 change */ OE_Order_PUB.Header_Rec_Type
897: /* modified the above line to fix the bug 2824240 */
898: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
899: OE_Order_PUB.G_MISS_HEADER_REC
900: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
901: /* added the above line to fix the bug 2824240 */
902: )

Line 899: OE_Order_PUB.G_MISS_HEADER_REC

895: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
896: , p_header_rec IN OUT NOCOPY /* file.sql.39 change */ OE_Order_PUB.Header_Rec_Type
897: /* modified the above line to fix the bug 2824240 */
898: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
899: OE_Order_PUB.G_MISS_HEADER_REC
900: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
901: /* added the above line to fix the bug 2824240 */
902: )
903: IS

Line 931: l_header_rec OE_Order_PUB.Header_Rec_Type := p_header_rec;

927: l_blanket_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
928:
929: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
930: l_control_rec OE_GLOBALS.Control_Rec_Type;
931: l_header_rec OE_Order_PUB.Header_Rec_Type := p_header_rec;
932: l_old_header_rec OE_Order_PUB.Header_Rec_Type := p_old_header_rec;
933: /* Added the above 3 line to fix the bug 2824240 */
934:
935: -- eBTax Changes

Line 932: l_old_header_rec OE_Order_PUB.Header_Rec_Type := p_old_header_rec;

928:
929: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
930: l_control_rec OE_GLOBALS.Control_Rec_Type;
931: l_header_rec OE_Order_PUB.Header_Rec_Type := p_header_rec;
932: l_old_header_rec OE_Order_PUB.Header_Rec_Type := p_old_header_rec;
933: /* Added the above 3 line to fix the bug 2824240 */
934:
935: -- eBTax Changes
936: l_ship_to_cust_Acct_id hz_cust_Accounts.cust_Account_id%type;

Line 2736: , p_x_header_rec IN OUT NOCOPY OE_Order_PUB.Header_Rec_Type

2732: --------------------------------------------------------*/
2733:
2734: PROCEDURE Attributes
2735: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2736: , p_x_header_rec IN OUT NOCOPY OE_Order_PUB.Header_Rec_Type
2737: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
2738: OE_Order_PUB.G_MISS_HEADER_REC
2739: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2740: )

Line 2737: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=

2733:
2734: PROCEDURE Attributes
2735: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2736: , p_x_header_rec IN OUT NOCOPY OE_Order_PUB.Header_Rec_Type
2737: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
2738: OE_Order_PUB.G_MISS_HEADER_REC
2739: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2740: )
2741: IS

Line 2738: OE_Order_PUB.G_MISS_HEADER_REC

2734: PROCEDURE Attributes
2735: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2736: , p_x_header_rec IN OUT NOCOPY OE_Order_PUB.Header_Rec_Type
2737: , p_old_header_rec IN OE_Order_PUB.Header_Rec_Type :=
2738: OE_Order_PUB.G_MISS_HEADER_REC
2739: , p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL
2740: )
2741: IS
2742: l_cc_security_code_use Varchar2(20);

Line 5082: , p_header_rec IN OE_Order_PUB.Header_Rec_Type

5078: -------------------------------------------------------*/
5079:
5080: PROCEDURE Entity_Delete
5081: ( x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
5082: , p_header_rec IN OE_Order_PUB.Header_Rec_Type
5083: )
5084: IS
5085: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
5086: BEGIN