Data structures exercise

Transform data from a source file into a destination file.

Exercise overview

Open a CSV file that contains a list of time entries. These time entries are for minutes logged throughout certain days by multiple users. The goal is to take this information and produce a new CSV that shows the total time, in hours, logged by each user, each day.

Data structures Image 1

Data structures Image 2

In this scenario, you will open a file that contains a list of time entries for minutes worked, including the date and time, how many minutes were entered, and the email address of who made the entry. There are 100 time entries, some made by the same individuals and some of those were made on the same day as others.

To produce a file that shows the total time, in hours, worked each day by each individual, you’ll follow these steps:

  1. In the trigger module, get a file from the Workfront folder. Download the file.
  2. In the first CSV module, parse the time entry data to output one bundle for each time entry. This is an iterator.
  3. The first Tools module is a numeric aggregator. This will SUM all the minutes and group the rows by email address, then by date. The result is the total minutes worked each day by email address.
  4. The second Tools module is a Set Variable module. Use this to format the minutes to divide by 60 and round to 2 decimals.
  5. In the second CSV module, set up the output file.
  6. In the final module, upload the CSV file into Workfront.

Steps to follow

Download the file from Workfront.

  1. In the Workfront “Fusion Exercise Files” folder, select “_Fusion1.0JanTime.csv” and click Document Details.

  2. Copy the first ID number from the URL address.

  3. Create a new scenario. Name it “Creating & using data structures.”

  4. Start with the Download Document module from the Workfront app.

  5. Set up your Workfront connection and include the Document ID you copied from the Workfront URL.

    Data structures Image 3

    Parse the time entry data.

  6. Add another module, selecting Parse CSV.

  7. Set up Parse CSV for 7 columns. Check the CSV contains headers box. Choose the Comma delimiterType and put Data in the CSV field.

    Data structures Image 4

  8. Click Run once to view the output.

  9. Open the execution inspector to see the inputs and the outputs of the Parse CSV module. There is one bundle (a CSV file) as input and several bundles as outputs (one bundle for each row in the CSV file). It should look something like this:

    Data structures Image 5

    Next, transform the data into the desired output form, with aggregated time totals expressed in hours instead of minutes.

  10. Add a Numeric Aggregator tool module.

  11. Select the source module, which is the Parse CSV module.

  12. Select SUM for the aggregate function.

  13. The Value field is column 7 from CSV file. This is the minutes logged by each user.

  14. To sum the fields by group, click Advanced Settings and set Group by to email (column 4), date (column 5).

    • This will sum for every combination of the email and the date. Be sure to put a comma between column 4 and column 5. This will be used as a delimiter later on.

    Your mapping panel should look like this:

    Data structures Image 6

  15. Click Run once to check the aggregation output.

    The output bundles should look like this:

    Data structures Image 7

    Now convert the aggregated minutes into hours.

  16. Add another tools module, selecting Set Variable.

  17. Name the variable “Hours.”

  18. Set the variable value to formatNumber(result/60;2;.;,)

    Your mapping panel should look like this:

    Data structures Image 8

    Next, get the values set up for the output file. You want the userID and the date value used for the groupings. You also want the hours that were calculated.

  19. Add another module-CSV module using the aggregator Create CSV (advanced).

  20. The source module is the Tools - Numeric aggregator.

  21. Click Add by the Data structure field and name our data structure “Time Logged Daily Sum.”

  22. Click Add Item to create the first item.

  23. Name the item “UserID” and set the type to Text. Click Add.

  24. Click Add Item again to create the second item.

  25. Name the item “Date,” set the type to Date, and click Add.

  26. Click on Add Item one more time.

  27. Name the item “Hours,” set the type to Number, and click Add.

    Your data structure should look like this:

    Data structures Image 9

  28. Click Save to finish the Time Logged Daily Sum data structure.

    Now you supply the values for the three fields you just created. You should see those three fields in the CSV mapping panel.

  29. Click in the UserID field and choose GET from the general functions tab. In the first parameter, put SPLIT from the text and binary functions tab. The first parameter for the SPLIT function is the Key field. Add a comma as the delimiter and 1 as the index. This indicates you want the GET to retrieve the first field in the Key array.

  30. Copy this expression into the Date field. Change the index from 1 to 2 to GET the second value in the array.

  31. For the Hours field, add the Hours field from the Set Variable tool.

    Your CSV mapping panel should look like this:

    Data structures Image 10

    If you run the scenario now, you should see this output:

    Data structures Image 11

    Now, add a module to take this output and upload it as a document to an existing project in Workfront.

  32. Open the project in Workfront and copy the project ID from the URL.

  33. Go back to the scenario in Fusion and add another module-the Upload Document module from the Workfront app.

  34. Paste the project ID into the Related Record ID field.

  35. Choose Project for the Related Record Type.

  36. Choose the Map option for the Source file.

  37. For the Document Name, use the file name you downloaded, adding "Updated " in front of it.

  38. For the File content, use the Text output from the Create CSV module.

    Your mapping panel should look like this:

    Data structures Image 12

  39. Click OK and Save the scenario.

  40. Click Run once to run the scenario.

    Check the execution inspector in the Upload Document module to confirm the document was uploaded.

    Data structures Image 13

recommendation-more-help
c9fbcf61-6d19-481e-a9ab-f54a0ae0ee8a