求助~~CRM2011 导出的EXCEL数据只有5000条,如何修改?急求!
-
zondag 26 februari 2012 7:56
求助~~CRM2011 导出的EXCEL数据只有5000条,如何修改?急求!
有人说修改OrganizationBase表中的MaxRecordsForExportToExcel,但我修改后不起作用,求高人帮助~
也有人说是修改MSCRM_CONFIG数据库中的配置表,但一直没找到,求助~求助~
Alle reacties
-
maandag 27 februari 2012 1:22Moderator
- Als antwoord voorgesteld door Toong YangMVP maandag 27 februari 2012 9:12
-
woensdag 29 februari 2012 1:22
Batistuta Cai 您好,谢谢您的回复,
我看了您的链接,这种是针对设置导出的,但现在还有个问题想请教您:
我在导入数据的时候,当有5000以上的错误行数据就只能导出5000条。
如图:不知您有什么好的建议或者方法,谢谢!
-
dinsdag 13 maart 2012 8:11
Updating the MaxRecordsForExportToExcel is a supported change; however, it is not supported to update it directly in the database.
You should be able to update it using the web services:
Organization organization = new Organization(); organization.Id = orgId; organization.MaxRecordsForExportToExcel = 300000; service.Update(organization);You can also create a New report off of the advanced find you have saved. Run the Report and export the report to excel. This works in CRM 2011 online as well.
Thanks and regards
Mubasher