Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Hello, Any suggestions on what Marketo Smartlist filters I should use to pull daily counts in Marketo? The "End success node" query data does not match data counts in Marketo using "has AEP Segment". TY!
As you know, WhatsApp can now be configured as a channel in Adobe Journey Optimizer. Just as email and push notification channels have their respective datasets where all related events (Feedback, Tracking, etc.) are stored, does WhatsApp channel in AJO also have its own dataset where information related to sent messages is stored?
Hello, I have a calculated field that displays the latest date among a selection of fields. One such field is a multi-checkbox, each with their own start date field. I am attempting to pull the latest date from these selections but for some reason my calculation spits out a date that is one day earlier than the latest date. For example, if the latest date in a selection of multiple fields is 3/30, my calculation will say 3/29. Here is the specific part of my code that relates to the Multi-checkbox field: DMAX( {DE:Start Date - xx}, {DE:Start Date - xx}, {DE:Start Date - xx}, {DE:Start Date - xx}, {DE:Start Date - xx}, {DE:Start Date - xx}, {DE:Start Date - xx}, {DE:Start Date - xx}, {DE:Start Date - xx}, {DE:Start Date - xx} ), "" ), Here you can see that the dates are indeed 3/30 but the calculation
We’ve recently moved from the legacy to experience on the admin console.Our Workfront Add-In for Outlook has since been giving us an error: Unable to get the outlookIdentityToken We were told during the migration that we should be able to use the legacy link for the add-in, since it doesn’t take the experience league domain.For this error, it’s suggested that we turn on Microsoft legacy tokens Troubleshooting: outlookIdentityToken error when using Workfront for Outlook | Adobe WorkfrontBut Microsoft depreciated them in Feb, and cannot be turned on beyond June without exception from Microsoft – even this won’t be possible past October this year.Nested app authentication and Outlook legacy tokens deprecation FAQ - Office Add-ins | Microsoft Learn We were wondering if an upgrade to the Add-in was under consideration/ on the roadmap.Because we love the features facilitated by the add-in, having to work without is creating a lot of double work when briefing things in.And we’re sur
Newer to using adobe but use a few other tools to track metrics. I have continued to find that Adobe is higher than some other tools. When digging in, I see some specific sessions counting multiple times for a visit. Testing my own session I found it counted 2 times into the views metric but I do not see how it should have based on the documents. It seems that it is when a user opens items in a new tab. Would Adobe view a new tab as a new visit?
I'm currently investigating transactions originating from: OtherTransaction/Java/org.apache.sling.event.impl.jobs.queues.JobQueueImpl/startJob These are coming from my AEM publishers, and I would like to understanding this startJob function within the aem. Specifically, I need clarification on the following: What is this startJob intended to do?What processes or operations does it initiate?Are there any documentation or references that explain its usage and expected behavior?
Here is some information to hopefully outline this scenario:No Fusion is used, but can be suggested as a solution if there is none available in Core Workfront.Compliance Request Project - Standalone Queue Project that teammates can access and add an issue by going to the Request queueWebdev Pjt Template - This is where I am adding Queue Topics, Routing Rules to route Issues that use the same Custom Form available in the Compliance Request form in the Request queue. Issues route to the Compliance Request Project just fine. However, because it is not a formal 'request' from the request tab, and instead is an issue generated in the Webdev Pjt, the issue is routed automatically and silently, with no way for the Issue submitter to know where the Issue has gone. Is there a way to:Keep a 'copy' of the Issue on the Webdev Pjt where the Issue originated from?Link the Issue back to the Webdev Pjt from the Compliance Request Project? I appreciate your insights! Let me kn
Hi Everyone, I’m not able to see the Buying Groups section in Adobe Journey Optimizer – B2B Edition UI. Is the Buying Groups tab automatically available, or there some specific prerequisites needed - such as whether creating audiences are required to make the Buying Groups tab becomes available? Any guidance or documentation reference would be very helpful.
When approving documents in WF, it does not show the audit trail, i.e. date and time the document was approved in WF. Is there a way to track this/turn a feature on?
Hi Team,I'm deploying project on local instance getting below error, could you please help how can I resolve this issueafter using the cmdmvn clean install -PautoInstallPackage How can resolve.
Hello, During development, I encountered an error related to the @adobe/uix-core package. Below are the details of the error.tunnel.ts:268 Uncaught (in promise) Error: Timed out waiting for initial response from parent after 20000ms at tunnel.ts:268:9 We have implemented a fix in the ExtensionRegistration.js file by extending the duration of the timeout parameter.export default function ExtensionRegistration(props) { useEffect(() => { (async () => { await register({ id: extensionId, methods: { .... }, // TODO: This timeout variable configured for the development purpose only timeout: 1800000 // For 30 minutes }) })() }, []) return <MainPage ims={props.ims} runtime={props.runtime} /> } Can someone explain the purpose of the @adobe/uix-core tunnel component?
I am struggling a little with JUnits Here's my model impl class - @Model(adaptables = SlingHttpServletRequest.class, adapters = {MultifieldCollectionModel.class}, defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL)public class MultifieldCollectionModelImpl implements MultifieldCollectionModel { private final String resourcePath; private final String multifieldName; private final @NonNull Resource resource; private final @NonNull List<Resource> multiCollection; @Inject public MultifieldCollectionModelImpl(@RequestAttribute(name = "resourcePath") String resourcePath, @RequestAttribute(name = "multifieldName") String multifieldName, @Self @Via("resource") @NonNull Resource resource) { this.resourcePath = resourcePath; this.multifieldName = multifieldName; this.resource = resource; multiCollection = new ArrayList<>();
For example, I’ve developed two separate App Builder applications:One for a custom shipping carrier integrationAnother for OMS/ERP connectivityIs it possible to link both of these applications—each with its own workspace.json—to the same Adobe Commerce (PaaS) environment?If so, please suggest a best-practice approach or recommended setup?
In my project I have to publish large amount of assets. So I enabled Batch Publishing option for my replication Agent so that it will create batch of request instead of replicating assets individually. But the problem is when I replicate asset by calling replicator API from my servlet and provide it list of path. It is creating the batch request for each path I have passed to it Instead of clubbing all paths in one request as you can see it I want to know whether it is expected behaviour or am I miss understood something . I have tried to pass 1100 paths to test this functionality and it is taking longer time to complete
Dear community, I was wondering if usage of VPN impacts share of returning visits and similar loyalty metrics.Does Adobe measure by IP address or cookies also are taken into account?
Hi all, I have a short question on Journey Step Event Schema. What is the profileID here: "experience.journeyOrchestration.stepEvents.profileID"?. Is it the namespace you define while creating journey or the primary identifer of the schema? Just wondering how this value gets populated 🙂 Thanks!
I have a repo A which has /apps/abc and I also have one more repo B which is having /apps/xyz. When I deploy a repo A code using cloud manager pipeline and it deploys the code /apps/abc and then when I deploy repo B, it removes /apps/abc and deploy only /apps/xyz. I checked the filter.xml and found that it does not have any mode so hence I added mode = merge but even after mode is merge it still overrides the othersRepo A<filter root="/apps/abc" mode="merge" /> Repo B<filter root="/apps/xyz" mode="merge" /> Note - I don't have this issue in my local AEM. I keep deploying these two repos and I don't see this issue at all. It is happening only in AEM cloud instances.
Hi Community,I have to replace complete array with new values of array on every batch ingestion, but on every batch ingestion new items gets appended to this array in target dataset instead of replace. I have used upsert_array_replace in a calculated field and my dataset is profile and upsert enabled. Below is the structure of my target and source array, it has a primary identifier as "key" and "comm_details" array object to replace. Calculate Field : upsert_array_replace (_tenant.comm_details) -- Source Dataset Field : _tenant.comm_detail[*] -- TargetI have already gone through documentation. https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform/overwriting-the-array-object/m-p/566290https://experienceleague.adobe.com/sv/docs/experience-platform/data-prep/functions#arraysCould
Hi,I'm working on a scenario where I watch for updates of several tasks within a Project.When Task A is complete, I need to set Task B to In Progress and create single use Task Approval. Is it possible to do it with Fusion? If so, how? Does anyone have working examples?Could you please advise?Thank you!
If the demdex call was blocked -- what would be the impact to Adobe Target? what would be the impact to Adobe Analytics? Would targeting still work? select targeting use case work? Would analytics still work? Is there different considerations for Desktop vs Mobile App?
We are going to use the web channel for some business usecases. How do we enable the tracking for the same? I dont see any event generated from ajo directly. Should we use the adobe launch to use this for tracking?
Hello community, When using personalisation done on the Edge, we understand that some PII data might be temporarily stored on the servers (up to 14 days) as part of the edge projection process. As such, what is the current security mechanism employed to protect this data? Is there encryption of data at rest? Is there any best practice recommendation to protect such kind of data from unintentional leaks? I couldn't find much on any of the security white-papers. Thank you for the guidance on this matter.
Hi, In a Fusion Tools Module I'm trying to set a variable with the first item selected in a multi-select dropdown. However, if only one item is selected, Workfront returns the value as a string rather than an array with one value. This is quite frustrating, but I thought I'd just check to see if the value is an array or not, but there don't seem to be any functions to do this. I've tried length, but that just returns the number of characters if a string is returned.Does anyone have any advice?Rob
We have a Project with a section of Events our photo and video teams will be shooting at and a section of the finished deliverables that need to come from those Event shoots.Project- Events-- Event A-- Event B- Production Work-- Deliverable 1-- Deliverable 2-- Deliverable 3-- Deliverable 4 I am trying to show the relationship in the report. Something like:Event nameEvent DetailsShot listsAssociated DeliverablesEvent ADate, TimeShoot stuffDeliverable 2Deliverable 3Deliverable 4Event BDate, TimeShoot stuffDeliverable 1 I assume we will need to relate tasks via a Custom Field. I was trying to add a field to a form at the Deliverable task with the URL/ID/Name of the Event it is associated with. Then in the report, I was using the listmethod : valueexpression=IF({DE:Associated Event}=???,{name},"") listdelimiter=<p> listmethod=nested(project.tasks).lists valueformat=HTML displayname=Deliverable type=iterate I do not think I can pass in the context of the Event
We have started to notice on several projects that the Percent Complete header is displaying 100% when their is still a task left to complete. The parent task is also displaying 100% even though there is still a child task that has been completed yet. Just looking to see if anyone has had a similar experience. Went ahead and put in a ticket with Support.
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.