BizTalk-debatching Schema and deploying

I'm pretty new to Biztalk. Got a new requirement to split error messages individually instead of them coming in as a big chunk so that each message triggers individual emails.
So here are the steps I followed-
- Changed existing schema to Envelope status "yes" and changed the body Xpath to Order.(root node being RejectedOrder")
- Built the project and deployed to GAC.
- However I do not see the new schema reflecting in BizTalk admin console, nor my messages are splitting
Below screenshot of how messages are triggering as one big chunk
Below is what I need as part of Receive port so the node under "RejectedOrderReport" are split as separate xmls(in this case different triggers for each PurchaseOrder node)
<bts_RejectedOrderReportGetResponse xmlns="http://schemas.microsoft.com/Sql/2008/05/Procedures/dbo">
<RejectedOrderReport xmlns="">
<PurchaseOrder OrderGroupId="123"
<BillingAddress BusinessName="ABC Supply" ></BillingAddress>
</PurchaseOrder>
<PurchaseOrder OrderGroupId="456"
<BillingAddress BusinessName="XYZ Supply"></BillingAddress>
</PurchaseOrder>
</RejectedOrderReport>
</bts_RejectedOrderReportGetResponse>