Hi @abhinavbalooni I tried to use the eVars to capture Page Name per below. Another `Page Name` was also captured further down(not sure if this create a duplicate issue) Here is the definition of `page.pageInfo.pageName` element. And here is segment definition in the Analytic report: But I am stil...
Hi, I am building a Analytic report to track the submission of a form. But all data are gone when I include a Page segment to filter by URL. Here is my setup: 1. Rule in AEPDC to track the form submission to `eVar1: Form Name`, whenever I submit a form on the page "https://beta.form.ca/en.html". ...
Hi, I am developing AEM as Cloud Service locally on my MacOS, and I have a dispatcher with the following rule in the `rewrite.rules` file: RewriteCond "%{HTTP_HOST}" "^example\.website\.ca" [NC]
RewriteRule ^/?$ /content/path/en.html [PT,L] As you can see, the condition check if the domain is "exa...
Hello, I am trying to understand the Run Modes precedence in Cloud AEM. I read the Adobe doc here, which provides a list of run modes like below: config (The default, applies to all AEM services)
config.author (Applies to all AEM Author service)
config.author.dev (Applies to AEM Dev Author service...
Hi, I am working on setting up an OSGi config using environment variables so they can be accessed on deployed environment on Cloud AEM, without the config values exposed in Github. I came across this documentation at `https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content...
Hi, I am using AEM Cloud, and trying to commit a created resource in the `createResource` method below. @Model(
adaptables = {Resource.class, SlingHttpServletRequest.class},
adapters = {ArticleModel.class, ComponentExporter.class},
resourceType = ArticleModel...
Thanks you did lead me to the right track. It was a silly mistake of mine, one of the policy brought in a js clientlib that removed the "parsys", thus causing this issue.
I am on AEM Cloud and recently encountered a strange issue with the core Container component. The container does not have the "Drag components here" Editable prompt, so I cannot to drag and drop any component inside. This is only happening in the deployed instances on AEM Cloud environment, not loc...
This is caused by the fact that `aemanalyser-maven-plugin` does not take into account the interdependencies between the projects when ran separately. So to fix this, we have to use a separate "analyse" module that has for dependency the "all" modules of both projects, as per the "Example for a Multi...
Hi, I am trying to make available the OSGi Service of one Maven project inside another Maven project's Servlet locally, by adding the dependency of the imported project into the importing project per below: pom.xml
<dependencyManagement>
<dependencies>
<dep...