Hi All,
I'm on SAP MII 14.0 SP5 web application which is migrated from xMII 11.5.
In xMII 11.5, the iTicker method - String getColumnValue(int nIndex, String sColumnName)'' is returning appropriate values for all the columns of record set fetched by query template.
But in MII 14 (and MII 12.2 also), this method returns values for only 1st column which selected for display.
For example, if my query template returning record-set with 3 columns as follows -
Col1 | Col2 | Col3 |
sam | 67 | temp-88 |
daniel | 56 | temp-87 |
Mike | 54 | temp-89 |
Then output of <iTicker>.getColumnValue() is -
Output | xMII 11.5 | MII 14 |
<iTickerObj>.getColumnValue(1, "Col1") | sam | sam |
<iTickerObj>.getColumnValue(2, "Col1") | daniel | daniel |
<iTickerObj>.getColumnValue(3, "Col1") | Mike | Mike |
<iTickerObj>.getColumnValue(1, "Col2") | 67 | <no value> |
<iTickerObj>.getColumnValue(2, "Col2") | 56 | <no value> |
<iTickerObj>.getColumnValue(3, "Col2") | 54 | <no value> |
<iTickerObj>.getColumnValue(1, "Col3") | temp-88 | <no value> |
<iTickerObj>.getColumnValue(2, "Col3") | temp-87 | <no value> |
<iTickerObj>.getColumnValue(3, "Col3") | temp-89 | <no value> |
Is there any other method in MII 14 to fetch values or is there issue with iTicker method in MII 14 ?
Appreciate your help.
Thanks,
Sumit