Integration Between Oracle Apex 5.1 And Oracle Fusion - oracle-apex

Hello I'm really new on using Oracle Apex.
I want to get some data report from Oracle Fusion Instance and put the data into Oracle Apex Table. Since the Apex 5.1 doesn't have 'REST Data Sources' menu under 'Shared Component'is there any way to connect between those two instance. Thanks before
A documentation how to connect between Oracle apex and Oracle Fusion without using 'REST Data Sources' Menu

Related

Getting Data in Power BI from Oracle Apex application backend tables

I was wondering if it is possible to connect the Oracle Apex's data tables in Microsoft Power BI.
Please note that these tables are the ones used in backend of web applications developed and hosted on Oracle Apex website/cloud https://apex.oracle.com (=NOT on-premises).
Oracle does not provide database connection information for the database used for https://apex.oracle.com. You can create REST APIs exposing information in the tables and use that information.

Is it possible to run Apex on other then database server?

Is there anyway to run apex on application server while having database on another server. I meant to say that I want to make one database server in which oracle database will be installed and another application server on that apex will be installed?
Is there any possible way to do that?
I've tried it by connect through remote database and it is working but I had to install oracle database on both server.
NO. APEX is a set of PL/SQL and SQL code that MUST execute in the Oracle database. You could run a smaller DB on the app server to host APEX apps and host the customer data tables on a different server. But APEX must run in an Oracle DB. Period.
In sort NO !
Oracle Application Express (ApEx) Engine (ApEx vestion 2,3,4,5,18,19) is running only on Oracle Database server, But for best performance, it is strongly recommended to use Web Server on seperate server,
Application Server Options for ApEx
Embedded PL/SQL Gateway (EPG)
Oracle HTTP Server (OHS) Configuration
Oracle REST Data Services (ORDS)
for further information please refer to Oracle ApEx Installaion Guide
and official site https://apex.oracle.com/ regularly!

How can I deploy my APEX desktop application for access by users from the Internet?

After creating an APEX desktop application, how can I deploy it in my web server computer, just like some homepages written using PHP?
I know APEX can export applications to .sql format and import them to another computer running APEX, but does it mean the web server need to run Oracle and/or APEX locally so that it can render the pages of the APEX application upon request?
And, is it possible to export APEX applications to other formats such as PHP?
I am using Oracle APEX 5.1.3.

Content Migration to Sitecore from other resources like SQL

I have a site developed in core .Net with SQL server Database. Now i want to redesign my site using Sitecore. How the data/content can be migrated from SQL database to Sitecore CMS?
Sitecore has released the Data Exchange Framework. This tool allows you to sync content from third party application. Example:
Read contacts from a CRM and create contacts in xDB
Update a contact in CRM using information from a contact in xDB
3.Create items in Sitecore that represent products in a catalog
So, you can easily use this tool to import your data from sql to sitecore. You only have to develop the different logic that requires to translate the data from the SQL to the template of your new instance.
Here is the link where you can have the 2 released version:
V1.0: https://dev.sitecore.net/en/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10.aspx
V1.1: https://dev.sitecore.net/en/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11.aspx
From the links, Sitecore has already specified the released note, required documentation about the API and so on.

how call BI Publisher report from Apex?

how can I call bi publisher report from apex.
bi publisher 11.1.1.7
Tyler Muth has covered this topic. You will have to setup an SQL connection from BIP to your APEX (via TNS). Then you will have to write the SQL for Apex system on BIP and setup a report. Then you can use the runReport method of BIP's generic WSDL to invoke that report from Apex.
https://tylermuth.wordpress.com/2008/03/31/call-bi-publisher-web-services-from-apex/
Its not easy, you will have to debug a lot of stuff yourself.