Hello everybody,
I hope you can help me. (a poor french IT -> sorry for my english ^^)
I create a sharepoint list with a metadata column.
My taxonomy list is hierarchical list like this :
Country -> county -> town
In my column setting, in the Display format section, I specify to display the term and its full path in the hierarchy of the term set.
With a flow, I want to get in a variable the full hierarchical path to save the county of the town in an other column of my list.
I found a solution 2 weeks ago but today It didn't work anymore
I create a flow "when an item is created or modified". In the log, I see the path with the label property :
{ "@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedTaxonomy", "TermGuid": "2d87217e-83ab-4b7b-8660-051687c2bf7c", "WssId": 60, "Label": "France:2 - Faible:62 - PAS-DE-CALAIS:HABARCQ", "Path": null, "Value": "France:2 - Faible:62 - PAS-DE-CALAIS:HABARCQ|2d87217e-83ab-4b7b-8660-051687c2bf7c" }
And now, this is what I see :
{ "@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedTaxonomy", "TermGuid": "2d87217e-83ab-4b7b-8660-051687c2bf7c", "WssId": 60, "Label": "HABARQ", "Path": null, "Value": "SAINT-DIZIER|2d87217e-83ab-4b7b-8660-051687c2bf7c" }
I try to delete the column and create it again , I have the same result.
Somebody have an idea to help me?