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 634: l_line_tbl(i).operation := OE_GLOBALS.g_opr_create;

630: OPEN csr_qp_list_price(p_claim_line_tbl(i).item_id, l_price_list_id);
631: FETCH csr_qp_list_price INTO l_line_tbl(i).unit_list_price;
632: CLOSE csr_qp_list_price;
633: --END IF;
634: l_line_tbl(i).operation := OE_GLOBALS.g_opr_create;
635:
636: IF OZF_DEBUG_HIGH_ON THEN
637: 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);
638: 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 742: l_header_rec.operation := OE_GLOBALS.g_opr_update;

738: l_header_rec.header_id := l_x_header_rec.header_id;
739: -- [BEGIN OF BUG 3868264 FIXING]
740: l_header_rec.change_reason := 'SYSTEM';
741: -- [END OF BUG 3868264 FIXING]
742: l_header_rec.operation := OE_GLOBALS.g_opr_update;
743:
744: LOOP
745: IF p_claim_line_tbl(i).item_id = l_x_line_tbl(i).inventory_item_id THEN
746: l_line_tbl(i).line_id := l_x_line_tbl(i).line_id;

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

746: l_line_tbl(i).line_id := l_x_line_tbl(i).line_id;
747: -- [BEGIN OF BUG 3868264 FIXING]
748: l_line_tbl(i).change_reason := 'SYSTEM';
749: -- [END OF BUG 3868264 FIXING]
750: l_line_tbl(i).operation := OE_GLOBALS.g_opr_update;
751:
752: OPEN csr_rma_unit_price(l_x_line_tbl(i).line_id);
753: FETCH csr_rma_unit_price INTO l_rma_unit_price;
754: CLOSE csr_rma_unit_price;

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

777: l_line_adj_tbl(l_adj_idx).applied_flag := 'Y';
778: -- [BEGIN OF BUG 3868264 FIXING]
779: l_line_adj_tbl(l_adj_idx).change_reason_code := 'SYSTEM';
780: -- [END OF BUG 3868264 FIXING]
781: l_line_adj_tbl(l_adj_idx).operation := OE_GLOBALS.g_opr_create;
782:
783: l_adj_idx := l_adj_idx + 1;
784: END IF;
785: END IF;

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

1008: /*------------------------------------------------------*
1009: | Book RMA order
1010: *------------------------------------------------------*/
1011: l_action_request_tbl(1) := OE_ORDER_PUB.g_miss_request_rec;
1012: l_action_request_tbl(1).request_type := OE_GLOBALS.g_book_order;
1013: l_action_request_tbl(1).entity_code := OE_GLOBALS.g_entity_header;
1014: --l_action_request_tbl(1).entity_id := l_x_header_rec.header_id;
1015: l_action_request_tbl(1).entity_id := p_claim_rec.payment_reference_id;
1016:

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

1009: | Book RMA order
1010: *------------------------------------------------------*/
1011: l_action_request_tbl(1) := OE_ORDER_PUB.g_miss_request_rec;
1012: l_action_request_tbl(1).request_type := OE_GLOBALS.g_book_order;
1013: l_action_request_tbl(1).entity_code := OE_GLOBALS.g_entity_header;
1014: --l_action_request_tbl(1).entity_id := l_x_header_rec.header_id;
1015: l_action_request_tbl(1).entity_id := p_claim_rec.payment_reference_id;
1016:
1017:

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

1049: ,x_Lot_Serial_val_tbl => l_x_Lot_Serial_val_tbl
1050:
1051: ,x_action_request_tbl => l_x_action_request_tbl
1052: );
1053: IF l_x_action_request_tbl(1).request_type <> OE_GLOBALS.g_book_order THEN
1054: FOR i in 1 .. l_oe_msg_count LOOP
1055: l_oe_msg_data := OE_MSG_PUB.get( p_msg_index => i
1056: , p_encoded => 'F'
1057: );