Major
Detail
Major
Detail
#26382
                                                
                                                Error messages "Duplicate tag name..." when starting an application in the IDE from a TL-Studio
                                                
                                            #26405
                                                
                                                TTypeRewriter logs warning "Unable to resolve items by external reference" also unnecessarily
                                                
                                            #26431
                                                
                                                Changed superclass relationship leads to changed attribute list in the form editor only after a restart
                                                
                                            #26484
                                                
                                                In-app template for grid and tables: Function "Verifier for use as list item" does not get component model
                                                
                                            #26536
                                                
                                                When rendering HTML from TLScript expressions, configured renderers are not taken into account
                                                
                                            #26797
                                                
                                                Transaction with user input: invisible properties of the form model cannot be assigned values (initialized)
                                                
                                            #26885
                                                
                                                Constraints on declarative forms with arguments from a container reference lead to errors for new elements
                                                
                                            #26921
                                                
                                                ClassCastException when evaluating security rules that refer to (non-structuredElement) singletons of a module.
                                                
                                            #26922
                                                
                                                With generated subject classes, a default provider of an attribute in a non-structure class does not get a create context
                                                
                                            #26988
                                                
                                                In-app documentation generator does not extract documentation for overwritten config properties
                                                
                                            #27027
                                                
                                                Declarative forms: SelectField disappears after upload if option list depends on mandatory property
                                                
                                            #27042
                                                
                                                MaintenanceJspBase should write to the log first, then to the client, instead of the other way around.
                                                
                                            
                        Enhancement
                         
                    
                    For each database table a tl:TLClass, a table interface is created and all !TLClass that store into this table get this table set as generalization.
This should not be anymore.
Code migration
- Model references to tl.tables must be replaced with references to "real" model elements.
 - Replace model references: 
    
- tl.tables:ExternalReferenceTableInterface => Ticket:ExternalReference
 - tl.legacy.tabletypes:ExternalReferenceTable => Ticket:ExternalReference
 - tl.tables:ActivityTableInterface => RiskItems:Activity
 - tl.tables:ApproachingCurveTableInterface => ApproachingCurveStructure:ApproachingCurveType
 - tl.tables:AssignedGoalTableInterface => AssignedGoals:AssignedGoal
 - tl.tables:CommitteeTableInterface => CommitteeStruct:Committee
 - tl.tables:CostTypeTableInterface => costStructure:CostAreaChild
 - tl.tables:CostUnitTableInterface => costStructure:CostUnit.internal
 - tl.tables:DecisionMemoTableInterface => Decisions:DecisionMemo
 - tl.tables:ExportTemplatePlaceholderTableInterface => posElement:ExportTemplatePlaceholder
 - tl.tables:ExportTemplateTableInterface => posElement:ExportTemplate
 - tl.tables:FinalReportTableInterface => FinalReports:FinalReport
 - tl.tables:GovernedTaskTableInterface => GovernedObjects:GovernedTask
 - tl.tables:KPGroupTableInterface => KPI:KPI.Group
 - tl.tables:MeetingTableInterface => Meetings:Meetings.all
 - tl.tables:MilestoneTableInterface => Milestones:Milestones.all
 - tl.tables:OrgUnitTableInterface => orgStructure:OrgUnit.base
 - tl.tables:ProgramTableInterface => Programs:Program
 - tl.tables:ProjectResultTableInterface => FinalReports:ProjectResult
 - tl.tables:ProjectTableInterface => projElement:Project
 - tl.tables:ScenarioTableInterface => ScenarioStruct:Scenario.all
 - tl.tables:StatusReportDetailTableInterface => StatusReports:StatusReportDetail
 - tl.tables:StatusReportTableInterface => StatusReports:StatusReport
 - tl.tables:SubprojectTableInterface => projElement:Subproject
 - tl.tables:TagTableInterface => Tag:Tag
 - tl.tables:TargetProductTableInterface => Programs:TargetProduct
 - tl.tables:TemplateActivityTableInterface => projectTemplate:Activity
 - tl.tables:TemplateMilestoneTableInterface => projectTemplate:projectTemplate.Milestone
 - tl.tables:WorkpackageTableInterface => projectElement:Workpackage
 - tl.tables:ObjectTableInterface => tl.model:TLObject or better by something more specific
 
 - References to other classes in "tl.tables" must be replaced by reasonable alternatives. The conservative migration would be to look which TLClasses write to the corresponding table (and derivatives) and choose the common overtype.
 - If model files were overwritten from the base, changes must be made there.
 
Data migration
If above code changes were made in own model files, a migration script must be created, which makes these changes in the database. Here one can orient oneself e.g. at the script /com.top_logic.project.pos/webapp/WEB-INF/kbase/migration/tl-pos/Ticket_26398_remove_table_interfaces.migration.xml.
Test
Refactoring No test.