This is my solution of the problem
Add these yellow lines into the store procedure dbo.Wiki_TopicAdd
BR
/Dalle
PROCEDURE [dbo].[Wiki_TopicAdd]int, @content ntext, @cache ntext, @name nvarchar(50), @updateDate datetime, @updatedBy nvarchar(101), @updatedByUserID int, @AllowDiscussions bit, @AllowRatings bit, @RatingOneCount int, @RatingTwoCount int, @RatingThreeCount int, @RatingFourCount int, @RatingFiveCount int, @RatingSixCount int, @RatingSevenCount int, @RatingEightCount int, @RatingNineCount int, @RatingTenCount int
AS
SET NOCOUNT ON
SET @name = REPLACE(@name, '', 'å')
SET @name = REPLACE(@name, '', 'ä')
SET @name = REPLACE(@name, '', 'ö')
SET @name = REPLACE(@name, '', 'Å')
SET @name = REPLACE(@name, '', 'Ä')
SET @name = REPLACE(@name, '', 'Ö')INSERT INTO dbo.Wiki_Topic(ModuleID, Content, Cache, [Name], [UpdateDate], UpdatedBy, updatedByUserID, AllowDiscussions,AllowRatings, RatingOneCount, RatingTwoCount, RatingThreeCount, RatingFourCount, RatingFiveCount, RatingSixCount, RatingSevenCount, RatingEightCount, RatingNineCount, RatingTenCount)
VALUES(@ModuleID, @Content, @cache, @Name, @UpdateDate, @UpdatedBy, @updatedByUserID, @AllowDiscussions, @AllowRatings, @RatingOneCount, @RatingTwoCount, @RatingThreeCount, @RatingFourCount, @RatingFiveCount, @RatingSixCount, @RatingSevenCount, @RatingEightCount, @RatingNineCount, @RatingTenCount)
SELECT SCOPE_IDENTITY()
-- Alter Procedures
ALTER
@moduleID