Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

aneeta45259594
aneeta45259594
Offline

Badges

Badges
17

Accepted Solutions

Accepted Solutions
27

Likes Received

Likes Received
48

Posts

Posts
67

Discussions

Discussions
24

Questions

Questions
43

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by aneeta45259594
Customize the badges you want to showcase on your profile
Re: Need to know the number of asset type in DAM - Adobe Experience Manager 26-06-2018
Hello ranadyutis95334917​You can run the following query to get the results for specific Mime Types in crx/de and it will give you a count when the results execute. The following query shows examples of png and jpeg images.select * from [dam:Asset] where [jcr:content/metadata/dam:MIMEtype] = "image/png"select * from [dam:Asset] where [jcr:content/metadata/dam:MIMEtype] = "image/jpeg"You can find a list of Mime Types at Assets Supported FormatsAnother alternative way is to execute the query using...

Views

2.0K

Like

1

Replies

0
Re: Ignore deactivated nodes in Author - Adobe Experience Manager 15-06-2018
Hello, Can you share your query? We can try tweaking the query to satisfy your use-case.Thanks,Aneet

Views

802

Likes

0

Replies

0
Re: Import tags in AEM - Adobe Experience Manager 13-06-2018
Hello Shweta,You can leverage the ACS Commons tools to complete this task. Please refer to this TagMaker tool for further information.Best Regards,Aneet

Views

1.0K

Likes

0

Replies

0
Re: How to find whether particular image rendition exists or not using query debugger or SQL2 query? - Adobe Experience Manager 12-06-2018
Hi prajaktak28172563​Indeed the query I gave was an oversimplified one. It did give the results but not as refined. To get the expected results, you don't really need to make the query as excessive as above.Please try the query belowSELECT * FROM [dam:Asset] AS s where isdescendantnode([/content/dam/mycompany/catalog]) and s.[jcr:content/renditions/*] is not null and s.[jcr:content/renditions/product-details.png/jcr:primaryType] not like '%nt:file%'This query basically checks if the renditions e...

Views

1.1K

Likes

0

Replies

0
Re: Authentication fails after saving OSGI config - Adobe Experience Manager 12-06-2018
Hello johng23​We should aim to install latest CFP available for the version so yes you can surely install CFP15. Best Regards,Aneet

Views

818

Like

1

Replies

0
Re: How to find whether particular image rendition exists or not using query debugger or SQL2 query? - Adobe Experience Manager 11-06-2018
Hello prajaktak28172563​You can simply execute a query like below to get your resultsSELECT * FROM [nt:file] AS s where isdescendantnode([/content/dam/mycompany/catalog/part]) and s.[jcr:path] NOT LIKE '%product-details.png%'This query would automatically consider only renditions as nt:file is the nodetype being used. I hope this helps.Regards,Aneet

Views

1.1K

Like

1

Replies

0
Re: Authentication fails after saving OSGI config - Adobe Experience Manager 11-06-2018
johng23​There are some known issues in AEM 6.2 GA instance. You can see issues notes in 6.2 SP1 release notes such as Changing Oak-related OSGI configuration makes the AEM instance dysfunctional. GRANITE-11906Fixed issues around instances becoming non-responsive when Sling Resource Resolver Factory is updated. GRANITE-13126I suggest you update your instance to the latest SP+CFP which would be SP1 + CFP14 and re-try to see if you face any issues. I've just performed a quick test on mine SP1+CFP14...

Views

816

Like

1

Replies

0
Re: AEM 6.2 : Systems users - AccessDeniedException while accessing nodes and clientlibs - Adobe Experience Manager 08-06-2018
Hello a.mn​It appears that an ACL is missing from your /var/clientlibs directory. To fix this issue, you can go to any of your working instances, make a package of /var/clientlibs/rep:policy node and install it on the affected instance. Regards,Aneet

Views

1.4K

Likes

0

Replies

0
Re: Filevault OakConstraint0021 exception when copy content - Adobe Experience Manager 08-06-2018
Hello jiaBai​There are some known issues with vlt version 3.1.16(shipped with AEM 6.2) and up where the transferred binaries get corrupt. One such example is noted in JCRVLT-186] rcp fails to copy binaries correctly - ASF JIRA and there are some other examples of such issues as well. You could use the 3.1.44 version of vlt to see if helps with the migration. You can download this version from VLT Maven RepositoryBefore you proceed, please ensure to take some precautions such as backup's of sourc...

Views

1.2K

Like

1

Replies

0
Re: Receiving jcr:versionStorage warning messages, how do we fix this - Adobe Experience Manager 08-06-2018
Hello jefferyd1891808The warning you're facing essentially means that the reported version histories do not contain any useful information and could be removed. However, Oak currently does not allow for deletion of such nodes using the JCR API. They are protected as required by the specification and unreferenced version histories with only a jcr:rootVersion are not automatically removed. Jackrabbit 2.x does it, but this feature is missing in Oak.There is an improvement request logged [1] for thi...

Views

892

Like

1

Replies

0