詳細情報:
一括処理の一括処理ジョブのスケジュール
指定したフォルダにアップロードされた PDF ドキュメントを自動的に処理するには、healthcloudds.BatchDocIngestionProcessor Apex クラスをスケジュールします。ドキュメントが処理されると、抽出された出力がドキュメント抽出要求オブジェクトで使用できるようになります。

より一般的な検索語を使用する。
絞り込み条件を減らして、検索範囲を広げる。
指定したフォルダにアップロードされた PDF ドキュメントを自動的に処理するには、healthcloudds.BatchDocIngestionProcessor Apex クラスをスケジュールします。ドキュメントが処理されると、抽出された出力がドキュメント抽出要求オブジェクトで使用できるようになります。
| 使用可能なインターフェース: Lightning Experience |
| 使用可能なエディション: Health Cloud Enterprise Edition および Unlimited Edition (Agentforce for Health Cloud ライセンス付属) |
| 必要なユーザー権限 | |
|---|---|
| Apex クラスの定義、編集、削除、セキュリティの設定、およびバージョンの設定を行う | 「Apex 開発」 |
この自動化を使用すると、手動操作なしで定期的にアップロードされたドキュメントを抽出できます。
Salesforce UI を使用してこのジョブをスケジュールする場合、スケジュールできるのは 1 時間間隔のみです。ジョブをより頻繁に実行するには、15 分間隔で複数のスケジューラーをオフセットしてスケジュールし、バッチが 1 時間あたり 4 回 (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.