Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Need to get the 's.' references from entire crxde

Avatar

Level 4

We have been using AEM 6.5.13. 
We are trying to identify the s object reference and move it to Adobe Launch.

 

I want to get the search result for "s." references in crxde.

But if I search s. directly in the crxde home screen. I'm getting results only for search keyword ''s" and the full-stop/dot is trimmed. Can someone help on getting the search results for "s.".

 

Kindly let me know.

Thanks.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @samsundar23,

I do not think it is possible to get what you want only via home screen search or via simple JCR query (Xpath, SQL or SQL2). According to the documentation "." is ignored. As a solution I would recommend to create some groovy script that will follow below steps:

  1. Run some more generic query maybe for "s" phrase.
  2. Filter results of query from step 1, via some groovy/java code - this would actually search for "s."

View solution in original post

2 Replies

Avatar

Level 1

We have been using AEM 6.5.13. 
And we are trying to identify the s object reference and trying to move it to Adobe Launch.

Avatar

Correct answer by
Community Advisor

Hi @samsundar23,

I do not think it is possible to get what you want only via home screen search or via simple JCR query (Xpath, SQL or SQL2). According to the documentation "." is ignored. As a solution I would recommend to create some groovy script that will follow below steps:

  1. Run some more generic query maybe for "s" phrase.
  2. Filter results of query from step 1, via some groovy/java code - this would actually search for "s."