Expand my Community achievements bar.

lukasz-m
lukasz-m
Online
  • Hi @lulanur,You can find great examples under official Adobe Customer Success Stories page https://business.adobe.com/customer-success-stories.htmlIt collects cases implemented using various Adobe solutions, including AEM Forms. In terms of AEM Forms here is a link with specific filter already appli...

    Type

    Questions

    Views

    31

    Like

    1

    Replies

    0
  • Hi @ravir73578276,You should use Preprocessor, to achieve your goal. Here are the main arguments why:this is part of AEM replication api, and it is dedicated entry point that is run just before replication is triggeredyou do not need to create any additional replication agents or configurationsas th...

    Type

    Questions

    Views

    40

    Likes

    4

    Replies

    0
  • Hi @KKeerthi,If you want to schedule sling job you should use ScheduleBuilder object created by schedule() method from JobBuilder. Using scheduled sling jobs you do not need create scheduler by yourself, it is done automatically in the background.Here is very simple example, from Sling documentation...

    Type

    Questions

    Views

    42

    Like

    1

    Replies

    0
  • Hi @girishb83316758,By default DAM Update Asset workflow model is configured to run in transient mode. This is why you are not seeing any entries related to execution of this workflow under Archive.This behavior can be changed by deselecting (uncheck it) Transient Workflow option in workflow propert...

    Type

    Questions

    Views

    96

    Likes

    2

    Replies

    0
  • Hi @nivetha95selvakumar,According to the documentation pathbrowser widget is not supporting multi filed usage.https://wcm.io/caconfig/editor/usage.html#pathbrowserSo I am afraid behavior you have described is expected.

    Type

    Questions

    Views

    53

    Likes

    2

    Replies

    0
  • Hi @Ronnie09,You will need to add appropriate rewrite rules on Apache level, as a complementary part for short urls.as a prerequisite make sure mode_rewrite is enabled - https://httpd.apache.org/docs/2.4/mod/mod_rewrite.htmlHere is the example. There is following content structure:/content /spa-si...

    Type

    Questions

    Views

    77

    Likes

    2

    Replies

    1
  • Hi @mvelicheti,Groovy console provides OOTB logger. So there is no need to add any imports, or create logger instance manually.As you can see it is available under log variable. Below is sample code that presents how to use it. log.info "Info message" log.error "Error message" log.debug "Debug messa...

    Type

    Questions

    Views

    100

    Likes

    2

    Replies

    1
  • Make sure you have included below dependency in your project pom. As it provides SPA project api.<dependency> <groupId>com.adobe.aem</groupId> <artifactId>spa.project.core.core</artifactId> <version>1.3.12</version> </dependency> 

    Type

    Questions

    Views

    94

    Likes

    0

    Replies

    1
  • Hi @mvelicheti,You can get Replicator object instance using getService method from Groovy Console import com.day.cq.replication.Replicator Replicator Replicator = getService(Replicator.class) Alternatively you can use other build in methods like activate and deactivate in that case you do not need ...

    Type

    Questions

    Views

    66

    Likes

    0

    Replies

    0
  • Hi @Ronnie09,This is expected, because implementation of models is part of internal package, which is not exported. You can find implementation under:https://github.com/adobe/aem-spa-project-core/tree/master/core/src/main/java/com/adobe/aem/spa/project/core/internalYou should use delegate pattern in...

    Type

    Questions

    Views

    107

    Likes

    0

    Replies

    3