Hi @koby,
Could you please share a screenshot about your flow's configuration? Is it a Microsoft Flow?
Further, do you want to get the OptionSetField_[Label] property within your flow?
I have made a test, and the issue is confirmed on my side. The Option Set Filed_[Label] property could not be selected directly within the Dynamic content panel, the screenshot as below:
Note: The Approval_Status column is a Option Set type column within my CDS Entity (On my side, it is TaskLists). We could only select Option Set Field_[Value] property (dynamic content) within the Dynamic content panel.
If you want to get the Option Set Filed_[Label] property within your flow, please take a try with the following workaround:
Within Map field of "Select" action, enter two entries. The Key of first entry set to Approval Status Label, corresponding Value set to following formula:
item()?['_crd1f_approve_status_label']
On your side, you should type:
item()?['_crd1f_YourOptionSetField_label']
The Key of second entry set to Approval Status Value, corresponding Value set to Approval_Status Value dynamic content.
The flow works successfully as below:
On your side, in order to get corresponding [Label] property related to your Option Set field, you should add a "List records" action within your flow and run your flow, then expand the "List records" action run history, the [Label] property (marked as yellow) would show up as below:
More details about using expression in flow actions, please check the following article:
https://flow.microsoft.com/en-us/blog/use-expressions-in-actions/
Best regards,
Kris