There is no mapped action for the predicted intent, Current tracker state

Hi everyone! I declare my actions, entities, and slots in the domain file. But I don’t know why does not run the action action_category_for_suppliers for the intent ask_category_for_suppliers if I have my story path_smalltalk_category_for_suppliers declared…

This is my Rasa log

2020-09-19 03:29:04 DEBUG    rasa.core.processor  - Current slot values:
        agreement_id: None
        category_mtrl_grp: None
        category_name: None
        chart_type: None
        country: None
        currency: None
        date: None
        dow_jones_details: None
        location: None
        market_area: None
        month: None
        mus_id: None
        options_spend: None
        requested_slot: None
        sourcing_faq: None
        sourcing_person_name: None
        spend: None
        supplier_name: BHARTI
        wfquery: None
    2020-09-19 03:29:04 DEBUG    rasa.core.policies.memoization  - Current tracker state [None, {}, {'intent_ask_category_for_suppliers': 1.0, 'entity_supplier_name': 1.0, 'prev_action_listen': 1.0}, {'intent_ask_category_for_suppliers': 1.0, 'prev_action_default_fallback': 1.0, 'entity_supplier_name': 1.0}]
    2020-09-19 03:29:04 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
    **2020-09-19 03:29:04 DEBUG    rasa.core.policies.memoization  - Current tracker state [None, None, {}, {'prev_action_default_fallback': 1.0}]**
**    2020-09-19 03:29:04 DEBUG    rasa.core.policies.memoization  - There is no memorised next action**
**    2020-09-19 03:29:04 DEBUG    rasa.core.policies.form_policy  - There is no active** form
2020-09-19 03:29:04 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'ask_category_for_suppliers'.
2020-09-19 03:29:04 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_0_TwoStageFallbackPolicy
2020-09-19 03:29:04 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2020-09-19 03:29:04 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'.
2020-09-19 03:29:04 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'jitesh97'.

I think the problem is related with this lines of the log, it seems the tracker does not have the Current tracker state [None, {}, {‘intent_ask_category_for_suppliers’: 1.0, ‘entity_supplier_name’: 1.0, ‘prev_action_listen’: 1.0}, {‘intent_ask_category_for_suppliers’: 1.0, ‘prev_action_default_fallback’: 1.0, ‘entity_supplier_name’: 1.0}]

    **2020-09-19 03:29:04 DEBUG    rasa.core.policies.memoization  - Current tracker state [None, None, {}, {'prev_action_default_fallback': 1.0}]**
**    2020-09-19 03:29:04 DEBUG    rasa.core.policies.memoization  - There is no memorised next action**
**    2020-09-19 03:29:04 DEBUG    rasa.core.policies.form_policy  - There is no active** form

Here is my story

## path_smalltalk_category_for_suppliers
* ask_category_for_suppliers
  - slot{"supplier_name": "APPLE COMPUTER INC"}
  - action_category_for_suppliers
* inform{"category_mtrl_grp": "IT Accessories"}
    - slot{"category_mtrl_grp": "IT Accessories"}
    - action_get_category_names_supplier

Here is the log of the action server where is loading my actions

action_server_1  | 2020-09-19 03:27:56 INFO     rasa_sdk.executor  - Registered function for 'action_category_for_suppliers'.
action_server_1  | 2020-09-19 03:27:56 INFO     rasa_sdk.executor  - Registered function for 'action_get_category_names_supplier'.

Hey @EmilianoAguayo

Do you still have this problem?