Is there a way to configure a replenishment order such that it auto submits and creates the resulting RPLO IMOs, or is there an API command/macro that we can execute on a process flow to submit an open Replenishment Order?

Is there a way to configure a replenishment order such that it auto submits and creates the resulting RPLO IMOs, or is there an API command/macro that we can execute on a process flow to submit an open Replenishment Order?

Best answer by csjohnstone
Never mind! I figured it out.
Process Flow Data Query to get Open Replenishment Orders:
1select replenish_order_id2from repl_order_hdr3where repl_order_stat = '100'4-- and warehouse_id = 'XXX'Process Flow Action to Submit:
1<root2 xmlns:dt="urn:schemas-microsoft-com:datatypes">3 <session email="" alias="">4 <state bc_name="replenishment">5 <action name="data">6 <main>7 <row>8 <replenish_order_id dtype="string" in_var="" out_var="">{replenish_order_id}</replenish_order_id>9 </row>10 </main>11 </action>12 <action name="execmacro">13 <attribute bo_name="main" macro_name="CreateIMOPR" />14 <attribute dtype="string" in_var="" value="N" />15 </action>16 </state>17 </session>18</root>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.