Posts

Showing posts with the label button

Salesforce Fact #912 | Screen flow footer button visibility issue

If we are using a screen flow on any button click and for the particular app, there is utility bar present. In that case, the footer buttons get hidden in the utility bar. To resolve this, we can hide the standard footer section and use the Flow button bar component from UnOfficialSF and add extra blank sections to cover the space. Reference:  https://salesforce.stackexchange.com/questions/410593/flow-footer-being-hidden-for-utility-item-bar  

Salesforce Fact #873 | Exploring screen flow action button(Beta)

Image
With Summer'24 release, we can now access the screen flow action button feature as a Beta feature. As a use case, we know that capitalizing text does not work properly with screen flow reactivity. We can make use of a subflow which takes a string as input and returns the capitalized version. In this example, we are calling the subflow from a action button and the returned text is also set on the actual input with the help of formula resource 'InputDisplayValue'. Attached are the screenshots.

Salesforce Fact #670 | Translation for screen flow navigation button labels

If we are using custom label value for the Previous/ Next/ Pause button in the screen flow instead of the standard button labels, we can add the translation for the same using translation workbench. Reference:  https://help.salesforce.com/s/articleView?id=release-notes.rn_automate_flow_builder_custom_footer_labels.htm&release=236&type=5

Salesforce Fact #579 | Pass date value in custom link based on condition

Image
We can pass input parameter value from custom button link based on some condition as well. In this example, we are passing a date value from an account custom button link to a screen flow based on some condition check on the account created date. Attached is the screenshot.