Discussions
- General Development
- Schema Development
- Apex Code Development
- Visualforce Development
- Formulas & Validation Rules
- Security
- Mobile
- Force.com Sites & Site.com
- Chatter Development
- Java Development
- .NET Development
- Perl, PHP, Python & Ruby
- Desktop Integration
- APIs and Integrations
- Visual Workflow
- Apple, Mac and OS X
- VB and Office Development
- AppExchange Directory & Packaging
- Salesforce Labs & Open Source Projects
- Other Salesforce Applications
- Jobs Board
- Force.com Discussion Boards
- :
- Developer Boards for Force.com and Database.com
- :
- General Development
- :
- Duplicating list views and unresolvable field
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Duplicatin g list views and unresolvab le field
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-21-2013 06:24 AM
I am working to deploy some changes to our metadata - including profile changes. When I go to deploy the only error I'm getting is
File Name: objects/Idea.object Full Name: Idea.Ideas_Last_7_Days Action: NO ACTION Result: FAILED Problem: Could not resolve list view column: IDEA.IDEA_THEME
I've tried removing the column, however in the Salesforce UI I am not seeing it. In the IDE, I am.
I've deleted just that column. but a little bit after saving a replica of the standard view appears with the column in it. This creates an issue because of duplicate views as well.
I've tried deleting the entire view, but the same issue occurs - a replica view is added back to the metadata.
This is the one error I'm getting. Anyone know why it's throwing this error, even the server I'm deploying to has this list with the column? Is there any fix here?
MBO Partners
Salesforce Certified Developer
Solved! Go to Solution.
Re: Duplicatin g list views and unresolvab le field
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-21-2013 07:05 AM
I ended up modifying the view in the Salesforce UI; I just removed some of the columns that were in there, then I refreshed my IDE. For some reason that worked.
MBO Partners
Salesforce Certified Developer
Re: Duplicatin g list views and unresolvab le field
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-22-2013 09:23 AM
I was having a similar issue.
Essentially I was deploying a new object from one sandbox to another sandbox. These were the two errors I got:
sObject.All : Could not resolve list view column: OWNER.ALIAS sObject : customTabListAdditionalFields OWNER.ALIAS not found
The OWNER.ALIAS wasn't explicitly listed as a column nor was it a field/relational lookup for that object. If I viewed the source code for the object I found two sections in particular that included that field.
<listViews>
<columns>OWNER.ALIAS</columns>
</listViews>
<searchLayouts>
<customTabListAdditionalFields>OWNER.ALIAS</custom TabListAdditionalFields>
</searchLayouts>
Not sure how how the OWNER.ALIAS element got into the metadata, but I deleted those two line elements in eclipse and then applied the project to the server. Afterwards the deploy was a sucess.

