0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

レポートのエクスポートをトリガーにしたい

Posted at

flowでなくApexで同じことがしたいという質問/回答があります。

解答はApexトリガーではレポートのエクスポートを拾うことができないので、APIを使った独自のUIを作って実装するしかないと回答されています。

AFAIK this is something which cannot be implemented reason being - A trigger only executes before or after the following types of operations:

  • insert
  • update
  • delete
  • merge
  • upsert

undelete on a record.It cannot be triggered on the click of a button which doesn't perform any of the above operations.
Probably you can work thrugh reporting APIs and create your own reporting UI and implement this functionality.

https://developer.salesforce.com/forums/?id=906F000000094IEIAY

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?