Skip to main content
Microsoft Idea
Liquid error: Exception has been thrown by the target of an invocation.

Vote (0) Share
's profile image

on

Comments (Liquid error: Exception has been thrown by the target of an invocation.)
's profile image Profile Picture

Ephraim Cuya on 17 Jun 2024 18:57:54

RE:

It would be great to have this feature. Some institutions, e.g., government, are still using shared network drives.

's profile image Profile Picture

Nikola Milutinović on 17 Jun 2024 15:00:45

RE:

Hello Dirk,Thank you for response. i had case with same thing on sales side. However i solved it with workaround setup.

's profile image Profile Picture

Christopher Brunner on 17 Jun 2024 14:58:52

RE:

Please make an update to the current state! The Relativ Date Slicer is not helpfull at all. Everytime a new month has started, it needs to change the current month to the actual month - not the workaround with "current month" as the name.Thank you.

's profile image Profile Picture

on 17 Jun 2024 14:26:29

RE:

Why is it still in "need votes" status ?? This is such a basic and important functionality, and so many people already voted....

's profile image Profile Picture

Koen Verbeeck on 17 Jun 2024 14:18:58

RE:

There's a REST API that you can use to pause or resume a capacity.You can put this in an ADF pipeline, a Logic App, a Github action, an Azure Function, you name it.Anything that can be scheduled and that can call a REST API (and authenticate against Azure) can be used to stop/resume a Fabric capacity.A solution with ADF is described here:https://www.mssqltips.com/sqlservertip/7774/save-money-microsoft-fabric-pause-start-capacity/

's profile image Profile Picture

Julian Gimbel on 17 Jun 2024 14:16:29

RE:

As pasting code is not really possible here, I pasted the example here:https://pastebin.com/PAsinbC1

's profile image Profile Picture

Jérôme Poudou on 17 Jun 2024 14:07:42

RE:

I agree.we must have a real time and a per activity (in the monitoring hub) the CU consumed.and also the estimated burn down

's profile image Profile Picture

Mickel Schmitt on 17 Jun 2024 14:06:24

RE:

Screen cannot be enlarged. With long file names you still see nothing now.Very disappointing.

's profile image Profile Picture

Mihai Scrobotovici on 17 Jun 2024 14:00:42

RE:

One way to set this up is by tracking which links are being used in dashboards, scorecards, etc. and preventing said links from ever expiring, as long as they are set in said scorecards, dashboards, etc.

's profile image Profile Picture

Julian Gimbel on 17 Jun 2024 13:41:18

RE:

You can use the following code to do so:import requestsimport jsonfrom notebookutils import mssparkutilsworkspace_id = spark.conf.get("trident.workspace.id")lakehouse_item_id = mssparkutils.lakehouse.list()[0]["id"]payload = {  "name": "customers",  "path": "Tables",  "target": {    "oneLake": {      "itemId": lakehouse_item_id,      "path": "Files/cmk-container/silver/customers",      "workspaceId": workspace_id    }  }}token = mssparkutils.credentials.getToken('pbi')headers = {    'Authorization': f'Bearer {token}',    'Content-type': 'application/json'}url = f"https://api.fabric.microsoft.com/v1/workspaces/{workspace_id}/items/{lakehouse_item_id}/shortcuts"print(url)print(json.dumps(payload))response = requests.post(url, data=json.dumps(payload), headers=headers)