Sie sind auf Seite 1von 2

http://apex4ebs.blogspot.

com/
http://apex4ebs.blogspot.nl/p/integration-of-oracle-apex-and-e.html
http://balajiabhi.blogspot.com/2009/03/integrating-apex-in-r12-with-oracle.html
http://balajiabhi.blogspot.com/2010/12/apex-402-configured-with-oracle-ebs.html
http://rafioracledba.blogspot.com/2011/08/integrating-apex-402-with-e-business.h
tml
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credential
s>
</security-configuration>
/u02/app/oracle/oradata/orcl/apex01.dbf
@apexins.sql apex01 apex01 temp /i/
################################
-----: APEX_PUBLIC_USER/obiee123 --############################################
./startWebLogic.sh -Dweblogic.management.username=weblogic -Dweblogic.management
.password=weblogic1
nohup ./startNodeManager.sh > NOD.out &
java -jar ords.war static /u02/wls12/user_projects/domains/wl_domain/images
/u02/wls12/apexconfig
JAVA_HOME=
rest data service :
apex db user:APEX_PUBLIC_USER
password APEX_PUBLIC_USER --- apex.123
workspace: APEX_EBS_LOCAL
JAVA_HOME=/u02/OBIEE/Oracle_BI1/jdk/bin/ords.war
[weblogic@uat ~]$ PATH=$JAVA_HOME/bin:$JAVA_HOME:$PATH
[weblogic@uat ~]$ CLASSPATH=$JAVA_HOME/lib:$CLASSPATH

java -jar ords.war static /u02/wls12/user_projects/applications


jar

cvf0 /home/weblogic/i.war

C /home/weblogic/apex/images .

<entry key="security.verifySSL">false</entry>
<entry key="procedure.preProcess">apex_util.close_open_db_links </entry>
<entry key="procedure.postProcess">apex_util.close_open_db_links </entry>
###################################
create user APEX_EBS_EXTENSION identified by apex123 default tablespace SYSAUX;
create user APEX_EBS_LOCAL identified by apex123 default tablespace apex01;
connect APEX_EBS_LOCAL/apex123
grant connect ,create view to APEX_EBS_EXTENSION;
create database link APEX_EBS_DBLINK connect to APEX_EBS_EXTENSION identified b

y apex123 using '(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP) (HOST=128.1.1.182)(PORT=15


41))(CONNECT_DATA= (SERVER=DEDICATED)(SERVICE_NAME=ERPUAT)))';
CREATE OR REPLACE PACKAGE BODY apex_integration_sample_apis AS
FUNCTION apex_validate_login ( p_username in varchar2 ,
p_password in varchar2
) RETURN BOOLEAN
IS
BEGIN
RETURN fnd_user_pkg.validatelogin(p_username, p_password);
END apex_validate_login;
PROCEDURE apex_update_email ( p_username in varchar2 ,
p_owner in varchar2 ,
p_email_address
in varchar2 )
IS
BEGIN
wf_event.setdispatchmode('async');
fnd_user_pkg.updateuser
( x_user_name => p_username ,
x_owner => p_owner ,
x_email_address => p_email_address);
END apex_update_email;
END apex_integration_sample_apis;
/
page :23,24

Das könnte Ihnen auch gefallen