1748
Views
4
Comments
Solved
 Fetch the particular record value in static Entity
Question

Hi,


How to fetch the values of the individual record in the static entity ,(where E1,E2,E3 are the records of the static entity) ?

For example, How to fetch the value 0.19(marked) using aggregate?



Thank you

2018-11-09 12-01-55
Thomas Druif
Solution

Hi,

You can also use the Get action of the static entity. Assumed that the displayed values (of your screenshot) are also columns of the static entity.

Example:

This is my static entity:

If i want to get the value of the column Label of one of my records. (In the example the record is called Ticket).

I can do it like this:


GetIntents(Entities.Intents.Ticket).Intents.Label


Regards,

Thomas Druif

2018-06-05 16-54-03
Maria da Graça Peixoto

Hi! 

A Static Entity can be used in an aggregate as any other entity. 

In the filter of the aggregate you can use the  Id as in the others entities, or the special Static Entity identifier in the form :

Entities.<name of the entity>. <identifier>

Hope this help

Graça

2018-11-09 12-01-55
Thomas Druif
Solution

Hi,

You can also use the Get action of the static entity. Assumed that the displayed values (of your screenshot) are also columns of the static entity.

Example:

This is my static entity:

If i want to get the value of the column Label of one of my records. (In the example the record is called Ticket).

I can do it like this:


GetIntents(Entities.Intents.Ticket).Intents.Label


Regards,

Thomas Druif

2019-04-18 15-23-21
Naina

Hi,

Its working as expected ,

Thanks Thomas Druif and  Maria da Graça Peixoto


Regards,

Nandini

UserImage.jpg
Shikha Basra

How can I use the same in case of reactive web app?

Can't access GetIntents in the expression

GetIntents(Entities.Intents.Ticket).Intents.Label
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.