Extract excel data, get manager and update row with user details which will get from GET MANAGER
Concepts and examples
- Key column: Column in a table that will be use to search a value (key value).
- Key value: Value in the key column that will be used to identify a specific row.
The following table is an example. To perform a row operation in the second row of the table, the
key column
should beColumn 1
andkey value
should be 200.Column 1 Column 2 Column 3 100 A-2 A-3 200 B-2 B-3 300 C-2 C-3
Tech blogger and Problem solver, I share my experiences, insights, and solutions to technical challenges through my articles. With a strong background in Microsoft technologies like Power Platform, SharePoint, Azure, and RPA, I write about process automation, migration planning, troubleshooting, and best practices. My goal is to simplify complex concepts, provide practical solutions, and help others navigate technical roadblocks efficiently. Through my blogs, I aim to contribute to the tech comm
Thursday, July 25, 2024
Power Automate + Excel data
Friday, April 19, 2024
Update or edit status filed in JIRA issue
the status field is a special case and can't be updated directly, which is the second problem here. Changing a status in Jira is called a transition. You need to trigger the transition to move the issue into the status you want.
Start by identifying the available transitions by calling the get transitions API:
GET https://example.net/rest/api/latest/issue/
FWZH
-2170/
transitions
This tells you which transitions are currently available, something like this:
{
"expand": "transitions",
"transitions": [
{
"id": "21",
"name": "Fixed",
"to": {
"self": "https://example.net/rest/api/2/status/10001",
"description": "",
"iconUrl": "https://example.net/images/icons/status_generic.gif",
"name": "Fixed",
"id": "10001",
"statusCategory": {
"self": "https://example.net/rest/api/2/statuscategory/3",
"id": 3,
"key": "done",
"colorName": "green",
"name": "Done"
}
}
}
]
}
Take the id
of the transition you want, in this case 21, then post it to the issue transition API:
POST https://example.net/rest/api/latest/issue/{IssueKey}/transitions
Use a request body like this:
{
"transition": {
"id": 21
}
}
You should get a 204 HTTP response from Jira which indicates the transition was successful.
Extracting x-ms-exchange-parent-message-id from a Text File Using Python
In the world of email processing and automation, extracting specific headers from email metadata can be crucial for various tasks. One such ...
-
• SharePoint REST service architecture-2013 SharePoint 2013 introduces a Representational State Transfer (REST) service that is compar...
-
DeepSeek vs OpenAI Two companies have recently drawn a lot of interest in the quickly changing field of artificial intelligence (AI): Open...
-
Problem Statement I am working on automating the process of sending leave resumption notices to staff to confirm their return. Currently, I ...