Ref: How to Re-Price an Existing Order Using Process Order API (Doc ID 2212209.1)
SET SERVEROUTPUT ON
DECLARE
/* Initialize the proper Context */
l_org_id NUMBER := 204;
l_application_id NUMBER := 660;
l_responsibility_id NUMBER := 21623;
l_user_id NUMBER := 1013618;
/* Initialize the record to G_MISS to enable defaulting */
l_header_rec oe_order_pub.header_rec_type := oe_order_pub.g_miss_header_rec;
l_old_header_rec oe_order_pub.header_rec_type;
l_line_tbl oe_order_pub.line_tbl_type;
l_old_line_tbl oe_order_pub.line_tbl_type;
l_action_request_tbl oe_order_pub.request_tbl_type;
x_header_rec oe_order_pub.header_rec_type;
x_header_val_rec oe_order_pub.header_val_rec_type;
x_header_adj_tbl oe_order_pub.header_adj_tbl_type;
x_header_adj_val_tbl oe_order_pub.header_adj_val_tbl_type;
x_header_price_att_tbl oe_order_pub.header_price_att_tbl_type;
x_header_adj_att_tbl oe_order_pub.header_adj_att_tbl_type;
x_header_adj_assoc_tbl oe_order_pub.header_adj_assoc_tbl_type;
x_header_scredit_tbl oe_order_pub.header_scredit_tbl_type;
x_header_scredit_val_tbl oe_order_pub.header_scredit_val_tbl_type;
x_line_tbl oe_order_pub.line_tbl_type;
x_line_val_tbl oe_order_pub.line_val_tbl_type;
x_line_adj_tbl oe_order_pub.line_adj_tbl_type;
x_line_adj_val_tbl oe_order_pub.line_adj_val_tbl_type;
x_line_price_att_tbl oe_order_pub.line_price_att_tbl_type;
x_line_adj_att_tbl oe_order_pub.line_adj_att_tbl_type;
x_line_adj_assoc_tbl oe_order_pub.line_adj_assoc_tbl_type;
x_line_scredit_tbl oe_order_pub.line_scredit_tbl_type;
x_line_scredit_val_tbl oe_order_pub.line_scredit_val_tbl_type;
x_lot_serial_tbl oe_order_pub.lot_serial_tbl_type;
x_lot_serial_val_tbl oe_order_pub.lot_serial_val_tbl_type;
x_action_request_tbl oe_order_pub.request_tbl_type;
l_return_status VARCHAR2(2000);
l_msg_count NUMBER;
l_msg_data VARCHAR2(2000);
l_file_val VARCHAR2(1000);
l_msg_index_out NUMBER(10); --Added --this statement
l_line_cnt NUMBER := 0;
l_top_model_line_index NUMBER;
l_link_to_line_index NUMBER;
BEGIN
/* Set the appropriate context */
fnd_global.apps_initialize(l_user_id
, l_responsibility_id
, l_application_id
, NULL);
mo_global.init('ONT'); --Muti-org context setting
mo_global.set_policy_context('S'
, 204); -- org_id
/* Turn on OM Debug */
oe_debug_pub.debug_on;
oe_debug_pub.initialize;
oe_debug_pub.setdebuglevel(5);
l_file_val := oe_debug_pub.set_debug_mode('FILE');
DBMS_OUTPUT.put_line( 'Debug log is stored at: '
|| l_file_val);
oe_debug_pub.add('START OF NEW DEBUG'); --Added this statement
/* Populate the required Header Fields */
l_header_rec.operation := oe_globals.g_opr_update;
l_header_rec.header_id:= 262917; -- header_id of order to reprice
/* Populate the Actions Table for Header */
l_action_request_tbl(1).request_type := oe_globals.g_price_order;
l_action_request_tbl(1).entity_code:= oe_globals.g_entity_header;
l_action_request_tbl(1).entity_id:= l_header_rec.header_id;
/* Call the Process Order API with Header Rec and Line Tbl */
oe_order_pub.process_order(
p_api_version_number => 1.0
, p_org_id => l_org_id -- For R12
, p_init_msg_list => fnd_api.g_true
, p_return_values => fnd_api.g_true
, p_action_commit => fnd_api.g_true
, x_return_status => l_return_status
, x_msg_count => l_msg_count
, x_msg_data => l_msg_data
, p_action_request_tbl => l_action_request_tbl
, p_header_rec => l_header_rec
, p_old_header_rec => l_old_header_rec
, p_line_tbl => l_line_tbl
, p_old_line_tbl => l_old_line_tbl
, x_header_rec => x_header_rec
, x_header_val_rec => x_header_val_rec
, x_header_adj_tbl => x_header_adj_tbl
, x_header_adj_val_tbl => x_header_adj_val_tbl
, x_header_price_att_tbl => x_header_price_att_tbl
, x_header_adj_att_tbl => x_header_adj_att_tbl
, x_header_adj_assoc_tbl => x_header_adj_assoc_tbl
, x_header_scredit_tbl => x_header_scredit_tbl
, x_header_scredit_val_tbl => x_header_scredit_val_tbl
, x_line_tbl => x_line_tbl
, x_line_val_tbl => x_line_val_tbl
, x_line_adj_tbl => x_line_adj_tbl
, x_line_adj_val_tbl => x_line_adj_val_tbl
, x_line_price_att_tbl => x_line_price_att_tbl
, x_line_adj_att_tbl => x_line_adj_att_tbl
, x_line_adj_assoc_tbl => x_line_adj_assoc_tbl
, x_line_scredit_tbl => x_line_scredit_tbl
, x_line_scredit_val_tbl => x_line_scredit_val_tbl
, x_lot_serial_tbl => x_lot_serial_tbl
, x_lot_serial_val_tbl => x_lot_serial_val_tbl
, x_action_request_tbl => x_action_request_tbl);
-- Retrieve messages
FOR i IN 1 .. l_msg_count
LOOP
oe_msg_pub.get(
p_msg_index => i
, p_encoded => fnd_api.g_false
, p_data => l_msg_data
, p_msg_index_out => l_msg_index_out);
DBMS_OUTPUT.put_line( 'message is: '
|| l_msg_data);
DBMS_OUTPUT.put_line( 'message index is: '
|| l_msg_index_out);
END LOOP;
-- Check the return status
/*added statements above */
/* Display the status and Order Number if successfully created */
IF l_return_status = 'S'
THEN
DBMS_OUTPUT.put_line( 'Order Number : '
|| x_header_rec.order_number
|| '; Header Id : '
|| x_header_rec.header_id);
ELSE
DBMS_OUTPUT.put_line('Error(s) while repricing Order.');
DBMS_OUTPUT.put_line( l_msg_count
|| ';'
|| l_msg_data);
END IF;
/* Display the messages in the message stack */
FOR i IN 1 .. oe_msg_pub.g_msg_tbl.COUNT
LOOP
DBMS_OUTPUT.put_line(apps.oe_msg_pub.get(i
, 'F'));
END LOOP;
/* Turn off OM Debug */
oe_debug_pub.debug_off;
oe_msg_pub.g_msg_tbl.delete;
END;
/
SET SERVEROUTPUT ON
DECLARE
/* Initialize the proper Context */
l_org_id NUMBER := 204;
l_application_id NUMBER := 660;
l_responsibility_id NUMBER := 21623;
l_user_id NUMBER := 1013618;
/* Initialize the record to G_MISS to enable defaulting */
l_header_rec oe_order_pub.header_rec_type := oe_order_pub.g_miss_header_rec;
l_old_header_rec oe_order_pub.header_rec_type;
l_line_tbl oe_order_pub.line_tbl_type;
l_old_line_tbl oe_order_pub.line_tbl_type;
l_action_request_tbl oe_order_pub.request_tbl_type;
x_header_rec oe_order_pub.header_rec_type;
x_header_val_rec oe_order_pub.header_val_rec_type;
x_header_adj_tbl oe_order_pub.header_adj_tbl_type;
x_header_adj_val_tbl oe_order_pub.header_adj_val_tbl_type;
x_header_price_att_tbl oe_order_pub.header_price_att_tbl_type;
x_header_adj_att_tbl oe_order_pub.header_adj_att_tbl_type;
x_header_adj_assoc_tbl oe_order_pub.header_adj_assoc_tbl_type;
x_header_scredit_tbl oe_order_pub.header_scredit_tbl_type;
x_header_scredit_val_tbl oe_order_pub.header_scredit_val_tbl_type;
x_line_tbl oe_order_pub.line_tbl_type;
x_line_val_tbl oe_order_pub.line_val_tbl_type;
x_line_adj_tbl oe_order_pub.line_adj_tbl_type;
x_line_adj_val_tbl oe_order_pub.line_adj_val_tbl_type;
x_line_price_att_tbl oe_order_pub.line_price_att_tbl_type;
x_line_adj_att_tbl oe_order_pub.line_adj_att_tbl_type;
x_line_adj_assoc_tbl oe_order_pub.line_adj_assoc_tbl_type;
x_line_scredit_tbl oe_order_pub.line_scredit_tbl_type;
x_line_scredit_val_tbl oe_order_pub.line_scredit_val_tbl_type;
x_lot_serial_tbl oe_order_pub.lot_serial_tbl_type;
x_lot_serial_val_tbl oe_order_pub.lot_serial_val_tbl_type;
x_action_request_tbl oe_order_pub.request_tbl_type;
l_return_status VARCHAR2(2000);
l_msg_count NUMBER;
l_msg_data VARCHAR2(2000);
l_file_val VARCHAR2(1000);
l_msg_index_out NUMBER(10); --Added --this statement
l_line_cnt NUMBER := 0;
l_top_model_line_index NUMBER;
l_link_to_line_index NUMBER;
BEGIN
/* Set the appropriate context */
fnd_global.apps_initialize(l_user_id
, l_responsibility_id
, l_application_id
, NULL);
mo_global.init('ONT'); --Muti-org context setting
mo_global.set_policy_context('S'
, 204); -- org_id
/* Turn on OM Debug */
oe_debug_pub.debug_on;
oe_debug_pub.initialize;
oe_debug_pub.setdebuglevel(5);
l_file_val := oe_debug_pub.set_debug_mode('FILE');
DBMS_OUTPUT.put_line( 'Debug log is stored at: '
|| l_file_val);
oe_debug_pub.add('START OF NEW DEBUG'); --Added this statement
/* Populate the required Header Fields */
l_header_rec.operation := oe_globals.g_opr_update;
l_header_rec.header_id:= 262917; -- header_id of order to reprice
/* Populate the Actions Table for Header */
l_action_request_tbl(1).request_type := oe_globals.g_price_order;
l_action_request_tbl(1).entity_code:= oe_globals.g_entity_header;
l_action_request_tbl(1).entity_id:= l_header_rec.header_id;
/* Call the Process Order API with Header Rec and Line Tbl */
oe_order_pub.process_order(
p_api_version_number => 1.0
, p_org_id => l_org_id -- For R12
, p_init_msg_list => fnd_api.g_true
, p_return_values => fnd_api.g_true
, p_action_commit => fnd_api.g_true
, x_return_status => l_return_status
, x_msg_count => l_msg_count
, x_msg_data => l_msg_data
, p_action_request_tbl => l_action_request_tbl
, p_header_rec => l_header_rec
, p_old_header_rec => l_old_header_rec
, p_line_tbl => l_line_tbl
, p_old_line_tbl => l_old_line_tbl
, x_header_rec => x_header_rec
, x_header_val_rec => x_header_val_rec
, x_header_adj_tbl => x_header_adj_tbl
, x_header_adj_val_tbl => x_header_adj_val_tbl
, x_header_price_att_tbl => x_header_price_att_tbl
, x_header_adj_att_tbl => x_header_adj_att_tbl
, x_header_adj_assoc_tbl => x_header_adj_assoc_tbl
, x_header_scredit_tbl => x_header_scredit_tbl
, x_header_scredit_val_tbl => x_header_scredit_val_tbl
, x_line_tbl => x_line_tbl
, x_line_val_tbl => x_line_val_tbl
, x_line_adj_tbl => x_line_adj_tbl
, x_line_adj_val_tbl => x_line_adj_val_tbl
, x_line_price_att_tbl => x_line_price_att_tbl
, x_line_adj_att_tbl => x_line_adj_att_tbl
, x_line_adj_assoc_tbl => x_line_adj_assoc_tbl
, x_line_scredit_tbl => x_line_scredit_tbl
, x_line_scredit_val_tbl => x_line_scredit_val_tbl
, x_lot_serial_tbl => x_lot_serial_tbl
, x_lot_serial_val_tbl => x_lot_serial_val_tbl
, x_action_request_tbl => x_action_request_tbl);
-- Retrieve messages
FOR i IN 1 .. l_msg_count
LOOP
oe_msg_pub.get(
p_msg_index => i
, p_encoded => fnd_api.g_false
, p_data => l_msg_data
, p_msg_index_out => l_msg_index_out);
DBMS_OUTPUT.put_line( 'message is: '
|| l_msg_data);
DBMS_OUTPUT.put_line( 'message index is: '
|| l_msg_index_out);
END LOOP;
-- Check the return status
/*added statements above */
/* Display the status and Order Number if successfully created */
IF l_return_status = 'S'
THEN
DBMS_OUTPUT.put_line( 'Order Number : '
|| x_header_rec.order_number
|| '; Header Id : '
|| x_header_rec.header_id);
ELSE
DBMS_OUTPUT.put_line('Error(s) while repricing Order.');
DBMS_OUTPUT.put_line( l_msg_count
|| ';'
|| l_msg_data);
END IF;
/* Display the messages in the message stack */
FOR i IN 1 .. oe_msg_pub.g_msg_tbl.COUNT
LOOP
DBMS_OUTPUT.put_line(apps.oe_msg_pub.get(i
, 'F'));
END LOOP;
/* Turn off OM Debug */
oe_debug_pub.debug_off;
oe_msg_pub.g_msg_tbl.delete;
END;
/
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.