I was receiving this error while I was using the tool JSExportFromCRM – a useful tool to backup javascripts for CRM.
While looking for the same the solution I found was this
First I ran this query
SELECT * from entity WHERE objecttypecode = 4408
It returned nothing
Than I ran the following query and it
select * from organizationuibase where ObjectTypeCode = 4408
returned a row.
So ran the following query (i.e deleted that entry)
Delete from organizationuibase where ObjectTypeCode = 4408
And than again run the tool and it worked properly!!
Bye
RSS - Posts

Great post Nishant. The entity importconfig (4408) was in version 3 and appears not to be in version 4. This appears only to be a problem with upgraded environments. New CRM4 systems do not have this entry in the orgui table.
By: Mike Read on January 27, 2009
at 11:55 am
Ya our environment is an upgraded one !! Thanks for sharing your knowledge Mike :)
By: Nishant Rana on January 27, 2009
at 12:52 pm