brycec Contributor

コメント

  • You can choose to have a filter card only affect certain cards (or one card) just like you can on a regular dashboard. As for filters, they work the same as a regular dashboard. Users can customize and save a view for just themselves.
  • You can achieve this with the Maximum Items option under Chart Properties > General. Everything outside the limit will be turned into an Other bar, which you can leave or then choose to hide two options down.
    Limit/Filter to Top X brycecによるコメント 04/17
  • Jae is correct, this can be achieved via the Product APIs. Authentication to Product APIs documentation: PUT https://<instance>.domo.com/api/content/v1/landings/target/<type>/entity/PAGE/id/<page_id>/<user_id> Where <type> is either DESKTOP or MOBILE.
  • I love this idea. You can actually view the error returned if you inspect the network request in the developer tools of your browser. Most of the time, they actually do have a lot more information about the error, not even just the response from the API. So, it should be easy to just display this to the user.
  • Somehow I missed this post when looking before I created my own. Linking it here, since I don't have the ability to close it. History Keyboard Shortcuts for Undo and Redo — Domo Community Forum
    CTRL + Z undo in Magic ETL brycecによるコメント 04/17
  • You can achieve this via Beast Mode. So, they probably won't spend time adding it. CONVERT_TZ(NOW(), 'UTC', 'America/New_York')
  • This is possible via the Product APIs if you are looking for a workaround. Authentication to the Product APIs documentation: POST https://<instance>.domo.com/api/content/v1/avatar/bulk Body: { "isOpen": false, "transactionId": "<random_guid>", "entityIds": [ "<user_id>" ], "entityType": "USER", "base64Image":…
  • Are you using the default Admin role? They recently changed how Accounts work and there are two new grants for managing Accounts, but they are not given to the default Admin role (silly, I know). I created a custom MajorDomo role that I have, where I add these additional grants. I would try giving yourself these grants and…
  • Great question! For the Action DOWNLOADED, I see three types of Objects: FILE, FILE_REVISION, and ACTIVITY_LOG_CSV. FILE and FILE_REVISION just mean somebody saw an image or file card. They don't actually click a download button, it just downloads them when they visit the page or card and records that event. Largely, I…
    DomoStats brycecによるコメント 04/17
  • I haven't used SAP S/4 HANA and, judging by the lack of responses within the long period since your initial post, I would say nobody else has either. I agree with you, what the project manager is saying doesn't sound correct. In my experience, project managers for systems migrations act like they know everything and will…
    SAP S/4 HANA brycecによるコメント 04/17
  • In my experience, the "pairing" doesn't really matter. It typically filters all DataSets regardless. I would try setting up a filter card, built on DataSet A, add it to the dashboard and see if that correctly filters.
  • I was able to share just fine. Can you open up the network console and see if there is a specific error code being returned from the API response? Right click, then click Inspect at the bottom of that context menu, then click Network at the top of that new window. Click the circle with a line through it on the top left to…
  • Are you using the JSON No Code Connector or the XML Advanced Connector? The post title implies the former, but the error message implies the later. Often, these connectors in Domo require you to explicitly add the Accept and Accept-Encoding headers to your request, when services like Postman take care of that for you. Try…
    JSON Connector brycecによるコメント 04/17
  • Two different schedules like this isn't supported at the moment. Basic vs advanced is two different methods, so when switching to advanced, it disables basic and vis versa. Alternatively, you could set up one schedule, say every Sunday, on the DataSet. Then, you could create a Workflow for the second trigger of last day of…
    Dataset update scheduling brycecによるコメント 04/17
  • The table card does support incomplete or NULL data, so you have to be filtering it in a way that is removing those rows until they are filled. I'm sure I exactly understand what is going on, but it sounds like you might be filtering the date and those rows don't have those dates yet, so they would be filtered out. If not,…
  • If you're goal is to keep them grouped by Email Address, but not show it, you can always hide that column in the General property options.
  • Do you have permissions to edit alerts? Should be as easy as navigating to the card, either on the card/DataSet or Alerts in the top nav bar, then clicking share on the bottom of the alert, then expanding the already shared with section, then clicking the x on the far right on their name. If you are talking automation, you…
  • Can you share the Beast Mode formula for BM View Distinct? I find that Beast Modes don't do well with CASE statements that have aggregations inside of them. They often need aggregations outside around the CASE statement or no aggregations at all. Most of the time there is a way to rework your Beast Mode to fit those…
  • For those finding this post and looking for a work around, see below. Beast Mode 1: (CASE `Currency` WHEN 'USD' THEN '$' WHEN 'GBP' THEN '£' WHEN 'SGD' THEN '$' WHEN 'EUR' THEN '€' WHEN 'INR' THEN '₹' WHEN 'AUD' THEN '$' WHEN 'CAD' THEN '$' -- Add more currencies as needed. -- This can also be a column in your DataSet if…
  • You can add a sort for the maximum of that column descending.
  • To add to this, it would be nice if transposed mega tables also could use alternating row colors. Right now, the option remains and can be selected. However, it causes the first column to be one color and the second column to be the other color. Its behavior should be updated to alternate on the new rows that used to be…
  • @Data_Devon, When you add the Beast Mode as a filter on the card, you need to select and apply its value as 'Yes'. Then, when the variable value is set to 'MTD', for example, the CASE statement then evaluates the second CASE statement on that line. When true, it will produce 'Yes', which matches the value you selected in…
    MTD and YTD TOGGLE brycecによるコメント 03/31
  • I would reach out to support about this and also email your CSM/AE. Let your CSM/AE know how it is affecting your instance and what that means for your business. This will help them push the support ticket through as priority. I wouldn't know if these features are gone since I've never used them myself. But a while ago,…
    Blend/Fusion Removed? brycecによるコメント 03/28
  • This would be incredibly helpful. Buzz is disabled in our instance, so this button just sends an email to the owners of that resource. We handle access requests in a ticketing system. Any way to modify this button to redirect to the ticketing system, send an email to a specific email address every time, or disable the…
    Request Access Button brycecによるコメント 03/28
  • Their API is a little weird. Looks like there is no way to just retrieve survey responses. You either get them at submission via the webhook or you can do an export. The problem with the export is that you must create it, wait for it to finish, then download it. In Domo, this would require you to setup a script somewhere…
  • That's odd. I haven't run across that endpoint ever. When you manually sync something in the AppDB viewer, it does a PUT request like I was saying. You could try to just switch to the PUT request for documents, seeing as that POST request isn't working anyway.
  • In order to add or modify documents in a collection, you'd need to use a PUT request. You might already be doing this, but all I see in your post is your domo.get request, which would need to be domo.put. Also, you might want to look into using the table section component on the Form Builder app or the Inline Editing app.
  • I've done this with a DataSet that was grouped by month, so that it could be changed to by quarter or year and still be getting only the most recent value of those time groupings and not duplicate. I imagine the same concept can be used by day too. I achieved that with the following formula: (CASE WHEN Month =…
  • Replied in your other post: Connect to Notion to Extract items form Database — Domo Community Forum
    Querying a Notion Database brycecによるコメント 03/25