Routing infopath forms based on departmentIs there a way to route an infopath form based on the department the user filling it out belongs to?<br><br>IE, can I make a global PTO Request form that would route to a person(their respective supervisor) based on their department?<br>© 2009 Microsoft Corporation. All rights reserved.Mon, 06 Jul 2009 15:15:15 Z464e5ea0-781c-4066-9ff9-73e237ab74c5http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#464e5ea0-781c-4066-9ff9-73e237ab74c5http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#464e5ea0-781c-4066-9ff9-73e237ab74c5zdonovanhttp://social.msdn.microsoft.com/Profile/en-US/?user=zdonovanRouting infopath forms based on departmentIs there a way to route an infopath form based on the department the user filling it out belongs to?<br><br>IE, can I make a global PTO Request form that would route to a person(their respective supervisor) based on their department?<br>Mon, 12 Nov 2007 16:34:04 Z2007-11-12T16:34:04Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#453d853a-f34e-40c3-8577-baa960cbecaehttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#453d853a-f34e-40c3-8577-baa960cbecaePaul Galvinhttp://social.msdn.microsoft.com/Profile/en-US/?user=Paul%20GalvinRouting infopath forms based on department<p>If you have the department as part of the form, then you could use that in SPD to do the routing.</p> <p align=left> </p> <p align=left>Are you using SPD?</p> <p align=left> </p> <p align=left><font face=Arial size=2></font> </p>Thu, 15 Nov 2007 01:46:25 Z2007-11-15T01:46:25Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#681cc375-f672-4d28-83a7-965cd887bd2ehttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#681cc375-f672-4d28-83a7-965cd887bd2ezdonovanhttp://social.msdn.microsoft.com/Profile/en-US/?user=zdonovanRouting infopath forms based on departmentI forgot to specify this, but I am using InfoPath Services on MOSS 2007.<br><br>I have SPD and I don't mind doing a little work in it, although I would prefer to do as little as possible (Who wouldn't).<br>Fri, 16 Nov 2007 16:26:58 Z2007-11-16T16:26:58Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#50b65367-bc58-40d1-a950-93ef61aba297http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#50b65367-bc58-40d1-a950-93ef61aba297BryantDukehttp://social.msdn.microsoft.com/Profile/en-US/?user=BryantDukeRouting infopath forms based on department<p align=left><font face=Arial size=2></font> </p> <p>Hey,</p> <p align=left> </p> <p align=left>I just wanted to add my two cents worth. I also wanted a form (browser enabled) to route based on someones manager, so I used the following approach:</p> <p align=left> </p> <p align=left>1, Uploaded all of the Manager information and EmployeeID information to Active Directory (not heavily utilized by many IT Managers, but possible).</p> <p align=left> </p> <p align=left>2. Used the Form Initialization Rules to query the ProfileWebService in MOSS to fill in the Manager, EmployeeID and current user information into fields in the form.</p> <p align=left> </p> <p align=left>3. Using VSTA to program a changing event to lookup the ManagerID (which comes in as the NTName) against the SSP Profile Database to retrieve the Manager's PreferredName and Email address.</p> <p align=left> </p> <p align=left>4.  Other than all of the other Form Stuff which obviously changes form to form, I published the form to a Sharepoint Form Library (Through the Central Admin Site).  By the way, you do need to add a DCL file to Central Admin to access the SSP Profile Database efficiently.</p> <p align=left> </p> <p align=left>5.  Used SPD to create a custom workflow which routed based on the Manager Email, PreferredName and the rest of the form information.</p> <p align=left> </p> <p align=left>I did mess with the InfoPath &quot;Contact Selector&quot; Active-X component a little as well, but I didn't like it as much, and you couldn't retrieve anything but the users name from it.</p> <p align=left> </p> <p align=left>I realize this method is not a &quot;Cut and Dry&quot; easy method, but it was the only way I could guarantee results of who was logged in and who their manager was without having to have the user type in or have a drop-down list to fill out.</p> <p align=left> </p> <p align=left>If you would like any examples of code or procedures I have used, just let me know.  I will be more than happy to share my research.  Trust me, if you have done any of these things I have mentioned, you know how challenging they can be.  On some of my projects, I just had to scrap InfoPath and go straight .NET Web Applications.</p> <p align=left> </p> <p align=left>Bryant</p> <p align=left> </p>Sat, 17 Nov 2007 22:47:12 Z2007-11-17T22:47:12Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#81e757dc-23df-4157-b512-8b27430e721chttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#81e757dc-23df-4157-b512-8b27430e721cPaul Galvinhttp://social.msdn.microsoft.com/Profile/en-US/?user=Paul%20GalvinRouting infopath forms based on department<p align=left><font face=Arial size=2>That's a great detailed explanation.</font></p> <p align=left> </p> <p align=left>Can you elaborate on #4?</p> <p align=left> </p> <p align=left>Thanks!</p>Tue, 20 Nov 2007 13:31:30 Z2007-11-20T13:31:30Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#c8c151df-c917-4cf0-b230-6c323c6e12eahttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#c8c151df-c917-4cf0-b230-6c323c6e12eazdonovanhttp://social.msdn.microsoft.com/Profile/en-US/?user=zdonovanRouting infopath forms based on department<div class=quote> <table width="85%"> <tbody> <tr> <td class=txt4> <strong>BryantDuke wrote:</strong></td></tr> <tr> <td class=quoteTable> <table width="100%"> <tbody> <tr> <td class=txt4 valign=top width="100%"> <p align=left><font face=Arial size=2></font> </p> <p>Hey,</p> <p align=left> </p> <p align=left>I just wanted to add my two cents worth. I also wanted a form (browser enabled) to route based on someones manager, so I used the following approach:</p> <p align=left> </p> <p align=left>1, Uploaded all of the Manager information and EmployeeID information to Active Directory (not heavily utilized by many IT Managers, but possible).</p> <p align=left> </p> <p align=left>2. Used the Form Initialization Rules to query the ProfileWebService in MOSS to fill in the Manager, EmployeeID and current user information into fields in the form.</p> <p align=left> </p> <p align=left>3. Using VSTA to program a changing event to lookup the ManagerID (which comes in as the NTName) against the SSP Profile Database to retrieve the Manager's PreferredName and Email address.</p> <p align=left> </p> <p align=left>4.  Other than all of the other Form Stuff which obviously changes form to form, I published the form to a Sharepoint Form Library (Through the Central Admin Site).  By the way, you do need to add a DCL file to Central Admin to access the SSP Profile Database efficiently.</p> <p align=left> </p> <p align=left>5.  Used SPD to create a custom workflow which routed based on the Manager Email, PreferredName and the rest of the form information.</p> <p align=left> </p> <p align=left>I did mess with the InfoPath &quot;Contact Selector&quot; Active-X component a little as well, but I didn't like it as much, and you couldn't retrieve anything but the users name from it.</p> <p align=left> </p> <p align=left>I realize this method is not a &quot;Cut and Dry&quot; easy method, but it was the only way I could guarantee results of who was logged in and who their manager was without having to have the user type in or have a drop-down list to fill out.</p> <p align=left> </p> <p align=left>If you would like any examples of code or procedures I have used, just let me know.  I will be more than happy to share my research.  Trust me, if you have done any of these things I have mentioned, you know how challenging they can be.  On some of my projects, I just had to scrap InfoPath and go straight .NET Web Applications.</p> <p align=left> </p> <p align=left>Bryant</p> <p align=left> </p></td></tr></tbody></table></td></tr></tbody></table></div><br><br>This is a great response, but will it work with infopath services ie without actually having Infopath.<br>Tue, 20 Nov 2007 16:53:10 Z2007-11-20T16:53:10Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#49c57501-7206-49cd-8897-1092d3c0ef4ehttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#49c57501-7206-49cd-8897-1092d3c0ef4eMonchichihttp://social.msdn.microsoft.com/Profile/en-US/?user=MonchichiRouting infopath forms based on department<p>Hi, all.</p> <p align=left> </p> <p align=left>I need to do something very similar of what you guys are doing.</p> <p>I need to retrieve data from Active Directory (like login user name, supervisor's name and email address, etc) and display them on the form. After user submits the form, a workflow will send email to the right supervisor for approval.</p> <p align=left> </p> <p align=left>Can someone elaborate steps by steps how to retrieve data from Active Directory?</p> <p align=left> </p> <p align=left>Thanks in advance.</p>Wed, 21 Nov 2007 15:39:26 Z2007-11-21T15:39:26Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#c5058801-746e-4728-bacd-6526d652741bhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#c5058801-746e-4728-bacd-6526d652741bBryantDukehttp://social.msdn.microsoft.com/Profile/en-US/?user=BryantDukeRouting infopath forms based on department<p align=left><font face=Arial size=2>Yes this will work with Form Services (MOSS 2007) and I designed this system just for that reason.  The powers above me do not like the idea of having to install InfoPath 2007 on every desktop in the company (40000, yikes !).</font></p> <p align=left> </p> <p align=left>I will try and Elaborate on #4 above:</p> <p align=left> </p> <p align=left>4.  Other than all of the other Form Stuff which obviously changes form to form, I published the form to a Sharepoint Form Library (Through the Central Admin Site).  By the way, you do need to add a DCL file to Central Admin to access the SSP Profile Database efficiently.</p> <p align=left> </p> <p align=left>When creating the InfoPath Secondary Data Connection, follow these steps:</p> <p align=left>You will need the name of your Shared Service Provider Database in SQL.  In this example, the name is SPS_SSP_db.</p> <p align=left> </p> <p align=left>1.  In Sharepoint, create a Data Connection Libary (DCL) in your Site Collection. (if you need these steps, let me know)</p> <p align=left>2.  In InfoPath2007, go to the Tools, Data Connections option:</p> <blockquote dir=ltr style="margin-right:0px"> <p align=left>a.  Click &quot;Add&quot;, then select &quot;Create a new connection&quot; and &quot;Receive&quot; options</p> <p align=left>b.  Click next.</p> <p align=left>c.  On the &quot;From Where......&quot; screen select &quot;Database (Microsoft SQL Server Only)&quot; option</p> <p align=left>d.  Click next.</p> <p align=left>e.  Click &quot;Select Database&quot;, then double-click on &quot;+NewSQLServerConnection.odc&quot;</p> <p align=left>f.   Type in your SQL Server Name and instance (if you have one).  i.e. SQL12\SPS</p> <p align=left>g.  Leave the Logon Credentials to &quot;use Windows Authentication&quot;</p> <p align=left>h.  Click next.</p> <p align=left>i.   Select your SSP database in the dropdown menu (in my case, SPS_SPS_db)</p> <p align=left>j.   In the &quot;Connect to a specific table&quot; window, select the UserProfile_Full table.</p> <blockquote dir=ltr style="margin-right:0px"> <p align=left>(This table does not include the EmployeeID, but if you need I can explain how to create an SQL View which will populate this information into a different view.  If this was done, then you would select the view instead of the table.  In this example, I did not create the additional view).</p></blockquote> <p dir=ltr align=left>k.  Click next, and then finish (if you want to add description, you can, but it is not necessary).</p> <p dir=ltr align=left>l.   Click next, next and finish.   Take note of the name of the Data Connection.</p></blockquote> <p align=left>2.  From the Data Connections Window.  Select the Data connection you just created and click &quot;Convert&quot;</p> <blockquote dir=ltr style="margin-right:0px"> <p align=left>a.  In the Convert Data Connection window, select the option &quot;centrally managed connection library (advanced)&quot;</p> <p align=left>b.  Click on the &quot;Browse&quot; button.</p> <p dir=ltr style="margin-right:0px" align=left>c.  Browse to and select the DCL you created in step 1 and either leave the default name or type in a new one (it really doesn't matter as long as you know what the filename is).</p> <p align=left>d.  Then click &quot;Save&quot;, and OK.</p></blockquote> <p align=left>4.  The DCL file is now &quot;Converted&quot; and ready for use only with InfoPath2007 the client, but not the Forms Service yet.</p> <p align=left>5.  Go to the DCL in Sharepoint:</p> <blockquote dir=ltr style="margin-right:0px"> <p align=left>a.  Right-click on the file and choose &quot;Save Target As&quot;.</p> <p align=left>b.  Save the file somewhere on your computer</p> <p align=left>c.  Open the file in notepad. (You will need a username and password which has &quot;Read&quot; access rights to the Sharepoint Profile Database.)</p> <p align=left>d.  In the file (which is in XML Format), replace the entire section with:</p></blockquote> <p dir=ltr align=left> </p> <p dir=ltr align=left> <div class=codeseg> <div class=codecontent> <div class=codesniptitle><span style="width:100%">Code Block</span></div> <p dir=ltr align=left>  &lt;udc:Authentication&gt;<br>      &lt;udc:UseExplicit CredentialType=&quot;NTLM&quot;&gt;<br>          &lt;udc:UserId&gt;DOMAIN\UserAccount&lt;/udc:UserId&gt;<br>          &lt;udc:Password&gt;strongpassword&lt;/udc:Password&gt;<br>      &lt;/udc:UseExplicit&gt;<br>  &lt;/udc:Authentication&gt;</p> <p align=left> </p></div></div> <p align=left> </p> <blockquote dir=ltr style="margin-right:0px"> <p align=left>e.  Save the file.</p> <p align=left>f.   Delete the existing file which is in the DCL (the one you just downloaded), and replace it with the new file you just edited.</p> <p align=left>g.  Go to Central Administration, Application Management Tab.</p> <blockquote dir=ltr style="margin-right:0px"> <p align=left>a.  Under the section InfoPath Forms Services, click &quot;Manage Data Connection Files&quot;</p> <p align=left>b.  Click &quot;Upload&quot;</p> <p align=left>c.  Click &quot;Browse&quot;, and select the file you just edited, and &quot;Open&quot;</p> <p align=left>d.  Check the box &quot;Allow HTTP Access to the File&quot;</p> <p align=left>e.  Click &quot;Upload&quot;.</p></blockquote></blockquote> <p dir=ltr align=left>6.  Remember, if you are testing the file in the InfoPath2007 client, then the file must remain in the DCL on the Sharepoint Site.  However, it doesn't need to be there for the Form Services to work.  Forms Services will use the one uploaded to the Central Administration Website.</p> <p dir=ltr align=left> </p> <p dir=ltr align=left>I hope this helps clarify my comments in step #4.</p> <p dir=ltr align=left> </p> <p dir=ltr align=left>Good Luck.</p> <p dir=ltr align=left> </p> <p dir=ltr align=left>Bryant</p> <p></p> <p dir=ltr align=left> </p> <p align=left> </p>Wed, 21 Nov 2007 16:20:45 Z2007-11-21T16:20:45Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#9b7eca33-1b59-47a0-a380-768daab69a47http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#9b7eca33-1b59-47a0-a380-768daab69a47Jayashri Thorathttp://social.msdn.microsoft.com/Profile/en-US/?user=Jayashri%20ThoratRouting infopath forms based on departmentHi Bryant,<br/><br/>Can you please explain , how to create a DCL?<br/>I am  not worked so much on infopath and want to fetch user profile in a form from ssp.<br/>By reading your post , i think it is useful for me but not able to understand about DCL!!<br/><br/>Thanks in advance. Wed, 24 Jun 2009 11:41:27 Z2009-06-24T11:41:27Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#03d95f9f-87f5-4fa1-9bc9-d77be9dc1d43http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#03d95f9f-87f5-4fa1-9bc9-d77be9dc1d43Clayton Cobbhttp://social.msdn.microsoft.com/Profile/en-US/?user=Clayton%20CobbRouting infopath forms based on departmentDCL = Data Connection Library.  It's only a MOSS feature, but they exist on any site collection.  When you create your data connection in InfoPath, you choose to save it in an existing DCL, which can be your regular site or in Central Admin for administratively-approved forms with full trust.<br/><br/>However, you don't need a DCL for using the UserProfileService to get data from the SSP's profile database unless you're doing some crazy stuff like Bryant.  For regular forms, you don't have to do that and can just connect directly.  Refer to my blog for additional info on doing this.<hr class="sig">SharePoint Architect || <a href="http://claytoncobb.wordpress.com">My Blog</a>Wed, 24 Jun 2009 13:32:17 Z2009-06-24T13:32:17Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#42b6c9cd-3dd0-4e1a-8bb9-8553aa44e842http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#42b6c9cd-3dd0-4e1a-8bb9-8553aa44e842Jayashri Thorathttp://social.msdn.microsoft.com/Profile/en-US/?user=Jayashri%20ThoratRouting infopath forms based on departmentThanks.Thu, 25 Jun 2009 12:57:02 Z2009-06-25T12:57:02Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#fcfbfe70-5874-4bc4-8cf2-313350d0f967http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#fcfbfe70-5874-4bc4-8cf2-313350d0f967DavidNBFhttp://social.msdn.microsoft.com/Profile/en-US/?user=DavidNBFRouting infopath forms based on department<p>Hi Bryant,</p> <p>Thanks for the detailed explanation.</p> <p>I created a test site and designed an InfoPath form with a control to look up data in the profile database as you describe. I then tested the form in the client and it works well. I proceeded with the “Convert” method, modified the file as described in the DCL, uploaded it in “Central Admin” and tested it again on the client, so far so good. Next step was to publish the form to a SP site, this step required Administrator approval, and so I saved the form with a new name, uploaded the form in Central Admin and approved it.</p> <p>I receive the standard browser error message when trying to open the file:</p> <p>There has been an error while processing the form.<br/>Click Continue to resume filling out the form. You may want to check your form data for errors.<br/>Click Start Over to load a new copy of the form.</p> <p>Again, at all times I could open the file in the IP client. Any thoughts?</p> <p><br/>Thanks,<br/>David</p>Wed, 01 Jul 2009 20:19:16 Z2009-07-01T20:19:16Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#7215b73f-2368-41da-935f-0a097cdf9d46http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#7215b73f-2368-41da-935f-0a097cdf9d46Clayton Cobbhttp://social.msdn.microsoft.com/Profile/en-US/?user=Clayton%20CobbRouting infopath forms based on departmentAfter approving in Central Admin, did you activate it on your site?  There is too much to read above, but is there some necessary code in your form that is requiring the administrative approval?<hr class="sig">SharePoint Architect || <a href="http://claytoncobb.wordpress.com">My Blog</a>Wed, 01 Jul 2009 20:35:47 Z2009-07-01T20:35:47Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#5df309d3-5549-4d58-92ea-b6279ee3e766http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#5df309d3-5549-4d58-92ea-b6279ee3e766DavidNBFhttp://social.msdn.microsoft.com/Profile/en-US/?user=DavidNBFRouting infopath forms based on departmentI actived the form in Central Admin for the the site collection. The form is very simple, one control with a data connection that looks up names in the profile database. There is no code.Thu, 02 Jul 2009 12:28:44 Z2009-07-02T12:28:44Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#072de606-ff43-4a97-9538-48fc9c39942ahttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#072de606-ff43-4a97-9538-48fc9c39942aClayton Cobbhttp://social.msdn.microsoft.com/Profile/en-US/?user=Clayton%20CobbRouting infopath forms based on departmentThen why is it adminitratively approved, and why is it using a UDC hosted at Central Admin?  Just do the relative path UDC so that it saves in a DCL on the same site collection.  Then, just publish the form straight to your site.  What made you go through all that other trouble of going through Central Admin? <br/><br/>In your error message above, was there not a &quot;show details&quot; button to tell you what the error was?<hr class="sig">SharePoint Architect || <a href="http://claytoncobb.wordpress.com">My Blog</a>Thu, 02 Jul 2009 13:11:02 Z2009-07-02T13:11:02Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#d1070ded-e656-4053-95dd-79ff9c838ff2http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#d1070ded-e656-4053-95dd-79ff9c838ff2DavidNBFhttp://social.msdn.microsoft.com/Profile/en-US/?user=DavidNBFRouting infopath forms based on department<p>Well, here is the issue - once I convert the file in IP, upload it to the DCL and modify it, it does not let me publish a browser enabled form without Admin approval. <br/>The &quot;show details&quot; error is a standard one:<br/>   An error occurred accessing a data source.<br/>  An entry has been added to the Windows event log of the server. <br/><span class=ErrorPageEmphasisText>  Log ID:</span><span>6932</span></p>Thu, 02 Jul 2009 14:21:42 Z2009-07-02T14:21:42Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#eca7a570-6533-4fd6-ab6a-f5c503974f9ehttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#eca7a570-6533-4fd6-ab6a-f5c503974f9eClayton Cobbhttp://social.msdn.microsoft.com/Profile/en-US/?user=Clayton%20CobbRouting infopath forms based on department<div class=body style="">But there are two options when you convert - relative path and central location.  Central location makes you put it in Central Admin, which you do not want.  You just want relative path so that you can store it in the same site collection as your forms library.  There is no reason for it to be administratively approved if it has no code.<br/><br/>Interestingly, I have never seen 6932, so that should point you in the right direction for researching.  I will look it up later, but I have to make my commute now.  <hr class=sig> SharePoint Architect || <a href="http://claytoncobb.wordpress.com/"><span style="color:#0033cc">My Blog</span></a></div>Thu, 02 Jul 2009 14:26:11 Z2009-07-02T14:27:07Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#eed93552-2633-4a73-99de-4665531136c0http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#eed93552-2633-4a73-99de-4665531136c0DavidNBFhttp://social.msdn.microsoft.com/Profile/en-US/?user=DavidNBFRouting infopath forms based on departmentMany thanks Clayton! This resolved the issue!!<br/>Happy 4th.<br/>DavidThu, 02 Jul 2009 14:42:34 Z2009-07-02T14:42:34Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#6717abcc-6f59-40fb-b8ee-2b464a8497a7http://social.msdn.microsoft.com/Forums/en-US/sharepointinfopath/thread/464e5ea0-781c-4066-9ff9-73e237ab74c5#6717abcc-6f59-40fb-b8ee-2b464a8497a7Clayton Cobbhttp://social.msdn.microsoft.com/Profile/en-US/?user=Clayton%20CobbRouting infopath forms based on departmentAwesome!  Glad it was simple.  Shoot me an answer if you don't mind.  =P<hr class="sig">SharePoint Architect || <a href="http://claytoncobb.wordpress.com">My Blog</a>Thu, 02 Jul 2009 17:08:16 Z2009-07-02T17:08:16Z