Need to get the 's.' references from entire crxde | Community
Skip to main content
samsundar23
New Participant
August 9, 2022
Solved

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

  • August 9, 2022
  • 2 replies
  • 957 views

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.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by lukasz-m

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."

2 replies

lukasz-m
lukasz-mAccepted solution
New Participant
August 10, 2022

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."
New Participant
August 10, 2022

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.