Adf mobile app accessing e-business suite 12.1.3

Hi,
I'm very new with ADF development, let alone with building a mobile app. We are in an exploratory stages of building a mobile application on top of the e-business suite using ADF. Ideally, we will use the ebusiness suite login (FND USER) to login to the mobile application. I understand that we need the ebiz suite Java SDK to make this possible.
Now, our ebusiness suite (release 12.1.3) is only run through the intranet meaning no DMZ is installed to access it via the internet. The question is, if we build a mobile application, do we need a DMZ server so that the mobile can access the e-business suite in the internet? Is there any option in place other than installing a DMZ to access the application externally by the mobile app?
Any advise is going to be very valuable to us.
Thanks in advance.

user4582047 wrote:
Hi,
I'm very new with ADF development, let alone with building a mobile app. We are in an exploratory stages of building a mobile application on top of the e-business suite using ADF. Ideally, we will use the ebusiness suite login (FND USER) to login to the mobile application. I understand that we need the ebiz suite Java SDK to make this possible. I'm not entirely sure about that - there will be the requirement that your ADF (or more appropriately "WebLogic") environment will need to authenticate against E-Business Suite. There is a good (and recent!) article about that here:
https://blogs.oracle.com/jruiz/entry/securing_adf_applications_using_the
Now, our ebusiness suite (release 12.1.3) is only run through the intranet meaning no DMZ is installed to access it via the internet. The question is, if we build a mobile application, do we need a DMZ server so that the mobile can access the e-business suite in the internet? Is there any option in place other than installing a DMZ to access the application externally by the mobile app? You'll need to set up some type of server infrastructure that allows you to install WebLogic and an "ADF" environment to serve your mobile applications, preferably fronted by an HTTP server like Oracle HTTP Server (It's usually the HTTP Server that might be placed in a 'DMZ', with firewall rules governing how network traffic is allowed to move between the HTTP Server and the WebLogic Server.)
A good intro that can give you an overview of a deployment topology is one that I've referenced in the WebCenter documentation from time to time:
http://docs.oracle.com/cd/E23943_01/core.1111/e12037/intro.htm#sthref47
.. there is obviously a lot more in that document than you wll be using (i.e. you won't be concenred with SOA, WebCenter or even the database), but there's a nice drawing there of the HTTP Server and a WebLogic environment to host your application and some discussion about what and when you'll want to consider clustering, etc.
Hope that helps,
Chad

Similar Messages

  • ADF Mobile App integration with webservices, connection refused error

    I created an ADF application for department search with business components and exposed this as a webservice. I can access the WSDL locally from a browser. Then created an ADF mobile application and deployed it to android emulator. I am able to deploy the application to emulator and I can see the app on Android emulator. When I try to search for any department, I am getting "cannot connect to localhost on port 7101 : connection refused". My server is started already and the port number is also correct. Did any one came across this issue before? Even the WSDL URL is not accessible from the browser of android emulator.
    Edited by: adf_forum on Nov 16, 2012 2:16 PM

    Hi,
    One more thing to keep in mind is that Android emulator is itself a network host, and localhost will likely loop back into itself, i.e. emulator. Please try to set up the WLS to listen on an actual IP address for your development machine, create your WS DC using this real IP address, and then try to deploy/run the app.
    If you need to retrofit your app with an new IP address, please keep in mind there are several places you would need to manually fix up, including the connections.xml file.
    In general, if the device emulator's browser cannot hit a web service, then the ADF Mobile app will also not be able to hit a web service.
    The most reliable way is to treat the emulator like an actual device, then work out your application's connection accordingly.
    Thanks,
    Joe Huang

  • ADF-Mobile app will not rotate in iOS simulator or device

    We have been coding an ADF-Mobile app in JDeveloper and testing on both a Motorola tablet and an iPad.
    Both our application, as well as the demo "Deployment Successful" (found here: http://docs.oracle.com/cd/E18941_01/tutorials/MobileTutorial/jdtut_11r2_54_1.html) application rotate fine from portrait to landscape and back on the Motorola device, however, the same code will not rotate on an iPad.
    I understand that the device orientation functionality is controlled in the deployment profile. I have been successful with forcing my app to launch in landscape mode OR portrait mode (By deselecting both portrait settings or both landscape settings, respectively in my deployment profile) however, when I leave all 4 enabled, my app seems to be locked in right-side-up portrait mode (It will not even rotate between portrait modes)
    Has anyone experienced this issue with iOS devices and the rotation functionality, and if so, is there a workaround?
    Any help is appreciated
    Gord Taylor

    Hi,
    There is a known issue when you use Xcode 4.5 and iOS SDK 6 to compile your app - the app would not rotate correctly. If you use Xcode 4.4.1 and the associated SDK, then rotation will work fine on both iOS 5 and 6 devices.
    Xcode 4.5 certification should be coming soon - for now please try to use 4.4.
    If you are already using 4.4, please let me know and perhaps there are configuration issues.
    Thanks,
    Joe Huang

  • Web service Invocation from ADF mobile app errors

    Mobile App Gurus,
    The webservice when invoked from ADF web app is working fine but, when invoked from Mobile APP errors in emulator with as below...
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication serivce is oracle.idm.mobile.SSOAuthenticationService
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication context status is IN_PROGRESS
    D/oracle.idm.mobile.OMAuthenticationServiceManager_retrieveAuthenticationContext
    ( 1096): Authentication context for the key appsnet5login.sysadmin retrieved from the credential store is : null
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication serivce is oracle.idm.mobile.BasicAuthenticationService
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication context status is IN_PROGRESS
    D/oracle.idm.mobile.OMAuthenticationServiceManager_doInBackground( 1096): Invalid Authentication URL.
    Please can you let me know if I am missing some step in ADF Mobile App framework.
    Thanks,
    Shreedhar
    Edited by: sh**** on Apr 22, 2013 5:11 AM
    Edited by: sh**** on Apr 22, 2013 6:50 AM

    I don't know if you fixed it already by this time or not. But here is my findings anyway, to be able to inject the security header correctly in any SOA Gateway service, you need to have your Mobile Application Secured, meaning that there is a prompt for username/password when you open it.
    Then you will have to make a Proxy service for the webservice you are using from apps. And you must create it with a SOAP Handler also and write below sample code in the handler to inject the security header in the SOAP call. At last, you are going to deploy this proxy service to your Application Server.
    These steps were taken on a Glassfish server not Weblogic. I think there is an easy way for this if you are using Weblogic..
    Sample handler is below:
    package com.mobile.xxsoap;
    import java.util.HashSet;
    import java.util.Set;
    import javax.xml.namespace.QName;
    import javax.xml.soap.Name;
    import javax.xml.soap.SOAPElement;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPFactory;
    import javax.xml.soap.SOAPHeader;
    import javax.xml.ws.handler.MessageContext;
    import javax.xml.ws.handler.soap.SOAPHandler;
    import javax.xml.ws.handler.soap.SOAPMessageContext;
    public class CustomSOAPHandler implements SOAPHandler<SOAPMessageContext> {
        private static final String AUTH_PREFIX = "wsse";
        private static final String AUTH_NS =
            "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
        public boolean handleMessage(SOAPMessageContext context) {
            try {
                SOAPEnvelope envelope = context.getMessage().getSOAPPart().getEnvelope();
                SOAPFactory soapFactory = SOAPFactory.newInstance();
                SOAPElement wsSecHeaderElm = soapFactory.createElement("Security", AUTH_PREFIX, AUTH_NS);   
                SOAPElement userNameTokenElm = soapFactory.createElement("UsernameToken", AUTH_PREFIX, AUTH_NS);
                SOAPElement userNameElm = soapFactory.createElement("Username", AUTH_PREFIX, AUTH_NS);
                userNameElm.addTextNode("redsam");
                SOAPElement passwdElm = soapFactory.createElement("Password", AUTH_PREFIX, AUTH_NS);
                Name passwdTypeAttr = soapFactory.createName("Type");
                passwdElm.addAttribute(passwdTypeAttr,
                                       "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText");
                passwdElm.addTextNode("123456");
                userNameTokenElm.addChildElement(userNameElm);
                userNameTokenElm.addChildElement(passwdElm);
                wsSecHeaderElm.addChildElement(userNameTokenElm);
            } catch (Throwable e) {
                e.printStackTrace();
            return true;
        public Set<QName> getHeaders() {
            return new HashSet<QName>();
        public boolean handleFault(SOAPMessageContext messageContext) {
            return true;
        public void close(MessageContext context) {
    I hope it is clear now...
    Regards,
    Mohamed

  • ADF Authorization for ADF Mobile:Configuring Access Control URL for ADF App

    Can someone explain, how to expose weblogic user roles as a Rest Json Api? Basically I want to set up Access Control URL to authorize users on adf mobile.

    Hi Frank,
    This is what I did. Could you please let me know if I am doing it right.
    1. Created an adf application with a simple page and applied security basic http authentication.
    2. Added a rest service implementation in the same application, changed the adf application web.xml as below
    <servlet-mapping> 
       <servlet-name>jersey</servlet-name> 
       <url-pattern>/jersey/*</url-pattern> 
      </servlet-mapping>
    3. When I test the rest service in browser, it asks to log in and returns the user roles. Below is my rest implementation
    @POST
    @Produces(MediaType.APPLICATION_JSON)
    public User getMessag3() throws Exception {
    return new User();}
    the rest service returns the logged in user roles in below json format.
    {"userid":"susant","roles":["SSBAccessGroup","authenticated-role","SSBAccessApp","anonymous-role"],"priviledges":[]}
    Do I need to implement anything on the ADF mobile side or I can just add the rest service url to the authorization tab. Will adf mobile automatically handle sending the http request.
    Actually I just added the rest service url to adfm-applications connections authorization tab and I am getting ACS failed error after log in.
    Thanks

  • Accessing E-business suite in another network without configuring DMZ

    Hi
    How can i enable to access E-business sutie externally or to a different location.I dont want to setup the DMZ configurations and reverse proxy.Our Company have another Remote branch and they are not in same network.How can they able to access the E-business suite without enabling DMZ and reverse proxy.Is there anything like make the
    IP of the Apps server as public will solve the issue ?
    rgds
    rosh

    To make it public, you just need to change the IP Address of the application and the database servers to the real one and follow the steps in the following notes. Once you are done, the system will be accessible to the users then.
    Note: 338003.1 - How to change the hostname and/or port of the Database Tier using AutoConfig
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=338003.1
    Note: 341322.1 - How to change the hostname of an Applications Tier using AutoConfig
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=341322.1

  • Publishing ADF Mobile App to Google Play

    Hi,
    I wrote an application in ADF Mobile, and I published it to Google Play.
    When I try to install it on some devices from Google Play (Nexus 7 for example) I get the following error: "Your device isn't compatible with this version error message".
    I also tried to install "El Perico" app (https://play.google.com/store/apps/details?id=com.synergetic.EPMobile&feature=search_result#?t=W251bGwsMSwyLDEsImNvbS5zeW5lcmdldGljLkVQTW9iaWxlIl0.) and I got the same error.
    When I download the app to the device and install it manually, it works perfectly.
    How can I disable any limitation on this app?
    Thanks,
    Yossi

    Hi,
    I found the issue.
    Nexus 7 lacks backward camera, so it was not compatible to this device.
    I removed from Android manifest all the unnecessary required permissions, and it works like a charm.
    Thanks,
    Yossi

  • Failed to deploy ADF Mobile app on Android device

    Hi,
    I created an application using Jdeveloper 11.1.2.3 .While deploying to android device ,I am getting the ‘INSTALL_FAILED_INSUFFICIENT_STORAGE’ error. The size of the apk file is 22.6 MB while the free space on device is 1.84 GB.
    The error message is:
    [02:46:38 PM] Deploying ADF Mobile Framework application to Android device (this may take a few minutes)...
    [02:46:54 PM] Command-line executed: [Users/chdsez249662dadm/Desktop/android-sdk-macosx/platform-tools/adb, -d, install, -r,  /Users/chdsez249662dadm/Desktop/iExpenseRefresh/deploy/ANDROID_MOBILE_NATIVE_archive1/iexpenserefresh.apk]
    [02:46:54 PM] 1512 KB/s (22601586 bytes in 14.595s)
    [02:46:54 PM] pkg: /data/local/tmp/iexpenserefresh.apk
    [02:46:54 PM] Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
    [02:46:54 PM] Command-line execution failed (Return code: 0)
    [02:46:54 PM] Command-line executed: /Users/chdsez249662dadm/Desktop/android-sdk-macosx/platform-tools/adb -d install -r /Users/chdsez249662dadm/Desktop/iExpenseRefresh/deploy/ANDROID_MOBILE_NATIVE_archive1/iexpenserefresh.apk
    [02:46:54 PM] Shutting down Android Debug Bridge server...
    [02:46:54 PM] Deployment cancelled.
    [02:46:54 PM] ---- Deployment incomplete ----.
    [02:46:54 PM] Deployment failed due to one or more errors returned by '/Users/chdsez249662dadm/Desktop/android-sdk-macosx/platform-tools/adb'. The following is a summary of the returned error(s):
    Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE].
    Could you please help me to identify the possible reason for this.

    Yes, we copied the app file to an android device and installed it using 'PackageInstaller' but the application did not open up and gave the following error:
    The copy of the connections.xml file from the bundle to the configuration service managed location has failed. Could not create destination file : /null/oracleconfigservice/.adf/META-INF/connections.xml. This indicates a failed bundling of the application. Shutting down.
    Any idea on this?

  • Apple App Store requirement for ADF Mobile Apps

    I got updates from Apple that detect deployed ADF Mobile ipa that sent to Apple iTunes Connect As
    Missing recommended icon file - The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format.
    Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '76x76' pixels, in .png format.
    Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '152x152' pixels, in .png format.
    Non-PIE Binary - The executable 'qe.app' is not a Position Independent Executable. Please ensure that your build settings are configured to create PIE executables. For more information, refer to Technical Q&A QA1788 - Building a Position Independent Executable
    How to solved it, as it might facing with rejection from Apple and really urgent issue.

    Hi,
    has this been rejected by Apple or is it just a warning flagged? What is the version of ADF Mobile. Did you download and install the recent ADF mobile version. Try Help --> About --> Extensions and look for the "ADF Mobile Framework" version. Ensure its
    ADF Mobile Framework    oracle.adf.mobile    11.1.2.4.39.64.51
    If the version is below, then use Help--> Check for update to install the latest version.
    Frank

  • Getting Error while deploying ADF Mobile App in android Emulator

    Hi All,
    I am getting following error while deploying mobile app into android emulator........i have gone through google search and i hve done with all the steps...as follows
    1. keytool -genkey -v -keystore debug.keystore -alias androiddebugkey -keyalg RSA -keysize 2048 -validity 10000
    i gave password, last name ,organization, state and country
    2. jarsigner -sigalg MD5withRSA -digestalg SHA1 -verbose -keystore /Users/Admin/.android/debug.keystore C:\JDeveloper\mywork\GeneralMobileApp\deploy\ANDROID_MOBILE_NATIVE_archive1/generalmobileapp.apk
    3. /platform-tools/adb -e install -r C:\JDeveloper\mywork\GeneralMobileApp\deploy\ANDROID_MOBILE_NATIVE_archive1/generalmobileapp.apk
    After the above step...i got SUCCESS message(while running the above step in command prompt ).........
    Even after that.... I am getting same error while deploying my app using jdeveloper into android emulator.....
    ERROR:
    [09:40:02 AM] Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
    [09:40:02 AM]
    [09:40:02 AM] Command-line execution failed (Return code: 0)
    [09:40:02 AM] Command-line executed: "E:\android\adt-bundle-windows-x86_64\sdk\platform-tools\adb" -e install -r "C:\JDeveloper\mywork\GeneralMobileApp\deploy\ANDROID_MOBILE_NATIVE_archive1\generalmobileapp.apk"
    [09:40:02 AM] Deployment cancelled.
    [09:40:02 AM] ---- Deployment incomplete ----.
    [09:40:02 AM] Deployment failed due to one or more errors returned by 'E:\android\adt-bundle-windows-x86_64\sdk\platform-tools\adb'. The following is a summary of the returned error(s):
    Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
    Regards,
    Nani
    Edited by: 962874 on Jan 12, 2013 6:46 AM

    The emulator can run out of space for applications - so if you have other applications deployed to the emulator remove them and then try again.
    Other options here:
    http://stackoverflow.com/questions/2239330/how-to-increase-storage-for-android-emulator-install-failed-insufficient-stora

  • How to Integrate Oracle Adf Mobile App and DMS?

    Hi All,
    I Have created adf mobile application.In which I am using synchronization feature as SQLite embedded.its working fine.
    But I need to implement DMS integration for sync.Can anyone please tel me how to integrated DMS with Oracle ADF mobile application.
    I Have done installation of DMS in windows7 even I installed agent in android simulator. I am facing problem how these integration will Happen.
    Regards
    Sankar

    Hi Shankar,
            Please send me an email directly and we can discuss this in more detail outside of the context of the forum.    Please send to [email protected]
    thanks
    mike

  • Unable to deploy a simple ADF Mobile app to iPhone

    I have been able to deploy the app on iOS simulator, and also on an Android device. I have also created provisioning profile and certificate from apple developer site. My XCode is also setup properly and can deploy the app on iPhone. However when i try to deploy the app from JDeveloper, i get the follow error
    [06:25:45 PM] error: /usr/bin/codesign force preserve-metadata=identifier,entitlements,resource-rules sign iPhone Developer: Xxxxx Xxxxx (XXXXXXXXXXX) resource-rules=/var/folders/4c/807vmhdd3svf5fz41qsr08lh0000gn/T/XUwSAsMveS/Payload/ABCDemoApp.app/ResourceRules.plist /var/folders/4c/807vmhdd3svf5fz41qsr08lh0000gn/T/XUwSAsMveS/Payload/ABCDemoApp.app failed with error 1. Output: /var/folders/4c/807vmhdd3svf5fz41qsr08lh0000gn/T/XUwSAsMveS/Payload/ABCDemoApp.app: replacing existing signature
    [06:25:45 PM] Program /usr/bin/codesign returned 1 : [/var/folders/4c/807vmhdd3svf5fz41qsr08lh0000gn/T/XUwSAsMveS/Payload/ABCDemoApp.app: replacing existing signature
    [06:25:45 PM] Command-line execution failed (Return code: 1)
    [06:25:45 PM] Deployment cancelled.
    [06:25:45 PM] ---- Deployment incomplete ----.
    [06:25:45 PM] Failed to package the XCode application.
    [06:25:45 PM] Failed to build the iOS application bundle.
    [06:25:45 PM] Deployment failed due to one or more errors returned by '/usr/bin/xcrun'. The following is a summary of the returned error(s):
    Command-line execution failed (Return code: 1)
    *error: /usr/bin/codesign force preserve-metadata=identifier,entitlements,resource-rules sign* iPhone Developer: Xxxxx Xxxxx (XXXXXXXXXXX) resource-rules=/var/folders/4c/807vmhdd3svf5fz41qsr08lh0000gn/T/XUwSAsMveS/Payload/ABCDemoApp.app/ResourceRules.plist /var/folders/4c/807vmhdd3svf5fz41qsr08lh0000gn/T/XUwSAsMveS/Payload/ABCDemoApp.app failed with error 1. Output: /var/folders/4c/807vmhdd3svf5fz41qsr08lh0000gn/T/XUwSAsMveS/Payload/ABCDemoApp.app: replacing existing signature
    Program /usr/bin/codesign returned 1 : [/var/folders/4c/807vmhdd3svf5fz41qsr08lh0000gn/T/XUwSAsMveS/Payload/ABCDemoApp.app: replacing existing signature
    Any idea what might have not been setup correctly in JDeveloper or in keychain access?
    Thanks

    I also encountered the same problem, how to solve?
    [05:59:39 PM] Command-line executed:  /usr/bin/xcrun -sdk iphoneos PackageApplication -v /Users/SCSMAC/jdeveloper/ebs/EBSApp/deploy/iOS1/Destination_Root/Applications/EBSApp.app -o /Users/SCSMAC/jdeveloper/ebs/EBSApp/deploy/iOS1/Destination_Root/Oracle_ADFmc_Container_Application/device/EBSApp.ipa --sign iPhone Developer: XXXXXX (2XXXXXx) --embed /Users/SCSMAC/Library/MobileDevice/Provisioning Profiles/14BE1118-2E1B-49F9-84C3-122B71B01667.mobileprovision
    [05:59:39 PM] Command-line execution failed (Return code: 255)
    [05:59:39 PM] Deployment cancelled.
    [05:59:39 PM] ----  Deployment incomplete  ----.
    [05:59:39 PM] Failed to package the XCode application.
    [05:59:39 PM] Failed to build the iOS application bundle.
    [05:59:39 PM] Deployment failed due to one or more errors returned by '/usr/bin/xcrun'.  The following is a summary of the returned error(s):
    Command-line execution failed (Return code: 255)

  • Using ADF in E-Business Suite

    Hello
    We are trying to develop an ADF page which can be accessible through Oracle E-Business Suite (EBS) and user should be able to achieve navigation between EBS and ADF both ways. I have come across following document on Oracle support which mentions how it can be done
    document ID 1296491.1
    Now above link mentions that the ADF application needs to be deployed to WebLogic server. However due to cost considerations, I have following queries
    1. Can we deploy ADF application to Oracle E-Business Suite Apps server using any ADF libraries (I guess ADF run time libraries)?
    2. If above 1. is not possible, are there any other open source servers we can use?
    Thanks,
    Gourishankar

    ADF requires Java EE 5 compatible server - OC4J doesn't meet these requirements.
    You can upgrade your EBS to run on WebLogic, and then you can use the same server for both ADF and EBS.

  • ADF Mobile - insert data into oracle db from oracle adf mobile application

    Hi,
    I have to insert data from mobile into oracle database 11g(not in local sqlite database), can somebody tell me how to do it?
    Thanks,
    Anshul

    Hi, Anshul, one common way is to expose DB data as ADF BC, and then add a service interface on top of ADF BC. This would allow the ADF Mobile app to access server DB through ADF BC. There may be other mechanisms to access server-side DB - I think APEX also expose some REST interface to Oracle DB as well. Another option is to use TopLink - TopLink can also expose some REST services.
    Thanks,
    Joe Huang

  • E-business suite option not available

    Hi ,
    I dont see an option Navigate to e-business suite in action list. what could be the reason. i have added the field "<ebusinesssuiteconfig>
    <visible>true</visible>
    </ebusinesssuiteconfig>"
    The ebusinesssuiteconfig element specifies that an Oracle E-Business Suite system is available. If this element is present in the configuration file, Oracle BI Presentation Services displays the menu option that allows users to create a Navigate to E-Business Suite action. Users must have the proper privileges to access E-Business Suite from Oracle BI Presentation Services.
    The following example is an ebusinesssuiteconfig entry.
    <ebusinesssuiteconfig>
    <visible>true</visible>
    </ebusinesssuiteconfig>
    when i go to OBI -> New -> Action -> i dont see Navigate to EBS suite. what could be the reason for it?
    Thanks,
    RM

    Hi RM,
    have you seen this thread Re: OBIEE Integration  with EBS 11.5.10 or R12 Apps
    My issue is resolved. Problem was that the EBS DB user that I was using in RPD didn't have access to all the required packages and because of that it was giving error that NQ_SESSION>ICS_SESSION_COOKIE has not variable definiation.
    If you are using APPS user that you should not have any problem but if you are using other DB user and its not super user that check if the user have Execute privileges on the following packages:
    FND_GLOBAL
    fnd_run_function
    fnd_function
    APP_SESSION
    this should resolve the issue. I hope you already know that both EBS and OBIEE should be on same domain and use same HTTP protocol like HTTPS or HTTP.
    Is it your case ?

Maybe you are looking for

  • Monitor and capture at the same time?

    Is it possible to view/monitor a video (live from a quickcam) and capture at the same time? I looked at the solution here: http://java.sun.com/products/java-media/jmf/2.1.1/solutions/index.html And found "Video Capture Utility with Monitoring" sample

  • TS4006 how to set a tracking from the computer if someone stolen the ipod

    how to set a tracking from the computer if someone stolen the ipod

  • Podcasts Gone

    Since the itunes upgrade I lost my podcasts, can't seem to get them back, any ideas?

  • X86- which is the best partition layout

    Hi I read that there are differences between sparc and x86 partition layout...but I honestly didn't understand the problem.... Which partition layout should I choose when installing solaris 10 on a x86 system? What is different to a sparc system? Tha

  • Improve performance of query with order by

    Hello, I have a query with a necessary "order by" which lasts 24 seconds. The same query without the "order by" lasts 1 second. How can I improve the performance of the query with "order by"? Thank you very much. The query is: select distinct CC.acce