19-09-2014, 03:14 PM
Hi all,
we do not have an approval by our QA team until today. There are some known issues and bugs for the current version - but we provide Release Candiate 2 (RC2).
This version will be supported by this forum - upgrade to final RTM version will be supported if possible (if data is getting corrupt during RC we can't guarantee to fix it).
The following ReleaseNotes describes the known (main) issues - we try to fix all the issues as soon as possible.
If you want to migrate your data from 2012 version you can do inside a new environment in 2014 - so you could not connect to an old environment (as in the past) - you need to create a new environment and select "Environment=>Upgrade from 2012".
ASG-RD 2014 RC2
ASG-RD 2014 RC2 (incl. SQL Express)
For any feedback please use this sub forum.
For users with running RC1 version
We updated 1 stored proc - please execute the following SQL-Statement on your database (for version 2014) or install a new db - else you will get some warnings during application startup
we do not have an approval by our QA team until today. There are some known issues and bugs for the current version - but we provide Release Candiate 2 (RC2).
This version will be supported by this forum - upgrade to final RTM version will be supported if possible (if data is getting corrupt during RC we can't guarantee to fix it).
The following ReleaseNotes describes the known (main) issues - we try to fix all the issues as soon as possible.
If you want to migrate your data from 2012 version you can do inside a new environment in 2014 - so you could not connect to an old environment (as in the past) - you need to create a new environment and select "Environment=>Upgrade from 2012".
ASG-RD 2014 RC2
ASG-RD 2014 RC2 (incl. SQL Express)
For any feedback please use this sub forum.
For users with running RC1 version
We updated 1 stored proc - please execute the following SQL-Statement on your database (for version 2014) or install a new db - else you will get some warnings during application startup
Code:
ALTER PROCEDURE [dbo].[PropertiesGet]
@ItemId uniqueidentifier,
@UserId uniqueidentifier,
@RolePropertyId uniqueidentifier
AS
BEGIN
if ((@ItemId = '00000000-0000-0000-0000-000000000000') and (@RolePropertyId = '00000000-0000-0000-0000-000000000000'))
SELECT * FROM ItemProperties INNER JOIN Items ON ItemProperties.ItemId = Items.ItemId
WHERE (Items.UserId = @UserId AND ItemProperties.UserId = '00000000-0000-0000-0000-000000000000') OR
((Items.UserId = '00000000-0000-0000-0000-000000000000') AND (ItemProperties.UserId = @UserId OR ItemProperties.UserId = '00000000-0000-0000-0000-000000000000'))
ORDER BY ItemProperties.ItemId, ItemProperties.RolePropertyId, ItemProperties.UserId
else if (@RolePropertyId = '00000000-0000-0000-0000-000000000000')
SELECT * FROM ItemProperties
WHERE ItemProperties.ItemId = @ItemId and
(ItemProperties.UserId = @UserId OR ItemProperties.UserId = '00000000-0000-0000-0000-000000000000')
ORDER BY ItemProperties.ItemId, ItemProperties.RolePropertyId, ItemProperties.UserId
else
SELECT * FROM ItemProperties
WHERE ItemProperties.ItemId = @ItemId and ItemProperties.RolePropertyId = @RolePropertyId and
(ItemProperties.UserId = @UserId OR ItemProperties.UserId = '00000000-0000-0000-0000-000000000000')
ORDER BY ItemProperties.ItemId, ItemProperties.RolePropertyId, ItemProperties.UserId
END
Regards/Gruss
Oliver
Oliver