Wednesday, December 7, 2022

Unable to Save "Contains With HTML Markup" in OBIEE/OAS answers

  By default, the "Contains HTML Markup" functionality is disabled in OBIEE/OAS. To enable this feature you need to add "EnableSavingContentWithHTML" in the configuration file. 

Follow the below steps to enable save "Contains HTML Markup" feature.

Step1: Take backup of instanceconfig.xml file, the file is available in the below directory.

           [DOMAIN_HOME]\config\fmwconfig\biconfig\OBIPS
            In my case, below is the path of instanceconfig.xml file.
            /u01/Oracle/Middleware/Oracle_Home/user_projects/domains/bi/config/fmwconfig/biconfig/OBIPS

Step2:  Add "EnableSavingContentWithHTML" tag within the <Security> tags in instanceconfig.xml file

...

<Security>

...

<EnableSavingContentWithHTML>true</EnableSavingContentWithHTML>

...

</Security>

...


Step3: Once you save the above changes, restart the services.

            Follow the below steps to restart the services.
            - Navigate [DOMAIN_HOME]\bitools/bin. In my case the  path is /u01/Oracle/Middleware/Oracle_Home/user_projects/domains/bibitools/bin.
            - Execute the commands
                 ./start.sh 
                 ./stop.sh

            



Unable to Save "Contains With HTML Markup" in OBIEE/OAS answers

  By default,  the "Contains HTML Markup" functionality is disabled  in OBIEE/OAS. To enable this feature you need to add " ...