0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

スクリーンフロー

Last updated at Posted at 2023-07-06

Flowに関するまとめページ に戻る

スクリーンフロー

You cannot validate on whether a field is blank in a screenflow (it's a pain).
However, for a lookup, you can set the "Required" option to "{!$GlobalConstant.True}"

画面フローではフィールドが空白かどうかを検証できません (面倒です)。
ただし、ルックアップの場合は、「Required」オプションを「{!$GlobalConstant.True}」に設定できます。

URLで変数に値を渡す

To actually pass the value, I think you need to set the parameters as follows.

/flow/Create_Case_for_Contact?inputAccountId={!Account.Id}&inputContactId={!Contact.Id}

Customize a Flow URL to Set Variable Values
https://help.salesforce.com/s/articleView?id=sf.flow_distribute_internal_url_variable.htm&type=5

recordIdの値が取得できていないとき

image.png

Please check this article.

Share the Flow URL or Create a Custom Button, Link, or Web Tab
https://help.salesforce.com/s/articleView?id=sf.flow_distribute_internal_url.htm&type=5

終了後にリダイレクトさせる

画面フローからリダイレクトさせるということでしょうか?
Auraコンポーネントを使って可能みたいです。

https://help.salesforce.com/s/articleView?id=sf.flow_concepts_finish_override.htm&type=5

レコード作成時のフローのエラー文言の変更

モーダルの高さ

image.png

In such cases you can add custom styles but they should be loaded by using loadStyle function, so the styles apply to the page and not just to LWC component.

Create styles.css with the following style:

.slds-spinner_container {

    background: unset

}

archive it to fixedStyles.zip and upload it as a static resource:
image.png

then reference it in your LWC component:

import { loadStyle } from 'lightning/platformResourceLoader';
import fixedStyles from '@salesforce/resourceUrl/fixedStyles';
export default class YourModal extends LightningModal {
    connectedCallback() {
        loadStyle(this, fixedStyles + '/styles.css');
    }
}

And this spinner glitch should be fixed.

I found the cause of the issue. The height of the modal can be adjusted but only up to 500px. This was required because of a Salesforce limitation which was removed with Winter 23. If your need more than 500px, I'll publish a fix tomorrow

問題の原因が見つかりました。モーダルの高さは調整できますが、最大 500px までです。これは、Winter 23 で削除された Salesforce の制限のため必要でした。500 ピクセルを超える必要がある場合は、明日修正を公開します。

エラー

image.png

カスタムボタンのURLを修正することで解決しました

チェックボックスに null 値を割り当てていると思います。 if (checkbox = null) false、チェックボックス、という数式を作成する必要があります。そうすれば、null 値は送信されず、false 値が送信されます

I think it's assigning a null value to the checkbox, you should create a formula that says if (checkbox = null) false, checkbox, that way its not sending a null value its sending a false value

レコードを作成する際に画面表示項目を直接割り当てているのかと思います。

「画面に表示されない = nullの値」のため、TrueかFalseの値しかとらないチェックボックス項目へ画面へ表示されていない項目を割り当ててしまうとエラーになります。

そのため、画面表示項目を直接割り当てるのではなく、下記のような数式を作成して割り当てする必要があります。

IF( OR( 画面表示項目 , NOT( 画面表示項目 ) ) , 画面表示項目 , False )

image.png

別のサイト テンプレートを使用しましたが、その場合は機能しているようです。「独自に構築する」テンプレートでは機能しない理由はわかりませんが、この解決策で問題ありません。

This field is managed in object manager. Your permissions affect the update compatible and create compatible values displayed here, but the running user’s permission control their access at run time.

image.png

納得しないようですね。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?