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.

Salesforce Toolまとめ

Last updated at Posted at 2023-07-25

随時追記中

ETL Tool

SOQLX
https://www.pocketsoap.com/osx/soqlx/

  • SQL Workbenchのようなもの

DevOps

データ転送ツール:SFDMU
https://qiita.com/takaHAL/items/0d6978269af28eaaf4bd

  • Org間やProd ↔ Sandbox間でデータ転送したい
  • 主従や依存関係を維持したまま転送したい(Account - Contact等)
  • 転送設定ファイルを作って何度も移送したい

Sample export.json

{
  "objects": [
    {
      "query": "SELECT all, RecordTypeId FROM Account",
      "operation": "Upsert",
      "externalId": "Name"
    },
    {
      "query": "SELECT all, RecordTypeId FROM Contact",
      "operation": "Upsert",
      "externalId": "Name"
    }
  ]
}

ログイン管理

Salesforce Logins by Synebo
https://www.synebo.io/products/salesforce_logins_extension_for_google_chrome

  • 複数Orgにログインする場合のOrg管理に便利

その他

Markdown記法
https://qiita.com/tbpgr/items/989c6badefff69377da7

  • 書き方忘れすぎ…
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?