• Issue: Receiving the error Object is set to custom but there are no custom configurations in the window. 
  • Resolution:
    • If the data object does not have a custom CSS / column configuration you can set WEB_WINDOWS_OBJECTS.IS_CUSTOM = 0
    • If the data object does have a custom CSS / column configuration you need to ensure all columns that are not hidden have custom configuration set up. Default values you can use are:
      • custom_column_x = 0
      • custom_column_y = 0
      • custom_column_w = 0
      • custom_column_h = 0
      • custom_column_css = background-color:#CCCCCC;
      • custom_header_x = 0
      • custom_header_y = 0
      • custom_header_w = 0
      • custom_header_h = 0
      • custom_header_css = display:none;background-color:#000000;
    • Example: 

      UPDATE WEB_WINDOWS_COLUMN
      SET custom_column_x=0,custom_column_y=0,custom_column_w=0,custom_column_h=0,custom_column_css='background-color:#CCCCCC;',
      custom_header_x=0,custom_header_y=0,custom_header_w=0,custom_header_h=0,custom_header_css='display:none;background-color:#000000;'
      WHERE WINDOW_ID IN ('pms_condition_survey_data_eval')
      AND OBJECT_ID='dw_1' ;

  • No labels