Skip to main content
Solved

Organizational Views after upgrade v15.3 HF4


Forum|alt.badge.img+9

First test I do after upgrade to 15.3.0.4 is opening Customer Support Order module. I have lost all my personal views and favorites but I lost also the Organizational Views. Can I recover the Organizational Views ? Will we lose all setting on every upgrade ?

Best answer by Phil Seifert

Hi Piet,

There was a fix applied via HF4 to allow views created in different browsers with differing culture codes to be visible in all browsers.  This was noted as a problem in the following topic:

Alliance v15 views are browser culture dependent. | IFS Community

Starting with v15.3 HF4, this is no longer an issue however the pre-existing views were registered with their respective culture_code at that time and would not be picked up by the browser as it did not match the current expected value.

To remedy the previous data, you can use the following scripts to review and then update the data if you have access to the database profile. To fix personal views, adjust the view_category to ‘Personal’

 

SELECT module_name, 
       created_by, 
       last_update, 
       culture_code,
       view_category,
       view_title
FROM cp_application_views
WHERE  module_name = 'service_request_maint'
ORDER BY last_update DESC;

 

UPDATE cp_application_views
  SET 
      culture_code = 'AST'
WHERE view_title = '<view_title>'  -- optional to restrict correction to specific views.
and module_name = 'service_request_maint'; -- optional to restrict to specific modules

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

2 replies

Phil Seifert
Ultimate Hero (Employee)
Forum|alt.badge.img+23
  • Ultimate Hero (Employee)
  • 1293 replies
  • Answer
  • March 21, 2022

Hi Piet,

There was a fix applied via HF4 to allow views created in different browsers with differing culture codes to be visible in all browsers.  This was noted as a problem in the following topic:

Alliance v15 views are browser culture dependent. | IFS Community

Starting with v15.3 HF4, this is no longer an issue however the pre-existing views were registered with their respective culture_code at that time and would not be picked up by the browser as it did not match the current expected value.

To remedy the previous data, you can use the following scripts to review and then update the data if you have access to the database profile. To fix personal views, adjust the view_category to ‘Personal’

 

SELECT module_name, 
       created_by, 
       last_update, 
       culture_code,
       view_category,
       view_title
FROM cp_application_views
WHERE  module_name = 'service_request_maint'
ORDER BY last_update DESC;

 

UPDATE cp_application_views
  SET 
      culture_code = 'AST'
WHERE view_title = '<view_title>'  -- optional to restrict correction to specific views.
and module_name = 'service_request_maint'; -- optional to restrict to specific modules


Forum|alt.badge.img+10
  • Hero (Employee)
  • 37 replies
  • March 21, 2022

Organizational views are built and saved in the database. You can keep a copy of them using Application Setup Guide module import/export process. Before each release take a backup of these views and import them when the shipment of that release. By doing this you will not lose any views. 


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