Skip to content
DataMiner DoJo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Updates & Insights
  • Questions
  • Learning
    • E-learning Courses
    • Empower Replay: Limited Edition
    • Tutorials
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • Agile
      • Agile Webspace
      • Everything Agile
        • The Agile Manifesto
        • Best Practices
        • Retro Recipes
      • Methodologies
        • The Scrum Framework
        • Kanban
        • Extreme Programming
      • Roles
        • The Product Owner
        • The Agile Coach
        • The Quality & UX Coach (QX)
    • DataMiner DevOps Professional Program
      • About the DevOps Program
      • DataMiner DevOps Support
  • Downloads
  • More
    • DataMiner Releases & Updates
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

How to display the resources and its columns using GQI – low code app

Solved554 views30th September 2024GQI custom operator GQI Data Source low code app
1
Baranisudha Murugesan784 12th July 2024 5 Comments

Im creating a low-code app to display all my resources under my view->services from dataminer. I have retrieved serviceParam data from DMS, but facing difficulty with displaying the data in rows. I have referred this documentation - Modifying links to DataMiner objects | DataMiner Docs
but it doesn't fit my requirements.

Capture.PNG

Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 30th September 2024
Steve Purcell [SLC] [DevOps Advocate] commented 12th July 2024

Hi Baranisurdha, Not sure if exactly what you are looking for, there is an example on our Ziine Dashboard which may fit your needs if you would like to take a look and review the GQI queries used. https://ziine.skyline.be/dashboard/#/

Then under Staging Area|SPU|OTT Summary

Ronald Gerard [SLC] [DevOps Advocate] commented 16th July 2024

Hi Baranisudha, in case you’re still stuck, could you elaborate a bit more what you are having trouble with exactly?
I’m assuming you are using an Ad Hoc data source of some sort to retrieve service parameters?
There are also similar data sources on GitHub that may be an inspiration:
https://github.com/topics/dataminer-gqi-data-source

Baranisudha Murugesan commented 16th July 2024

I have element details inside which i have parameter id of my resource. I want to retrieve the resource values using the parameter id in GQI. below is the closest i could get by achieving it. but im getting error message “Access not allowed”(pasting the whole error message here). help me with what i’m doing wrong here.

var requestMsg = new GetParameterMessage() { ParameterId = parameter.ParameterID };
var responseMsg = _dms.SendMessages(requestMsg);
var paramInfo = responseMsg.OfType().ToList();

Sending SLHelper.Callback message requests:SLHelperTypes.Messages.InternalMessage over NATS failed with error: (Code: 0x80070005) Skyline.DataMiner.Net.Exceptions.DataMinerSecurityException: Access not allowed.
at Skyline.DataMiner.Net.Helper.Helper.d__12.MoveNext()

Marieke Goethals [SLC] [DevOps Catalyst] commented 28th August 2024

Hi Baranisudha,
I see that this question has been inactive for some time. Do you still need help with this? If not, could you select the answer (using the ✓ icon) to indicate that the question is resolved?

Marieke Goethals [SLC] [DevOps Catalyst] commented 30th September 2024

As this question has now been inactive for a long time, I will close it. If you still want more information about this, could you post a new question?

1 Answer

  • Active
  • Voted
  • Newest
  • Oldest
0
Ronald Gerard [SLC] [DevOps Advocate]1.74K Posted 17th July 2024 0 Comments

Hi Baranisudha,

The "Access not allowed" exception you get when sending a GetParameterMessage is because your request did not specify from which element to retrieve the parameter.

You can specify the element by also filling in the DataMiner ID and Element ID in the parameter request message (there exists a dedicated constructor for this).
You can find these IDs on the ServiceInfoParams objects in service info.

For a basic scenario, the code could look something like this:

var element = serviceInfo.ServiceParams[0]; // First element
int dmaID = includedElement .DataMinerID;
int elementID = includedElement .ElementID;
var parameter = includedElement.ParameterFilters[0]; // First parameter
int parameterID = parameter.ParameterID;
var request = new GetParameterMessage(dmaID, elementID, parameterID);
var response = _dms.SendMessage(request) as GetParameterResponseMessage;

Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 30th September 2024
You are viewing 1 out of 1 answers, click here to view all answers.
Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs

[ Placeholder content for popup link ] WordPress Download Manager - Best Download Management Plugin