PO Post Date - When was a PO last printed?

Good morning,
I am trying to figure out what the Post Date field is for in the PO Header. The help file is not helpful:
“Date Buyer posted the PO”
As far as I can tell this field is blank for all of our POs, and always has been. I also don’t see a way to post a PO.

I started looking at this field because we want to know the last time a PO was printed. Similar to the way we know the last time a packing slip was printed. This is to help avoid sending the same PO to a vendor more than once. In the Approved PO list we can’t easily tell if a PO has been sent to a vendor.

I figure I can write a directive to store the date the PO was printed into a UD field. But I am not sure how to catch that event, or if this feature already exists in Epicor. And what the heck is PO Post Date for? Can I use it for this?
Thanks for your time!
Nate

Trace grasshopper.

image

1 Like

It looks like I could tap into Erp.Proxy.Rpt.POFormImpl.SubmitToAgent() to track the date myself. I just don’t want to duplicate efforts if this functionality is already there.

I certainly understand. Now you know how if it doesn’t.

1 Like

I don’t think it is there. But if you use a routing rule to email the POs to the vendor you can copy (or bcc) yourself or some mailbox in the routing rule so you could always check the mailbox to see what was sent and when.

Continuing in a new related thread: Show Message on Method Directive Not Working

Vote here!

Add PO Last Printed Date to PO Entry and | Epicor Kinetic Ideas (aha.io)

My only quibble with this is you don’t actually know that it was sent to the vendor just because it was printed . . . but I still see some utility in storing the last-printed date.

1 Like

Totally true! In this case we only have one user that needs his POs approved, and he will see a record of each time the PO has been printed along with the user ID of the person that initiated the print. This should help him know that he printed the PO last week, or that someone else printed it.

I have implemented tracking of the last printed date based on the SubmitToAgent method. I am collecting the data in UD11. It all works great. Part of my form allows users to choose a PO and click a button to open the PO in PO Entry. Here is the code on my custom form side:

	private void epiButtonC1_Click(object sender, System.EventArgs args)
	{
		oTrans.PushStatusText("Opening Purchase Order. Please wait...", false); 
		EpiDataView edvPrintedPOs = (EpiDataView)(oTrans.EpiDataViews["V_VTAERO_Printed_1View"]);
		string myPONum = edvPrintedPOs.dataView[edvPrintedPOs.Row]["POHeader_PONum"].ToString();

		LaunchFormOptions objLaunch = new LaunchFormOptions();
		objLaunch.ValueIn = Convert.ToString(myPONum);
		objLaunch.IsModal = false;
		ProcessCaller.LaunchForm(oTrans,"PMGO2001", objLaunch, true);
		oTrans.PushStatusText("Done!", false); 
	}

And here is the code inside the PO Entry form:

	private void POEntryForm_Activated(object sender, EventArgs args)
		{
			// Add Event Handler Code
			POAdapter objPO = new POAdapter(oTrans);
			objPO.BOConnect();
			if (POEntryForm.LaunchFormOptions != null)
			{
				if (POEntryForm.LaunchFormOptions.ValueIn != null)
				{
					string PONum = Convert.ToString(POEntryForm.LaunchFormOptions.ValueIn);
					if (objPO.GetByID(PONum) == true)
					{
						SearchOptions searchOpts = new SearchOptions(SearchMode.AutoSearch);
						bool blnMorePages = true;
						searchOpts.DataSetMode = DataSetMode.RowsDataSet;
						searchOpts.PreLoadSearchFilter = "PONum = " + PONum;
						oTrans.InvokeSearch(searchOpts);
						oTrans.Refresh();
						searchOpts = null;
					}
				}
			}
		}

This works ok, but the problem is that it is quite slow to respond (hence the status notifications). Am I doing something wrong in the way I open the form? I expect the form to open as quickly as it does from PO Approval Activity.
Thanks!

Maybe if I can call the print dialog box directly from my form, it will not need to open the PO Entry form (should be faster?)
I looked through my trace, but I dont see a print method. Can I call up the PO print dialog box from my custom dashboard, and pass in the PONum through lauch form options?

<tracePacket>
  <businessObject>Ice.Proxy.BO.GenXDataImpl</businessObject>
  <methodName>GetRows</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>Ice.BO.GenXDataDataSet</returnType>
  <localTime>7/24/2023 08:32:22:5277598 AM</localTime>
  <threadID>1</threadID>
  <correlationId>5457b292-f46f-4c92-bfc6-999111d82ce6</correlationId>
  <executionTime total="88" roundTrip="75" channel="0" bpm="0" bpmDataForm="0" other="13" />
  <retries>0</retries>
  <parameters>
    <parameter name="whereClauseXXXDef" type="System.String"><![CDATA[Company='VTAERO' AND ProductID='EP' AND TypeCode='ProcessCallXReff' AND CGCCode='' AND Key1='ProcessXrefCustom' AND Key2='' AND Key3='']]></parameter>
    <parameter name="pageSize" type="System.Int32"><![CDATA[0]]></parameter>
    <parameter name="absolutePage" type="System.Int32"><![CDATA[0]]></parameter>
  </parameters>
  <returnValues>
    <returnParameter name="" type="Ice.BO.GenXDataDataSet">
      <GenXDataDataSet xmlns="http://www.epicor.com/Ice/300/BO/GenXData/GenXData" />
    </returnParameter>
    <returnParameter name="morePages" type="System.Boolean"><![CDATA[False]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.BO.SysUserMenuPreferenceImpl</businessObject>
  <methodName>GetRows</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>Ice.BO.SysUserMenuPreferenceDataSet</returnType>
  <localTime>7/24/2023 08:32:22:7046215 AM</localTime>
  <threadID>1</threadID>
  <correlationId>e62344b9-e362-4041-bed1-67c8153ccb31</correlationId>
  <executionTime total="100" roundTrip="93" channel="0" bpm="0" bpmDataForm="0" other="7" />
  <retries>0</retries>
  <parameters>
    <parameter name="whereClauseSysUserMenuPreference" type="System.String"><![CDATA[Company='VTAERO' AND UserID='NATHAN']]></parameter>
    <parameter name="pageSize" type="System.Int32"><![CDATA[0]]></parameter>
    <parameter name="absolutePage" type="System.Int32"><![CDATA[0]]></parameter>
  </parameters>
  <returnValues>
    <returnParameter name="" type="Ice.BO.SysUserMenuPreferenceDataSet">
      <SysUserMenuPreferenceDataSet xmlns="http://www.epicor.com/Ice/300/BO/SysUserMenuPreference/SysUserMenuPreference">
        <SysUserMenuPreference>
          <Company>VTAERO</Company>
          <UserID>NATHAN</UserID>
          <MenuID>JCMT1045</MenuID>
          <DefaultFormType>Default</DefaultFormType>
          <SysRevID>113653246</SysRevID>
          <SysRowID>c8577a80-65a8-487c-9f05-b41bd79995f0</SysRowID>
          <BitFlag>0</BitFlag>
          <RowMod></RowMod>
        </SysUserMenuPreference>
      </SysUserMenuPreferenceDataSet>
    </returnParameter>
    <returnParameter name="morePages" type="System.Boolean"><![CDATA[False]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.Lib.BOReaderImpl</businessObject>
  <methodName>GetList</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>System.Data.DataSet</returnType>
  <localTime>7/24/2023 08:32:22:8134221 AM</localTime>
  <threadID>1</threadID>
  <correlationId>aa46261c-b6b4-4ec7-b87d-9c33bcc5da19</correlationId>
  <executionTime total="76" roundTrip="76" channel="0" bpm="0" bpmDataForm="0" other="0" />
  <retries>0</retries>
  <parameters>
    <parameter name="serviceNamespace" type="System.String"><![CDATA[Ice:BO:LangName]]></parameter>
    <parameter name="whereClause" type="System.String"><![CDATA[LangNameID='ENU']]></parameter>
    <parameter name="columnList" type="System.String"><![CDATA[LangNameID,TransVer,Culture,Description,HasTrans,ParentLangID]]></parameter>
  </parameters>
  <returnValues>
    <returnParameter name="" type="System.Data.DataSet">
      <NewDataSet>
        <LangNameList>
          <LangNameID>enu</LangNameID>
          <TransVer>0</TransVer>
          <Culture>en</Culture>
          <Description>English/United States</Description>
          <HasTrans>true</HasTrans>
          <ParentLangID>vtg</ParentLangID>
        </LangNameList>
      </NewDataSet>
    </returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.BO.SysAgentImpl</businessObject>
  <methodName>GetDefaultTaskAgentID</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>System.Void</returnType>
  <localTime>7/24/2023 08:32:23:1914471 AM</localTime>
  <threadID>1</threadID>
  <correlationId>6ae6634d-4689-40bf-a0d8-cfea38a91e8b</correlationId>
  <executionTime total="77" roundTrip="76" channel="0" bpm="0" bpmDataForm="0" other="1" />
  <retries>0</retries>
  <parameters />
  <returnValues>
    <returnParameter name="defaultAgentID" type="System.String"><![CDATA[SystemTaskAgent]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.BO.SysAgentImpl</businessObject>
  <methodName>GetAgentSchedList</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>Ice.BO.SysAgentSchedListDataSet</returnType>
  <localTime>7/24/2023 08:32:23:2697128 AM</localTime>
  <threadID>1</threadID>
  <correlationId>914f55d0-8e32-4999-9d40-f342cf2847ac</correlationId>
  <executionTime total="92" roundTrip="82" channel="0" bpm="0" bpmDataForm="0" other="10" />
  <retries>0</retries>
  <parameters>
    <parameter name="agentID" type="System.String"><![CDATA[SystemTaskAgent]]></parameter>
  </parameters>
  <returnValues>
    <returnParameter name="" type="Ice.BO.SysAgentSchedListDataSet">
      <SysAgentSchedListDataSet xmlns="http://www.epicor.com/Ice/300/BO/SysAgent/SysAgentSchedList">
        <SysAgentSchedList>
          <AgentID>SystemTaskAgent</AgentID>
          <AgentSchedNum>0</AgentSchedNum>
          <SchedDesc>Now</SchedDesc>
          <SchedType>Immed</SchedType>
          <Recurrences>0</Recurrences>
          <MonthlyOption>Day</MonthlyOption>
          <DayOfMonth>31</DayOfMonth>
          <WeekOfMonth>Last</WeekOfMonth>
          <DayOfWeek>6</DayOfWeek>
          <EveryNWeeks>1</EveryNWeeks>
          <Mondays>false</Mondays>
          <Tuesdays>false</Tuesdays>
          <Wednesdays>false</Wednesdays>
          <Thursdays>false</Thursdays>
          <Fridays>false</Fridays>
          <Saturdays>false</Saturdays>
          <Sundays>false</Sundays>
          <Enabled>true</Enabled>
          <AppSrvConnectionID></AppSrvConnectionID>
          <IntervalTime>0</IntervalTime>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </SysAgentSchedList>
        <SysAgentSchedList>
          <AgentID>SystemTaskAgent</AgentID>
          <AgentSchedNum>1</AgentSchedNum>
          <SchedDesc>Startup Task Schedule</SchedDesc>
          <SchedType>Startup</SchedType>
          <Recurrences>0</Recurrences>
          <MonthlyOption></MonthlyOption>
          <DayOfMonth>0</DayOfMonth>
          <WeekOfMonth></WeekOfMonth>
          <DayOfWeek>0</DayOfWeek>
          <EveryNWeeks>0</EveryNWeeks>
          <Mondays>false</Mondays>
          <Tuesdays>false</Tuesdays>
          <Wednesdays>false</Wednesdays>
          <Thursdays>false</Thursdays>
          <Fridays>false</Fridays>
          <Saturdays>false</Saturdays>
          <Sundays>false</Sundays>
          <Enabled>true</Enabled>
          <AppSrvConnectionID></AppSrvConnectionID>
          <IntervalTime>0</IntervalTime>
          <SysRowID>fdb2ac8e-1bc6-3585-e811-4f0df94f9dbb</SysRowID>
          <RowMod></RowMod>
        </SysAgentSchedList>
        <SysAgentSchedList>
          <AgentID>SystemTaskAgent</AgentID>
          <AgentSchedNum>2657</AgentSchedNum>
          <SchedDesc>Daily 11pm</SchedDesc>
          <SchedType>Daily</SchedType>
          <Recurrences>0</Recurrences>
          <MonthlyOption>Day</MonthlyOption>
          <DayOfMonth>31</DayOfMonth>
          <WeekOfMonth>Last</WeekOfMonth>
          <DayOfWeek>6</DayOfWeek>
          <EveryNWeeks>1</EveryNWeeks>
          <Mondays>true</Mondays>
          <Tuesdays>true</Tuesdays>
          <Wednesdays>true</Wednesdays>
          <Thursdays>true</Thursdays>
          <Fridays>true</Fridays>
          <Saturdays>false</Saturdays>
          <Sundays>false</Sundays>
          <Enabled>true</Enabled>
          <AppSrvConnectionID></AppSrvConnectionID>
          <IntervalTime>0</IntervalTime>
          <SysRowID>9197a948-ed72-4f69-8222-59b5b9ddf582</SysRowID>
          <RowMod></RowMod>
        </SysAgentSchedList>
        <SysAgentSchedList>
          <AgentID>SystemTaskAgent</AgentID>
          <AgentSchedNum>186022</AgentSchedNum>
          <SchedDesc>Daily 4:00 am</SchedDesc>
          <SchedType>Daily</SchedType>
          <Recurrences>0</Recurrences>
          <MonthlyOption>Day</MonthlyOption>
          <DayOfMonth>31</DayOfMonth>
          <WeekOfMonth>Last</WeekOfMonth>
          <DayOfWeek>6</DayOfWeek>
          <EveryNWeeks>1</EveryNWeeks>
          <Mondays>true</Mondays>
          <Tuesdays>true</Tuesdays>
          <Wednesdays>true</Wednesdays>
          <Thursdays>true</Thursdays>
          <Fridays>true</Fridays>
          <Saturdays>true</Saturdays>
          <Sundays>true</Sundays>
          <Enabled>true</Enabled>
          <AppSrvConnectionID></AppSrvConnectionID>
          <IntervalTime>0</IntervalTime>
          <SysRowID>dea72609-687b-4c2a-bc1b-c906df2d524a</SysRowID>
          <RowMod></RowMod>
        </SysAgentSchedList>
        <SysAgentSchedList>
          <AgentID>SystemTaskAgent</AgentID>
          <AgentSchedNum>252365</AgentSchedNum>
          <SchedDesc>Daily 3:00 am</SchedDesc>
          <SchedType>Daily</SchedType>
          <Recurrences>0</Recurrences>
          <MonthlyOption>Day</MonthlyOption>
          <DayOfMonth>31</DayOfMonth>
          <WeekOfMonth>Last</WeekOfMonth>
          <DayOfWeek>6</DayOfWeek>
          <EveryNWeeks>1</EveryNWeeks>
          <Mondays>true</Mondays>
          <Tuesdays>true</Tuesdays>
          <Wednesdays>true</Wednesdays>
          <Thursdays>true</Thursdays>
          <Fridays>true</Fridays>
          <Saturdays>true</Saturdays>
          <Sundays>true</Sundays>
          <Enabled>true</Enabled>
          <AppSrvConnectionID></AppSrvConnectionID>
          <IntervalTime>0</IntervalTime>
          <SysRowID>679ccbed-42f7-4436-8412-3d67b0f5b68a</SysRowID>
          <RowMod></RowMod>
        </SysAgentSchedList>
        <SysAgentSchedList>
          <AgentID>SystemTaskAgent</AgentID>
          <AgentSchedNum>253062</AgentSchedNum>
          <SchedDesc>Weekly</SchedDesc>
          <SchedType>Weekly</SchedType>
          <Recurrences>0</Recurrences>
          <MonthlyOption>Day</MonthlyOption>
          <DayOfMonth>31</DayOfMonth>
          <WeekOfMonth>Last</WeekOfMonth>
          <DayOfWeek>1</DayOfWeek>
          <EveryNWeeks>1</EveryNWeeks>
          <Mondays>false</Mondays>
          <Tuesdays>false</Tuesdays>
          <Wednesdays>false</Wednesdays>
          <Thursdays>false</Thursdays>
          <Fridays>false</Fridays>
          <Saturdays>false</Saturdays>
          <Sundays>false</Sundays>
          <Enabled>true</Enabled>
          <AppSrvConnectionID></AppSrvConnectionID>
          <IntervalTime>0</IntervalTime>
          <SysRowID>4af7abc7-71eb-45a3-8ba2-028b31625e51</SysRowID>
          <RowMod></RowMod>
        </SysAgentSchedList>
      </SysAgentSchedListDataSet>
    </returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.Lib.ClientCacheImpl</businessObject>
  <methodName>GetClassInformation</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>Ice.Lib.ClassAttributeDataSet</returnType>
  <localTime>7/24/2023 08:32:23:4291711 AM</localTime>
  <threadID>1</threadID>
  <correlationId>32e47f12-a05a-4862-a34d-d27becf134b6</correlationId>
  <executionTime total="87" roundTrip="85" channel="0" bpm="0" bpmDataForm="0" other="2" />
  <retries>0</retries>
  <parameters>
    <parameter name="token" type="System.String"><![CDATA[ProcessSet]]></parameter>
    <parameter name="additionalTokens" type="System.String[]"><![CDATA[]]></parameter>
    <parameter name="nameSpace" type="System.String"><![CDATA[Ice:BO]]></parameter>
  </parameters>
  <returnValues>
    <returnParameter name="" type="Ice.Lib.ClassAttributeDataSet">
      <ClassAttributeDataSet xmlns="http://www.epicor.com/Ice/300/Lib/ClassAttribute/ClassAttribute">
        <ClassAttribute>
          <DataSetID>ProcessSet</DataSetID>
          <DataTableID>ProcessSet</DataTableID>
          <FieldName>Description</FieldName>
          <AttributeName>Required</AttributeName>
          <AttributeValue>True</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
        <ClassAttribute>
          <DataSetID>ProcessSet</DataSetID>
          <DataTableID>ProcessSet</DataTableID>
          <FieldName>ProcessID</FieldName>
          <AttributeName>Required</AttributeName>
          <AttributeValue>True</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
        <ClassAttribute>
          <DataSetID>ProcessSet</DataSetID>
          <DataTableID>ProcessSet</DataTableID>
          <FieldName>RunOn</FieldName>
          <AttributeName>ServerDataType</AttributeName>
          <AttributeValue>datetime</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
        <ClassAttribute>
          <DataSetID>ProcessSet</DataSetID>
          <DataTableID>ProcessTask</DataTableID>
          <FieldName>EndedOn</FieldName>
          <AttributeName>ServerDataType</AttributeName>
          <AttributeValue>datetime</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
        <ClassAttribute>
          <DataSetID>ProcessSet</DataSetID>
          <DataTableID>ProcessTask</DataTableID>
          <FieldName>LastActivityOn</FieldName>
          <AttributeName>ServerDataType</AttributeName>
          <AttributeValue>datetime</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
        <ClassAttribute>
          <DataSetID>ProcessSet</DataSetID>
          <DataTableID>ProcessTask</DataTableID>
          <FieldName>StartedOn</FieldName>
          <AttributeName>ServerDataType</AttributeName>
          <AttributeValue>datetime</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
        <ClassAttribute>
          <DataSetID>ProcessSetList</DataSetID>
          <DataTableID></DataTableID>
          <FieldName></FieldName>
          <AttributeName>IsList</AttributeName>
          <AttributeValue>True</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
        <ClassAttribute>
          <DataSetID>ProcessSetList</DataSetID>
          <DataTableID>ProcessSetList</DataTableID>
          <FieldName>Description</FieldName>
          <AttributeName>Required</AttributeName>
          <AttributeValue>True</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
        <ClassAttribute>
          <DataSetID>ProcessSetList</DataSetID>
          <DataTableID>ProcessSetList</DataTableID>
          <FieldName>ProcessID</FieldName>
          <AttributeName>Required</AttributeName>
          <AttributeValue>True</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
        <ClassAttribute>
          <DataSetID>ProcessSetList</DataSetID>
          <DataTableID>ProcessSetList</DataTableID>
          <FieldName>RunOn</FieldName>
          <AttributeName>ServerDataType</AttributeName>
          <AttributeValue>datetime</AttributeValue>
          <ClassName>ProcessSet</ClassName>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <RowMod></RowMod>
        </ClassAttribute>
      </ClassAttributeDataSet>
    </returnParameter>
    <returnParameter name="objectAccess" type="System.Boolean"><![CDATA[True]]></returnParameter>
    <returnParameter name="restrictedColumns" type="System.String"><![CDATA[ProcessSet:|ProcessTask:|ProcessSetList:]]></returnParameter>
    <returnParameter name="restrictedMethods" type="System.String"><![CDATA[]]></returnParameter>
    <returnParameter name="additionalTokenAccess" type="System.String"><![CDATA[]]></returnParameter>
  </returnValues>
</tracePacket>


<tracePacket>
  <businessObject>Ice.Proxy.Lib.ClientCacheImpl</businessObject>
  <methodName>GetClassInformation</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>Ice.Lib.ClassAttributeDataSet</returnType>
  <localTime>7/24/2023 08:32:23:6425139 AM</localTime>
  <threadID>1</threadID>
  <correlationId>ca381c31-9327-4be1-84b8-9001a358be7e</correlationId>
  <executionTime total="95" roundTrip="94" channel="0" bpm="0" bpmDataForm="0" other="1" />
  <retries>0</retries>
  <parameters>
    <parameter name="token" type="System.String"><![CDATA[POForm]]></parameter>
    <parameter name="additionalTokens" type="System.String[]"><![CDATA[]]></parameter>
    <parameter name="nameSpace" type="System.String"><![CDATA[Erp:Rpt]]></parameter>
  </parameters>
  <returnValues>
    <returnParameter name="" type="Ice.Lib.ClassAttributeDataSet">
      <ClassAttributeDataSet xmlns="http://www.epicor.com/Ice/300/Lib/ClassAttribute/ClassAttribute" />
    </returnParameter>
    <returnParameter name="objectAccess" type="System.Boolean"><![CDATA[True]]></returnParameter>
    <returnParameter name="restrictedColumns" type="System.String"><![CDATA[ReportStyle:]]></returnParameter>
    <returnParameter name="restrictedMethods" type="System.String"><![CDATA[]]></returnParameter>
    <returnParameter name="additionalTokenAccess" type="System.String"><![CDATA[]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Erp.Proxy.Rpt.POFormImpl</businessObject>
  <methodName>GetNewParameters</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>Erp.Rpt.POFormDataSet</returnType>
  <localTime>7/24/2023 08:32:23:7454423 AM</localTime>
  <threadID>1</threadID>
  <correlationId>31a4b399-3367-4bbb-85ed-5b79aca73dcc</correlationId>
  <executionTime total="232" roundTrip="210" channel="0" bpm="0" bpmDataForm="0" other="22" />
  <retries>0</retries>
  <parameters />
  <returnValues>
    <returnParameter name="" type="Erp.Rpt.POFormDataSet">
      <POFormDataSet xmlns="http://www.epicor.com/Ice/300/Rpt/POForm/POForm">
        <POFormParam>
          <PONum>0</PONum>
          <BuyerID></BuyerID>
          <POList></POList>
          <BuyerList></BuyerList>
          <IncludeAttributes>false</IncludeAttributes>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <AutoAction></AutoAction>
          <PrinterName></PrinterName>
          <AgentSchedNum>0</AgentSchedNum>
          <AgentID></AgentID>
          <AgentTaskNum>0</AgentTaskNum>
          <RecurringTask>false</RecurringTask>
          <RptPageSettings></RptPageSettings>
          <RptPrinterSettings></RptPrinterSettings>
          <RptVersion></RptVersion>
          <ReportStyleNum>1005</ReportStyleNum>
          <WorkstationID>NATHAN</WorkstationID>
          <TaskNote></TaskNote>
          <ArchiveCode>0</ArchiveCode>
          <DateFormat>m/d/yyyy</DateFormat>
          <NumericFormat>,.</NumericFormat>
          <AgentCompareString></AgentCompareString>
          <ProcessID></ProcessID>
          <ProcessCompany></ProcessCompany>
          <ProcessSystemCode></ProcessSystemCode>
          <ProcessTaskNum>0</ProcessTaskNum>
          <DecimalsGeneral>0</DecimalsGeneral>
          <DecimalsCost>0</DecimalsCost>
          <DecimalsPrice>0</DecimalsPrice>
          <GlbDecimalsGeneral>0</GlbDecimalsGeneral>
          <GlbDecimalsCost>0</GlbDecimalsCost>
          <GlbDecimalsPrice>0</GlbDecimalsPrice>
          <FaxSubject></FaxSubject>
          <FaxTo></FaxTo>
          <FaxNumber></FaxNumber>
          <EMailTo></EMailTo>
          <EMailCC></EMailCC>
          <EMailBCC></EMailBCC>
          <EMailBody></EMailBody>
          <AttachmentType></AttachmentType>
          <ReportCurrencyCode>USD</ReportCurrencyCode>
          <ReportCultureCode>en-US</ReportCultureCode>
          <SSRSRenderFormat></SSRSRenderFormat>
          <UIXml></UIXml>
          <PrintReportParameters>false</PrintReportParameters>
          <SSRSEnableRouting>false</SSRSEnableRouting>
          <DesignMode>false</DesignMode>
          <RowMod>A</RowMod>
        </POFormParam>
        <ReportStyle>
          <Company></Company>
          <ReportID>POForm</ReportID>
          <StyleNum>2</StyleNum>
          <StyleDescription>Standard - SSRS</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>reports/PurchaseOrderForm/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList></CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>true</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>174542316</SysRevID>
          <SysRowID>a446a317-1a1e-49bb-a78f-9f9d0117a043</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1002</StyleNum>
          <StyleDescription>VTA-Purchase Order</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C01/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>81751984</SysRevID>
          <SysRowID>420473c9-690e-4acc-816b-35d5f8c451d1</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1003</StyleNum>
          <StyleDescription>Purchase Order bad font</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C03/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>81751985</SysRevID>
          <SysRowID>d1ea4ea2-b4cb-403c-862d-1347e774175a</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1004</StyleNum>
          <StyleDescription>Purchase Order</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C04/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>81751986</SysRevID>
          <SysRowID>31d2093c-b2ac-425b-ae18-4ee0117a0297</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1005</StyleNum>
          <StyleDescription>Purchase Order - NEW</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C05/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>156796463</SysRevID>
          <SysRowID>0b4f5fdf-9bec-4b02-a88f-11e82d357baf</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
      </POFormDataSet>
    </returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.Lib.ClientFunctionsImpl</businessObject>
  <methodName>GetWorkstationMethod</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>System.String</returnType>
  <localTime>7/24/2023 08:32:23:9800887 AM</localTime>
  <threadID>1</threadID>
  <correlationId>2eadccb3-1fdc-4087-a5cc-f9c5e2354f42</correlationId>
  <executionTime total="84" roundTrip="84" channel="0" bpm="0" bpmDataForm="0" other="0" />
  <retries>0</retries>
  <parameters>
    <parameter name="companyID" type="System.String"><![CDATA[VTAERO]]></parameter>
  </parameters>
  <returnValues>
    <returnParameter name="" type="System.String"><![CDATA[]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.Lib.ClientFunctionsImpl</businessObject>
  <methodName>GetPrinterOptions</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>Ice.Lib.ClientFunctions.PrinterOptions</returnType>
  <localTime>7/24/2023 08:32:24:0675006 AM</localTime>
  <threadID>1</threadID>
  <correlationId>bd78d8df-abc6-484a-ba97-e4f28473a3be</correlationId>
  <executionTime total="86" roundTrip="78" channel="0" bpm="0" bpmDataForm="0" other="8" />
  <retries>0</retries>
  <parameters>
    <parameter name="companyID" type="System.String"><![CDATA[VTAERO]]></parameter>
  </parameters>
  <returnValues>
    <returnParameter name="" type="Ice.Lib.ClientFunctions.PrinterOptions"><![CDATA[Ice.Lib.ClientFunctions.PrinterOptions]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.BO.ReportImpl</businessObject>
  <methodName>GetAvailableDocumentTypes</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>System.Void</returnType>
  <localTime>7/24/2023 08:32:24:3480690 AM</localTime>
  <threadID>1</threadID>
  <correlationId>848d2ed7-f8eb-497c-9185-15c068e131aa</correlationId>
  <executionTime total="80" roundTrip="78" channel="0" bpm="0" bpmDataForm="0" other="2" />
  <retries>0</retries>
  <parameters />
  <returnValues>
    <returnParameter name="previewTypes" type="System.String[]"><![CDATA[CSV;EMF;Excel;Excel+Map;Excel-DO;Excel-DO+M;PDFA3;PDF;Word;XML;]]></returnParameter>
    <returnParameter name="printTypes" type="System.String[]"><![CDATA[EMF;PDFA3;PDF;]]></returnParameter>
    <returnParameter name="saveTypes" type="System.String[]"><![CDATA[CSV;EMF;Excel;Excel+Map;Excel-DO;Excel-DO+M;PDFA3;PDF;Word;XML;]]></returnParameter>
    <returnParameter name="emailTypes" type="System.String[]"><![CDATA[CSV;Excel;Excel+Map;Excel-DO;Excel-DO+M;PDFA3;PDF;Word;XML;]]></returnParameter>
    <returnParameter name="electronicComplianceTypes" type="System.String[]"><![CDATA[PDFA3;]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.BO.ReportImpl</businessObject>
  <methodName>GetReportsThatDefaultToEmfRenderFormat</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>System.String</returnType>
  <localTime>7/24/2023 08:32:24:4423786 AM</localTime>
  <threadID>1</threadID>
  <correlationId>3aadf4f6-c2cf-4c75-b063-6d6d8daff976</correlationId>
  <executionTime total="90" roundTrip="90" channel="0" bpm="0" bpmDataForm="0" other="0" />
  <retries>0</retries>
  <parameters />
  <returnValues>
    <returnParameter name="" type="System.String"><![CDATA[]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Ice.Proxy.BO.ReportImpl</businessObject>
  <methodName>GetReportStyleRules</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>System.String[]</returnType>
  <localTime>7/24/2023 08:32:24:5359893 AM</localTime>
  <threadID>1</threadID>
  <correlationId>1263287d-f033-41ba-b353-e18d6e0305c7</correlationId>
  <executionTime total="76" roundTrip="75" channel="0" bpm="0" bpmDataForm="0" other="1" />
  <retries>0</retries>
  <parameters>
    <parameter name="reportid" type="System.String"><![CDATA[POForm]]></parameter>
  </parameters>
  <returnValues>
    <returnParameter name="" type="System.String[]"><![CDATA[]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Erp.Proxy.Rpt.POFormImpl</businessObject>
  <methodName>GetRptArchiveList</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>System.String</returnType>
  <localTime>7/24/2023 08:32:24:6233546 AM</localTime>
  <threadID>1</threadID>
  <correlationId>a9911885-c5bb-4560-9700-6573db844b0a</correlationId>
  <executionTime total="81" roundTrip="80" channel="0" bpm="0" bpmDataForm="0" other="1" />
  <retries>0</retries>
  <parameters />
  <returnValues>
    <returnParameter name="" type="System.String"><![CDATA[0`0 Days~1`Day~7`Week~31`Month~365`Year~99999`Forever]]></returnParameter>
  </returnValues>
</tracePacket>

<tracePacket>
  <businessObject>Erp.Proxy.Rpt.POFormImpl</businessObject>
  <methodName>SetPrintInventoryAttributes</methodName>
  <appServerUri>MyServer</appServerUri>
  <returnType>System.Void</returnType>
  <localTime>7/24/2023 08:32:24:7140329 AM</localTime>
  <threadID>1</threadID>
  <correlationId>fe0443eb-10d7-40ac-a690-56db51136bef</correlationId>
  <executionTime total="102" roundTrip="101" channel="0" bpm="0" bpmDataForm="0" other="1" />
  <retries>0</retries>
  <parameters>
    <parameter name="ds" type="Erp.Rpt.POFormDataSet">
      <POFormDataSet xmlns="http://www.epicor.com/Ice/300/Rpt/POForm/POForm">
        <POFormParam>
          <PONum>124757</PONum>
          <BuyerID></BuyerID>
          <POList></POList>
          <BuyerList></BuyerList>
          <IncludeAttributes>false</IncludeAttributes>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <AutoAction>PRINT</AutoAction>
          <PrinterName></PrinterName>
          <AgentSchedNum>0</AgentSchedNum>
          <AgentID>SystemTaskAgent</AgentID>
          <AgentTaskNum>0</AgentTaskNum>
          <RecurringTask>false</RecurringTask>
          <RptPageSettings></RptPageSettings>
          <RptPrinterSettings></RptPrinterSettings>
          <RptVersion></RptVersion>
          <ReportStyleNum>1005</ReportStyleNum>
          <WorkstationID>NATHAN</WorkstationID>
          <TaskNote></TaskNote>
          <ArchiveCode>0</ArchiveCode>
          <DateFormat>m/d/yyyy</DateFormat>
          <NumericFormat>,.</NumericFormat>
          <AgentCompareString></AgentCompareString>
          <ProcessID></ProcessID>
          <ProcessCompany></ProcessCompany>
          <ProcessSystemCode></ProcessSystemCode>
          <ProcessTaskNum>0</ProcessTaskNum>
          <DecimalsGeneral>0</DecimalsGeneral>
          <DecimalsCost>0</DecimalsCost>
          <DecimalsPrice>0</DecimalsPrice>
          <GlbDecimalsGeneral>0</GlbDecimalsGeneral>
          <GlbDecimalsCost>0</GlbDecimalsCost>
          <GlbDecimalsPrice>0</GlbDecimalsPrice>
          <FaxSubject></FaxSubject>
          <FaxTo></FaxTo>
          <FaxNumber></FaxNumber>
          <EMailTo></EMailTo>
          <EMailCC></EMailCC>
          <EMailBCC></EMailBCC>
          <EMailBody></EMailBody>
          <AttachmentType></AttachmentType>
          <ReportCurrencyCode>USD</ReportCurrencyCode>
          <ReportCultureCode>en-US</ReportCultureCode>
          <SSRSRenderFormat>PDF</SSRSRenderFormat>
          <UIXml></UIXml>
          <PrintReportParameters>false</PrintReportParameters>
          <SSRSEnableRouting>false</SSRSEnableRouting>
          <DesignMode>false</DesignMode>
          <RowMod>A</RowMod>
        </POFormParam>
        <ReportStyle>
          <Company></Company>
          <ReportID>POForm</ReportID>
          <StyleNum>2</StyleNum>
          <StyleDescription>Standard - SSRS</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>reports/PurchaseOrderForm/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList></CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>true</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>174542316</SysRevID>
          <SysRowID>a446a317-1a1e-49bb-a78f-9f9d0117a043</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1002</StyleNum>
          <StyleDescription>VTA-Purchase Order</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C01/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>81751984</SysRevID>
          <SysRowID>420473c9-690e-4acc-816b-35d5f8c451d1</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1003</StyleNum>
          <StyleDescription>Purchase Order bad font</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C03/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>81751985</SysRevID>
          <SysRowID>d1ea4ea2-b4cb-403c-862d-1347e774175a</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1004</StyleNum>
          <StyleDescription>Purchase Order</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C04/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>81751986</SysRevID>
          <SysRowID>31d2093c-b2ac-425b-ae18-4ee0117a0297</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1005</StyleNum>
          <StyleDescription>Purchase Order - NEW</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C05/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>156796463</SysRevID>
          <SysRowID>0b4f5fdf-9bec-4b02-a88f-11e82d357baf</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
      </POFormDataSet>
    </parameter>
  </parameters>
  <returnValues>
    <returnParameter name="ds" type="Erp.Rpt.POFormDataSet">
      <POFormDataSet xmlns="http://www.epicor.com/Ice/300/Rpt/POForm/POForm">
        <POFormParam>
          <PONum>124757</PONum>
          <BuyerID></BuyerID>
          <POList></POList>
          <BuyerList></BuyerList>
          <IncludeAttributes>false</IncludeAttributes>
          <SysRowID>00000000-0000-0000-0000-000000000000</SysRowID>
          <AutoAction>PRINT</AutoAction>
          <PrinterName></PrinterName>
          <AgentSchedNum>0</AgentSchedNum>
          <AgentID>SystemTaskAgent</AgentID>
          <AgentTaskNum>0</AgentTaskNum>
          <RecurringTask>false</RecurringTask>
          <RptPageSettings></RptPageSettings>
          <RptPrinterSettings></RptPrinterSettings>
          <RptVersion></RptVersion>
          <ReportStyleNum>1005</ReportStyleNum>
          <WorkstationID>NATHAN</WorkstationID>
          <TaskNote></TaskNote>
          <ArchiveCode>0</ArchiveCode>
          <DateFormat>m/d/yyyy</DateFormat>
          <NumericFormat>,.</NumericFormat>
          <AgentCompareString></AgentCompareString>
          <ProcessID></ProcessID>
          <ProcessCompany></ProcessCompany>
          <ProcessSystemCode></ProcessSystemCode>
          <ProcessTaskNum>0</ProcessTaskNum>
          <DecimalsGeneral>0</DecimalsGeneral>
          <DecimalsCost>0</DecimalsCost>
          <DecimalsPrice>0</DecimalsPrice>
          <GlbDecimalsGeneral>0</GlbDecimalsGeneral>
          <GlbDecimalsCost>0</GlbDecimalsCost>
          <GlbDecimalsPrice>0</GlbDecimalsPrice>
          <FaxSubject></FaxSubject>
          <FaxTo></FaxTo>
          <FaxNumber></FaxNumber>
          <EMailTo></EMailTo>
          <EMailCC></EMailCC>
          <EMailBCC></EMailBCC>
          <EMailBody></EMailBody>
          <AttachmentType></AttachmentType>
          <ReportCurrencyCode>USD</ReportCurrencyCode>
          <ReportCultureCode>en-US</ReportCultureCode>
          <SSRSRenderFormat>PDF</SSRSRenderFormat>
          <UIXml></UIXml>
          <PrintReportParameters>false</PrintReportParameters>
          <SSRSEnableRouting>false</SSRSEnableRouting>
          <DesignMode>false</DesignMode>
          <RowMod>A</RowMod>
        </POFormParam>
        <ReportStyle>
          <Company></Company>
          <ReportID>POForm</ReportID>
          <StyleNum>2</StyleNum>
          <StyleDescription>Standard - SSRS</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>reports/PurchaseOrderForm/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList></CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>true</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>174542316</SysRevID>
          <SysRowID>a446a317-1a1e-49bb-a78f-9f9d0117a043</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1002</StyleNum>
          <StyleDescription>VTA-Purchase Order</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C01/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>81751984</SysRevID>
          <SysRowID>420473c9-690e-4acc-816b-35d5f8c451d1</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1003</StyleNum>
          <StyleDescription>Purchase Order bad font</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C03/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>81751985</SysRevID>
          <SysRowID>d1ea4ea2-b4cb-403c-862d-1347e774175a</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1004</StyleNum>
          <StyleDescription>Purchase Order</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C04/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>81751986</SysRevID>
          <SysRowID>31d2093c-b2ac-425b-ae18-4ee0117a0297</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
        <ReportStyle>
          <Company>VTAERO</Company>
          <ReportID>POForm</ReportID>
          <StyleNum>1005</StyleNum>
          <StyleDescription>Purchase Order - NEW</StyleDescription>
          <RptTypeID>SSRS</RptTypeID>
          <PrintProgram>Reports/CustomReports/PurchaseOrderForm_C05/POForm</PrintProgram>
          <PrintProgramOptions></PrintProgramOptions>
          <RptDefID>POForm</RptDefID>
          <CompanyList>VTAERO</CompanyList>
          <ServerNum>0</ServerNum>
          <OutputLocation>Database</OutputLocation>
          <OutputEDI></OutputEDI>
          <SystemFlag>false</SystemFlag>
          <CGCCode></CGCCode>
          <SysRevID>156796463</SysRevID>
          <SysRowID>0b4f5fdf-9bec-4b02-a88f-11e82d357baf</SysRowID>
          <StructuredOutputEnabled>false</StructuredOutputEnabled>
          <RequireSubmissionID>false</RequireSubmissionID>
          <AllowResetAfterSubmit>false</AllowResetAfterSubmit>
          <LangNameID></LangNameID>
          <FormatCulture></FormatCulture>
          <HasBAQOrEI>false</HasBAQOrEI>
          <RoutingRuleEnabled>false</RoutingRuleEnabled>
          <CertificateIsAllComp>false</CertificateIsAllComp>
          <CertificateIsSystem>false</CertificateIsSystem>
          <Status>0</Status>
          <StatusMessage></StatusMessage>
          <RptDefSystemFlag>false</RptDefSystemFlag>
          <LangNameIDDescription></LangNameIDDescription>
          <IsBAQReport>false</IsBAQReport>
          <StructuredOutputCertificateIsAllComp>false</StructuredOutputCertificateIsAllComp>
          <StructuredOutputCertificateIsSystem>false</StructuredOutputCertificateIsSystem>
          <AllowGenerateEDI>false</AllowGenerateEDI>
          <BitFlag>0</BitFlag>
          <ReportRptDescription></ReportRptDescription>
          <RptDefRptDescription></RptDefRptDescription>
          <RptTypeRptTypeDescription></RptTypeRptTypeDescription>
          <RowMod></RowMod>
        </ReportStyle>
      </POFormDataSet>
    </returnParameter>
  </returnValues>
  <paramDataSetChanges>
    <paramDataSet name="ds" useDataSetNbr="0">
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="PONum"><![CDATA[124757]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="BuyerID"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="POList"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="BuyerList"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="IncludeAttributes"><![CDATA[False]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="SysRowID"><![CDATA[00000000-0000-0000-0000-000000000000]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="AutoAction"><![CDATA[PRINT]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="PrinterName"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="AgentSchedNum"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="AgentID"><![CDATA[SystemTaskAgent]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="AgentTaskNum"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="RecurringTask"><![CDATA[False]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="RptPageSettings"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="RptPrinterSettings"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="RptVersion"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="ReportStyleNum"><![CDATA[1005]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="WorkstationID"><![CDATA[NATHAN]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="TaskNote"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="ArchiveCode"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="DateFormat"><![CDATA[m/d/yyyy]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="NumericFormat"><![CDATA[,.]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="AgentCompareString"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="ProcessID"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="ProcessCompany"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="ProcessSystemCode"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="ProcessTaskNum"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="DecimalsGeneral"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="DecimalsCost"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="DecimalsPrice"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="GlbDecimalsGeneral"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="GlbDecimalsCost"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="GlbDecimalsPrice"><![CDATA[0]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="FaxSubject"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="FaxTo"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="FaxNumber"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="EMailTo"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="EMailCC"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="EMailBCC"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="EMailBody"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="AttachmentType"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="ReportCurrencyCode"><![CDATA[USD]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="ReportCultureCode"><![CDATA[en-US]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="SSRSRenderFormat"><![CDATA[PDF]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="UIXml"><![CDATA[]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="PrintReportParameters"><![CDATA[False]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="SSRSEnableRouting"><![CDATA[False]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="DesignMode"><![CDATA[False]]></changedValue>
      <changedValue tableName="POFormParam" rowState="Added" rowNum="0" colName="RowMod"><![CDATA[A]]></changedValue>
    </paramDataSet>
  </paramDataSetChanges>
</tracePacket>

<tracePacket>
  <businessObject>Erp.Proxy.Rpt.POFormImpl</businessObject>
  <methodName>SubmitToAgent</methodName>
//by the time we SubmitToAgent, the print form is already open and the user has clicked wither print preview or print to printer.

Maybe this is a way to go:
Print invoice from dashboard with custom code - ERP 10 - Epicor User Help Forum (epiusers.help)