Would appreciate if someone can guide me to create a JQL query to display all EPICs containing text "pdp' in their Summary and also bring in all the Child Tasks for these epics
You would need an app from the Marketplace in order to do this. I know that JQL Tricks, Enhanced Search can do this because they extend default JQL. You can also have a look at JXL, that app can also get you the result you are looking for.
I concur. Such a filter cannot be constructed with only native Jira filter capabilities.
Besides the apps that @Mikael Sandberg mentioned, another one that would work is Scriptrunner Enhanced Search which provides the issuesInEpics() function
Example:
issuetype=Epic and summary~"PDP" or issuefunction in issuesInEpics("issuetype=Epic and summary~'PDP'")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.