Scenario: Shubham is looking for functionality in Salesforce Flow Where after creating a record it redirects to that particular record detail page.
Solution A: Create a Lightning Component.
Solution B: Provide a URL in the Display Text.
Learn more about Salesforce Flow Bootcamp
Solution A:
COMPONENT:
xxxxxxxxxx
<aura:component implements="lightning:availableForFlowScreens" access="global" >
<aura:attribute name="recId" type="String" />
<aura:handler name="init" value="{!this}" action="{!c.init}" />
</aura:component>
CONTROLLER:
xxxxxxxxxx
({
init : function(component, event, helper) {
$A.get("e.force:navigateToSObject").setParams({
"recordId": component.get("v.recId"),
"slideDevName": "related"
}).fire();
}
})
DESIGN:
xxxxxxxxxx
<design:component>
<design:attribute name="recId" label="Id of the record" />
</design:component>
Place this Component on a screen and use that screen as an end element.
For Solution, B check out the Video Tutorial