Hi All,
Can we use CSS in FAW or any idea how to implement it here.
Regards,
Ravi
Hello Ravi,
Yes, you can use CSS (Cascading Style Sheets) for customization in FAW (presumably Frequently Asked Questions or a similar context). To implement CSS, follow these steps:
1. Inline CSS: You can apply CSS directly within the HTML tags. For example:
```html
<p style="color: blue; font-size: 16px;">This is a customized paragraph.</p>
```
2. Internal CSS: You can also embed CSS within the HTML document using the `<style>` tag. Place this tag within the document's `<head>` section.
<head>
<style>
p {
color: blue;
font-size: 16px;
}
</style>
</head>
<body>
<p>This is a customized paragraph.</p>
</body>
3. External CSS: Create a separate CSS file (e.g., style.css) and link it to your HTML document.
<link rel="stylesheet" type="text/css" href="style.css">
In style.css:
```css
Ensure that you have the necessary permissions to apply custom styles, and consider any platform-specific restrictions. Experiment with these methods to achieve the desired customization in your FAW.
Best regards,
[Iqra Technology]
The above comments are true for OTBI but not for FAW/FDI. There is a template feature being considered that would be able to apply a predefined color palette across a number of reporting elements but it would not be css directly.
What is the css intended to be used for?
Revisiting this topic, I can share that Themes and Layouts are now present in OAC and FAW. Themes provide a predictable and safe way to share cosmetic attributes across multiple workbooks. I'll also note that outside of themes, logos can be added to workbook headers also.
Layouts also provide a means to set up shared, layouts for workbook structure that can be used as a starting point for content and to provide consistency for common patterns. Any number of these can be created by users and shared.
Unlike OTBI we do not intend to add random inserting of html and other code due to concerns around page code stability, XSS exploits, SQL-injection hacks, etc.
Dave
FDI AR Aging table is not updated for backdated transaction. I believe this should be a fundamental process for CDC. Oracle is asking to do a full load of AR Aging table everytime there is an issue which I believe is not a good solution.…
Add new attribute/field to capture right Accounting date in FDI AP Invoices subject area which will allow business to report line level data
OAC saved states are lost when the workbook is moved / migrated to another environment. This feature is intended mostly for personal user preferences but it is also useful for providing preset selecitons for users. If we want to make these presets available for all users , the only way is opening the workbook in the new…
I have a use case for FDI connectors whereby I need to use the EPM Integrator to include planning data in my environment but I have 2 separate EPM environments, one for ERP and one for HCM. Once you create a connection using a connection type, the option to create a new one disappears. This creates an issue where customers…
In the out of the box workbooks, many have default filters for items such as Ledger and Business Unit. Most of these default to the first value alphabetically. This can be incredibly frustrating for users who, when logging in for the first time often get no results or results they are not expecting when they first log in.…