Stories with forms not working

Can anyone please help why my stories aren’t working? It asks for the slots data and then stops working.

- story: book registration form + affirm
  steps:
    - intent: greet
    - action: utter_greet
    - intent: request_register
    - action: registration_form
    - active_loop: registration_form
    - active_loop: null
    - action: action_register_submit 
    - intent: affirm 
    - action: action_submit
    - action: utter_confirmed

- story: book registration form + deny
  steps:
    - intent: greet
    - action: utter_greet
    - intent: request_register
    - action: registration_form
    - active_loop: registration_form
    - active_loop: null
    - action: action_register_submit
    - intent: deny
    - action: utter_cancelled

- story: user interrupts the form
  steps:
    - intent: request_appointment
    - action: registration_form
    - active_loop: registration_form
    - intent: stop
    - action: utter_ask_continue
    - intent: stop
    - action: active_deactivate_loop
    - active_loop: null

I think you’re supposed to have the activation and deactivation of the forms in different stories/rules. Check the documentation.

@Gehova , I have added below code to activate the form however the bot is predicting action ‘action_default_fallback’ instead of ‘action_register_submit’ after ‘active_loop : null’.

- rule: activate Book registration form
  steps:
  - intent: request_registration
  - action: registration_form
  - active_loop: registration_form

any suggestions???

That rule seems to be working. Did you add the rule to deactivate the form?

@Gehova ,I have added below story to deactivate form.

- story: User interrupts the form and doesn't want to continue
  steps:
  - intent: request_appointment
  - action: appointment_form
  - active_loop: appointment_form
  - intent: stop
  - action: utter_ask_continue
  - intent: stop
  - action: action_deactivate_loop
  - active_loop: null

I guess stories should deactivate the form after slots are filled…? Also, it says “There is no memorised next action” even though there are actions after every form. Just clueless -_-