Explore product-specific spaces to ask questions, share insights, and learn best practices.
Attivo di recente
Hello - is there a way to lock the top row in the Agile View of a project that shows the statuses (i.e., Not Started, Execution, Review, Complete)... I am finding that we have a long list of tasks/stories, and when you scroll down to see additional stories you lose sight of which status each task is on. Thank you!
Hi All, Actually I have two containers, I placed the containers next to each other and add components inside them, but after test release the containers moved under each other, i am not able to move them back(next to each other). I have a requirement to keep them next to each other. Is there any way to do that. Kindly help me to fix this.
Looking for a way to report on how long a stage remains active on a specific proof in a specific workflow and I can't seem to figure it out. For example, I have an R&D stage on a Packaging workflow and I want to know how long that stage stayed active on a specific proof(s). Any help is appreciated! Thanks
Hi, I am wondering where the Smart Crop data is stored for an asset when image profiles are applied to a folder, and the image is utilizing the smart cropping. This data seems to be stored within scene7, but I cannot find the values anywhere within the Dynamic Media Classic app when logged in. Are these hidden stored values, or are they viewable within the app somewhere?
Note: This is a Japanese translation of an Adobe Experience League Knowledge Base article. Click this link for the original English version. 【目的】 cURLを使用することでコマンドでアセットを纏めてダウンロード出来ます。主に次のユースケースで有用です。 自動化したい時 ダウンロード対象のアセットが複数のフォルダに跨る時 フォルダ配下の一部アセットのみをダウンロードしたい時 【環境】AEM 6.5 【対応方法】ダウンロード対象のアセットやフォルダのパスをcURLのパラメータに渡します。 特定のアセットをダウンロード $ curl -u user:password -o <出力ファイル名> http://localhost:4502/<アセットのパス>.assetdownload.zip 例)$ curl -u user:password -o download_asset.zip http://localhost:4502/content/dam/we-retail/en/features/tracking.png.assetdownload.zip 特定のフォルダ配下を一括でダウンロード $ curl -u user:password -o <出力ファイル名> http://localhost:4502/<フォルダのパス>.assetdownload.zip 例)$ curl -u user:password -o download_asset.zip http://localhost:4502/content/dam/we-retail/en/people.assetdownload.zip 複数のフォルダやアセットを一括でダウンロード $ curl -u user:password -o <出力ファイル名> -F "path=<パスA>" -F "path=<パスB>" -F ... http://localhost:4502/<パスA>.assetdownload.zip 例)$
Note: This is a Japanese translation of an Adobe Experience League Knowledge Base article. Click this link for the original English version. 【目的】本記事では、admin以外のユーザーにWebコンソールへのアクセスを許可する方法をご紹介します。 【環境】AEM 6.5 【対応方法】Apache Sling Web Console Security ProviderにOSGiのWebコンソールへのアクセスを許可するユーザーまたはグループを追加します。ユーザーは直接追加せず、管理用のグループを作成して追加することをお勧めします。 1. グループを作成し、そのグループにユーザーを追加します 2. Webコンソール(http://localhost:4502/system/console/configMgr)を開きます 3. Apache Sling Web Console Security Providerの設定を開きます 4. Group Names にステップ1.で作成したグループを追加します 5. Saveします <留意事項>・上記は以下記事の抄訳/翻訳となります。KB記事タイトル(英語) . Adobe Experience Manager: How to allow non-admin users to access Web Console. February 17, 2023, https://experienceleague.adobe.com/docs/experience-cloud-kcs/kbarticles/KA-21527.html, (参照 2023-02-20).・本記事にいただいたコメントへの返信はお約束できません。あらかじめご了承ください。
Hi, I want to programatically create package & translate the path in created package. For example '/content/dam/abc/hero.png' needs to be '/content/dam/bcd/hero.png'. Is it possible to do this using Jcrpackage manager api with filter/translate options? I tried below code but it is not working. JcrPackageManager jcrPackageManager = packaging.getPackageManager(request.getResourceResolver().adaptTo(Session.class)); JcrPackage jcrPackage = jcrPackageManager.create("my_packages", "translatedpackage","1.0"); JcrPackageDefinition definition = jcrPackage.getDefinition(); DefaultWorkspaceFilter filter = new DefaultWorkspaceFilter(); filter.translate(new SimplePathMapping("/content/dam/abc/", "/bcd/")); PathFilterSet pathFilterSet = new PathFilterSet(); pathFilterSet.setRoot("/content/dam/abc/hero.png"); definition.setFilter(filter,true); ProgressTrackerListener listener = new DefaultProgressListener(); jcrPackageManager.assemble(jcrPackage, listener); I was expecting o
Trying to create project structure for AEM SPA React and the build was success, but faced issues while creating REACT API calls using useEffect in ui.frontend while building it is throwing error like eslint-react-hooks not unable to find package. We used archetype 35. Any suggestions we can overcome this issue ? Will it be due to use of unstable archetype ?
Whether your tracking logic uses standard UTMs, custom query params, or other dimensions, you’re gonna need hidden form fields. Problem is... they’re hidden. And – take it from someone who’s built 3 separate fairly-full-fledged tracking libraries — debugging hidden fields can be really annoying. Your JS should have an option for verbose console logging (ours does, though most others don’t!) and Dev Tools lets you inspect <input type="hidden"> elements. But both of those are cumbersome and completely impractical on mobile.[1]. Wouldn’t it be better if you could peek at hidden field names + values, while leaving them hidden and without changing any form logic? So you get a cute little widget at the bottom of the form: And when you open the widget, you see the current hidden field details: I even outdid myself and added a refresh button, in case hidden fields change as you interact with the page (and depending on script
AEM supports the use of both Sling APIs and JCR APIs. Docs on best practiceshttps://experienceleague.adobe.com/docs/experience-manager-learn/foundation/development/understand-java-api-best-practices.html?lang=en Docs on Sling APIhttps://sling.apache.org/old-stuff/sling-api.html Docs on JCR APIhttps://experienceleague.adobe.com/docs/experience-manager-65/developing/platform/access-jcr.html?lang=en https://developer.adobe.com/experience-manager/reference-materials/spec/javax.jcr/javadocs/jcr-2.0/index.html The docs mention "While the JCR is AEM’s content repository, its APIs are NOT the preferred method for interacting with the content. Instead prefer the AEM APIs (Page, Assets, Tag, and so on) or Sling Resource APIs as they provide better abstractions." Furthermore, "Broad use of JCR APIs’ Session and Node interfaces in an AEM application is code-smell. Ensure Sling APIs should be used instead." Personally, I used the JCR API for creat
Target Standard/Premium 22.14.5 (February 13-15, 2023) This release will be available according to the following staggered schedule: February 13: Americas region February 15: Europe, Middle East, and Africa (EMEA) region February 15: Asia-Pacific (APAC) region This release contains the following fixes: Fixed an issue that caused the following error message even though a property was specified in Automated Personalization (AP) activities: “Errors: At least one property has to belong to a non-default workspace” (TGT-44607) Fixed a potential security issue impacting server-side Recommendations feeds. (TGT-43769) For more Adobe Target release notes, check out Target Release Notes (current)
at.js version 2.10.1 Fixed a bug in which activities involving audience rules containing parameters with dots in their names were not returning the expected experience, for on-device decisioning. Fixed a bug introduced in at.js 2.6.0 in which at.js was firing a delivery call, even when mboxDisable was enabled. *For more information about all at.js releases, see at.js version details in theAdobe Target Developer Guide. Seed Q&A Please use this thread to ask the question related to this release.
Is there any way to disable these smart tag in aem as a cloud service?
Recently I created a program in AEMaaCS. I understand that when we create an environment in cloud manager, Adobe Console creates two profiles, AEM Administrator xx123xx123 & AEM Users xx123xx123, and in publish instance it only creates one profile, AEM Users xx123xx123. As of now, I have no doubts. Now when I add a profile to any user, for example personX and add him AEM Administrator xx123xx123 & AEM Users profiles in author and AEM Users xx123xx123 profile for publish server. When this user personX logged into the system I could see that the profiles are mapped as AEM groups. As of now, everything is clear. I did not see any ACLs created for AEMAdministrator xx123xx123 & AEM Users when I checked the permissions for these groups in AEM. Is this OOTB behavior? How does this group act as admin without permission? below is the screenshot for AEMAdministrator Do we need to set any permission to make this as an admin group ?
Hi,If vtt file is published from Author, then the Scene7 Cache is not cleared by default.The final website URL is rendering video and vtt files from Scene7 but the file does not seem to be updated once the asset is republished or replaced.Do we need clear the Scene7 cache programmatically here?Thanks,Sagar
Hello - We are in the processing of enabling esi:include (Edge Side Include) on Akamai. We have added a Behavior for this rule in Akamai but still the tags are not evaluated in CDN. We are trying to implement the SDI in our project and decided to go with ESI to exclude the component from the caching. Can someone tell me what other changes are required in Akamai for this scenario.
hi, we created two publishing instances, on Authoring we configured two publish agents for each instance, test connection works fine for both agents. Problem is that only first publish agent triggers and syndicates to publishing instance. Second publish agent is enabled connection works but no activity there. We don't see any errors, enabled syndication debugging on Author but there's no errors. When we stop first publishing instance we see replication queue piling up on first publish agent but still nothing on second publish agent. When we reconfigure first publish agent to replicate to second publishing instance that works as well. In the replication log for second publish agent we can see. 2023-02-10 16:05:10 - INFO - publish-agent-2 : Replication (TEST) of /content successful.2023-02-10 16:06:29 - INFO - publish-agent-2 : Agent stopped.2023-02-10 16:06:29 - INFO - publish-agent-2 : Agent stopped for (re)configuration2023-02-10 16:06:29 - INFO - publish-age
What will preview mode allow so a client can see it?A Navigate linksB Will not refresh page content C Page will refresh when preview mode is turned onD Will show parsys borders
I am losing all hope now that Adobe has purchased Workfront that they will ever integrate the proof profiles into a system that is manageable and allow a setup for new users to have a default email notification setting that isn't Daily Summary. It's driving me bonkers - especially because you can't change it inline and you have to open every user and then it bumps you back to page one every time. Is there anything that can be done about this?
Sling API in AEM by v karthick Abstract The Sling API provides a wide range of functionality for interacting with the content repository, so the examples will vary depending on what specific tasks you want to perform. However, I can provide some examples that demonstrate common use cases of the Sling api with respect AEM. Creating a node: ResourceResolver resourceResolver = ...; Resource resource = resourceResolver.getResource("/content"); ModifiableValueMap properties = resource.adaptTo(ModifiableValueMap.class); properties.put("propertyName", "propertyValue"); resourceResolver.commit(); 2. Reading a node: ResourceResolver resourceResolver = ...; Resource resource = resourceResolver.getResource("/content/newNode"); if (resource != null) { ValueMap properties = resource.getValueMap(); String propertyValue = properties.get("propertyName", String.class); } 3. Updating a node: ResourceResolver resourceResolver = ...; Resource resource = resourceResolver.getResource("/content/newNode"
When exporting translation projects from AEM Guides, the files come out in one folder with a couple thousand files. The files are assigned cryptic file names that have no meaning and are in a random order. When I hand this off for translation, the translator begins his work. Sometimes, he needs to go back and change something but determining which file needs to be changed is nearly impossible when you have 900 DITA files. Also, once the files are exported into one large folder, even though I export the image files with the dita files, none of the images show up in the dita files. All those links are broken. Images provide valuable reference to the translator. Here's what would make this better: The files are given names that match the title of the document. If they need to also have a cryptic sequence of numbers and letters, then use that too. Just give me something to work with that makes any sense. The files should come out of the system in order of the DITAmap. All images sho
Dear adaptTo() Community, Europe's leading AEM Developer conference is back, and in-person! It will take place on 25th-27th September 2023 at the Kulturbrauerei in Berlin, Germany. The adaptTo() is a community event. Therefore we encourage everyone to participate. By covering various facets of the overall topics Adobe Experience Manager, Adobe Experience Cloud, and the underlying OSS projects Apache Sling, Apache Felix, and Apache Jackrabbit Oak, we set starting points for the community to discuss and interact. The Call for Papers has officially opened and you have now the chance to shape adaptTo(). Submissions are being accepted until 1st of April 2023.https://adapt.to/cfp Early Bird Tickets for the on-site adaptTo() 2023 are available now! This year, we also offer a special Loyalty Discount for previous attendees.https://adapt.to/tickets Your adaptTo() Conference Team
Hi everyone, Are you looking to upskill your marketing skills to the next level? If yes, then there's no better time to grow your skills than now! Subscribe here to learn from some of the best minds in the industry, and get valuable resources delivered to your inbox every week: Sign Up: Free Adobe Campaign Classic v7 Learning for Marketers Master key Adobe Campaign v7 concepts and capabilities with our freshly launched email series for Marketers. We have designed this 8-week email series to offer helpful resources and actionable best practices from customers, partners, and Adobe experts. The weekly emails cover topics such as: Tips, tricks, and advice geared toward marketers Key capabilities and a brand-new glossary of terms Designing and orchestrating campaigns Managing recipient data Please feel free to reach out in the below comment section if you are facing any issue subscribing to this series, or if you have any questions and feedback r
Hi I would like to use data-sly-resource to render a HTL that is somewhat different then the existing one. I tried using selectors='overview' data-sly-resource="${event.resource @ resourceType='xxx/components/content/eventTeaser', selectors='overview'}"> and created a copy of eventTeaser called eventTeaser.overview.html. The problem is that the new HTL template eventTeaser.overview.html is not called but instead the eventTeser.html is called. Of course eventTeaser.overview.html exists and it is in the same directory as eventTeaser.html is. What am I doing wrong here and what would be a good solution for this?
3 cost-saving, strategy-driving tactics that will hook your leadership team Are the decision makers within your organization sold on the value of Adobe Workfront – can they clearly see how work being done directly connects and impacts company goals, strategies and initiatives? Or are you wanting to get executive buy-in to help drive work management maturity across your organization? To help gain the trust of leadership and prove to them that Workfront is worth the investment, we've identified the following three tactics to help show the value of Workfront and build buy-in from your leadership. TACTIC #1 Time is money—leverage status dashboards to nix the meetings and give team members back time in their day to focus on strategy and execution. Just like FCB shared in their customer story, reducing the time spent planning and attending meetings meant an increase in productivity and quicker decision-making due to real-time, accessible data. &
Hai già un account? Accedi
Non hai ancora un account? Crea un account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.