Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Functions converts any field given in a parameter call with XPATH expression.

Following parameters are obligatory:

TypeNotes
ANYAny value,  SQL or Java type. Although this functions is design to handle java objects.
VARCHARValid XPATH expressions which will be applied to an object given in first parameter.

The result of these function will be the value computed from XPATH applied to given object. See following example

Number of sprints to which issue is assigned.
SELECT jql.Key, AUX.PATH(jql.Sprint, 'count(.)') NUMBER_OF_SPRINTS 
FROM TABLE(AUX.JQL('Key, Sprint','')) jql
  • No labels