Skip to main content
Solved

FSM Mobile : Launch generate Quote Screen from Task

  • July 22, 2022
  • 2 replies
  • 68 views

Forum|alt.badge.img+15

Hi Team,

We are exploring option to launch the Generate Quote (New Quote) screen from DebriefTask Workflow.

When using the goToScreen or jumpBackToScreen, the control is taking back to the last Quote screen which was opened. Whereas, our requirement is to open a New Quote

 

 

Best answer by Anjula Priyanath

Hi @CKOppBox,

Did you set current keys quote_id(null),  quote_version(null) and workflow(Quote) before navigate to the screen?

setCurrentKeys('quote','quote_id','');
setCurrentKeys('quote','quote_version','');
setCurrentWorkflow('Quote'); 

Thanks.

2 replies

Anjula Priyanath
Superhero (Employee)
Forum|alt.badge.img+15
  • Superhero (Employee)
  • Answer
  • July 22, 2022

Hi @CKOppBox,

Did you set current keys quote_id(null),  quote_version(null) and workflow(Quote) before navigate to the screen?

setCurrentKeys('quote','quote_id','');
setCurrentKeys('quote','quote_version','');
setCurrentWorkflow('Quote'); 

Thanks.


Forum|alt.badge.img+15
  • Author
  • Hero (Partner)
  • July 22, 2022

Thanks @Anjula Priyanath,

That worked