GetParamListFromString

PL/SQL Syntax

function GetParamListFromString
  (p_parameters in varchar2) return wf_parameter_list_t;

Description

Parses a string of text containing parameters and returns the parsed parameters in a varray using the WF_PARAMETER_LIST_T abstract datatype. The parameter name and value pairs in the text string should be separated by spaces and should appear in the following format:

<name1>=<value1>  <name2>=<value2> ... <nameN>=<valueN> 

Arguments (input)

p_parameters A text string containing parameter name and value pairs, separated by spaces.