Please Share your Product Ideas with us!

All ideas are welcome. Just because the Idea doesn't make it into the product immediately does not make it a bad idea.

CTS should include Page-Specific Catalogs and Catalog Language Phrases

The Catalog and CatalogLanguagePhrase shippable items exclude page-specific catalogs. As a result, a developer would have to ship an entire page to move a single page-level column heading translation. We should be able to move only the new or changed item.

One simple solution is to add a union to the ctsCatalogList view to include the page-specific catalogs. Adding the Page Specific Catalogs to that list view fixes both the Catalog and the Catalog Language Phrase shippable items.

USE [Cransoft]

GO

ALTER VIEW [dbo].[ctsCatalogList]

AS

SELECT CatalogID,

Name

FROM dbo.Catalog

WHERE ( PageID IS NULL )

AND ( ReadOnly = 0 )

Union

SELECT Catalog.CatalogID, Page.Description AS Name

FROM Catalog INNER JOIN

Page ON Catalog.PageID = Page.PageID

WHERE (Catalog.ReadOnly = 0)

  • Chris Bermingham
  • Sep 1 2020
  • Unlikely to Implement
  • Attach files
  • Admin
    Andy Lund commented
    February 16, 2021 13:30

    In 7.4 release of the Stewardship Tier we introduced Promote. This application allows easy tailoring to transport items such as this.