Skip Headers
Oracle® Fusion Middleware Idoc Script Reference Guide
11g Release 1 (11.1.1)
E10726-01
  Go To Documentation Library
Library
Go To Table Of Contents
Contents
Go To Index
Index

Previous
Previous
 
Next
Next
 

ddSetLocalByColumnsFromFirstRowIndexed

This function takes the first row of a dynamicdata table, and, using the column names as keys, sets a local value for each column and its corresponding value. If there is no first row, then this function does nothing. This function is almost identical to ddSetLocalByColumnsFromFirstRow. The only difference is that this function uses the first row given an indexed column and value instead of the very first row of the dynamicdata table. If no indexed row is found then this function does nothing.

Type and Usage

Parameters

The following table lists parameters for the function.

Parameters Description
dataTableName The name of the dynamicdata table to load.
indexColumn The name of an indexed column in the dynamicdata table.
indexValue The value to use to select a row of the original table. This value will be checked in a case-insensitive manner against the indexColumn in each row. If it matches, that row will be used and the rest of the table will be ignored.

Output

If the dynamicdata table is successfully loaded, it returns True.

Example

<@dynamicdata MyDataTable@><?commatable indexedColumns="fieldB"?>fieldA, fieldB, fieldC1,      2,      34,      5,      67,      8,      93,      5,      2<@end@>


<$exec ddSetLocalByColumnsFromFirstRowIndexed("MyDataTable", "fieldB", 5)$><$tmpStr1 = #local.fieldA$>   [[% (tmpStr1 == '4') %]]<$tmpStr2 = #local.fieldC$>   [[% (tmpStr2 == '6') %]]

See Also