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

codingStar
codingStar
Offline

Badges

Badges
16

Accepted Solutions

Accepted Solutions
3

Likes Received

Likes Received
14

Posts

Posts
44

Discussions

Discussions
14

Questions

Questions
30

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by codingStar
Customize the badges you want to showcase on your profile
Re: Issue while migration from AEM6.5 project to AEM as a cloud manager - Adobe Experience Manager 24-07-2022
Hi @codingStar, According to official documentation Commerce components that you are using in your project has been deprecated since AEM 6.5 - Adobe was recommending to use CIF Core Components instead. In AEM as a Cloud Services deprecated Commerce components have been removed and will not be available again. Base on migration documentation, you have to switch to different approach, that use: AEM CIF Core Components AEM Project Structure CIF add-on Summarizing, to solve the issue, you have to re...

Views

63

Likes

5

Replies

0
Re: Getting error while building maven project " Bundle aem-digital.core:1.0.0-SNAPSHOT is importing package(s) com.fasterxml.jackson.dataformat.csv in start level 20 but no bundle is exporting these for that start level." - Adobe Experience Manager 30-05-2022
@codingStar [Webinar | AEM GEMs] Looking under the hood - Cloud Manager 2022 | Register: https://adobe.ly/3t4jfgp & Ask Questions related to this Webinar: https://adobe.ly/3O0rdzd Date &Time: Wednesday, June 15, 2022 - 8 am PDT OR 5 pm CET OR 8.30 pm ISTSpeakers: Remus Stratulat & Shankari Panchapakesan Share this within your Organisation and with your AEM peers!!

Views

998

Like

1

Replies

0
Adaptive form accordion expand and collapse event - Adobe Experience Manager 09-12-2021
Hi All, I have created an adaptive form in aem 6.5 and selected Layout as AccordionI want to write some custom code in rule editor on individual Accordion expand and collapse but did not find and method or guide bridge api. Can you help me to find method or guide bridge api for Accordion expand and collapse so I can write custom code in rule editor. Refer below images for from deatils Form structure Main Panel Expand Collapse

Views

121

Likes

0

Replies

0
Re: check box type - Adobe Experience Manager 12-10-2021
Hi! Did you find a soultion? I have the same issue?

Views

654

Likes

0

Replies

0
Re: How to get same field on selection of two values in dropdown? - Adobe Experience Manager 25-09-2021
Hi @amangoyal15 , @amitaj56771832 Please let me know if you got the solution. I'm also looking for the same.

Views

1.1K

Likes

0

Replies

0
Re: Unable to insert new components in Touch UI - Adobe Experience Manager 13-03-2020
@codingStar Search for Apache Sling Main Servlet in /system/console/configMgr and increase the value of Number of Calls per Request to approx. 3000 (1000 default) and try inserting components again. See if this helps.-Hit

Views

2.0K

Likes

0

Replies

0
AEM Sql2 subqury is not working - Adobe Experience Manager 28-10-2019
Hi,I am trying to use SQL2 sub-query while I am executing the query getting error. Below is my query and error. Can someone look share whats wrong i am doing here?#QuerySELECT * FROM [nt:base] WHERE [sling:resourceType] = 'mywebsite/components/content/button' AND [buttonURL] IN(SELECT [jcr:path] FROM [dam:Asset] AS s WHERE CONTAINS(s.*, 'mysearchKeyword') AND [jcr:path] ISDESCENDANTNODE([/content/dam/mywebsite])) AND ISDESCENDANTNODE([/content/mywebsite/dashboard]) #Errorjava.text.ParseException...

Views

788

Likes

0

Replies

0
Re: How to do fulltext search from cq:Page and dam:Asset in single query - Adobe Experience Manager 24-10-2019
1. Create a DEBUG logger for org.apache.jackrabbit.oak.query2. tail that log3. run your query builder query above and see what gets logged. It will log both the xpath and jcr-sql equivalentselect [jcr:path], [jcr:score], * from [cq:Page] as a where contains(*, 'mysearchKeyword') and isdescendantnode(a, '/content/mywebsite/dashboard) union select [jcr:path], [jcr:score], * from [cq:Page] as a where contains(*, 'mysearchKeyword') and isdescendantnode(a, '/content/dam/mywebsite') union select [jcr:...

Views

711

Likes

0

Replies

0
Re: AEM fulltext search result order - Adobe Experience Manager 22-10-2019
You can add a Boost in your index rule as follows:Jackrabbit Oak – Lucene Index How about adding Search Boost to the AEM Asset too?:Search Boost

Views

2.5K

Likes

0

Replies

0
Re: Not getting result from .txt from dam - Adobe Experience Manager 09-10-2019
Hi @arpitv27529355 @ka786 I have figured it out. jcr:mimeType was incorrect on below path for generated file stream./content/dam/myprojectfolder/mytextfile.txt/jcr:content/renditions/original/jcr:contentTo fix this updated the code provided mimeType as "text/plain", below is the codeAssetManager assetManager=resourceResolver.adaptTo(AssetManager.class);assetManager.createAsset(fileName, stream, "text/plain", true);

Views

1.2K

Likes

0

Replies

0