function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Query UserQuery User 

Issue with Reports containing Filters

Hi,

 

When I am migrating data from Sandbox to developer org through Eclipse, Reports which are having filters are not being moved and the error is " Problem: filterlanguage: Invalid value specified: 1."

 

Once i remove the filter, I am able to move the reports successfully.

 

Anyone please help me in resolving this issue.

 

Thanks in advance. 

sandeep@Salesforcesandeep@Salesforce

Pelase make sure you have Translation Workbench enabled (and same languages selected) in your target org.

Sai AytaSai Ayta
Turning on Translation workbench resolved the error and able to deploy the reports usin eclipse.
stmfaizanstmfaizan
Turning on translation workbench resolved the error for me too :) Thanks Sai & Sandeep
Oleh MykytynOleh Mykytyn
Thanks! Turning on Translation workbench helped me as well!
Tyler KotlowskiTyler Kotlowski
Aww I can't get this to work, I am using IntelliJ and am receiving the same error: Error:filterlanguage: Invalid value specified: 1.
However there is no `Translation Workbench` plugin that I can install. Any ideas?
Amreen Shaikh 7Amreen Shaikh 7
It is not a plugin in IntelliJ. Go to setup. Search for translation workbench.
aamir arshadaamir arshad
Thanks! Turning on the Translation workbench helped me as well!
Tamar Bar Shalom 1Tamar Bar Shalom 1
I have a similar probem. 
I am trying to create an unlock package that contains report with a filter on a picklist field.
That is, I have this code in the report xml file:

    <filter>
        <criteriaItems>
            <column>Requirement__c.Status__c</column>
            <columnToColumn>false</columnToColumn>
            <isUnlocked>true</isUnlocked>
            <operator>notEqual</operator>
            <value>Cancelled,Parking Lot</value>
        </criteriaItems>
        <language>en_US</language>
    </filter>

As I understand the problem is `language>en_US</language`
Is there a solution? a work around? maybe a setting to add to the package? 
To be specific I managed to push this code to scratch org by configure translation workbench and language setting before deploying. 
But when creating a package with validation I get this error:
 filterlanguage: Invalid value specified: 1.