DBA Data[Home] [Help]

APPS.OE_ORDER_CACHE dependencies on OE_ORDER_PUB

Line 396: g_header_rec OE_Order_PUB.Header_Rec_Type;

392: G_CUST_TRX_LINE_TYPE_ID NUMBER := FND_API.G_MISS_NUM;
393:
394:
395: -- aksingh making this record visible for all apis
396: g_header_rec OE_Order_PUB.Header_Rec_Type;
397:
398: ------------------------------------------------------------
399: -- Bug 1929163: Move global record types to specs so that
400: -- values can be accessed directly by all apis

Line 416: g_top_model_line_rec OE_Order_PUB.Line_Rec_Type;

412: g_item_rec Item_Rec_Type;
413: g_item_cost_rec Item_Cost_Rec_Type;
414: g_hdr_discount_rec Discount_rec_type;
415: g_line_discount_rec Discount_rec_type;
416: g_top_model_line_rec OE_Order_PUB.Line_Rec_Type;
417: g_Modifiers_Rec Modifiers_Rec_Type;
418: g_cust_trx_rec Cust_Trx_Rec_Type;
419:
420: -- Global Records holding the set information

Line 525: RETURN OE_Order_PUB.Header_Rec_Type;

521: ( p_key IN NUMBER );
522:
523: FUNCTION Load_Order_Header
524: ( p_key IN NUMBER )
525: RETURN OE_Order_PUB.Header_Rec_Type;
526:
527: FUNCTION load_header_discount
528: ( p_hdr_adj_rec IN oe_order_pub.header_adj_rec_type)
529: RETURN OE_ORDER_PUB.HEADER_ADJ_REC_TYPE;

Line 528: ( p_hdr_adj_rec IN oe_order_pub.header_adj_rec_type)

524: ( p_key IN NUMBER )
525: RETURN OE_Order_PUB.Header_Rec_Type;
526:
527: FUNCTION load_header_discount
528: ( p_hdr_adj_rec IN oe_order_pub.header_adj_rec_type)
529: RETURN OE_ORDER_PUB.HEADER_ADJ_REC_TYPE;
530:
531: FUNCTION load_line_discount
532: ( p_line_adj_rec IN oe_order_pub.line_adj_rec_type)

Line 529: RETURN OE_ORDER_PUB.HEADER_ADJ_REC_TYPE;

525: RETURN OE_Order_PUB.Header_Rec_Type;
526:
527: FUNCTION load_header_discount
528: ( p_hdr_adj_rec IN oe_order_pub.header_adj_rec_type)
529: RETURN OE_ORDER_PUB.HEADER_ADJ_REC_TYPE;
530:
531: FUNCTION load_line_discount
532: ( p_line_adj_rec IN oe_order_pub.line_adj_rec_type)
533: RETURN OE_ORDER_PUB.LINE_ADJ_REC_TYPE;

Line 532: ( p_line_adj_rec IN oe_order_pub.line_adj_rec_type)

528: ( p_hdr_adj_rec IN oe_order_pub.header_adj_rec_type)
529: RETURN OE_ORDER_PUB.HEADER_ADJ_REC_TYPE;
530:
531: FUNCTION load_line_discount
532: ( p_line_adj_rec IN oe_order_pub.line_adj_rec_type)
533: RETURN OE_ORDER_PUB.LINE_ADJ_REC_TYPE;
534:
535: ------------------------------------------------------------
536: -- Bug 1929163: overload load_top_model_line so that it can

Line 533: RETURN OE_ORDER_PUB.LINE_ADJ_REC_TYPE;

529: RETURN OE_ORDER_PUB.HEADER_ADJ_REC_TYPE;
530:
531: FUNCTION load_line_discount
532: ( p_line_adj_rec IN oe_order_pub.line_adj_rec_type)
533: RETURN OE_ORDER_PUB.LINE_ADJ_REC_TYPE;
534:
535: ------------------------------------------------------------
536: -- Bug 1929163: overload load_top_model_line so that it can
537: -- be accessed both as a function and as a procedure

Line 544: RETURN OE_Order_PUB.Line_Rec_Type;

540: ( p_key IN NUMBER );
541:
542: FUNCTION Load_Top_Model_Line
543: ( p_key IN NUMBER)
544: RETURN OE_Order_PUB.Line_Rec_Type;
545:
546: FUNCTION Load_Set
547: ( p_set_id IN NUMBER)
548: RETURN set_rec_type;

Line 578: p_header_rec IN OE_ORDER_PUB.Header_Rec_Type

574: PROCEDURE Clear_Item_Cost;
575:
576: PROCEDURE Set_Order_Header
577: (
578: p_header_rec IN OE_ORDER_PUB.Header_Rec_Type
579: );
580:
581: PROCEDURE Clear_Order_Header;
582:

Line 611: p_line_rec IN OE_ORDER_PUB.Line_Rec_Type )

607: ( p_key IN NUMBER );
608:
609: FUNCTION get_tax_calculation_flag
610: ( p_key IN NUMBER,
611: p_line_rec IN OE_ORDER_PUB.Line_Rec_Type )
612: RETURN Tax_Calc_Rec_Type;
613:
614: FUNCTION IS_FLEX_ENABLED(p_flex_name IN VARCHAR2)
615: RETURN VARCHAR2 ;