Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Hi Community,Are you awere of any customers in China using Workfront to manage their approval workflows for proofing? Thanks!
I have created a GraphQL endpoint on the author instance, and it works fine there. I’ve also published the GraphQL endpoint and the content fragment to the AEM publish instance. But when I try to access the GraphQL endpoint on the publish instance, I see the following errors. I already confirm that the endpoint is already publishedAEM Version - AEM CLOUD{"errors": [{"errorType": "ServletError","message": "Internal Servlet Failure","details": "Cannot invoke \"Object.getClass()\" because \"value\" is null"}]}This is the error. Is there a clue where I need to check this ?
I'm using the out-of-the-box (OOTB) sitemap feature in AEM as a Cloud Service, but the /sitemap.xml endpoint isn't returning the expected XML format. Instead, it either shows an empty page or doesn't render at all.I've confirmed that the Sitemap Generator is enabled and properly configured. The required OSGi services are active, and the pages are published. Still, the sitemap doesn’t generate or return the XML as expected.Has anyone faced this issue or is there a specific configuration or step I'm missing to get the OOTB sitemap working?
I'm trying to connect my AEM as a Cloud Service instance to Adobe I/O in order to call APIs like Adobe Target, Analytics, etc. What is the correct way to set up the integration with Adobe Developer Console?
Hi there, I have an AEP profile dataset with some million CRM records being connected to CJA. Most of profiles do not have events tied to the CRM ID, so we cannot view them in Analysis Workspace (as Adobe FAQ explains). However, the client needs to analyze all the customer records in CJA no matter they have had an event. In order to solve this, we generated one "fake event" per customer and the solution worked. The problem of this solution is that we need to ingest some million fake records monthly to analyze CRM data with a (monthly) time window, which is not recommendable from both licensing and data cleansing perspective. What would be the best fit approach to circumvent this limitation? Thanks in advance,
I’m trying to use the Journey Optimizer REST API to update custom profile attributes, but my payload returns a 200 OK while no changes are applied. Has anyone faced this, and what is the correct endpoint and JSON structure to successfully sync profile data?
Hi,We are trying to render tagged PDF using custom XDP (XFA based) from Adaptive form. As we need a static pdf, we are using doRService for rendering tagged PDF. The issue that we are facing is that the generated PDF from Adaptive form is not using custom XDP.Adaptive form has the following configuraiton:1. Adaptive form - open properties - Form Model - None Document of Record template configuration - Associate form template as document of record template We have a custom button, which triggers the servlet to render PDF using DorService api. Please let me know why the PDF rendered is not picking the custom XDP
Helloes, We are having the following scenario: the planned completion date is today for an approval task, and we would like to send an email to the user who should be approving it - that s totally fine and we managed to achieve this easily. Now comes the following case: there could be multiple tasks that are supposed to be approved today (either in the same project, or different projects). Is there any way we could consolidate all those tasks or projects links into a single email that we send at the beginning of the day lets say, so the users are not spammed with emails? Have a great day ahead!
Is there a way to make components added through child editor responsive in layout Mode? For example, when we include a component in Container component both the container and child component are responsive. Can we achieve same functionality with child components included using child editor for components such as carousel, accordion etc. I tried removing parsys and including components using responsive grid but even then only parent component is responsive
All I see the experience league videos to follow the exercise walkthrough and do practice in test instance for fusion learning.Its very hard to follow and understand the capability for a person who has no coding background or Developer experience.I would want to know if there is any Bootcamp kind of training that Adobe provides/provided in the past.
I'm having an issue where the munchkin tracking that was installed on two domains isn't working on the second domain. I've confirmed that web page activity with munchkin works on the primary domain via the web page activity report. I'm able to see where people navigate from the primary domain to the secondary domain, but I'm not seeing any web page activity for the second domain (or utm values we've been using in the emails to click on the second domain). I read another post on this topic and I think we need to update the scripts on both domains to use an iframe and point from the first domain to the second in javascript, is this correct? Also found this article here which seems to have provided a solution: https://purplemeup.substack.com/p/maximizing-munchkin-tracking-across
once I approved any request, how can I find my list which has been approved?
I have an engagement program, which has two streams. In one stream i want to send people an email every 3 months, and in another i want to send people an email every 6 months, however i want people to enter each stream monthly and then the wait time is respective to them receiving the first email. Looking at the program cadence it looks like what I set for one i set for all, so it i set the cadence to 6 months, people will only receive the first email every 6 months, based on a specific date, rather than them being added. Is there a way to achieve what i want without having to build smart campaigns with pauses for every email? I'd prefer that each email is sent at a specific date every month, with the first instance going out monthly, and then the next ones to either be 3 months or 6 months from that first email, but the wait time/pause time is tripping me up.
Hi, I have a schema in prod and there is an ID field in it(like CRMID for example). The source datatype given to us in INT64 and I have used 'integer' datatype in AEP. After doing data ingestion, I see few negative values and few positive values and all values look incorrect compared to source values for this ID. Example 723456789123 is the value in source file and I'm seeing -1234567890 and 1234567890 values in AEP after data ingestion.The mapping is done correctly and I don't see any errors in my dataflow. What could be the reason for this? Any suggestions how to proceed with this will be helpful. Also, for our use case, we have not enabled Schema and Dataset for profile. So, incase if I update datatype, what are the next steps I can take, to get the old incorrect data also corrected? Or first to just test this process, how can I copy/ duplicate schema. Regards,Ramyasri
The hairline outline around fields in reports and project templates is very difficult to see. It's almost non-existent. I have several people on my team that have trouble viewing it and can't quite click into the box to change the status. See screen shot attached. How can I change the hairline outline to a dark color like black? Thanks.
Hi, I have implementation knowledge of Adobe analytics using Adobe Lunch but am very new to the Web SDK or Mobile SDK. I am supposed to create Button tracking, Click tracking, Swipe & Scroll tracking, Button Tapped, Onpress Tracking, Video(Play,pause,end) tracking for mobile SDK. I've gone through the Adobe docs, but none mentioned the step-by-step guide, on1, How do we create rules on click/button tapped tracking?2, How to create data elements?3, How to Map the evars/props/events?4, How do we send the data to adobe analytics report suites?5, What are the extensions to be used?6, Do we need a data layer for Mobile SDK? Any suggestions are appreciated!
I have implemented a custom AEM Workflow Process Step in Java that updates a JCR node property in the workflow payload path. Here’s my code snippet:@8220494(service = WorkflowProcess.class, property = { "process.label=Update Payload Deep" })public class UpdatePayloadProcess implements WorkflowProcess {@3214626private ResourceResolverFactory resolverFactory;@9944223public void execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap args) throws WorkflowException {String payloadPath = workItem.getWorkflowData().getPayload().toString();Map<String, Object> serviceUserMap = Collections.singletonMap(ResourceResolverFactory.SUBSERVICE, "workflowServiceUser");ResourceResolver resolver = null;try {resolver = resolverFactory.getServiceResourceResolver(serviceUserMap);Session session = resolver.adaptTo(Session.class);if (!session.nodeExists(payloadPath)) {throw new WorkflowException("Payload path does not exist: " + payloadPath);}Node payloadNode = session.getNode(payloadPat
Does Workfront have a mobile app available? When I open the Play Store on my Android phone, the only option I see is "Adobe Workfront for AirWatch", which doesn’t open after installation.
Trying to get a list of the various use cases you all have used velocity scripting for! TYIA!
Hi Team,I’m experiencing an issue with in-app messaging in AJO on iOS devices.I can see that screen_view event is reliably fired every time the login page is displayed, and I can see these events & logs in Assurance.However, the in-app message only appears intermittently.This issue seems to be specific to iOS, as it works as expected on Android.Has anyone faced a similar issue or have suggestions for troubleshooting iOS-specific problems?Are there known limitations or additional configurations required for iOS (such as WKWebView, privacy settings, or SDK initialization order) that could cause intermittent in-app message display, even when events are tracked correctly?ThanksAJODev
Hi there, I have been testing the new document approval / unified approval between the document and proof functionality. Has there been any talk about enabling a combined "Reviewer and approver" role rather than just either "Reviewer" or "Approver"? We have many situations where our approver needs to also make a comment prior to approving. I am assuming all of the capabilities in Proof HQ will eventually live there, but I have seen that not always be the case, so I wanted to check. Thank you! Brittany Lang Thermo Fisher Scientific
Hello, We’re planning a custom integration between Marketo and Bizzabo for our upcoming webinars and would like some guidance from anyone who has done something similar.Our planned flow is:Use a Marketo form to capture webinar registrations.Send the registration data to Bizzabo via a webhook.After the event, retrieve attendance and engagement data back into Marketo, ideally via a webhook or API.We're currently exploring how best to set this up, especially:Structuring the webhook payload to send from Marketo to BizzaboAuthentication or headers needed for Bizzabo APIHow to receive post-event data like attended, no-show, engagement score, etc., back into MarketoAny pitfalls or limitations to be aware ofIf anyone has done this type of Marketo to Bizzabo integration—or something similar—I’d really appreciate if you could share:The high-level steps you followedSample payloads or webhook configTips or lessons learned
Hi Folks,I'm encountering an issue while merging leads in Marketo. Has anyone faced this before or knows how to resolve it?Error:"Failed merging lead in Salesforce due to "Error: insufficient access rights on cross-reference id". The Marketo sync user does not have the needed permissions on the cross-referenced objects to successfully complete this operation. Please correct this. Please reach out to Salesforce support if further help is needed."
Hi all, My organization uses an enhanced connector between Workfront and AEM Assets. We have a use case where DAM users create live copies of items in linked project folders (linked to Workfront). Whenever users create live copies of an entire folder, every file within the folder gets stuck in workflow. Sometimes these folders have over 100 assets, so it can be tedious to end these workflows. The Initiator is workflow-service (msm service) and the Model is Auto Attach Workfront Document Custom Form and Map Metadata. Does anyone know what is causing this issue, and how to prevent this from happening? I've included a screenshot for reference. Thank you!Morgan
Hello Community, I'm looking to export leads from the Marketo database. According to the documentation, there's an API that allows exporting leads created within a specific month. However, I'm wondering if there's an alternative way to retrieve all leads. My objective is to generate a file that includes the following fields: FirstName, LastName, MarketoId, and Email Address.POST /bulk/v1/leads/export/create.json Thank you.
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.