Hear from Salesforce leaders on how to create and deploy Agentforce agents.
Contact Us 1-800-596-4880

Transaction Tracking Walkthrough

Anypoint Partner Manager V1.0 was deprecated in March 2021. Its End of Life is March 31, 2022. Support for Anypoint Partner Manager 1.0 continues in accordance with the Product Support and Maintenance Terms but is not available for new customers or upgrades. For the latest version of Anypoint Partner Manager, contact your Customer Success Manager to determine how you can migrate to the current version.

Audience

This document is aimed at a technical audience possessing basic knowledge of Anypoint Studio and Anypoint B2B.

Prerequisites

  • Anypoint Studio with Mule Server 3.7.1 EE runtime

  • Anypoint Platform account

  • Amazon S3 bucket for file storage (optional)

Running the Example

  1. Import this example into Anypoint Studio:

    <?xml version="1.0"?>
    <PurchaseOrder PurchaseOrderNumber="00003" OrderDate="2015-05-13">
      <TotalPrice>188.93</TotalPrice>
      <Address>
        <Name>Stocked.com</Name>
        <Street>123 Maple Street</Street>
        <City>Mill Valley</City>
        <State>CA</State>
        <Zip>10999</Zip>
        <Country>USA</Country>
      </Address>
      <Items>
        <Item PartNumber="3421-MB">
          <ProductName>Ladies Jacket MED BLACK</ProductName>
          <Quantity>1</Quantity>
          <USPrice>148.95</USPrice>
          <ShipDate>2015-05-20</ShipDate>
        </Item>
        <Item PartNumber="4421-MB">
          <ProductName>Ladies Base layer MED BLACK</ProductName>
          <Quantity>1</Quantity>
          <USPrice>39.98</USPrice>
          <ShipDate>2015-05-20</ShipDate>
        </Item>
      </Items>
    </PurchaseOrder>
  2. From your web browser, log into Anypoint Partner Manager. Go to the Home Organization page and copy your secret API key.

  3. From the imported Mule project in Anypoint Studio, click the file b2b-tracking-transmission.xml in the app folder, and select the Global Elements view tab. Open the Partner Manager Connector configuration and set the API Key you generated from Anypoint Partner Manager.

  4. Right-click the imported project folder from the Project Explorer view. Select Run As and click Mule Application.

  5. Create a copy of the file po.xml in src/test/resources and place it in the outbox directory

  6. The file should disappear from the directory since the File Connector message source deletes the file after it reads it.

  7. Access the B2B Transmissions page in the Anypoint Partner Manager to confirm that the B2B exchange was tracked.

Anypoint B2B Platform Transaction Tracking Walkthrough

This walkthrough shows you how to leverage the Anypoint B2B Platform to track B2B exchanges for non-EDI messages and connectors that are not included in Anypoint B2B. In this walkthrough you will develop a Mule application that simulates a B2B exchange of a XML purchase order. The application will read a purchase order file from a directory in your local filesystem and save it to another directory. In between, the exchange, in terms of metadata, message content and other data, will be tracked using the Partner Manager Connector. Once tracked, the exchange can be viewed from the Anypoint Partner Manager.

  1. Launch Anypoint Studio and create a new Mule project.

  2. Switch to the Global Elements view and create a Partner Manager Connector configuration.

  3. Go back to the Message Flow view. Drag the File Connector from the palette to the canvas in order to create a message source:

    transmission tracking walk 1
  4. Configure the File Connector message source to read from a directory called outbox:

    transmission tracking walk 2
  5. Add an Object to String transformer after the message source in order to read from the file stream:

    transmission tracking walk 3
  6. Drag the Partner Manager Connector from the palette and add it to the flow:

    transmission tracking walk 4
  7. Select as Connector Configuration the config that you created in step 2. Select Track transmission for the operation:

    transmission tracking walk 5
  8. Configure the Track transmission operation as follows:

    Field

    Value

    From-party identifier

    #[xpath3(''/PurchaseOrder/Address/Name'')]

    To-party identifier

    My Organization

    Content Reference (Set only if you have configured the File Storage type on the Partner Manager Connector config)

    #[payload]

    Filename

    #[flowVars.originalFilename]

    Format Type

    XML

    transmission tracking walk 6

    In addition to the above, click on Create Object manually which is located next to the Metadata attribute. This action brings up the Object Builder that allows you to define the metadata to be saved as part of the transmission. Define the metadata entries as shown in the screenshot below:

    transmission tracking walk 7
  9. Add a File Connector to the flow such that the purchase order is written out to a different directory called inbox:

    transmission tracking walk 8
  10. Right-click the project and run the application as a Mule project:

    transmission tracking walk 9

    If you have enabled S3 storage in the Partner Manager Connector config, then you need to add the AWS and S3 parameters to the Mule application VM arguments.

  11. Put the example XML listed in Running the Example in the outbox directory. You should see the file moved to the inbox directory.

  12. Access the Anypoint Partner Manager and go to the B2B transmissions view to confirm that the exchange was tracked:

    transmission tracking walk 10