Sibi Elamparithi
-
Integrating Office 365 Single Sign-on with Informatica Intelligent Cloud Services
- December 31, 2023
- Posted by: Sibi Elamparithi
- Category: Analytics
No CommentsInfacloud allows us to enable single sign-on (SSO) capability so that users can access their organization without the need to enter login information.
-
Oracle APEX – Customizing the response in REST Data Sources
- April 2, 2021
- Posted by: Sibi Elamparithi
- Category: APEX
In most cases, REST API’s output is in the form of JSON. Oracle APEX’s REST Data Source utility has inbuilt functionalities to read this JSON and parse the values as separate columns. But in case if your JSON is a multidimensional array, the parsing needs to be done manually for getting custom column values.
-
Pull Down Page Refresh in APEX
- February 12, 2021
- Posted by: Sibi Elamparithi
- Category: APEX
In Oracle APEX, a page can be refreshed by using F5 or any other browser control. But what if you want to refresh a page in an APEX mobile app. We need an exclusive refresh button in all pages to do a refresh. But instead, we can implement a “Pull Down Page Refresh”, which is more user friendly for the app users.
-
Bootstrap Range Slicer in Oracle APEX
- January 2, 2021
- Posted by: Sibi Elamparithi
- Category: APEX
By default Oracle APEX provides many input elements for building forms. Range Slicer isn’t one of them. But still we can include the Range Slicer element from Bootstrap library into our Oracle APEX forms.
-
Hierarchical Report In APEX
- December 6, 2020
- Posted by: Sibi Elamparithi
- Category: APEX
In many cases, we have parent-child relationship data which needs to be represented in a hierarchical manner. There is no built-in report in APEX to represent these kinds of data.
-
Dynamic Action in Oracle APEX – Event Scope Static vs Dynamic
- August 15, 2020
- Posted by: Sibi Elamparithi
- Category: APEX
Dynamic Actions in Oracle APEX has two important options for Event Scope being Static and Dynamic.
-
Building Drag and Drop Chart with Oracle APEX
- July 18, 2020
- Posted by: Sibi Elamparithi
- Category: APEX
As we know, Oracle APEX contains various inbuilt Jet Charts. What if you need something more than the inbuilt.
This blog will help you to embed a Drag and Drop chart from Oracle Jet into Oracle APEX. This method is also common to incorporate any Jet chart from Jet Community into Oracle APEX. A sample of what we are going to build. -
Downloading Sharepoint Files with Python
- May 15, 2020
- Posted by: Sibi Elamparithi
- Categories: Sharepoint, Technology
In case of automating file downloads from Sharepoint, here I will be sharing the steps to download files from Sharepoint folder to your local disk using Python.
-
Multiselect with Sort Option – HTML Component
- September 23, 2019
- Posted by: Sibi Elamparithi
- Category: Technology
By default, multi-selection and sorting is not possible in a single HTML component. But the following component allows the user to select multiple options from a list of values as well as sort the selected options.
-
Connect SQL Server and Oracle Apex with Python
- July 22, 2019
- Posted by: Sibi Elamparithi
- Categories: APEX, Technology
Apex, by default supports only Oracle database. There isn’t any default options to display data from other databases like SQL Server. But, we can use python to create a webservice with SQL Server data and call the webservice in Apex using Ajax.