Expand my Community achievements bar.

lukasz-m
lukasz-m
Online
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Hi @arvind, Replication agents configuration are represented as a normal pages in AEM stored under specific location. Base on that please find answers for your questions: 1) Is there any way to create Replication agent through some APIs? There is no specific API, however you can create replication...

    Type

    Questions

    Views

    887

    Like

    1

    Replies

    0
  • Hi @Madhur-Madan, On OSGi service level you should use Reference annotation. So this will be option you should use in case you want to get reference of other OSGi service inside another. import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference;...

    Type

    Questions

    Views

    647

    Likes

    3

    Replies

    0
  • Hi @Ronnie09, You can't set Standard Tag to required and/or single selection from Metadata Schema GUI. However base on a fact that Standard Tag is using /libs/cq/gui/components/coral/common/form/tagfield, you can utilize pops that are supported by this component: On crx level make following changes...

    Type

    Questions

    Views

    560

    Likes

    4

    Replies

    0
  • Hi @SHIBANI06, So, in general you will need to exclude from the list of assets that are not referenced those that are published. Here is a complete code of ProcessDefinition that will create process that can be run from MCP. https://kiransg.com/2022/03/26/broken-asset-references-aem/ Alternatively y...

    Type

    Questions

    Views

    1.6K

    Likes

    5

    Replies

    1
  • Hi @mayank0928, I am afraid this is not supported yet in on premise AEM 6.5.x, and 6.5.15 is not an exception. I am assuming you are referring to below documentation that is describing offset and limit parameters: https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/headl...

    Type

    Questions

    Views

    1.3K

    Like

    1

    Replies

    0
  • Hi @vikas3, This is correct behavior. If you will go to official documentation Query Builder Predicate Reference, and check what type predicate does, you will find definition like this: As you can see path predicate will also include all the suptypes and cq:PageContent is a subtype of nt:unstructur...

    Type

    Questions

    Views

    531

    Likes

    4

    Replies

    0
  • Hi @sreenu539  In term of GUI option I would recommend to use Report Builder functionality from ACS Commons: https://adobe-consulting-services.github.io/acs-aem-commons/features/report-builder/index.html It is very flexible and simple to use tool. It allows to define report base on query, and genera...

    Type

    Questions

    Views

    573

    Likes

    3

    Replies

    0
  • Hi @vineel_k, You can use mix of Sling and Asset java api to get any asset name. Resource resource = resourceResolver.getResource("/content/dam/sample_content.xml"); Asset asset = resource.adaptTo(Asset.class); String assetName = asset.getName(); Having asset object you can also get all other inform...

    Type

    Questions

    Views

    939

    Likes

    4

    Replies

    0
  • Hi @mahaboobsyed1, Technically you should be able to modify Schedule Job popup overlaying and changing following js file: /libs/dam/gui/coral/components/admin/bulkimport/clientlibs/js/actions.js you can find method with signature createTypeRadios that defines list of available options. There is also...

    Type

    Questions

    Views

    646

    Like

    1

    Replies

    0
  • Hi @P_V_Nair, Unfortunately this is not an easy task. OOTB workflow steps are using com.day.cq.dam.api.renditions.RenditionMaker to generate renditions it use com.day.cq.dam.api.renditions.RenditionTemplate which defines params that will be used to generate rendition including mimeType and extension...

    Type

    Questions

    Views

    3.2K

    Likes

    3

    Replies

    2