We recommend reviewing what is submitted before posting, in case your idea has already been submitted by another community member. If it has been submitted, vote for that existing feature request (by clicking the up arrow) to increase its opportunity of being added to Cireson solutions.
For more information around feature requests in the Cireson Community click here.
What influences the result of API GetTopRequestOfferings?
We have about 60 offerings in our catalog, however only 2 are returned regardless of what I set returnAmount to.
How are the offerings in GetTopRequestOfferings calculated?
Is there any way I can have it return a global sett of most used offerings or even this specific users most used offerings?
Best Answers
-
Brian_Wiest Customer Super IT Monkey ✭✭✭✭✭How are the offerings in GetTopRequestOfferings calculated? - I do not think they are calculated.
I manage them from SQL
In the ServiceManagmenet DBO
select * from RequestOffering
You will see a Column for Popularity
Lower the number is the higher it is on the list.
I use the Update command to set my popularity so they show on the Top Requests.
UPDATE [dbo].[RequestOffering] SET [Popularity] = 10 WHERE [Title] = 'RequestOffering1'
HTH6 -
Adam_Dzyacky Product Owner Contributor Monkey ✭✭✭✭✭Second @Brian_Wiest - these are not calculated. They are and always have been manually managed since the first versions of the portal.
5
Answers
I manage them from SQL
In the ServiceManagmenet DBO
select * from RequestOffering
You will see a Column for Popularity
Lower the number is the higher it is on the list.
I use the Update command to set my popularity so they show on the Top Requests.
UPDATE [dbo].[RequestOffering] SET [Popularity] = 10 WHERE [Title] = 'RequestOffering1'
HTH