Where/How can we get to know the ID value of Components etc..
Hello,
The easiest way I found is to go into an issue of the project you want to get the component ID.
Change/add the component needed and read the changes in the history tab 'All'
You will get something like this :
LAPARRA Geoffrey made changes - 5 minutes ago
Component/s My component [ 11509 ]
Awesome! Many many thanks! )
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Simple way is to go to Components link in the Jira project. Then view the source code for the page and use CTRL-F to find the component in question. The ID can be found there.
\"id\":27223,\"name\":\"Vandals\",\"issuesCount\":9,\"issuesUrl\":\"/jira/issues/?jql=project+%3D+BWDEMO+AND+component+%3D+Vandals\",\
Thanks again Atlassian for making something that should be easy, harder yet. It used to be you could over the mouse over the component name and see the ID at the bottom of the browser. They screwed that up.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi,
i ran across this post https://community.atlassian.com/t5/Jira-Core-questions/How-can-I-find-a-Component-ID-of-a-specific-Project/qaq-p/111851
It shows a lot of ID's including the component ID's.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Super helpful. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
final Set<JIRAConstant> components = issue.getComponents(); if (components != null && components.size() > 0) {</dd><dd>
int i = 0; for (JIRAConstant component : components) {</dd><dd>
component.getId(), component.getName();</dd><dd>
//this way you can get all the components with id. }</dd><dt></dt><dt>if your implementing for the single component</dt><dt></dt></dl>
ProjectManager projectManager = ComponentManager.getInstance().getProjectManager()<dl><dt></dt><dt></dt></dl>
you could get the component object based on component object get the Component id.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks everyone for your answers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In Jira 8.13, you have to look in the page code when hovering over the Actions - if you hover over the name you just get the literal path.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's been made a bit harder recently, probably the easiest way is to go to:
http://jira/browse/PKEY#selectedTab=com.atlassian.jira.plugin.system.project%3Acomponents-panel
ie the components tab on Browse projects, then mouse over the components. The ID is the last part of the URL.
Or, you could look up in the database, or write a groovy script or something.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry for not being precise.
I know where its available in older jira versions, but in JIRA5.0 am unable to find the ID for Components
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Its same for Jira 5.0 , Exit Administration>>Project>>Component Panel>>hover the mouse on the component name in the end of the url you will get the Component id.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.