DBA Data[Home] [Help]

APPS.OE_ORDER_WF_UTIL dependencies on OE_ORDER_WF_UTIL

Line 1: PACKAGE BODY OE_Order_Wf_Util AS

1: PACKAGE BODY OE_Order_Wf_Util AS
2: /* $Header: OEXUOWFB.pls 120.17.12010000.3 2008/10/31 20:51:55 snimmaga ship $ */
3:
4: -- record for dynamic notification body for quote/blanket
5: TYPE line_record IS RECORD (

Line 693: l_item_type := OE_Order_Wf_Util.get_wf_item_type(p_line_rec);

689: END IF;
690: CreateStart_LineFork(p_Line_rec);
691: ELSE -- Regular Flow creation
692: -- Get Wf itme type
693: l_item_type := OE_Order_Wf_Util.get_wf_item_type(p_line_rec);
694: IF l_debug_level > 0 THEN
695: oe_debug_pub.add( 'IN CREATESTART_LINEPROCESS' ) ;
696: END IF;
697: Create_LineWorkItem(p_Line_rec, l_item_type);

Line 1175: l_item_type := OE_Order_Wf_Util.get_wf_item_type(l_line_rec);

1171: OE_Line_Util.Query_Row
1172: ( p_line_id => OE_GLOBALS.G_START_LINE_FLOWS_TBL(CTR).line_id
1173: ,x_line_rec => l_line_rec);
1174:
1175: l_item_type := OE_Order_Wf_Util.get_wf_item_type(l_line_rec);
1176:
1177: Create_LineWorkItem(l_line_rec, l_item_type);
1178:
1179: END IF; -- if post_write_ato_line_id <> l_ato_line_id

Line 1323: oe_debug_pub.add( 'IN OE_ORDER_WF_UTIL.DELETE_ROW' ) ;

1319: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
1320: --
1321: BEGIN
1322: IF l_debug_level > 0 THEN
1323: oe_debug_pub.add( 'IN OE_ORDER_WF_UTIL.DELETE_ROW' ) ;
1324: END IF;
1325:
1326: IF p_type = 'HEADER' THEN
1327: WF_ENGINE.ItemStatus(itemtype => OE_GLOBALS.G_WFI_HDR,

Line 1427: oe_debug_pub.add( 'OE_ORDER_WF_UTIL: DELETE TYPE NOT IN HEADER,LINE,NEGOTIATE,BLANKET' ) ;

1423: END IF;
1424:
1425: ELSE
1426: IF l_debug_level > 0 THEN
1427: oe_debug_pub.add( 'OE_ORDER_WF_UTIL: DELETE TYPE NOT IN HEADER,LINE,NEGOTIATE,BLANKET' ) ;
1428: END IF;
1429: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1430: THEN
1431: OE_MSG_PUB.Add_Exc_Msg

Line 1439: oe_debug_pub.add( 'EXITING OE_ORDER_WF_UTIL.DELETE_ROW' ) ;

1435: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1436: END IF;
1437: END IF;
1438: IF l_debug_level > 0 THEN
1439: oe_debug_pub.add( 'EXITING OE_ORDER_WF_UTIL.DELETE_ROW' ) ;
1440: END IF;
1441:
1442: END Delete_Row;
1443:

Line 3072: OE_Order_WF_Util.build_blanket_doc (p_item_type => l_item_type,

3068:
3069:
3070: IF l_blanket_flag = 'Y' THEN
3071:
3072: OE_Order_WF_Util.build_blanket_doc (p_item_type => l_item_type,
3073: p_item_key => l_item_key,
3074: p_display_type => display_type,
3075: p_x_document => l_document);
3076:

Line 3083: OE_Order_WF_Util.build_quote_doc (p_item_type => l_item_type,

3079: -- Sales Document is Quote --
3080: -----------------------------
3081: ELSE -- l_blanket_flag = 'N'
3082:
3083: OE_Order_WF_Util.build_quote_doc (p_item_type => l_item_type,
3084: p_item_key => l_item_key,
3085: p_display_type => display_type,
3086: p_x_document => l_document);
3087:

Line 3206: l_credit_hold := OE_Order_Wf_Util.check_credit_hold (p_hold_entity_code => 'O',

3202: and terms.language(+) = userenv('LANG');
3203:
3204:
3205: --- ??? Check with the PM
3206: l_credit_hold := OE_Order_Wf_Util.check_credit_hold (p_hold_entity_code => 'O',
3207: p_hold_entity_id => l_transaction_id);
3208:
3209:
3210:

Line 3496: l_credit_hold := OE_Order_Wf_Util.check_credit_hold (p_hold_entity_code => 'O',

3492: -- Build the header attribute values
3493: l_order_total := OE_OE_TOTALS_SUMMARY.PRT_ORDER_TOTAL(l_transaction_id);
3494:
3495: --- ???? Check with PM
3496: l_credit_hold := OE_Order_Wf_Util.check_credit_hold (p_hold_entity_code => 'O',
3497: p_hold_entity_id => l_transaction_id);
3498: OE_MARGIN_PVT.Get_Order_Margin ( p_header_id => l_transaction_id,
3499: x_order_margin_percent => l_order_margin_percent,
3500: x_order_margin_amount => l_order_margin_amount);

Line 3992: END OE_Order_Wf_Util;

3988: end Complete_eligible_and_Book;
3989:
3990:
3991:
3992: END OE_Order_Wf_Util;