-
Notifications
You must be signed in to change notification settings - Fork 92
Open
Labels
needs_researchFurther research is needed to determine the feasibility and scope of the issue.Further research is needed to determine the feasibility and scope of the issue.type/enhancementNew feature or requestNew feature or request
Description
SUMMARY
Enable the ability to search for standard changes within custom tables, instead of being limited to finding templates solely in the 'std_change_producer_version' table.
ISSUE TYPE
- Feature Idea
COMPONENT NAME
servicenow.itsm.change_request
ADDITIONAL INFORMATION
In my scenario, the standard change I'm searching for is stored in a custom table, which makes it difficult to locate the corresponding template. To address this, I suggest implementing an optional parameter called 'template_table' in the 'find_standard_change()' function. This parameter would allow users to specify a custom table for searching the standard change. To ensure backward compatibility, the parameter could have a default value of 'std_change_producer_version'.
- name: Create servicenow change
servicenow.itsm.change_request:
instance:
host: "{{ servicenow_change_instance }}"
username: "{{ servicenow_change_username }}"
password: "{{ servicenow_change_password }}"
type: standard
state: new
other:
company: "{{ servicenow_change_company }}"
template: "{{ servicenow_change_template }}"
template_table: "{{ servicenow_change_template_table }}" <-- New parameter with standard value
register: snow_change_request
EirikOpheim
Metadata
Metadata
Assignees
Labels
needs_researchFurther research is needed to determine the feasibility and scope of the issue.Further research is needed to determine the feasibility and scope of the issue.type/enhancementNew feature or requestNew feature or request