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?

Customize a Salesforce Object > Create Formula Fields

Last updated at Posted at 2024-04-03

Customize a Salesforce Objectに戻る

  • 何もしないで検証ボタンをクリック

We can't find the formula field 'Commission__c' on the Opportunity object.

  • Commission 数式フィールドを作成

image.png

We can't find the expected formula on the Commission field from the Opportunity object.

Opportunity オブジェクトの Commission フィールドに期待される数式が見つかりません。

あれ?数式が違った?

ああ、これやってない

In the Visible column, select Sales User and System Administrator.

Salse Userがないなぁ。

image.png

一番最初のWork with Standard and Custom Fieldsで作ってるな。

image.png

FLSを修正したけどエラーは変わらないですね。

We can't find the expected formula on the Commission field from the Opportunity object.

以下でも同じエラーですね。

あああ、同じフィールドの数式を転記してますね。

IF( ISPICKVAL( StageName , "Closed Won") , Amount * 0.1, 0)

上記に変えたらエラーが変わりました。

We can't find the formula field 'Region_Zone__c' on the Opportunity object.

試しにFLSのSales Userを無効にしたけど、エラーは変わらないということは、FLSは見てない?

システム管理者も外したら、このエラーになりましたね。

We can't find the formula field 'Commission__c' on the Opportunity object.

my issue was from the field level security, i unselected sales user and system administrator instead of selecting them.

やはり、この設定の問題だった

Region__c がない

TEXT( Account.Region__c ) & "/" & TEXT( Account.Zone__c )

Try adding the field to the account object

https://trailhead.salesforce.com/content/learn/projects/customize-a-salesforce-object/picklists-field-dependencies

Next, create the same field on the Account object following the same steps.

image.png

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?