Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

AndyHess
AndyHess
Online

Badges

Badges
8

Accepted Solutions

Accepted Solutions
2

Likes Received

Likes Received
7

Posts

Posts
11

Discussions

Discussions
1

Questions

Questions
10

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by AndyHess
Customize the badges you want to showcase on your profile
Re: Trouble creating a Workfront Custom API call for Nested Updates - Workfront Fusion 2.0 15-07-2022
Certainly, there are several ways. My favorite is to use the tasks predecessorExpression field in a PUT. Here you simply place the same value you would if you were typing the predecessor in the UI. Don’t think it is destructive and adds one. You can also replace the predecessor object and add another value to the existing one using a JSON data structure. Andy Hess Workfront, an Adobe company | c. 561.252.3329 | andyhess@adobe.com Need to schedule a meeting? Choose your 60 minute meeting here for...

Views

40

Likes

0

Replies

0
Re: Is there a way to control the order modules get processed when the flow has routers? - Workfront Fusion 2.0 01-04-2022
HI Ryanna, Wow 2 great questions in one day!. Thanks for this also. This is something that is not always obvious and have recently consulted with multiple clients on how to manage this 'Order of Operations' for a router. 1st. The routes are processed clockwise (left to right) from the enter point to the route (9 o'clock). They are processed in the order that they are added, literally. You can drag or re-arrange them to lets say, the top of the route but that does not change the order of operatio...

Views

24

Likes

2

Replies

0
Re: Trouble creating a Workfront Custom API call for Nested Updates - Workfront Fusion 2.0 31-03-2022
This is a fantastic question. Predecessors are one of the curiosities of the Workfront API. You can not PUT/POST directly to the predecessor object either through the task or directly. Instead WF engineered a READ-ONLY field into the API called predecessorExpression. In effect here you would literally place the same string you would when entering a predecessor into the UI. Take a look at the attached example on how to do this. Note in my example it is a cross project predecessor, but the idea is...

Views

40

Like

1

Replies

1
Re: Systematically Increment an Alphanumeric-Based String - Workfront Fusion 2.0 10-03-2022
The answer here lies in splitting the number from the version code. This is easiest done with a Text parser using a regular expression. Then use the Fusion switch() function to select your next variable. The only issue here would be that you would be limited to the number of switch variants built out. Take a look at the attached blueprint export and it will show you all of the regex codes and formulas used. You can play with the input value and see the resulting version code.

Views

15

Like

1

Replies

1
Re: Rounding with decimals - Workfront Fusion 2.0 07-02-2022
Hi Chris, We use round, but have to extend the number past the decimal range first because our round() feature only rounds to the nearest integer. Using this method on 3.14159 i getThe formulas to handle this look like this:So, again , you round the number multiplied by the factor of the digits you want then divide the newly rounded integer by the same factor

Views

30

Likes

2

Replies

1
Re: Fusion Ignore - can Fusion notify me when an error has occurred? - Workfront Fusion 2.0 04-02-2022
Hi Todd, Actually what you are looking for is very possible. On the ignore module or any of the error handling methods, (by the way, unless this is the last function in a route, I suggest 'resume') What you can do is just use the +plus / add a module feature on the left side of the selected error method. Here you can perform any action such as writing an update to the object that can tag a user, we typically suggest the object owner is notified. Hope this helps,

Views

20

Likes

0

Replies

1
Re: Help with Search Module limits - Workfront Fusion 2.0 24-01-2022
Todd, If you are using Fusion, there is a sample blueprint you can import into an empty scenario that will explain the process. Don't use the WF Fusion Search module, use the Custom API module and the URL will be /count. (user/count). This will return the number of records. Under the query section add the necessary search criteria. If you want all objects, its not neededEstablish what your processing limit per loop will be, 100/500/1000/2000. and then use a Fusion function of upper() to get the ...

Views

38

Likes

0

Replies

0
Re: allow Workfront role or sponsor be a recipient on proofing workflow stage - Workfront 12-01-2022
This is a common automation performed by WF Fusion and would be a welcome UI enhancement.

Views

9

Likes

0

Replies

0
Re: Help with Search Module limits - Workfront Fusion 2.0 11-01-2022
Using paginated responses in Fusion, require usage of several API features. $$LIMIT and $$COUNT along with the Fusion Repeater module. objcode/count? Using this URL as a custom api call along with the needed filters that align to your eventual call will provide a number of recordsuse the repeater module, initial value = 0 and the Repeats a formula of the count {{ceil(6.body.data.count / 200)}}. The integer shown is the value of the limit you plan to use in #3objcode/search? Now do your search fo...

Views

39

Likes

0

Replies

4
Re: Swap special characters for base versions - Workfront Fusion 2.0 15-12-2021
The default action is to simply strip the character that it can not map. and you will certainly find exceptions. The code page list is pretty exhaustive and the ascii conversion module must have a unicode char>ascii conversion built in. Looks like this Polish/Cyrillic character is not in the mapping. You can do some replace functions to hard map the exceptions ahead of the ascii() module to move them over but that may not be optimal as it can be a large replace list. Why not carry over the actua...

Views

17

Likes

0

Replies

0
Likes given to