question

DBTech avatar image
0 Votes"
DBTech asked MayankBargali-MSFT edited

Azure REST API Powershell ADO Rest API System.AssignedTo does not show a value

Question: Is there a way to get System.AssignedTo to display a value or any field containing an user? Unable to get any identity show.


Results:
197106-image.png



windows-server-powershell
image.png (8.1 KiB)
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

LimitlessTechnology-2700 avatar image
0 Votes"
LimitlessTechnology-2700 answered

Hi DBTech,

To answer your query, In Management Studio, open the Object Explorer.

Go to your database
There's a subnode Views
Find your view
Choose Script view as > Create To > New query window

In Management Studio, open the Object Explorer.

Go to your database
There's a subnode Views
Find your view
Choose Script view as > Create To > New query window

If you want to retrieve the SQL statement that defines the view from T-SQL code, use this:

SELECT
m.definition
FROM sys.views v
INNER JOIN sys.sql_modules m ON m.object_id = v.object_id
WHERE name = 'Example_1'



If the answer is helpful kindly click "Accept Answer" and upvote it. Thanks.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.