Hello,
I am not aware of any issues and am unable to recreate the issue. You are going to need to check each server which is part of the plan to see if SolidCP Server has any errors.
You can also try run the following SQL query:
DECLARE @return_value int
EXEC @return_value = [dbo].[GetServiceItemTypes]
SELECT 'Return Value' = @return_value
GO
If you can screenshot the results to make sure that only SolidCP appears in TypeName.
Thanks,
Trevor
Hi
The stored procedure requires to input values
Msg 201, Level 16, State 4, Procedure GetServiceItem, Line 0 [Batch Start Line 3]
Procedure or function 'GetServiceItem' expects parameter '@ActorID', which was not supplied.
if we use null it return no results
DECLARE @return_value int
EXEC @return_value = [dbo].[GetServiceItem]
@ActorID = NULL,
@ItemID = NULL
SELECT 'Return Value' = @return_value
Thanks,
Hello,
Can you try ActorID = 1?
Thanks,
Trevor Robinson