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

link|improve this question

Is this allowed to be a template with codebehind? – Jason Watts Jun 11 '09 at 22:44
sure - I have no aversion to code. I would make this a asp.net page or something, but I need to distribute the information among departments, and they all want this on our sharepoint site. – Kolten Jun 12 '09 at 16:19
feedback

1 Answer

up vote 1 down vote accepted

This problem shows a real failing in the XPath implementation InfoPath uses. You will not be able to do it without managed code.

This blog article shows an example of how to populate a repeating table with data.

You will need to make a repeating table in your main datasource that will store the combined data. Then in your Loading event function (or whenever you pull the data from your DC's) populate the repeating group in your main datasource with the data from your two DC's.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.