I have two data connections. One (we'll call DC1) pulls FIRSTNAME and LASTNAME from a database. The other, (we'll call DC2) uses this information to query a web service that returns a USERNAME after matching it to another database.
On my form, I have a repeating table that lists all the information from DC1. In the repeating table, I want to have ANOTHER textbox that returns the USERNAME from DC2 using the current row's information. like so:
FIRSTNAME LASTNAME USERNAME etc....
My two data connections work, because I can query DC2 without issue, and the repeating table properly displays information from DC1.
How can I add the USERNAME textbox (which contains the USERNAME returns from DC2 after comparing FIRSTNAME and LASTNAME) to the repeating table? Everything I have tried does not work - mostly, I just get repeating information in the USERNAME boxes in the repeating table. Thanks