2
2

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 3 years have passed since last update.

How to set the default record type when using ‘defaultFieldValues’ to set default values in Spring 20?

Last updated at Posted at 2020-04-22

#デフォルト項目値を含むレコードの作成ページへの移動 機能でレコードタイプを設定する方法

デフォルト項目値を新規レコードに渡すカスタムボタンとリンクを作成します。
対象: この変更は、すべてのエディションの Lightning Experience に適用されます。この変更は、Lightning Out、Lightning コミュニティ、Salesforce モバイルアプリケーションには適用されません。

方法: 事前入力された項目値を含む新規レコードを開始するカスタムボタンまたはリンクを作成するには、次のサンプル数式を使用します。

/lightning/o/Account/new?defaultFieldValues=
    Name={!URLENCODE(Account.Name)},
    OwnerId={!Account.OwnerId},
    AccountNumber={!Account.AccountNumber},
    NumberOfEmployees=35000,
    CustomCheckbox__c={!IF(Account.SomeCheckbox__c, true, false)}

しかし、レコードタイプはこのパラメータとしてはデフォルト値の設定ができないようです。
解決策は「defaultFieldValues」パラメーターの外に「recordTypeId」を設定する必要があるようですね。

/lightning/o/<Object_Name>/new?recordtypeId=012XX00000XXXXX&
defaultFieldValues=
Field1=value_1,
Field2=value_2

どうやって発見したのだろう。

リリースノート
https://releasenotes.docs.salesforce.com/ja-jp/spring20/release-notes/rn_general_lex_navigate_to_record_dfv.htm

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?