Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Be bold. Apply for the 2022 Adobe Experience Maker Awards from March 1 – April 15. The application submission is now open for 2022 Adobe Experience Maker Awards. While having a great solution does help you win half the battle, you also need your awards application to stand out. So, here we are sharing with you our 4 tips for writing a winning Experience Maker Award submission: Read carefully, choose wiselyWith 16 different awards categories, it’s important to carefully read through each category description to find the absolute best fit. Does your solution have social impact? Consider the Changemaker. Did you share your expertise to help your peers succeed? Look to the Ambassador. Did you put content and marketing together for jaw-dropping results? Try the Architect. If you have a great Adobe Marketo Engage, Adobe Commerce or Adobe Workfront story, the Engager, Disruptor, and Collaborator categories were developed specifi
As we all know the digital industry ecosystem is very dynamic in nature. With the recent developments and changes in the marketing space, one thing always remains constant, Audience. Understanding our audience's behavior and reaching out to the right set of customers is the most important aspect. And for this, marketers require data to pull insights about their user behavior. This data is available in three forms: first, second, and third-party data.What is First-Party data?This is the advertiser’s data that they collect themself. First-part data includes information such as demographics, interests, time spent on the website, purchase history, etc. This customer information is collected from both online and offline sources, such as the company’s website, app, CRM, social media, or surveys. These data points can be segmented further and monetized by using a data management platform resulting in a personalized experience for the end-user.Why First-Party data matters:First-party data is g
Hello Community, I have following situation /content/xyz/en/application/test.html| sling:alias = mytesten||/content/xyz/fr/application/test.html sling:alias = mytestfr with these alias set i am able to access /content/xyz/fr/application/mytestfr.html I also have alias for application under fr node set to myapplicationfrHence i am able to access /content/xyz/fr/myapplicationfr/mytestfr.html as well. However, when selecting the page using pagefield component in the dialog which would show the pages to select, the url which gets linked is only /content/xyz/fr/application/mytestfr.html instead of /content/xyz/fr/myapplicationfr/myt
I always tell folks to use a time-tested URL parsing library like URI.js to seek and save UTMs and other marketing attribution info (not all browsers support native URLSearchParams, plus URI.js is better anyway). Don’t attempt to write your own or use an uncredited one-liner you found somewhere! Almost broke my own rule just now, though. For an upcoming post where only one query param was necessary, I found this old code (credited as part of “IOWA Util” though no evidence of that project exists) and pasted it in before doing a double-take: function getURLParameter(param) { var queryString = window.location.search.substring(1); if (!queryString) return; var matches = new RegExp(param + "=([^&]*)").exec(queryString); if (!matches) return; var value = decodeURIComponent(matches[1]); return value; } You see this general approach — new RegExp(param + "=([^&]*)").exec() — in hundreds of projects on Gi
8 Tenents for Cloud-Scale Logging in AEM by Daniel Klco Abstract AEM has supported logging since the beginning and fundamentally, the logging implementation between AEM as a Cloud Service, AEM in Adobe Managed Services and AEM 6 are very similar. However, since AEM Cloud Service is executed as a Cloud Service, and orchestrated as containers, you can't SSH into the server to look at the logs to diagnose issues. So how do we get logs in AEM Cloud Service and what more should developers consider when writing logs for a cloud platform like AEM Cloud Service? Getting Logs in AEM Cloud Service In AEM as a Cloud Service, the logs from your containers are automatically collected and can be downloaded via Cloud Manager or forwarded to your own Splunk service. Forwarding logs to Splunk allows your organization to seamlessly consume logs from AEM and develop your own monitoring and metrics for your AEM application or website. Great! Now you have access to the logs for your instance. So how d
AEM as a Cloud Service -> Product Recommendations by Adobe Docs Abstract Adobe Commerce features a recommendation engine powered by Adobe Sensei. Learn how to dynamically insert these product recommendations in an Adobe Experience Manager (AEM) storefront. Video: https://images-tv.adobe.com/mpcv3/6467/fd12d2f2-4a03-4616-ba83-225c75403a5d_1643767568.854x480at800_h264.mp4 Read Full Blog AEM as a Cloud Service -> Product Recommendations Q&A Please use this thread to ask the related questions.
AEM as a Cloud Service Tutorials -> Create Azure storage account by Adobe Docs Abstract An Azure storage account contains all of your Azure Storage data objects, including blobs, file shares, queues, tables, and disks. The storage account provides a unique namespace for your Azure Storage data that’s accessible from anywhere in the world over HTTP or HTTPS. Data in your storage account is durable and highly available, secure, and massively scalable. The following video walks you through the process of configuring azure storage account. Video: https://images-tv.adobe.com/mpcv3/6465/9612add1-1612-4fb7-a77f-3a3c0e25f413_1643747930.854x480at800_h264.mp4 Read Full Blog AEM as a Cloud Service Tutorials -> Create Azure storage account Q&A Please use this thread to ask the related questions.
Create batch configuration by Adobe Docs Abstract Video: https://images-tv.adobe.com/mpcv3/6474/400d49ec-d6de-4204-a8ff-8c08ff5bb728_1644266488.854x480at800_h264.mp4 To use a batch API, create a batch configuration and execute a run based on that configuration. The following video shows a demonstration of creating batch configuration using the API NOTE Please make sure the AEM user belongs to forms-users group to make API calls. Create Batch Configuration The following is the POST endpoint for creating Batch config /config The following is the minimum configuration that needs to be specified when creating batch configuration. This needs to be passed as JSON object in the body of the HTTP request { "configName": "monthlystatements", "dataSourceConfigUri": "/conf/batchapi/settings/forms/usc/batch/batchapitutorial", "outputTypes": [ "PDF" ], "template": "crx:///content/dam/formsanddocuments/formtemplates/custom_fonts.xdp" } Verify Batch configuration To verify the successful crea
Custom functions in AEM Forms by Adobe Docs Abstract AEM Forms 6.5 introduced the ability to define JavaScript functions that can be used in defining complex business rules using the rule editor. AEM Forms provides a number of such custom functions out of the box, but you will have the need to define your own custom functions and use them across multiple forms. To define your first custom function, please follow the following steps: Log into crx Create a new folder under apps called experience-league(This folder name can be a name of your choice) Save your changes. Under experience-league folder create a new node of type cq:ClientLibraryFolder called clientlibs. Select the newly create clientlibs folder and add the allowProxy and categories properties as shown in the screen shot and save your changes. Read Full Blog Custom functions in AEM Forms Q&A Please use this thread to ask the related questions.
AEM Forms - Cascading drop down-lists by Adobe Docs Abstract Video: https://images-tv.adobe.com/mpcv3/6490/a677e937-0720-48d3-97f4-07f6e1cce196_1644966123.854x480at800_h264.mp4 Cascading drop down lists A cascading drop-down list is a series of dependent DropDownList controls in which one DropDownList control depends on the parent or previous DropDownList controls. The items in the DropDownList control are populated based on an item that is selected by the user from another DropDownList control. For the purpose of this tutorial, I have used Geonames REST API to demonstrate this capability. There are a number of organizations providing this kind of service and as long as they have well documented REST API’s you can easily integrate with AEM Forms using the data integration capability The following steps were followed to implement cascading drop down lists in AEM Forms Create developer account Create a developer account with Geonames. Make a note of the username. This username will
AEM Community We have great news! We’ve extended the submission deadline by one week to April 22nd at midnight Pacific Time for the 2022 Adobe Experience Maker Awards! It’s not too late to be bold, apply for up to 16 categories and bring your breakthroughs to the big stage. To learn more, visit our FAQ page or reach out with any questions at xmakers@adobe.com. For inspiration, check out last year’s winners here. Adobe Experience Maker Awards: https://www.adobeexperienceawards.com/?sdid=25XLCQ85&mv=email&mv2=sponsored Apply: https://www.adobeexperienceawards.com/dashboard?sdid=25XLCQ85&mv=email&mv2=sponsored Categories: https://www.adobeexperienceawards.com/categories?sdid=25XLCQ853&mv=email&mv2=sponsored FAQ: https://www.adobeexperienceawards.com/faq?sdid=25XLCQ851&mv=email&mv2=sponsored Stories: https://www.adobeexperienceawards.com/stories?sdid=25XLCQ85&mv=email&mv2=sponsored These awards are designed to showca
Have you ever wondered about the best way to organize your users into groups and teams, or which permissions to assign?In this on-demand webinar, originally broadcast on February 23, 2022, Mary Ann Erickson‚ Sr. Customer Success Manager at Adobe Workfront, and Heather Kulbacki, Marketing Systems Specialist (and Workfront Guru!) at Thermo Fisher Scientific, covered: The basics of licenses, access levels, groups and teamsObject hierarchy and sharing permissions best practicesHow Thermo Fisher Scientific chose to organize their users and the lessons they've experienced along the wayYou can view the recording here and a copy of the slides is attached. Have questions for our speakers? Tag them in a comment below!
It's here! Break out your spatulas and mixing bowls and get ready to try the “recipes” in our first ever Adobe Workfront Customer Reporting Cookbook. Inside you'll find step-by-step instructions for 10 reports, ready for you to whip up in your environment today. We’ve gathered favorite reports from customers and put them together in a snackable, easily digestible, cookbook for you to take back and test out in your own Workfront kitchen. These 10 reports come from customers who are just like you. Spread out across industries, departments, teams, positions and all in different companies, we owe a huge thank you to the incredible customers who shared one of their favorite reports. Some reports are simple (but incredibly useful), and some are more complex to take your reporting to the next level. With something for everyone, what are you waiting for? It’s your turn to start cooking! Also, don't forget to check out the Agile Reporting and Fusion Cookbooks
Want more control over how or when your people are routed in Salesforce? Leverage the power of webhooks and the Chili Piper API to control your routing in Salesforce. Chili Piper is a tool that makes it easy for inbound people to schedule a meeting with your sales team and then handle the distribution of these meetings to the members of your team. You can connect Chili Piper to your forms to automatically route people that are created. However, if you want more control over when people are routed then you can use the Chili Piper REST API. This in turn means that routing within Salesforce can be controlled by Marketo, since the API requests can be made using webhooks. Before jumping into the implementation of the Chili Piper routing request in Marketo lets take a quick look at how Chili Piper can be configured to route people in the way you want. Chili Piper Introduction The distribution of inbound people and meetings is handl
Website Structure in AEM — Multi-Site Manager(MSM) by Albinsblog Abstract In this post let us explore how to use MSM concepts to structure websites in AEM. The site structure is driven by multiple factors, set up a site structure that meets your goals Multiregional, multilingual needs Content re-use/Duplicate Content/Content Velocity Content distribution Translations(automation third-party translation connectors ) Access Control/Governance(Who manages the global/local websites and content) Create a consistent fluid look among sites Multiple site structures can be enabled based on the above factors, some of the important structures are IThe AEM MSM(Multiple Site Manager) can be used to enable the required site structure and enable the content reuse. Let us see some of the important concepts on MSM. MSM(Multi-Site Manager) — MSM enables you to use the same site content in multiple locations. MSM enables a set of tools to manage sites that share the same content. MSM defines the rela
Hello @1905403 I have created a custom component multifield. For that I have created cq:dialog but the dialog is not working properly. Also I couldn't able to drag the images. I have checked with we.retail site also, there also I can't make any changes to the cq:dialog. I have attached the error below, please help me, It's very urgent. Like I can't able to close or click the tick symbol in the dialog, when I do, nothing is happening. In the above dialog, It's not letting me to drag the image also it's not allowing me to click the tick symbol nor close symbol.
Happy July everyone! First off this month, thank you to all of you who voted on a name of our new monthly newsletter. I’m excited to share that the winning name is Workfront @ Work! There is so much I want to share with you this month! Just a couple of weeks ago, we had our annual Leap conference virtually. Read on to learn all about it. We also have a big product release coming your way in August. Let me start with a quick teaser for our 20.3 release. Because almost everything about how you work has and continues to change, we’re excited to announce Workfront Align and Workfront Scenario Planner to support strategic goal setting and execution, and dynamic planning and prioritizing of people, budgets, and work. Moving on to Leap. Our Leap conference always represents the best time of the year for me. It’s a time to get to see so many of you, listen to your experiences, and capture feedback to use in our continual efforts to enhance your experience with Workfront.&
As the owner of leadership meetings, I find Workfront to be invaluable in creating agendas that other team members can contribute to, recording decisions that are made, and easily assigning and tracking action items.Each meeting is a project under the leadership team program. It’s easy to locate past meetings when we need to reference them:An agenda looks like this:With the option of putting the agenda items in whatever statuses work for your team. We use these customized statuses: standing, requested, action item, parking lot.Action items are easily recorded and tracked.The request queue for our organization has helped me execute on items and track them easily. Here is an example of part of my request queue dashboard. I can view all of my daily requests as a "to do list" on one screen (okay, maybe two screens because It’s so large!). It is empty right now and that’s a reason for celebration!Prior to using this request queue, team members would email me, walk by and ask me, mention in
As we near the finish line of a year filled with unimaginable change, we’ve been knee-deep in trends, research, and lessons learned—compiling and analyzing as we prepare for 2021. Between our Customer Advisory Board’s astute observations and the findings of Workfront’s Generations at Work Study, one prediction in particular stands out. Delivering exceptional digital work experiences will be as important for our employees as it is for our customers in 2021—and beyond. Enabling and empowering a modern workforce will become a, if not the, top priority for organizations of all types and sizes. Why? Because, more and more, the global workforce is composed of digital natives who demand the same quality of digital experiences at work as they do in their personal lives. It has to be easy, and it has to be delightful. Staying competitive will require companies to create collaborative, virtual, rich media digital experiences that reflect the way work and the people doing the work are
Did you know? Workfront has 70 reports built into the system to get you started tracking and measuring work! These reports are intended to provide quick and easy visibility into the relevant information about the work being done, for you and your users. Some of the 70 reports help you focus on getting work done and monitoring work in progress. Reports such as: My ProjectsProjects By ConditionMy TimesheetMy IssuesMy Submitted IssuesMy TasksTrouble Tasks Let's dig deeper into Workfront system reports: -- Video coming soon! -- To access reports in Workfront, go to the Reporting area, click the Reports tab, and then click All Reports. The list of available reports can be quite long. The All Reports list shows you every report available to you in Workfront, whether they’re the built-in reports or ones written by your users. So let’s create a filter to see just these “out of the box” reports and filter out the reports that users in your organization created.
The Superhero Activity is a unique and interactive way to introduce users to Workfront. The project itself consists of a project with a series of tasks that guide users to find superhero themed documents and objects that have been hidden in the system. During this activity, your team will acquaint themselves with Workfront objects such as projects, tasks, assignments, statuses and so much more as they learn Workfront by solving problems and becoming a Workfront superhero! The attached kit provides instructions and all documents needed for the activity to run smoothly.To guarantee your activity is as fun and effective as possible, we encourage a few practice rounds with new team members, some incentives, and even dressing up, to add a little more flair to an already exciting day!Superhero Activity KitThe superhero activity kit contains:A setup guideKick-start XML fileThree digital assets to be used in the activity Emergency SceneSuperhero GuideSuperhero HeadquartersPrintable Workfront S
We’re thrilled to announce that our annual user conference, Leap, will be incorporated into Adobe Summit—the world’s largest digital experience conference. This free and virtual event will be held April 27 - 28, 2021. As a global event, Adobe Summit will have content and sessions tailored to multiple geographies, industries, and topics. The sole focus of Workfront Leap has always been to provide our customers the opportunity to network, learn, and grow within the Workfront community. Now that Workfront is an Adobe company, you can look forward to even richer content and a broader networking base through the inclusion of Leap content and engagement in Adobe Summit. As always, we will feature customer stories, work management best practices, and product expertise. We are confident that this shift will result in an amazing experience for all of our customers! We invite you to join us April 27-28, 2021. Registration goes live later this month and is free to everyone. If
Is it convenient for you and your team members to easily find, quickly manage and accurately measure work in Adobe Workfront?Reports and dashboards aren’t just a measurement tool in Adobe Workfront—they can, and should be leveraged as a work management tool to improve productivity, drive visibility, increase communication and identify problems before they happen.Becoming a reporting expert takes both time and practice, so start small and complete the training on Workfront One. Then, take action on the following two items to ensure your organization starts off on the right foot towards maximum effectiveness. Getting startedWe know there is a lot to learn, so if you haven't already dipped your toes into the possibilities that reports and dashboards offer within Adobe Workfront, look no further than the Basic Report Creation learning program on Workfront One. This self-paced training course is comprised of 9 different learning paths, each focused on a different aspect of reporting. Take y
Do you ever feel like you spend so much time responding to ad hoc requests, it’s impossible to come up for air to think strategically about longer initiatives? You aren't alone. I’ve heard this referred to as the “tactic treadmill.” It feels impossible to catch up, let alone get ahead, because there's always something urgent that needs your attention. The good news? When teams are empowered to evolve from simply responding to requests, the work they manage can also evolve to be more proactive and strategic in nature. Gartner defines work management as "a set of software products and services that apply workflow structure to the movement of information as well as the interaction of business processes and human worker processes that generate the information.” In other words, work management gives meaningful structure to the work. It’s an ecosystem where the people, process, technology and data are brought together into a framework specific to your business objectives. 
As an Enterprise Account Executive, I manage my accounts in Salesforce and manage the work related to those accounts in Workfront.I use Workfront to manage 2 things – my existing accounts and my prospect accounts. With existing accounts, there are always things we need to stay on top of from account plans to value pyramids to plans on how we can expand these accounts with Workfront. With a prospect account, there are always tasks and actions to be done to move the prospect forward. Ideally, they will follow a sequence of events from the first conversation to the close of the contract.In order to stay on top of all of these moving parts, Workfront is essential in helping me keep track of these activities. It is also imperative that the professional services (CX) team has what they need in order to successfully implement a new customer. Inside of each customer’s project, the CX team will find recordings of demos, value maps where we have put together processes, as well as the customer’s
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.