cancel
Showing results for 
Search instead for 
Did you mean: 

MDM Java API: Getting Lookup table Record values

lakshmi_narayana2
Active Participant
0 Kudos

Hi All

I have a Qualified table with a Non-Qualifier with Type Flat Lookup.

Considering the above scenario i need all the record values from the flat look up for the non Qualifier field.Pl help me in retreiving these values using MDM-JAVA API

I need to populate these values into a Dropdown in the HTML front end .

Thanks in advance

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

I would suggest you use the CatalogData.getResultSet(Search search, ResultSetDefinition rsd, String sortField, boolean sortAscending, long page) method which returns an A2iResultSet.

search - used to limit the number of records

rsd - defines which fields are returned in the resultset.

sortField - by which field the records are sorted

page - the page number (use 0 to return all records)

When creating the search object, just provide the table name and don't specify any search parameters. This will return all records from the table you specified.

Hope this helps,

Richard