web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / BPF Finish - reassure ...
Power Apps
Answered

BPF Finish - reassure whether user really wants to finish before finishing the process

(2) ShareShare
ReportReport
Posted on by 38
Hi everybody,
 
is there a way to display a message asking an user whether he really wants to finish the process before finishing the business process flow?
I would like to prevent an user to accidentially finishing the process. If a person clicks on finish I would like to display a notice asking the user 'do you really want to finish the process' with two options yes or no. Only if 'yes' is chosen the process should get finished. 
 
Can this be done at all? If yes, how?
 
Kind regards
Cornelia
 
 
I have the same question (0)
  • Verified answer
    crisfervil Profile Picture
    126 on at
    Hi Cornelia, 
     
    You should be able to do it using a custom Javascript on the form.
    Chek out this method on the client API.
     
     
    function onPreStageChange(context) {
        var eventArgs = context.getEventArgs();
        var stage = eventArgs.getStage();
        var stageName = stage.getName();
    
        var confirmMessage = "Are you sure you want to move to the next stage: " + stageName + "?";
        var userConfirmed = confirm(confirmMessage);
    
        if (!userConfirmed) {
            eventArgs.preventDefault();
        }
    }
    
    // Register the event handler
    function registerOnPreStageChange() {
        var formContext = Xrm.Page;
        formContext.data.process.addOnPreStageChange(onPreStageChange);
    }
    
    // Call the registration function on form load
    function onFormLoad(context) {
        registerOnPreStageChange();
    }
    
    I hope it helps!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Vish WR Profile Picture

Vish WR 860

#2
Valantis Profile Picture

Valantis 548

#3
Haque Profile Picture

Haque 417

Last 30 days Overall leaderboard