Here’s a simplified example of a PIP for Order Placement:
<PurchaseOrder> <OrderHeader>
<OrderNumber>12345</OrderNumber>
<OrderDate>2024-08-14</OrderDate>
<Buyer>ABC Electronics</Buyer>
<Seller>XYZ Components</Seller>
</OrderHeader>
<OrderLineItems>
<LineItem>
<ItemNumber>98765</ItemNumber>
<Quantity>100</Quantity>
<UnitPrice>10.00</UnitPrice>
</LineItem>
</OrderLineItems>
</PurchaseOrder>
- OrderHeader: Contains information about the order, such as the order number, date, and details of the buyer and seller.
- OrderLineItems: Lists the items being ordered, including the item number, quantity, and unit price.
No comments:
Post a Comment