DBA Data[Home] [Help]

APPS.OZF_OM_PAYMENT_PVT dependencies on OE_GLOBALS

Line 563: l_header_rec.operation := OE_GLOBALS.g_opr_create;

559: END IF;
560: --l_header_rec.order_date := sysdate;
561: --l_header_rec.pricing_date := sysdate;
562: l_header_rec.transactional_curr_code := p_x_claim_rec.currency_code;
563: l_header_rec.operation := OE_GLOBALS.g_opr_create;
564:
565: IF OZF_DEBUG_HIGH_ON THEN
566: OZF_Utility_PVT.debug_message(l_full_name||': RMA header - order_type_id : '||l_header_rec.order_type_id);
567: OZF_Utility_PVT.debug_message(l_full_name||': RMA header - sold_to_org_id : '||l_header_rec.sold_to_org_id);

Line 640: l_line_tbl(i).operation := OE_GLOBALS.g_opr_create;

636: OPEN csr_qp_list_price(p_claim_line_tbl(i).item_id, l_price_list_id);
637: FETCH csr_qp_list_price INTO l_line_tbl(i).unit_list_price;
638: CLOSE csr_qp_list_price;
639: --END IF;
640: l_line_tbl(i).operation := OE_GLOBALS.g_opr_create;
641:
642: IF OZF_DEBUG_HIGH_ON THEN
643: OZF_Utility_PVT.debug_message(l_full_name||': RMA line'||i||': '||l_line_tbl(i).inventory_item_id||'/'||l_line_tbl(i).ordered_quantity||'/'||l_line_tbl(i).order_quantity_uom||'/'||l_line_tbl(i).unit_list_price);
644: OZF_Utility_PVT.debug_message(l_full_name||': RMA line'||i||' reference: '||l_line_tbl(i).return_context||'/'||l_line_tbl(i).return_attribute1||'/'||l_line_tbl(i).return_attribute2);

Line 748: l_header_rec.operation := OE_GLOBALS.g_opr_update;

744: l_header_rec.header_id := l_x_header_rec.header_id;
745: -- [BEGIN OF BUG 3868264 FIXING]
746: l_header_rec.change_reason := 'SYSTEM';
747: -- [END OF BUG 3868264 FIXING]
748: l_header_rec.operation := OE_GLOBALS.g_opr_update;
749:
750: LOOP
751: IF p_claim_line_tbl(i).item_id = l_x_line_tbl(i).inventory_item_id THEN
752: l_line_tbl(i).line_id := l_x_line_tbl(i).line_id;

Line 756: l_line_tbl(i).operation := OE_GLOBALS.g_opr_update;

752: l_line_tbl(i).line_id := l_x_line_tbl(i).line_id;
753: -- [BEGIN OF BUG 3868264 FIXING]
754: l_line_tbl(i).change_reason := 'SYSTEM';
755: -- [END OF BUG 3868264 FIXING]
756: l_line_tbl(i).operation := OE_GLOBALS.g_opr_update;
757:
758: OPEN csr_rma_unit_price(l_x_line_tbl(i).line_id);
759: FETCH csr_rma_unit_price INTO l_rma_unit_price;
760: CLOSE csr_rma_unit_price;

Line 787: l_line_adj_tbl(l_adj_idx).operation := OE_GLOBALS.g_opr_create;

783: l_line_adj_tbl(l_adj_idx).applied_flag := 'Y';
784: -- [BEGIN OF BUG 3868264 FIXING]
785: l_line_adj_tbl(l_adj_idx).change_reason_code := 'SYSTEM';
786: -- [END OF BUG 3868264 FIXING]
787: l_line_adj_tbl(l_adj_idx).operation := OE_GLOBALS.g_opr_create;
788:
789: l_adj_idx := l_adj_idx + 1;
790: END IF;
791: END IF;

Line 1018: l_action_request_tbl(1).request_type := OE_GLOBALS.g_book_order;

1014: /*------------------------------------------------------*
1015: | Book RMA order
1016: *------------------------------------------------------*/
1017: l_action_request_tbl(1) := OE_ORDER_PUB.g_miss_request_rec;
1018: l_action_request_tbl(1).request_type := OE_GLOBALS.g_book_order;
1019: l_action_request_tbl(1).entity_code := OE_GLOBALS.g_entity_header;
1020: --l_action_request_tbl(1).entity_id := l_x_header_rec.header_id;
1021: l_action_request_tbl(1).entity_id := p_claim_rec.payment_reference_id;
1022:

Line 1019: l_action_request_tbl(1).entity_code := OE_GLOBALS.g_entity_header;

1015: | Book RMA order
1016: *------------------------------------------------------*/
1017: l_action_request_tbl(1) := OE_ORDER_PUB.g_miss_request_rec;
1018: l_action_request_tbl(1).request_type := OE_GLOBALS.g_book_order;
1019: l_action_request_tbl(1).entity_code := OE_GLOBALS.g_entity_header;
1020: --l_action_request_tbl(1).entity_id := l_x_header_rec.header_id;
1021: l_action_request_tbl(1).entity_id := p_claim_rec.payment_reference_id;
1022:
1023:

Line 1059: IF l_x_action_request_tbl(1).request_type <> OE_GLOBALS.g_book_order THEN

1055: ,x_Lot_Serial_val_tbl => l_x_Lot_Serial_val_tbl
1056:
1057: ,x_action_request_tbl => l_x_action_request_tbl
1058: );
1059: IF l_x_action_request_tbl(1).request_type <> OE_GLOBALS.g_book_order THEN
1060: FOR i in 1 .. l_oe_msg_count LOOP
1061: l_oe_msg_data := OE_MSG_PUB.get( p_msg_index => i
1062: , p_encoded => 'F'
1063: );