May 2016
Beginner to intermediate
388 pages
9h 18m
English
Manipulating the result of a data source is really simple. You can use the child element Output when setting the Data Access. Let's suppose we are performing a query that is returning 10 columns, but we only want to display the first two. If that's the case, then you should set the following child element in the Data Access definition:
<Output indexes="0,1" mode="include"/>
This child element tells CDA that it should use the first and second columns, identified by index 0 and 1. The mode will tell CDA that these are the columns to be included; otherwise, if you use exclude, you will get all the columns except the first two.
When accessing a query through a URL, another way to manipulate the output is to have ...
Read now
Unlock full access