您在此处:
为批处理计划批处理作业
要自动处理上传到指定文件夹的 PDF 文档,请计划 healthcloudds.BatchDocIngestionProcessor Apex 类。处理文档后,提取的输出将在文档提取请求对象中可用。

使用更普遍的搜索词。
选择更少的筛选器,并扩大搜索范围。
要自动处理上传到指定文件夹的 PDF 文档,请计划 healthcloudds.BatchDocIngestionProcessor Apex 类。处理文档后,提取的输出将在文档提取请求对象中可用。
| 适用于:Lightning Experience |
| 适用于:具有 Agentforce for Health Cloud 许可证的 Health Cloud Enterprise 和 Unlimited Edition |
| 所需用户权限 | |
|---|---|
| 定义、编辑、删除和设置 Apex 类的版本设置: | 作者 Apex |
使用此自动化定期提取上传的文档,无需手动干预。
如果您通过 Salesforce UI 计划此作业,则只能每小时计划一次。要更频繁地运行作业,请使用多个计划程序以 15 分钟为间隔进行计划,以便批次每小时运行四次,例如,00、15、30 和 45 分钟。如果您的工作量不需要不断提取,请选择降低运行频率。
healthcloudds.BatchDocIngestionProcessor obj = new healthcloudds.BatchDocIngestionProcessor();
System.schedule('Batch Lab Reports Process 0', '0 0 * * * ?', obj);
System.schedule('Batch Lab Reports Process 1', '0 15 * * * ?', obj);
System.schedule('Batch Lab Reports Process 2', '0 30 * * * ?', obj);
System.schedule('Batch Lab Reports Process 3', '0 45 * * * ?', obj);

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.