Integrating Apex 4.0 with R12.1

Hi,
I am trying to install and run Apex 4.0 on a R12.1 instance. Details are below:
Database:
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
PL/SQL Release 11.1.0.7.0 - Production
CORE 11.1.0.7.0 Production
TNS for Linux: Version 11.1.0.7.0 - Production
NLSRTL Version 11.1.0.7.0 - Production
Application: 12.1.3
Apex installs cleanly:
Thank you for installing Oracle Application Express.
Oracle Application Express is installed in the APEX_040000 schema.
The structure of the link to the Application Express administration services is as follows:
http://host:port/pls/apex/apex_admin (Oracle HTTP Server with mod_plsql)
http://host:port/apex/apex_admin (Oracle XML DB HTTP listener with the embedded PL/SQL gateway)
The structure of the link to the Application Express development interface is as follows:
http://host:port/pls/apex (Oracle HTTP Server with mod_plsql)
http://host:port/apex (Oracle XML DB HTTP listener with the embedded PL/SQL gateway)
I've update the dads.conf (/u01/oracle/apps/tech_st/10.1.2/Apache/modplsql/conf/dads.conf) file accordingly
Alias /i/ "/u01/oracle/apps/tech_st/10.1.2/Apache/Apache/images/"
AddType text/xml xbl
AddType text/x-component htc
<Location /pls/apex>
Order deny,allow
PlsqlDocumentPath docs
AllowOverride None
PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
PlsqlDatabaseConnectString host.domain:1524:XXXX
PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
PlsqlAuthenticationMode Basic
SetHandler pls_handler
PlsqlDocumentTablename wwv_flow_file_objects$
PlsqlDatabaseUsername apex_public_user
PlsqlDefaultPage apex
PlsqlDatabasePassword apexadmin
PlsqlRequestValidationFunction wwv_flow_epg_include_modules.authorize
Allow from all
</Location>
I've bounced apache, but the http://xxx.com:8003/apex link gives me "Page Not Found" error.
8003 is the port where http is listening, and I can login to Oracle apps using the same port (http://xxx.com:8003/OA_HTML/AppsLogin)
I have a couple of questions:
1) Should I be using HTTP mod_plsql or XDB listener for pl/sql
2) How can I trouble shoot this? Am I missing anything in the install?
Any help would be greatly appreciated
Thanks,
Ashish

1) Should I be using HTTP mod_plsql or XDB listener for pl/sqlI always use the former with no issues (integrated with SOA). I remember I tired the latter once and could not display the main page (not sure if it is supported).
2) How can I trouble shoot this? Am I missing anything in the install?Please see old threads for similar discussion.
APEX
http://forums.oracle.com/forums/search.jspa?threadID=&q=APEX&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Thanks,
Hussein

Similar Messages

  • Problem in Integration of Apex with R12

    Hello,
    I followed the paper apex-ebs-extension-white-paper-345780.pdf to do Integration of Apex with R12. but stuck on one step.
    I am done with all the steps in R12. Now if i click the menu in R12, its going to my existing Apex aplication but still asking username and password.
    Can anyone help me out in what exactly I need to change in Apex Authentication scheme in Apex. Right now I am using Authentication scheme as Application Express.
    Please help me out
    Thanks in advance
    Ananya
    Edited by: Ananya on 26 Dec, 2011 8:51 PM

    Hi Mini,
    Thanks a lot for ur replies. But it is not working for me. I am not able to figure out whats going wrong.
    My Requirement is to redirect to the first page of my application without asking for the APEX login page from the EBS menu.
    So summarizing whatever I steps i have followed:-
    (1) Created Profile and function in APPS as given in "apex-ebs-extension-white-paper-345780.pdf"
    (2) I created the following package in APPS schema
         CREATE OR REPLACE PACKAGE APPS.XXAPX_SECURITY_PKG AUTHID DEFINER AS
         FUNCTION generate_hash (
         p_string IN VARCHAR2
         , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2;
         FUNCTION validate_hash (
         p_string IN VARCHAR2
         , p_hash IN VARCHAR2
         , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN;
         END XXAPX_SECURITY_PKG;
         CREATE OR REPLACE PACKAGE BODY APPS.XXAPX_SECURITY_PKG AS
         g_key VARCHAR2(100);
         FUNCTION generate_hash (
         p_string IN VARCHAR2
         , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2
         IS
         BEGIN
         IF p_string IS NULL THEN RETURN NULL; END IF;
         RETURN RAWTOHEX(UTL_RAW.cast_to_raw(
         DBMS_OBFUSCATION_TOOLKIT.MD5(
              input_string=>p_string||':'||
              TO_CHAR(SYSDATE-(p_offset/24*60*60), 'YYYYMMDD HH24MISS')||g_key)));
         END generate_hash;
         FUNCTION validate_hash (
         p_string IN VARCHAR2
         , p_hash IN VARCHAR2
         , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN
         IS
         BEGIN
         FOR i IN 0..p_delay LOOP
         IF p_hash = generate_hash (p_string, i) THEN RETURN TRUE; END IF;
         END LOOP;
         RETURN FALSE;
         END validate_hash;
         BEGIN
         SELECT encrypted_user_password INTO g_key
         FROM FND_USER WHERE user_name = 'SYSADMIN';
         END XXAPX_SECURITY_PKG;
    (3) Created a function in the APPS schema:-
         create or replace FUNCTION ebs_authenticate (
         p_username IN VARCHAR2
         , p_password IN VARCHAR2) RETURN BOOLEAN
         AS
         BEGIN
         IF apps.XXAPX_SECURITY_PKG.validate_hash (p_username, p_password) THEN RETURN TRUE; END IF;
         RETURN (apps.FND_WEB_SEC.validate_login (p_username, p_password) = 'Y');
         END ebs_authenticate;
    (4) In my authentication scheme of my apex application i have changed it to use custom authentication to use the below function
         return apps.ebs_authenticate
    (5) Created a procedure in the APPS schema:-
         create or replace PROCEDURE apps_logon
         IS
         v_username VARCHAR2(100);
         v_password VARCHAR2(32);
         BEGIN
         wfa_sec.getsession(v_username);
         v_password := xxapx_security_pkg.generate_hash(FND_GLOBAL.user_name);
         IF v_password IS NOT NULL THEN
         APEX_CUSTOM_AUTH.login(
              P_UNAME => v_username,
              P_PASSWORD => v_password,
              P_SESSION_ID => v('APP_SESSION'),
              P_APP_PAGE => apex_application.g_flow_id||':38'
         ELSE
         RAISE_APPLICATION_ERROR(-20001, 'Password is null, session id = '||icx_sec.g_session_id);
         END IF;
         END apps_logon;
    (6) In my login page, i have created a process Get Username Cookie and with the process point: onload(Before Header)
         BEGIN
         apps.apps_logon;
         EXCEPTION WHEN OTHERS THEN NULL;
         END;
    Now I am getting this error with the login page :-
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small Content-type: text/html; charset=UTF-8 Set-Cookie: WWV_CUSTOM-F_1120314105059329_811=B4134623EB436033; path=/; Location: f?CallFromForm='Y'&p=811:38
    Please help me figure out the problem as I am struggling a lot with this from last few days :(
    Thanks in advance.

  • Integrating Apex with Cocoon (does it make pdf from taking data from DB)

    Friends,
    I integrated Apex with appache with cocoon. Its working fine with reports but i want it to work with form on a table or view.The steps below which i have followed for integrating Apex with Cocoon
    Steps of pdf Printing of Report with cocoon:
    1) Download and unzip the following needed files in D:\Apex_fop directory.
    2) Open your command prompt .
    Change the directory to D:\Apex_fop\cocoon-2.1.11.
    Set the Java_Home environment variable as: set JAVA_HOME= C:\Program Files\Java\jdk1.5.0_21
    then type build war
    3) After getting the prompt back as D:>Apex_fop>cocoon-2.1.11>
    Copy coocon.war file from the folder D:\Apex_fop\cocoon-2.1.11\build\cocoon.
    Paste this file into webapps subdirectory in main tomcat directory having path as D:\APEX_FOP\apache-tomcat-6.0.26\webapps.....place it in the top
    level of webapps directory.
    4) Now just startup tomcat as D:>APEX_FOP>apache-tomcat-6.0.26>bin>startup.bat
    The cocoon.war file will automatically uncompressed as directory.
    5) To change the port of apache tomcat , edit apache-tomcat-6.0.26\conf\server.xml & change port attribute of Connector element from 8080 to 8181.
    Just check whether Tomcat is running or not as http://localhost:8181/
    & to check cocoon type http://localhost:8181/cocoon/
    6) Now copy fop_post directory & paste it undes new cocoon directory in webapps having path as D:\APEX_FOP\apache-tomcat-6.0.26\webapps
    \cocoon.
    7) Now you need to do some apex settings as follows:
    In APEX, just log in as ADMIN into apex/apex_admin and went to Instance Settings and did the following:
    - Print Serverr: Standard Support
    - Print Server Protocol: HTTP
    - Print Server Host Address:localhost
    - Print Server Port: 8181
    - Print Server Script: /cocoon/fop_post
    In your APEX application, in the Regions section, Click on the Print link next to your report and do the following settings:
    - Enable Report Printing: Yes
    - Link Label: Print
    - Response Header: Report Settings
    - View File As: Attachment
    - Output Format: PDF
    - Report Layout: Default Report Layout
    - Print URL: f?p=&APP_ID.:1:&SESSION.:FLOW_XMLP_OUTPUT_R1063230002781575
    8) Open up the Report Page and click Print , You will get the pdf report.
    But my requirement is bit different. I have made form on a table or view , so when i am submitting my form the record is getting updated in my database and at the same time a new button is appearing at same page as i have branched it in same page. The new button name is print. I want when i click this print button it should print the record which submitted recently. How can i enable the print functionality on form. Its simple in report but how can it be done on form?
    Looking forward for this to know wthr it is achievable or not and if yes what all are the ways?
    Thanks in advance for all who is going to post here and to them also who is giving their time in reading my thread
    Regards
    Adi
    Edited by: Adi's on Mar 23, 2010 8:54 PM
    Edited by: Adi's on Mar 23, 2010 8:54 PM

    You could redirect to a report page instead of to the form page. Then simply print the report.
    This makes sense. You would have one page for entering the data and another page for displaying and printing it.

  • Steps for integrating oracle E-business suite R12.1.3 with 11g OID.

    Hi All,
    Can anyone please let me know the Metalink document ID/Steps for integrating oracle E-business suite R12.1.3 with 11g OID.
    Thanks,
    Dinesh.

    Dineshkumar wrote:
    Hi All,
    Can anyone please let me know the Metalink document ID/Steps for integrating oracle E-business suite R12.1.3 with 11g OID.
    Thanks,
    Dinesh.Please refer to the following docs/links.
    Using Oracle Internet Directory 11gR1 Patchset 4 (11.1.1.5.0) and Single Sign-on with Oracle E-Business Suite [ID 1286596.1]
    Integrating Oracle E-Business Suite Release 12 with Oracle Access Manager 11gR1 (11.1.1.5) using Oracle E-Business Suite AccessGate [ID 1309013.1]
    https://blogs.oracle.com/stevenChan/entry/oracle_access_manager_11_11
    https://blogs.oracle.com/stevenChan/entry/why_does_ebs_integration_with
    Thanks,
    Hussein

  • Intergrate Apex with R12 , How to Extend Oracle EBS with Oracle Apex

    Question out to the experts. I am looking for the easiet way to launch an Apex Application from EBS, we are currently on 12.1.3 (EBS) and 3.2 (Apex, we will be updgrading here shortly). We would like to create a responsibilty in EBS , when click upon it brings up our application and login screen. We are using an LDAP authentacation and will build a custom authorization scheme using the launching responsibility from EBS as the gate keeper.
    Any and all assistance is greatly appreciated
    Steve
    Edited by: steve falteisek on Aug 14, 2012 3:31 PM

    steve falteisek wrote:
    Sure , i have a couple of questions
    You posted a link to follow but it brings me to several discussion threads. I am using the .pdf by Rod West from Cabot Consulting (http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf). To try to set up the ability to launch apex via a responsibilty in R12 specifically 12.1.3. There are a couple of steps that i have questions about.
    With the E-Business Suite R12 this is achieved by creating a custom jsp in the $OA_HTML
    directory on the server. An example is shown in the LaunchApex.jsp shown in Figure 9. The jsp
    assumes that /pls/apex is the APEX DAD and that there is a custom system profile
    ***** First Question for step below
    (APEX_HTTP_SERVER) containing details of the Oracle HTTP Server used by APEX.
    ?? What type of information are we supposed to setup here? I am assuming this is done under application developer via EBS but not sure what we are suppose to enter?
    This is referring to a custom system profile that you need to create using Application Developer responsibility and populate the site level with the HTTP server URL you are using for APEX - see {thread:id=2273624} for an example
    >
    >
    The jsp can be compiled using the command shown in Figure 8 (See metalink notes 215268.1 and
    458338.1).
    ******* Second Question
    ??? The command below in Figure 8 does not work, i get a cannot find ojspCompile.pl error , also the metalink notes enclosed seem to talk about a different issue?
    Figure 8
    export PATH=$PATH:$FND_TOP/patch/115/bin
    ojspCompile.pl compile -s 'LaunchApex.jsp ' retr
    I believe this is a typo - there is a space between "jsp" the single end-quote, which should not be present. Try the command without the space.
    >
    In the end all I am trying to do initially is get apex to launch via an EBS responsibility (NO SSO initially) , i had this working in 11i but not with r12 i have having some difficulties. Apex is running and working on the db , so we know the application is viable , just trying to work on a different launching mechanism
    Thanks again for taking out the time.. Hopefully with your help we can get this up and running
    SteveHTH
    Srini

  • Integrating apex form with oracle portal

    Afternoon friends,
    I have got a senario like integrating apex form with oracle portal.I dont have any idea on oracle portals.so please let me know the basic steps on how to go ahead to integrate apex forms with oracle portal and for that what i need to have apart with my database and apex.

    Hello
    Couldn't see my previous post... so here it is again
    We have integrated Apex into Oracle Portal
    Here's how we did it.
    In the portal page, we have created an Element region with the following code:
    <script language="Javascript">
       <!--
       function changeIframeHeight(){
          var ifrmObj = document.getElementById('apexIframe');
          if(ifrmObj) {
             if(navigator.appName=='Microsoft Internet Explorer') { //IE
                ifrmObj.height = ifrmObj.contentWindow.document.body.scrollHeight+20;
             else {
                ifrmObj.style.height = ifrmObj.contentWindow.document.body.offsetHeight+50;
       //-->
    </script>
    <p><iframe width="100%" height="500" frameborder="0" onload="javascript: changeIframeHeight();" src="/pls/apex/f?p=115:10" marginheight="0" marginwidth="0" name="apexIframe" id="apexIframe"></iframe></p>You just have to make sure that the name and id of the iFrame and the elementId in the javascript are the same.
    And change the SRC so that it point you application.
    Hope that helped you.
    Max

  • Discoverer 10g integration with R12

    Hi,
    I am installing stand alone Discoverer 10g , no infra and no middle tier, just i want to install Discoverer 10g , my question is---> will it create own own discoverer database , else do i need to integrate with apps ,
    If its not going to create disco database , then we will integrate with R12,
    Thanks

    Ravi,
    Can you guide us how you are installing Discoverer 10g WITHOUT infra and middle tier ? and configuring with APPS R12. Can you put some ligth on it and provide us documents to follow.You need to install Oracle Business Intelligence Server 10g Release 2 (see the document referenced above for details).
    Regards,
    Hussein

  • How to Migrate 10g sso integrate with EBS 11.5.10.2  to 11g OAM(oracle access manager) with R12.1.3

    How to Migrate 10g sso integrated with EBS 11.5.10.2  to 11g OAM(oracle access manager) with R12.1.3
    Os:Linux 64 bit
    database:11.2.0.3 Rac

    Hi,
    You could try working through the EBS -> APEX integration article on the Apex community site (http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf)
    Rod West

  • Integration of Oracle Apps with the Third Party Label Printing Software(Bar

    Hi,
    I am integrating Oracle Apps R12 with the third party Label Printing Software(Bartender).
    For generating the Label, I have to create the XML file in Oracle Apps and with the help of Oracle WMS i have to transfer the XML file to the TCP/IP Port.
    Third Party Label Printing Software will pick the file from the TCP/IP Port.
    I am not able to find the way to send the XML file generated by the concurrent program to the TCP/IP Port using Oracle WMS.
    Below are the few links for Oracle WMS:
    http://docs.oracle.com/cd/B25284_01/current/acrobat/115wmsug.pdf
    http://docs.oracle.com/cd/E18727_01/doc.121/e13434/T210618T210847.htm#T210864
    Thanks In Advance..

    Pl do not post duplicates - Integration of Oracle Apps with the Third Party Label Printing Software

  • Apex application registered with sso as partner application

    We have 1 apex app registered with sso and working properly.
    I just registered a new apex application with sso. when i authenticate through sso, it directs me to the originally registered application.
    I went in through the portal administrator app and verified my settings all pointed to the new application. I verified that my dad is set up correctly.
    Any ideas?
    APEX 2.0

    i did register and obtain the keys through portal admin.
    to ensure i used the proper keys (i guess there is a possibility i used the keys from db1 registration) i re-ran regapp with the right keys but recieved the following output:
    SQL> @regapp
    Partner Application Configuration
    Enter value for listener_token: HTML_DB:050iasphttp.xxx.na.xxx.com:7777
    Enter value for site_id: EFBE3E14
    Enter value for site_token: MSMXURH1EFBE3E14
    Enter value for login_url: https://050iaspdb.xxx.na.xxx.com:4443/pls/orasso/orasso.wwsso_app_admin.ls_login
    Enter value for encryption_key: 2EBDD126A3A40606
    Enter value for ip_check: N
    ERROR: Error in registration. Please try again
    User-Defined Exception
    Registration successful.
    Listener token: HTML_DB:050iasphttp.xxx.na.xxx.com:7777
    Site id : EFBE3E14
    Site token : MSMXURH1EFBE3E14
    Encryption key: 2EBDD126A3A40606
    Login URL :
    https://050iaspdb.xxx.na.xxx.com:4443/pls/orasso/orasso.wwsso_app_admi
    n.ls_login
    Logout URL :
    https://050iaspdb.xxx.na.xxx.com:4443/pls/orasso/orasso.wwsso_app_admi
    n.ls_logout
    IP check : N
    PL/SQL procedure successfully completed.
    Commit complete.
    No errors.
    SQL>
    ...in spite of the error, i aske the app developer to try and use sso for db2. he now recieves:
    User-Defined Exception
    Error Error in wwv_flow_custom_auth_sso.process_success:l_sso_user_name:l_sess_id:: Please contact administrator.
    OK
    any ideas?

  • APEX not working with SSO

    I am trying to setup APEX 3.1 (fresh installation not upgrade) to work with SSO on Linux.
    APEX and AP infrastructure are installed on separate servers and APEX is working with mid tier HTTP server.
    I have followed the steps below and I don’t get any error messages at all but when I finally point the browser to an application I get an error:
    ERR-7620 Could not determine workspace for application
    Expecting p_company or wwv_flow_company cookie to contain security group id
    I would appreciate any help
    Regards,
    Anna
    alter user flows_030100 identified by xxxx;
    alter user flows_030100 account unlock;
    Loaded SSO SDK into the flows_030100 schema @APEX_DB
    Registered ApEx as a partner application, supplied values:
    HOME URL : http://serverABC.ypgstaging.local:7777/pls/apex
    Success URL : http://serverABC.ypgstaging.local:7777/pls/apex/wwv_flow_custom_auth_sso.process_success
    Log Out URL : http://serverABC.ypgstaging.local:7777/pls/apex/apex
    Application Name APEX
    As flows_040100@APEX_DB:
    SQL> @regapp.sql
    Partner Application Configuration
    Enter value for listener_token: apex:serverABC.ypg.local:7777
    Enter value for site_id: 6F20F2EF
    Enter value for site_token: W201QS2F6F20F2EF
    Enter value for login_url: http://serverABC.ypg.local:7777/pls/orasso/orasso.wwsso_app_admin.ls_login
    Enter value for encryption_key: 3F7CD0E25D17A170
    Enter value for ip_check: N
    Registration successful.
    Listener token: apex:serverABC.ypg.local:7777
    Site id : 6F20F2EF
    Site token : W201QS2F6F20F2EF
    Encryption key: 3F7CD0E25D17A170
    Login URL :
    http://serverABC.ypg.local:7777/pls/orasso/orasso.wwsso_app_admin.ls_login
    Logout URL :
    http://serverABC.ypg.local:7777/pls/orasso/orasso.wwsso_app_admin.ls_logout
    IP check : N
    PL/SQL procedure successfully completed.
    Commit complete.
    No errors.
    SQL> select * from wwsec_enabler_config_info$;
    LSNR_TOKEN
    SITE_TOKEN
    SITE_ID
    LS_LOGIN_URL
    URLCOOKIE_VERSION
    ENCRYPTION_KEY
    ENCRYPTION_MASK_PRE
    ENCRYPTION_MASK_POST
    U
    apex:serverABC.ypg.local:7777
    W201QS2F6F20F2EF
    6F20F2EF
    http://serverABC.ypg.local:7777/pls/orasso/orasso.wwsso_app_admin.ls_login
    v1.2
    3F7CD0E25D17A170
    C70C4A8B5227430F37EA0903E8A7C7BC
    35B1659E7B2E5FB7BF1C0381B44E1FF9
    N
    Then on APEX_DB server I ran the following:
    [oracle@ATC1SDBYM01 core]$ sqlplus
    Enter user-name: / as sysdba
    SQL> alter session set current_schema=flows_030100;
    Session altered.
    SQL> @custom_auth_sso_902.sql
    ...wwv_flow_custom_auth_sso
    Package created.
    No errors.
    SQL> @custom_auth_sso_902.plb
    ...wwv_flow_custom_auth_sso
    Package body created.
    No errors.
    SQL> grant execute on wwv_flow_custom_auth_sso to public;
    Grant succeeded.
    alter user flows_030100 identified by values ‘xxx’;
    alter user flows_030100 account lock;
    Here is a test application URL:
    http:/serverABC.ypgstaging.local:7778/pls/apex/f?p=F101::&c=yellowmart
    The application authentication schema is set to SSO.

    Scott
    I have restarted AS and rerun the regapp script successfully. I have noticed I entered the wrong domain name while registering it first time and I have corrected the error this time.
    SQL> select * from wwsec_enabler_config_info$;
    LSNR_TOKEN
    SITE_TOKEN
    SITE_ID
    LS_LOGIN_URL
    URLCOOKIE_VERSION
    ENCRYPTION_KEY
    ENCRYPTION_MASK_PRE
    ENCRYPTION_MASK_POST
    U
    HTML_DB:serverABC.ypgstaging.local:7777
    W201QS2F6F20F2EF
    6F20F2EF
    http://serverABC.ypgstaging.local:7777/pls/orasso/orasso.wwsso_app_admin.ls_lo
    gin
    v1.2
    3F7CD0E25D17A170
    C70C4A8B5227430F37EA0903E8A7C7BC
    35B1659E7B2E5FB7BF1C0381B44E1FF9
    N
    However I still get the same error message in my browser when I point it to the application.
    Regards,
    Anna

  • How can I redirect APEX(EPG) URL with afrindly one

    Hi All,
    I am using APEX with EPG on oracle 11g, and I would to redirect the URL http://localhost:8080/apex/f?p=122:1:43920293912715::NO with a friendly one like this
    http://project_name.mydomain.com
    Is there any one can help me know; how to do this redirection where I would to hide the port no 8080 within the URL
    Thank you in advance
    Yassin

    Yasen® wrote:
    hi is this solution working for Apex on 11g with EPG? whrere to run this code?Yes, it should work on 11g with EPG.
    Using SqlPlus, log in as SYS and run the code posted by "user7449726" to change the path name and default home page of the DAD.
    To change the port from 8080 (the default) to 80, run the following as SYS using SqlPlus:
    CALL DBMS_XDB.SETHTTPPORT(80);
    ALTER SYSTEM REGISTER;
    Make sure you don't have anything else running on port 80 (such as Microsoft's Internet Information Server) or you will obviously get a conflict.
    - Morten

  • Integration of Adobe Flex with SAP Web Dynpro ABAP

    I am new to adobe flex development. i am following a tutorial prepared by
    Mr. Karthikeyan Venkatesan (Infosys Technologies Limited) Integration of Adobe Flex with SAP Web Dynpro ABAP-for ABAPers
    He used flex 3 to develop the flex application. i am using flex 4 downloaded from adobe(At a time Build release I used low version only 3.5). I followed all the steps. At a time of Run the data was not came.
    How to fetch the data?
    Please Guide how to proceed.

    Hi Laxmikanth,
    For Adebo Flex help..
    Please go through Thomas tutorial..
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10989ef6-968c-2b10-50a9-eb34a5267163&overridelayout=true
    and ...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/307b434f-ff32-2b10-e885-991247270480?quicklink=index&overridelayout=true
    Hope it might helps you
    Thanks,
    Kris.

  • Integrating SuccessFactors PMS solution With SAP HCM without saving any employee master data in SF

    Hi Friends,
    We’re implementing SuccessFactors’s Performance Management Solution only at one of the client location in Saudi Arabia and trying to integrate with the On-Premise SAP HCM and Push the employee data to SF.
    However, due to security concerns customer doesn’t want to store any data on SucessFactors cloud solution to run the PMS cycle.
    During the purchase of license for SuccessFactors SAP has demonstrated client that, in SF a unique Id will be created for each employee, which will not be the actual UserID(PERNR)from SAP, and with this unique ID actual employee data will be tagged/linked  in SF which will fetch the data from SAP On-Premise system to run  the PMS cycle.  Once the user logins in SF, based on the unique ID data will fetch from SAP On-Premise system to SF on a real time basis and when the user logged out from the SF system, data should be cleared/deleted and nothing will be saved or stored in SF with respect to employee Master Data.
    I understand SAP has provided the standard add-on for the Employee Data Scenario between SuccessFactors and SAP HCM, which could have been leveraged here for integration using PI, however with the above limitation this solution is absolutely out of scope.
      Please advice, is there any solution where with PI if we can achieve the above requirement of client.
    Thanks,
    Farhan

    Hi Friends,
    We’re implementing SuccessFactors’s Performance Management Solution only at one of the client location in Saudi Arabia and trying to integrate with the On-Premise SAP HCM and Push the employee data to SF.
    However, due to security concerns customer doesn’t want to store any data on SucessFactors cloud solution to run the PMS cycle.
    During the purchase of license for SuccessFactors SAP has demonstrated client that, in SF a unique Id will be created for each employee, which will not be the actual UserID(PERNR)from SAP, and with this unique ID actual employee data will be tagged/linked  in SF which will fetch the data from SAP On-Premise system to run  the PMS cycle.  Once the user logins in SF, based on the unique ID data will fetch from SAP On-Premise system to SF on a real time basis and when the user logged out from the SF system, data should be cleared/deleted and nothing will be saved or stored in SF with respect to employee Master Data.
    I understand SAP has provided the standard add-on for the Employee Data Scenario between SuccessFactors and SAP HCM, which could have been leveraged here for integration using PI, however with the above limitation this solution is absolutely out of scope.
      Please advice, is there any solution where with PI if we can achieve the above requirement of client.
    Thanks,
    Farhan

  • Regd Integration of Domino.doc with Oracle 9i AS Portal

    I want to know whether the integration of domino.doc with oracle 9i as portal
    is possible or not.
    Can anyone guide me whether the integration is
    possible or not and if it is possible which document
    should i refer for the same.
    and i dont know much about domino.doc
    pls consider this as urgent
    Regds
    Rajesh Kanna.V

    1)Portal is an integrated component of 9iAS. You need to download all of 9iAS and select the minimal install option.
    2)We haven't tested this configuration, but as long as you set up apache appropriately to use different ports than the existing software it should work.
    3)Portal requires 8.1.6.2 Enterprise edition or 8.1.7 Standard edition. Personal Edition will not work.

Maybe you are looking for

  • Vendor bank data(IBAN value) populated in 2 lines

    Hi All, I am uploading vendor payment data using direct input with objcect 0040, method 0001, program RFBIKR00. Here I am getting only one problem. Vendor bank data is populating in two lines. COUNTRY, BANK KEY, BANK ACCOUNT, ACC HOLDER, CONTROL KEY,

  • Problem downloading Mavericks 10.9 from Apple Store

    Hi I'm running os x 10.9.1 on my Mac Mini 2,5 Ghz Intel Core i5 that i bought 3 month ago... I tried to download Mavericks 10.9 for emergencies from apple store but an error tells me to go to the purchases page and try gain but the same error occurre

  • 2.4GHZ clients very slow speeds with AP3600

    5508 WLC (7.5.102) AP36021 We currently have a test WiFi SSID setup that uses basic mac filtering on our WLC's WLAN is configured with WPA and WPA2 L2 Security with WPA Policy and WPA2 Encryption. For some reason we seem to be getting very slow speed

  • Zip Code in cell

    When I typed a zip code into one of the cells in my spreadsheet, the zero at the beginning was deleted.  how do I get it back?

  • SBO Client installation at remote location

    Hi friends Can anybody help on client installation .... We have SBO server at one location.  Other location is connected thru 128 KB lease line at distance of 250 KMs. ping response is between 200ms When the installation is started, it gets stuck ..