DBA Data[Home] [Help]

APPS.OE_ORDER_CACHE dependencies on OE_ORDER_PUB

Line 395: g_header_rec OE_Order_PUB.Header_Rec_Type;

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

Line 415: g_top_model_line_rec OE_Order_PUB.Line_Rec_Type;

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

Line 524: RETURN OE_Order_PUB.Header_Rec_Type;

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

Line 527: ( p_hdr_adj_rec IN oe_order_pub.header_adj_rec_type)

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

Line 528: RETURN OE_ORDER_PUB.HEADER_ADJ_REC_TYPE;

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

Line 531: ( p_line_adj_rec IN oe_order_pub.line_adj_rec_type)

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

Line 532: RETURN OE_ORDER_PUB.LINE_ADJ_REC_TYPE;

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

Line 543: RETURN OE_Order_PUB.Line_Rec_Type;

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

Line 577: p_header_rec IN OE_ORDER_PUB.Header_Rec_Type

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

Line 610: p_line_rec IN OE_ORDER_PUB.Line_Rec_Type )

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