Expand my Community achievements bar.

lukasz-m
lukasz-m
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Hi @anish11, In general you can't do this from GUI. However this can be done other way. First of all Tags filed is using cq/gui/components/coral/common/form/tagfield, which provides below property, that could be useful in your case. forceSelection by default this property is not set, which means tha...

    Type

    Questions

    Views

    827

    Likes

    2

    Replies

    1
  • 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

    960

    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

    1.4K

    Likes

    5

    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

    2.4K

    Likes

    3

    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

    800

    Likes

    2

    Replies

    0
  • Hi @HelpTech,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

    1.1K

    Likes

    3

    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

    1.3K

    Likes

    2

    Replies

    4
  • 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

    3.6K

    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

    1.6K

    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

    1.5K

    Likes

    0

    Replies

    0