I'm an admin and can create a company managed project in Jira Work Management. However, I'm not see any options in my sidebar in order to use the project. All I see are the team managed projects in Work Management. I have no issue with the team managed projects, only company managed.
I don't know of an alternative. I'm trying to create a company managed project in Work Management because I need to create a new employee onboarding process using custom fields I've created. And we don't have Service Management.
A project (project) has a workflow scheme (workflowscheme) linked by entries in a linkage table (nodeassociation - read it for ProjectScheme and WorkflowScheme). The workflow scheme then tells you which workflow (workflowschemeentity) an issue type is set to use
You can see why my next piece of advise is "do not use the database directly, use the API"
Ok in the table nodeassociation i have SOURCE_NODE_ENTITY / SINK_NODE_ENTITY / ASSOCIATION_TYPE and I suppose is the relation with workflowschemeentity but I am not interstand why is in relation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
They're linked by the ids for each table.
Could you explain why you are trying to do this the hard way? What is the goal of this exercise?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The idea is to be able to make extractions of the parameter at the moment T before the implementation of new project and make me an idea on the existing in an Excel file for example.
I have 120 projects in the base JIRA current and am going to develop the projects
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't see what the scheme data would help you with there. It's not going to help you set up projects and it's not a backup.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have more than 200 projects than I am spirit to standardize to make homogeneous the types of requests as much as possible some compared with the others and reduce the number of workflows and screens.
The interface in JIRA gives me only project by project all the parameters.
And I did not find other means to have the overview that to pass by an extraction of the database.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Pour finir j'ai trouvé ce que je cherche:
SELECT *
FROM PROJECT, NODEASSOCIATION, WORKFLOWSCHEME
WHERE PROJECT.ID = NODEASSOCIATION.SOURCE_NODE_ID
AND NODEASSOCIATION.SINK_NODE_ID = WORKFLOWSCHEME.ID
AND PROJECT.ID = '11630'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, that's understandable and correct, but it tells you nothing more than the UI does.
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.