When sales orders are pushed into Acumatica and are in a status of Open but the Sales Order has not been approved in Acumatica, the BigCommerce Connector pushes back a status update to the order in BigCommerce and changes the order status to “Manual Verification Required”. Is there a way we can change that mapping and/or ignore that in the connector?
Solved
Status of Open but not approved in Acumatica mapping in BigCommerce to Manual Verification Required
Best answer by smarenich

Please note that you have to type StatusId in the field, it wont give you selection. Field is case sensetive.
Formula:
=Switch(
[SalesOrder.Status]='Back Order', 3,
[SalesOrder.Status]='Cancelled', 5,
[SalesOrder.Status]='Completed', 2,
[SalesOrder.Status]='Credit Hold', 12,
[SalesOrder.Status]='Hold', 1,
[SalesOrder.Status]='Open', 11,
[SalesOrder.Status]='Pending Approval', 11,
[SalesOrder.Status]='Shipping', 9,
[SalesOrder.Status]='Rejected', 6,
[SalesOrder.Status]='Invoiced', 11,
11)
11 here means Awaiting Fulfilment Status
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.