Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
I have built a task report that is pulling in tasks that have a specific custom form field on them. The tasks with the custom form field are parent tasks with the name of the deliverable, so there are lots of subtasks. I would like to add a column that lists the next subtask that is ready. I want to be able to see which subtask is next. I have done this on project reports before, but that text mode doesn't work in this report. This is what I use on my project reports....description=Tasks Ready to Startdisplayname=Next Task(s)listdelimiter=<div>listmethod=nested(tasks).liststype=iteratevalueexpression=IF({canStart}&&{status}!='CPL'&&{status}!='NOT'&&{numberOfChildren}=0,CONCAT("•",{name}))valueformat=HTML
Hi Folks, Based on this interesting challenge from @mariacr2, I'm pleased to share the following technique to easily edit a custom data parameter (e.g. a Tactic Delivery Date on a particular Task) and have it "echo" to its peers (e.g. all other Tasks on the same Project), without Fusion, and always kept "fresh" after each page refresh. Here's the textmode for the final column, noting that the trick is to go "up" (on a Task report or view) to each project.tasks in the nested listmethod: displayname=Other Tactic Delivery Date(s) type=iterate listdelimiter=<p> listmethod=nested(project.tasks).lists valueexpression={DE:Tactic Delivery Date} valueformat=HTML You could make the valueexpression more sophisticated (e.g. IF, CONCAT, etc.), and in a similar fashion, you could echo custom data between Issues on a Task or Project, Projects in a Program or Portfolio...lots of potential. Enjoy, have fun, and if you put it to good use, I'd ap
Hello Workfront friends! I could use a little assistance on trying to run a report. In our instance, we have what I'll call a "parent" project in each Program. This project has a custom form tied to it where we collect certain metadata for reporting. There are "child projects" in each program related to that parent project - however the metadata is all really collected in that parent project. I'd like to run a report, and filter based on one of the fields in the "parent project" custom form, to pull into the report only certain parent projects. However, I'd also like the report to pull in all of the "child projects" that are in the same program as the filtered parent projects. Any suggestions on how to go about this? Many thanks in advance!
I am trying to set up universal editor in AEM 6.5 with service pack 22. I have referred this document : https://experienceleague.adobe.com/en/docs/experience-manager-65/content/implementing/developing/headless/universal-editor/introduction#:~:text=The%20Universal%20Editor%20in%20AEM,only%20the%20headless%20use%20case But, i couldn't find the configs mentioned the document like : Universal Editor URL Service and some config properties are also not matching. Please help me on this with detailed steps and screenshots if we have
Hi everyone, I'm experiencing an issue with my portfolio. It was working fine when I created it last year, and I updated it about three months ago. However, when I opened it today, I received an error message and can't seem to resolve it. Can anyone help?Access to portfolio.adobe.com was deniedYou don't have authorisation to view this page.HTTP ERROR 403
Hello, WF community! Looking for some input, would like to understand what different customers are doing that have group admins. How do you handle governance/change management/updates in production? Not governance in terms of access levels and such, more like processes among group & sys admins when it comes to making changes in production for their groups. Are you doing a free for all approach where the group admins can do whatever they want directly in prod? Or do you have an approval process of sorts like group admins make updates in sandbox and only sys admins can review and push to prod? If you have guardrails or an approval process, what is it? I'm sure there's a mix, so looking for examples on your approach to group vs. sys admin change management/controls around what goes live in production. Thank you in advance!
Hi All,I’m currently working with Adobe Experience Platform and Event Forwarding Properties to share events with third-party platforms like Meta and Google.While we can send data to Adobe Analytics report suites using DataStreams (via the Edge Network) as much as needed, I’m now exploring whether it’s possible to share this data using Event Forwarding Property tags instead.Is that possible?I’ve already tested this using the Postman API, and I was able to see the data populating into Adobe Analytics Workspace successfully. Thanks in advance..!
I have a project running with content fragments having different locale. The CF has language master and live copies created. How can I perform the rollout actions across different localization.
Hey,we are trying to use a single Marketo Form on the website that presents multiple gated assets. And we would like to pass a value on the form for which asset was downloaded. We are struggling to determine mechanism to pass that value - which specific asset is being downloaded. Each asset listed on this page has a "Learn more" button which is a java script code, based on which a pop-up with a centralized form opens.Any ideas? See the page mock up below:
For one of our clients, I am trying to automate the creation of a project based on a matrix they now use in Excel. In total there are 3 different data points per row that need to automatically trigger a combination of the tasks of the total project template. Once every row has determined which portion of the tasks of the template are needed, they are stitched together to create a total overview of what needs to be requested. I will try to provide an example that has nothing to do with the client itself but does reflect the complexity of the original idea. Let’s assume I go own a restaurant for which I am keeping track of the different orders. My menu consists of two courses and a drink such that people can order a starter, a main course, and something to drink. In total there are two options per course and the course options have a step-by-step process of how they are created and must be served such that quality is upheld throughout the different orders. This would result in
We have product images on white backgrounds, we want to remove the white background by cropping to the image subject without cropping off any of the image subject, this currently happens with Smart Crop. We are using Dynamic Media with AEM Assets.
Hi everyone, I need some assistance with sharing projects in Workfront. We have around 700 projects, and I have a list of these projects along with the teams they need to be shared with in CSV. Could anyone guide me on the best way to efficiently share these projects with the respective teams? I cant find option using Fusion action modules. Any tips or best practices would be greatly appreciated! Thanks in advance!
I am trying to query my data feed to exclude entry pages, but am coming up with a discrepancy and would appreciate any advice. The result of the code below is 125229. This matches the hit depth dimension shown below.select count(distinct( case when visit_page_num = 1 and post_evar4 like '%account.box%' then concat(post_visid_high,post_visid_low) end)) FROM `adobe.adobe_data` where date_trunc(date_time,month) = '2025-02-01' and exclude_hit = 0 However, when I change the query to visit_page_num <> 1 (exclude entry), I get a value of 195904, which is very different from 105,959.select count(distinct( case when visit_page_num <> 1 and post_evar4 like '%account.box%' then concat(post_visid_high,post_visid_low) end)) FROM `adobe.adobe_data` where date_trunc(date_time,month) = '2025-02-01' and exclude_hit = 0 Account.box Segment = Contains 'account.box' (hit)Entry Page <> account.box Segment = Exclude hit where entry page contains account.box Can a
Hi All,I'm trying to search for Assignments using the Custom Workfront API Call module.Is there a way to somehow flter on the custom field value of reference record? E.g. when searching for assignments, can I filter so that only assignments are returned that belong to a task with a certain custom form field value?I tried adding query strings like task:parameterValues:DE:FIELD=foo, task:DE:FIELD=foo, task:FIELD=foo, but all of these returned an error.Thanks,Tibor
Is there a native integration between Workfront and OneNote to track meeting notes in OneNote, but view within WF?
Dear adaptTo() Community,We've extended the Call for Papers timeline until April 28 - so there is still a chance to submit a talk:Call for Papers: https://adapt.to/cfpadaptTo() 2025Berlin, KulturbrauereiSeptember 29 – October 1, 2025Early Bird Tickets are available until May 31 – get yours now and save your spot! https://adapt.to/ticketsYour adaptTo() Conference Team
Welcome back to the Community Lens newsletter for April 2025! In this edition, catch the latest on-demand resources from Adobe Summit 2025, view our step-by-step guide on how to use the new email editor, and watch our product demo on the recently launched Adobe Express integration! Lastly, don't miss the several blogs published by our Adobe and Community experts, which cover topics on the classic features in Marketo Engage, backfilling acquisition programs, and Marketo Champion's take on the Adobe Identity Migration! Highlights [Adobe Summit 2025] Marketo Engage Recap: A wealth of new product information was shared by the Marketo product team at Summit this year. For a list of the top sessions available on-demand, make sure you check out our recap thread! Step by Step Tutorial: Try the New AI-Powered Email Editor in Adobe Marketo Engage: Read this in-depth tutorial if you are curious about how you can spin up personalized emails quickly and perfect them for your B2
Hi friends! We have a milestone path we've attached to certain projects. I've gotten a request to create a board where the milestones are the columns. I've searched some, I've played some, but I can't seem to figure it out. Is this possible?
Hi. I know that deleting a custom form also deletes all custom data on the objects associated with the form. But does that mean it deletes ALL data that a particular field holds across ANY custom forms where that field may live? For example, if a have "Custom Form A" that uses a field that records which department is making the request. And "Custom Form B" that uses the same field. What happens to the data associated with that field for "Custom Form A" if I delete "Custom Form B." Can I delete one custom form and still keep historical data for other custom forms that use the same fields? Hope my question makes sense.
hi, does anybody have any working documentation of code samples of how to set up a custom destination? I've followed the Adobe documentation (ie the movie star example) and it doesnt work. I've also worked through all the related material and cant seem to come right. I have issues both with the audience not actually activating to the destination, as well as when setting up the example provided and running the destination test i get a data missing with regards to identities. the example doesnt provide for a mapping, and even when i create my own and try map an identity it just does nothing. Is there anyone who can share what they have done to get this working? so frustrated, thanks
Would love to hear from the developers themselves at this point. Is it difficult to integrate into the platform? I have Workfront open all day, and the plain white background hurts my eyes after prolonged use. A dark mode would surely be appreciated by me and COUNTLESS others. I believe this is an accessibility issue at this point.
Dark mode is necessary for a lot of teams. I have Workfront opened all day, and the white backgrounds gives me migraines. Please add dark mode to this otherwise perfect system!
Hi,I need to make a simple HTTP Post call by passing kerberos ticket (SPNEGO) authenticated to get the results from another system on AEM 6.5.21.This is the snippet that I am using: DefaultHttpClient httpclient = new DefaultHttpClient(); System.setProperty("java.security.krb5.conf", "C:/Windows/krb5.ini"); System.setProperty("sun.security.krb5.debug", "true"); System.setProperty("javax.security.auth.useSubjectCredsOnly","false"); NegotiateSchemeFactory nsf = new NegotiateSchemeFactory(); httpclient.getAuthSchemes().register(AuthPolicy.SPNEGO, nsf); List<String> authpref = new ArrayList<>(); authpref.add(AuthPolicy.SPNEGO); httpclient.getParams().setParameter(AuthPNames.PROXY_AUTH_PREF, authpref); HttpPost request = new HttpPost("url"); HttpEntity entity = new StringEntity(jsonPayload, "UTF-8"); HttpResponse response = httpclient.execute(request);I know that DefaultHttpClient is deprecated. (Planning to changing that once I get the success response) I am not ab
Hi everyone,I'm working on a use case in Adobe Campaign Standard (ACS) where we send emails on behalf of multiple people using a singular delivery. I need to dynamically change the sender name, from email address, and reply-to email based on recipient data stored in the Profile dimension.What I've Tried:Using personalization fields like <%= profile.customSenderEmail %> in the advanced parameters of the email delivery.Creating a custom content block with similar code to those of the default content blocks,e.g. Default sender name: <%@ value object="branding" path="mailParameters/sender Name" %>e.g. Custom content block: <%@ value object="profile" path="customSenderEmail" %>" in this example changing the object to look at the Profile targeting dimension rather than the branding object configuration.Questions:How can I modify the From Email Address, Sender Name, and Reply-To Email dynamically using data linked to the profile, utilizing content blocks or personalizat
We're looking to incorporating a DAM and want to know what experiences you have had (good and bad) with what's out there. I believe some people use box.com also for this purpose but it's limited in what we are looking to do. Thanks for your feedback!
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.