DBA Data[Home] [Help]

APPS.OE_COMMITMENT_PVT dependencies on OE_ORDER_PUB

Line 161: ( p_line_rec IN OE_ORDER_PUB.line_rec_type

157:
158: END evaluate_commitment;
159:
160: FUNCTION Get_Allocate_Tax_Freight
161: ( p_line_rec IN OE_ORDER_PUB.line_rec_type
162: ) RETURN VARCHAR2 IS
163:
164: l_allocate_tax_freight VARCHAR2(1);
165: v_CursorID INTEGER;

Line 237: ( p_line_rec IN OE_ORDER_PUB.line_rec_type

233: END Get_Allocate_Tax_Freight;
234:
235: -- get the total amount of an order line according to allocate_tax_freight flag.
236: FUNCTION Get_Line_Total
237: ( p_line_rec IN OE_ORDER_PUB.line_rec_type
238: ) RETURN NUMBER IS
239:
240: l_return_status VARCHAR2(30) := FND_API.G_RET_STS_SUCCESS;
241: l_total NUMBER;

Line 297: p_request_rec IN OE_Order_PUB.request_rec_type

293: END Get_Line_Total;
294:
295:
296: PROCEDURE calculate_commitment(
297: p_request_rec IN OE_Order_PUB.request_rec_type
298: ,x_return_status OUT NOCOPY VARCHAR2
299:
300: )
301: IS

Line 303: l_line_rec OE_ORDER_PUB.Line_Rec_Type;

299:
300: )
301: IS
302: l_line_id NUMBER := p_request_rec.entity_id;
303: l_line_rec OE_ORDER_PUB.Line_Rec_Type;
304: l_payment_types_rec OE_PAYMENTS_UTIL.Payment_Types_Rec_Type;
305: l_payment_types_tbl OE_PAYMENTS_UTIL.Payment_Types_Tbl_Type;
306: l_return_status VARCHAR2(30) := FND_API.G_RET_STS_SUCCESS;
307: l_header_id NUMBER;

Line 412: l_line_rec := OE_ORDER_PUB.G_MISS_LINE_REC;

408: );
409: END IF;
410:
411: -- populating l_line_rec.
412: l_line_rec := OE_ORDER_PUB.G_MISS_LINE_REC;
413: l_line_rec.commitment_id := l_new_commitment_id;
414: l_line_rec.header_id := l_header_id;
415: l_line_rec.line_id := l_line_id;
416: l_line_rec.ordered_quantity := l_ordered_quantity;

Line 794: l_children_line_rec OE_ORDER_PUB.Line_Rec_Type;

790: l_payment_types_rec OE_PAYMENTS_UTIL.Payment_Types_Rec_Type;
791: l_payment_types_tbl OE_PAYMENTS_UTIL.Payment_Types_Tbl_Type;
792: l_children_line_id NUMBER;
793: l_children_commitment NUMBER;
794: l_children_line_rec OE_ORDER_PUB.Line_Rec_Type;
795: l_children_commitment_id NUMBER;
796: l_children_header_id NUMBER;
797: l_children_ordered_quantity NUMBER;
798: l_children_unit_selling_price NUMBER;

Line 888: l_children_line_rec := OE_ORDER_PUB.G_MISS_LINE_REC;

884:
885: EXIT WHEN l_split_lines_cur%NOTFOUND;
886:
887: -- populating l_line_rec.
888: l_children_line_rec := OE_ORDER_PUB.G_MISS_LINE_REC;
889: l_children_line_rec.commitment_id := l_children_commitment_id;
890: l_children_line_rec.header_id := l_children_header_id;
891: l_children_line_rec.line_id := l_children_line_id;
892: l_children_line_rec.ordered_quantity := l_children_ordered_quantity;