GETPROPERTIESA
This function returns a list of the properties of a specified key from an xml variable. The function returns an array. It is similar to GETPROPERTIES, which returns the properties as a string.
You can use the asterisk (*)
  character at the beginning or end of a string as a wildcard. For example, to
  return particular keys or properties. Asterisks within a string do not act as
  wildcards. A wildcard search returns only the first matched key or property. 
  
 
	     Note: We cannot guarantee the order in which keys or properties are matched. 
  
 
      Syntax
GETPROPERTIESA("XML_properties","key") 
#ARRAY is displayed in cells that contain arrays.
Example
=GETPROPERTIESA(ReportVariables.rv_xmlvariable.text,"[Product]") 
		          Note: In GETPROPERTIESA, the .text attribute is required. In
			 GETPROPERTIES, the .text attribute is optional. 
		  
 
		       GETPROPERTIESA is a list function. It can be used in server lists, relational lists, and in slices.