popup displaying wrong view / fieldsIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms When hovering over or clicking the reference icon, the popup is displaying the incorrect fields that should be there. Cause The most likely cause for this to be happening is that there is no sys_popup view for that table. You can tell this if you go to the sys_ui_view table and open up the sys_popup record.Under the "Form Sections" section, you can then filter for the table that is in question. If the table doesn't exist in the form sections of the sys_popup record, then the popup will displaya section from the primary view of the list / form you are seeing the discrepancy.It will choose which section view [0,1,2,...X,Y,Z] alphanumerically from the sections sys_id. An example of this would be if you are looking at the RM_story list in the "scrum" view, and there are no sys_popup views for this RM_story.It will choose one of the sections from the Scrum view.The scrum view has 3 sections. Primary, Notes, and Related RecordsExample (these are fake record sys_id's)Section 0 (default):[instance]/sys_ui_section.do?sys_id=45bcc80ea8fd3000291849b95db970ad Section 1 (Notes):[instance]/sys_ui_section.do?sys_id=1739cb50db57dbc4fe3a6165ca9619a0Section 2 (Related Records): [instance]/sys_ui_section.do?sys_id=4e69c790db57dbc4fe3a6165ca96195a If you look at the sys_id's here, notes starts with a 1, so the system will use 'Notes' as the view for the popup. Resolution The way to fix this is to create a sys_popup view for that table. Open a record within the table affected2. Right click the header, choose configure -> form layout 3. Under section create new. name is "sys_popup" 4. It will create a single section and give the default items from the default view. 5. Customize this view all you would like 6. Verify that the sys_popup view has a form section for rm_story 7. Verify that the popup is using that view by hovering over the popup and seeing if the changes you made in the configure -> form layout are in the popup. There is one caveat here. If you create this in a sub prod and either put in an update set or import xml, it may be necessary to perform a cache.do on the instance it was transferred to. If after this has been done and there is still an issue, please open a ticket in HI referencing this article so the engineer assigned has a good place to start.