Skip to main content

Lookup or Item list display columns are NULL


Christian Hauggaard
Community Manager
Forum|alt.badge.img+5

Older versions of TimeXtender Master Data Management(older than 1.5) could, in some cases, set the display columns as null. To make sure all display columns are updated execute this script:

declare @table_id int

declare table_cursor CURSOR FOR

select distinct TableId from dbo.[Table]

OPEN table_cursor

FETCH NEXT FROM table_cursor  

INTO @table_id

WHILE @@FETCH_STATUS = 0  

BEGIN  

    print 'Processing table nr ' + cast(@table_id as varchar(5))

EXEC [dbo].[UpdateLookupDisplayColumns]

@LookupTableIdIn = @table_id

EXEC [dbo].[UpdateItemListDisplayColumns]

@TableIdIn = @table_id

    FETCH NEXT FROM table_cursor  

    INTO @table_id  

END  

CLOSE table_cursor;  

DEALLOCATE table_cursor;

 

Did this topic help you find an answer to your question?

0 replies

Be the first to reply!

Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings