Creating Sales Order in Booked status using OE_ORDER_PUB.process_order
Hi
We have assigned booked_flag='Y' at header level
l_header_rec.booked_flag := 'Y';
and at line level
l_line_tbl_index := 1;
l_action_request_tbl(l_line_tbl_index) := oe_order_pub.G_MISS_REQUEST_REC;
l_action_request_tbl(l_line_tbl_index).request_type := oe_globals.g_book_order;
l_action_request_tbl(l_line_tbl_index).entity_code := oe_globals.g_entity_header;
When order is created at header level STATUS (FLOW_STATUS_CODE) is showing as ENTERED where as at line level STATUS (FLOW_STATUS_CODE) BOOKED,
Need help in Creating Order at header level as booked, Would like to know what other fields we need to populate at header.