What is the difference between value list and page list
@erdincb10
Value list is an ordered list of values which is of a specific type. In programming terms you can consider it an array.
String str={“abc”, “def”}
In pega you can represent the same data structrue by creating the valuelist property. Then in clipboard you the structure like
str(1)=abc
str(2)=def
Pagelist is an ordered list of pages. In Pega terminology page is nothing but an object. Lets consider an employee as an object which holds the empid, empname and so on. The data structure to represent the list of the objects in pega is PageList property.
Employee (1)
Emp id
Emp Name
Employee(2)
Emp id
Emp Name
@erdincb10 value list is similar to array and pagelist is similar to structure in C