This is the scenario:
A webform with the following fields
Question -> Textfield Category -> Select options (Listbox) Listing vocabulary HETCAT
A content type Question with these fields
Title Category -> Term reference listing vocabulary HETCAT
Once the webform is submitted i create a new question node. Everything works fine, the Question field of the webform is the new Question node title, but i can not see the way to copy the category selected on the webform to the new node
Thanks in advance
This is the export rule code
{ "rules_submissions_to_node" : { "LABEL" : "Submissions to node", "PLUGIN" : "reaction rule", "OWNER" : "rules", "REQUIRES" : [ "webform_rules", "rules" ], "ON" : { "webform_rules_submit" : [] }, "IF" : [ { "webform_has_id" : { "form_id" : [ "form_id" ], "selected_webform" : { "value" : { "webform-client-form-140" : "webform-client-form-140" } } } } ], "DO" : [ { "entity_create" : { "USING" : { "type" : "node", "param_type" : "het_question", "param_title" : [ "node:title" ], "param_author" : [ "user" ] }, "PROVIDE" : { "entity_created" : { "new_question" : "New question" } } } }, { "data_set" : { "data" : [ "new-question:title" ], "value" : "[data:question-value]" } }, { "data_set" : { "data" : [ "new-question:field-month" ], "value" : [ "site:current-date" ] } }, { "entity_save" : { "data" : [ "new-question" ], "immediate" : 1 } }, { "mail_to_users_of_role" : { "roles" : { "value" : { "4" : "4" } }, "subject" : "New question to approve", "message" : "[new-question:title]rnrnu003Ca href=u0022[new-question:edit-url]u0022u003EEdit to publish itu003C/au003Ern", "from" : "[site:name]" } }, { "node_unpublish" : { "node" : [ "new-question" ] } } ]}}