Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Hi, While integrating Assurance to our Android app, we faced a problem with assurance pin screen overlay being disappeared. While debugging, we found out that the assurance SDK runs AssuranceFullScreenTakeoverActivity, however due to our current multi activity setup, AssuranceFullScreenTakeoverActivity has been overtaken by other activity. Basically, in our current setup, we start with SplashActivity, then we switch to MainActivity. Looks like AssuranceFullScreenTakeoverActivity is squeezed between those. Question is, is there any way to control when AssuranceFullScreenTakeoverActivity is launched? Or what you'd suggest to do in such multi activity setups.
Hi all,i updated my LCD ES4 11.01 to Adobe Forms 6.4 to hopefully solve the problemthat it freezes sporadical. This began maybe 1 year ago (is WIN 11 the problem)?I also would be interested if someone knows how or if it is possible to upgrade to 6.5.I just want to maintain my exisiting stand alone working forms for customers or maybe develop billing forms etc. Any ideas? Adobe support is crazy. Any help appreciatedCheers Michael
I have an input form, where I have a drop down field. If the value of this drop down is Archive, I want to make the form read only upon saving the form.Also, if the value is Active, then I want to make a few fields on the input form read only. For example, if the Status is Archive, then make the Message Code field Read Only.
I require to capture only those program members that were modified at a given time.I saw the Get Program Members endpoint (https://developer.adobe.com/marketo-apis/api/mapi/#tag/Program-Members/operation/getProgramMembersUsingGET).Here we have an option to include "filter-type" as "updatedAt". I wanted to know if this will solve my problem. Means, the updatedAt filter will only include changes for a leadId within any program (Changes to a lead’s status within the program). So I can just replace them in my database.Example:- The result I get for this API request returns me {"seq": 0,"leadId": 24558,"reachedSuccess": false,"programId": 890,"acquiredBy": false,"membershipDate": "2024-02-15T13:17:31Z"}So, does that mean the leadId=24558 had undergone some change within the the prgramId=890. And can this result be included as the change in program members for the given programId?Will It also return any members that are removed from that program
Hello, Is there a way to restore a deleted Journey?
Hi, How can we easily identify bots? We have a lot of bot activity happening and we need to whitelist them for both our website and Adobe Workspace and Downstream. What is a good approach to doing this? Thanks!
Preloading ActivityCan I use the preloading activity to check if a user has already submitted a response in the custom schema I’ve created, and then redirect them to a "Thank You" page?To achieve this:Should I be using the Preloading activity, Test activity, or JS activity?In my schema, I have the columns EmailAddress, Feature_1, Feature_2, and Feature_3. I need to verify if the user with a given email address has responded for a specific feature, and if so, redirect them to the "Thank You" page.Could you please suggest the best approach for this?
Hi Team,We are building a report with experimentation panel. I was able to get data from AJO and Adobe Target. Could you please help me understand if experiement is available for Adobe Campaign also, and if not, how can I get the data from ACC to CJA to be used in Experiement Panel. Adobe Campaign classic data is being ingested in AEP, is there a way we can use this dataset to get the values in experimentation panel. Thank you,Shivani
I wonder if there is a way to add an Asset to a Batch Set Preset but instead of matching a naming convention, to match it based on a metadata property. Let's say that I have Assets with a metadata property which is an array of Strings: jcr:content/metadata/dam:myCodes And when I upload images that has this metadata property with values: my_testing_asset_one.png 3025070-100 7002011-369 6036221-045 my_testing_asset_two.jpeg 3025070-100 my_testing_asset_three.tif 7002011-369 5234620-136 It gets assigned to a Batch Set per one of myCode, and each site in Scene7 as follows will display: https://company.scene7.com/is/image/projectName/3025070-100_is?req=imagesetprojectName/my_testing_asset_one, projectName/my_testing_asset_two https://company.scene7.com/is/image/projectName/7002011-369_is?req=imagesetprojectName/my_testing_asset_one, projectName/my_testing_asset_three https://company.sce
Question w/ the getNewRepeat() function. We have the following flow: User gets directed to Site A (www.sitea.com), selects an optionprop1 is set as "New Visitor"User gets directed to Site B (www.siteb.com) which is a different domain and is put into a queue (waiting room) and it goes over the 30minson siteb, we do not have adobe analytics on the pageUser is up next after waiting and is directed to Site A (www.sitea.com) to continue after waiting in lineback to sitea, when a user surpasses the 30min timer, it resets the session and prop1 is now set as "Return Visitor" instead of persisting the "New Visitor" Would overwriting prop1 to maintain "new visitor" if we were to check if the referring domain was www.siteb.com affect any analytics? It would do the following:Check if the referring url was www.siteb.comCheck if the cookie that was set by www.siteb.com was setIf both values are true, have prop1 as "New Visitor" so the new visitor persists. Would the Adobe "Common Anal
How can we manage consent data in AEP for users with multiple mobile devices? In our usecase the customer can have push notification of multiple types like offer_push, sale_push, back_in_stock_push , change_of_delivery_date push. Is there a way to handle this using the out-of-the-box consent and preference field group? From my understanding, the OOTB field group only accommodates a single push consent, rather than multiple types of push consents. Thanks, Arpan
Hello, When updating an asset file, I used the same file name so that it would link to the old asset. However, I accidently selected "replace" instead of "create version". Which deleted the old asset and created a new one. Now that it is published, the old asset no longer exists at that URL (a new UUID was generated). Has this happened to anyone, is there a solution or loophole? The asset is linked in many places (websites, assets, etc.), so it is ideal that the asset keeps the original URL (UUID).
Hi,I am trying to generate a custom column in a view in a report which lists all the notes sitting under a parent task, but this is pulling nothing.Is there a way to do this?displayname=Last Notelistdelimiter=<br>listmethod=nested(tasks).liststextmode=truetype=iteratevalueexpression=IF(ISBLANK({lastNoteText}), "", CONCAT({lastNoteDate}, " ", {lastNoteOwner}.{name}, " said: ", {lastNoteText}))valueformat=HTML
I'm working on setting up a test that is swapping out different graphics on landing pages. These graphics change at different intervals of time and I'm wondering if there is a way that I can go into the test while it is live and schedule on a certain day and time for the test to update to match the live site? Or does this have to be done manually every time something changes on the live site?
Hi guys !How can I adapt my WorkflowSession to a ResourceResolver ?I found this searching on google:@ReferenceResourceResolverFactory resourceResolverFactory;public void execute (WorkItem workItem, WorkflowSession workflowSession, MetaDataMap metaDataMap) throws WorkflowException {Resource resolver = null; try{ resolver =resourceResolverFactory.getResourceResolver(Collections.singletonMap("user.jcr.session", (Object) session.getSession())); } catch (final Exception e) { throw new WorkflowException("could not get resource resolver", e); }But then I want to pass it as a parameter and call method getResourceResolver over it and I can't.Hmm, what is wrong here ?I'm using AEM 6.2, thanks.
When trying QA in the AB test I setup, I only see the default page (variant A), not variant B. at.js has been implemented properly, although we use at.js.2.11.4 whereas in the AT UI at.js.2.11.6 is currently available. Would this cause the issue? Everything seems to be setup as should. Looking forward to any clues as to how to solve this. Tried in Chrome (v 129.0.6668.89 - 64bit) and Edge (v 129.0.2792.65 - 64bit) browser, both normal as well as incognito mode. Used Adobe QA disabler for Chrome multiple times.
I am trying to pull in the Project owner on a Issue/Request report. The issue lies in that some of these tasks are associated to resolve task and some are associated to resolve a Project. What field do I need to points towards in order to display the associated (resolve) project name when dealing with the task level? Any insight will be greatly appreciated!-Eric
Hello Developers, I need to hide quickpublish button from aem site toolbar and show another button to all approvers. I tried acls but they are not working . Note : I don't want to remove replicate access just replace button with another button so I can make a new api call to another end point to all approvers for custom workflow to be trigerred. additonal question:Is it possible to change workflow payload in a step inside workflow?
I have a requirement to get the date and month from the datepicker, this is the default format "2024-10-21T00:00:00.000+05:30" in AEM but I want date(00) and month(may). so to get this I have a method calenderEvent.@Getter@ValueMapValueCalendar cardEventDate; <p>${cardObj.cardEventDate @ format='MMMM'}</p> htl code, below is the value i'm gettingjava.util.GregorianCalendar[time=1729449000000,areFieldsSet=true,areAllFieldsSet=true,lenient=false,zone=sun.util.calendar.ZoneInfo[id="GMT+05:30",offset=19800000,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2024,MONTH=9,WEEK_OF_YEAR=43,WEEK_OF_MONTH=4,DAY_OF_MONTH=21,DAY_OF_YEAR=295,DAY_OF_WEEK=2,DAY_OF_WEEK_IN_MONTH=3,AM_PM=0,HOUR=0,HOUR_OF_DAY=0,MINUTE=0,SECOND=0,MILLISECOND=0,ZONE_OFFSET=19800000,DST_OFFSET=0]
We have about 200+ clients that we have to choose from when starting a marketing project. Sometimes we have to select multiple clients. We are currently using a very large drop down field but each time an end user selects a client, the drop down field closes and they have to reopen it to select another client. This is laborious and time consuming. Before we onboarded Workfront for our marketing operations teams we used a tool called Appian. When we were on Appian it would do a look-up based on a client code within a field. we could apply many client codes to one field. I know we have lookup fields currently in the tool but it will only bring in one value at a time in one field. Is there a way to source the clients from a data store or excel sheet that could be used as a lookup rather than trying to select from a drop down field?
Is anyone getting an Unexpected Application Error when opening a proof from the Share Proof link? I have been troubleshooting this error for a couple of weeks and have narrowed it down to the shareable proof link within the proof. If we grab the link from the proof inside of Workfront/Documents, we do not have an issue.
Since it doesn't seem to be possible to pull data directly from a report, I am trying to use the API to get all the tasks that fit certain conditions, and one of those conditions is that a custom field, called Date Booked, is not null. However, when I put "project:DE:Date Booked_Mod=notnull" into the URL, I get this error message:{"error":{"message":"Invalid Parameter: Search Parameter value \"project:DE:Date Booked\"","title":null,"msgKey":"exception.attask","attributes":[""],"code":0}}Is what I'm doing possible, and if so, what am I doing wrong? Either way, please let me know. Thank you.
The mobile numbers for our Profiles are all saved as 10-digit, without the US country code of 1 appended at the front. Is there a way in my workflow or in the delivery template or in the external account settings to add "1" to the recipients number automatically before sending to our SMS provider?
Hello, i'm trying to fill an image field via API, but i'm getting no success: That's how i'm parsing the data to the json object. That goes along with other transient documents and data. I even tried using with base64 object but no success. Could oyu guys give a hint? Thanks in advance!
While cleaning up our instance I manually removed any filters/views/groupings that were owned and shared with users that are no longer with the company. I was hoping to set up a quarterly process to clear these out but am not finding a great way to do that. I don't see where they are accessible within Fusion to identify filters/views/groupings. Anyone know a trick?I also tried creating a filter report and setting it to only show those owned by users that aren't active BUT it came back with tons of results that are not showing in the master filter list in the setup area. Every user was showing an All Documents, Recent, _filter etc but I do not know where those are pulling from since they don't show in the master list. (photos attached. System only shows 2 document filters total but the report shows 2 different document filters for every user.
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.