Debugging Solution Errors - dynamics-crm-2013

I have the below issue importing a solution
Cannot import component EntityRelationship:
b3a31c43-b484-e511-80f9-3863bb3640b8. The publisher of the solution
that is being imported does not match the publisher of the solution
that installed this component.
Anyone help with the best way to debug this using CRM Online, using on premise I would of queried the database to find the actual object causing the problem?

Related

Cognos Framework Removed Field Preventing Validation

I am attempting to fix a cognos framework package which has not been working due to a field it was referencing no longer being available in the data. The reson for this was the field had been renamed.
I have update the fields in the foundation and presentation layers and re-built the relationships which use the expired field but when trying to validate the package it shows an error saying that it is still using the field which doesn't exist.
Any help would be great thanks.
Please disregard. I think this was a cacheing issue. I have had the server this is on restarted and the issue has resolved itself.

Is it possible to import test cases from Excel to TFS?

I need help in importing test cases from excel to TFS [Version 14.102.25423.0]. As we have to write thousands of old test cases in TFS which seems to be very time consuming task.
I've already tried using- Test Case Migrator Plus. But its not working bcz of-TCMP has stopped working error. I'm unable to find solution for this error. Also there is no alternative I could find for same on Google.
I have also tried using Team Addin for excel but this gives option of importing Data from TFS to Excel but not vise versa.
So Plz let me know if anybody knows any solution or any otheralternative for getting this done.Thanks in Advance!
Note: I've Visual Studio 2015 installed on my VM with Windows 7.
The simplest way to import your test case back to TFS is: Import your test cases from web portal by copy and save. Note you must switch to the grid view first.
For more details take a look at below two links:
Importing Test cases from Excel to TFS
Add feature in TFS to export and import test case to and from TFS with steps,actions and expected result details
If you have multiple/thousands of test cases which need to upload. While TFS does not offer an out-of-the-box feature as a perfect solution. The 3rd-party tool Test Case Migrator Plus you are using seems only until 2013 version and there isn’t the version which supports TFS 2015.
You could still use the grid view, if you use three columns in Excel, you can even import many test cases into TFS at once. Besides depending on what you have as input, you can also do it with a bit of code, e.g. in C#. Just append some text, split columns by \t and rows by \r\n. Use Clipboard.SetText() and then paste in TFS.
There also has been a related user voice, you could vote up to get more attention, TFS PM will kindly review your suggestion:
Exporting Test Cases with Steps to Word/Excel
https://visualstudio.uservoice.com/forums/330519-visual-studio-team-services/suggestions/19582678-exporting-test-cases-with-steps-to-word-excel

Remove Sample Reports from pentaho community edition

Can anyone help me with how to remove the sample documents eg.Steelwheel etc. from pentaho community edition. I found a resource here but when I do it, it causes the bi server to crash. So am not sure if its the right thing to do. Has anyone achieved this successfully, help
Deleting the sample folders in the Solution Repository should be enough.
You should also delete the SampleData and SteelWheels data sources using the Data Source Manager.

Excel import to share point not working

Anyone know how to import data using excel to already created employees profile's list.
As there is only export to excel option available, and after i done some modifications in that same excel file and tried to import to sharepoint web portal it's not happening, it's say's connection time out.But if i refresh the data the value is taking from live share point.and there is no connection error happening.
Can anyone knows is any other way to do this?
Thanks
I would convert it to CSV or import it into Sharepoint here is a good example of updating user information in user profiles
http://social.technet.microsoft.com/wiki/contents/articles/13547.updating-user-profile-properties-with-powershell-in-sharepoint-2010.aspx

Perform single SQL query over internet Android

I am trying to find a way to goto a database located on the web perform 1 query and close the connection. I have not had any luck with finding an answer, and I really don't know how to solve this.
Internet connection is not an issue, nor is any security issues. Also this cannot be solved with an internal database and this must go across the web.
If you have any hints or ideas please let me know!
Thanks
You'll need to use some kind of service to access the database. For example you can write something very basic in php and use HTTPClient from Android to interact with it.
Here's a brief example on how to accomplish this.