10g - how to configure sso with iis-

hi, experts, I have followed Oracle® Business Intelligence Enterprise Edition Deployment Guide to configure SSO with IIS.
but I always meet this message.
Not Logged In
You are not currently logged in to the Oracle BI Server.
If you have already logged in, your connection might have timed out, or a communications or server error may have occurred
what steps are missing?
how to check?

hi, experts,
I checked C:\OracleBIData\web\log\sawlog0.log on the obi server (windows server 2003 standard).
at Thu Feb 17 14:48:46 2011 , I logined OBI on another machine (not via the browser on the obi server).
however, the log shows the login user is the administrator of the obiserver (obiserver\administrator ).
any setup on IIS are wrong? thank you very much!
=========================================================================================
Running job 'MinutelyMonitor' took 7422 milliseconds, 12.3% of job's frequency (60 seconds).
Type: Error
Severity: 40
Time: Thu Feb 17 14:48:46 2011
File: project/webodbcaccess/odbcconnectionimpl.cpp Line: 371
Properties: ConnId-1,1;ThreadID-1796
Location:
     saw.odbc.connection.open
     saw.connectionPool.getConnection
     saw.subsystem.security.checkAuthenticationImpl
     saw.threadPool
     saw.threads
Odbc driver returned an error (SQLDriverConnectW).
State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
[nQSError: 43001] Authentication failed for obiserver\administrator in repository Star: invalid user/password. (08004)
Type: Error
Severity: 42
Time: Thu Feb 17 14:48:46 2011
File: project/webconnect/connection.cpp Line: 276
Properties: ThreadID-1796
Location:
     saw.connectionPool.getConnection
     saw.subsystem.security.checkAuthenticationImpl
     saw.threadPool
     saw.threads
Authentication Failure.
Odbc driver returned an error (SQLDriverConnectW).
---------------------------------------

Similar Messages

  • How to configure sso with SSL step by step

    Purpose
    In this document, you can learn how to configure SSO with SSL. After user have certificate installed in browser, he can login without input username and password.
    Overview
    In this document we will demonstrate:
    1.     How to configure OHS support SSL
    2.     How to Register SSO with SSL
    3.     Configure SSO for certificates
    Prerequisites
    Before start this document, you should have:
    1.     Oracle AS 10g infrastructure installed (10.1.2)
    2.     OCA installed
    Note:
    1.     “When you install Oracle infrastructure, please make sure you have select OCA.
    2.     How Certificate-Enabled Authentication Works:
    a.     The user tries to access a partner application.
    b.     The partner application redirects the user to the single sign-on server for authentication. As part of this redirection, the browser sends the user's certificate to the login URL of the server (2a). If it is able to verify the certificate, the server returns the user to the requested application.
    c.     The application delivers content. Users whose browsers are configured to prompt for a certificate-store password may only have to present this password once, depending upon how their browser is configured. If they log out and then attempt to access a partner application, the browser passes their certificate to the single sign-on server automatically. This means that they never really log out. To effectively log out, they must close the browser.
    Enable SSL on the Single Sign-On Middle Tier
    The following steps involve configuring the Oracle HTTP Server. Perform them on the single sign-on middle tier. In doing so, keep the following in mind:
    l     You must configure SSL on the computer where the single sign-on middle tier is running.
    l     You are configuring one-way SSL.
    l     You may enable SSL for simple network encryption; PKI authentication is not required. Note though that you must use a valid wallet and server certificate. The default wallet location is ORACLE_HOME/Apache/Apache/conf/ssl.wlt/default.
    1.     Back up the opmn.xml file, found at ORACLE_HOME/opmn/conf
    2.     In opmn.xml, change the value for the start-mode parameter to ssl-enabled. This parameter appears in boldface in the xml tag immediately following.
    <ias-component id="HTTP_Server">
    <process-type id="HTTP_Server" module-id="OHS">
    <module-data>
    <category id="start-parameters">
    <data id="start-mode" value="ssl-enabled"/>
    </category>
    </module-data>
    <process-set id="HTTP_Server" numprocs="1"/>
    </process-type>
    </ias-component>
    3.     Update the distributed cluster management database with the change: ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct opmn
    4.     Reload the modified opmn configuration file:
    ORACLE_HOME/opmn/bin/opmnctl reload
    5.     Keep a non-SSL port active. The External Applications portlet communicates with the single sign-on server over a non-SSL port. The HTTP port is enabled by default. If you have not disabled the port, this step requires no action.
    6.     Apply the rule mod_rewrite to SSL configuration. This step involves modifying the ssl.conf file on the middle-tier computer. The file is at ORACLE_HOME/Apache/Apache/conf. Back up the file before editing it.
    Because the Oracle HTTP Server has to be available over both HTTP and HTTPS, the SSL host must be configured as a virtual host. Add the lines that follow to the SSL Virtual Hosts section of ssl.conf if they are not already there. These lines ensure that the single sign-on login module in OC4J_SECURITY is invoked when a user logs in to the SSL host.
    <VirtualHost ssl_host:port>
    RewriteEngine on
    RewriteOptions inherit
    </VirtualHost>
    Save and close the file.
    7.     Update the distributed cluster management database with the changes:
    ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct ohs
    8.     Restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl stopproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl startproc process-type=HTTP_Server
    9.     Verify that you have enabled the single sign-on middle tier for SSL by trying to access the OracleAS welcome page, using the format https://host:ssl_port.
    Reconfigure the Identity Management Infrastructure Database
    Change all references of http in single sign-on URLs to https within the identity management infrastructure database. When you change single sign-on URLs in the database, you must also change these URLs in the targets.xml file on the single sign-on middle tier. targets.xml is the configuration file for the various "targets" that Oracle Enterprise Manager monitors. One of these targets is OracleAS Single Sign-On.
    1.     Change Single Sign-On URLs
    Run the ssocfg script, taking care to enter the command on the computer where the single sign-on middle tier is located. Use the following syntax:
    UNIX:
    $ORACLE_HOME/sso/bin/ssocfg.sh protocol host ssl_port
    Windows:
    %ORACLE_HOME%\sso\bin\ssocfg.bat protocol host ssl_port
    In this case, protocol is https. (To change back to HTTP, use http.) The parameter host is the host name, or server name, of the Oracle HTTP listener for the single sign-on server.
    Here is an example:
    ssocfg.sh https login.acme.com 4443
    2. Restart OC4J_SECURITY instance and verify the configuration
    To determine the correct port number, examine the ssl.conf file. Port 4443 is the port number that the OracleAS installer assigns during installation.
    If you run ssocfg successfully, the script returns a status 0. To confirm that you were successful, restart the OC4J_SECURITY instance:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Then try logging in to the single sign-on server at its SSL address:
    https://host:ssl_port/pls/orasso/
         3. Back up the file targets.xml:
    cp ORACLE_HOME/sysman/emd/targets.xml ORACLE_HOME/sysman/emd/targets.xml.backup
    4. Open the file and find the target type oracle_sso_server. Within this target type, locate and edit the three attributes that you passed to ssocfg:
    ·     HTTPMachine—the server host name
    ·     HTTPPort—the server port number
    ·     HTTPProtocol—the server protocol
    If, for example, you run ssocfg like this:
    ORACLE_HOME/sso/bin/ssocfg.sh http sso.mydomain.com:4443
    Update the three attributes this way:
    <Property NAME="HTTPMachine" VALUE="sso.mydomain.com"/>
    <Property NAME="HTTPPort" VALUE="4443"/>
    <Property NAME="HTTPProtocol" VALUE="HTTPS"/>
    5.Save and close the file.
    6.     Reload the OracleAS console:
         ORACLE_HOME/bin/emctl reload
    7. Issue these two commands:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Registering mod_osso
    1.     This command sequence that follows shows a mod_osso instance being reregistered with the single sign-on server.
    $ORACLE_HOME/sso/bin/ssoreg.sh
         -oracle_home_path $ORACLE_HOME
         -config_mod_osso TRUE
         -mod_osso_url https://myhost.mydomain.com:4443
    2.     Restarting the Oracle HTTP Server
    After running ssoreg, restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    Configuring the Single Sign-On System for Certificates
    1.     Configure policy.properties with the Default Authentication Plugin
    Update the DefaultAuthLevel section of the policy.properties file with the correct authentication level for certificate sign-on. This file is at ORACLE_HOME/sso/conf. Set the default authentication level to this value:
    DefaultAuthLevel = MediumHighSecurity
    Then, in the Authentication plugins section, pair this authentication level with the default authentication plugin:
    MediumHighSecurity_AuthPlugin = oracle.security.sso.server.auth.SSOX509CertAuth
    2.     Restart the Single Sign-On Middle Tier
    After configuring the server, restart the middle tier:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Bringing the SSO Users to OCA User Certificate Request URL
    The OCA server reduces the administrative and maintenance cost of provisioning a user certificate. The OCA server achieves this by authenticating users by using OracleAS SSO server authentication. All users who have an Oracle AS SSO server account can directly get a certificate by using the OCA user interface. This reduces the time normoally requidred to provision a certificate by a certificate authority.
    The URL for the SSO certificate Request is:
    https://<Oracle_HTTP_host>:<oca_ssl_port>/oca/sso_oca_link
    You can configure OCA to provide the user certificate request interface URL to SSO server for display whenever SSO is not using a sertificate to authenticate a user. After the OracleAS SSO server authenticates a user, it then display the OCA screen enabling that user to request a certificate.
    To link the OCA server to OracleAS SSO server, use the following command:
    ocactl linksso
    opmnctl stoproc type=oc4j instancename=oca
    opmnctl startproc type=oc4j instancename=oca
    You also can use ocactl unlinksso to unlink the OCA to SSO.

    I have read the SSO admin guide, and performed the steps for enabling SSL on the SSO, and followed the steps to configure mod_osso with virtual host on port 4443 as mentioned in the admin guide.
    The case now is that when I call my form (which is developed by forms developer suite 10g and deployed on the forms server which is SSO enabled) , it calls the SSO module on port 7777 using http (the default behaviour).
    on a URL that looks like this :
    http://myhostname:7777/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    and gives the error :
    ( Forbidden
    You don't have permisission to access /sso/auth on this server at port 7777)
    when I manually change the URL to :
    https://myhostname:4443/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    the SSO works correctly.
    The question is :
    How can I change this default behaviour and make it call SSO on port 4443 using https instead ?
    Any ideas ?
    Thanks in advance

  • I just got a fc7 yamaha expression pedal and can't figure out how to configure it with mainstage or logic.

    I just got a fc7 yamaha expression pedal and can't figure out how to configure it with mainstage or logic.  I'm using a Gio pedal.

    Hi
    You will need to map the "Expression Pedal" to the Waa pedal. There are several ways you could do it, here's one:
    In Layout Mode, add a Pedal Screen control, and Assign it to the in-coming MIDI from the GiO.
    In Edit mode, select the Screen Control, and click the "Map Parameter" button. While this is active click on the Wah pedal in the PedalBoard plugin. Turn off 'Map Parameter".
    CCT

  • How to use SSO with Forms application

    Can somebody explain, how can we configure the SSO with Forms application.
    I have two application server instances. One for infrastructre and Other for application.
    Thanks

    Have a look at http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsso.pdf and http://download-uk.oracle.com/docs/cd/B14099_19/web.1012/b14032/sso.htm#i1006721

  • How to configure sync with my local ftp server?

    I have used XMarks since now because it hallow me to synchronize my bookmarks with my local server. Now XMarks don't work anymore because it's not more possible to synchronize the passwords.
    Any other alternative imposes to use an external server and I don't want to use an external server. My data must remain on my machine it's absolutely excluded that i use an external unknown server for this.
    The only solution must be a free solution (a real free solution) and the firefox synchronization seems to me the best/only one.
    But I've not found how to configure it to use my own server.
    So how to do it, where are the options to the synchronizer to give my own ftp server or whatever other server it needs?

    iAS 6.0 sp4 officially does only support iPlanet Directory Server 5.0 sp1 and 4.13.
    For more details visit: http://docs.iplanet.com/docs/manuals/ias/60/sp4/ig/prep.htm#42084
    I guess, you can specify the directory server during the time of installation.
    Thanks,
    Rakesh.

  • Configure SSO with CAS for calendar

    Hello
    i try to configure SSO Calendar through communications servers trusted circle technology. I configure ics.conf :
    sso.appid = "ics50"
    sso.appprefix = "ssogrp1"
    sso.cookiedomain = ".univ.fr"
    sso.enable = "1"
    sso.singlesignoff = "true"
    sso.userdomain = ".univ.fr"
    sso.ics50.url = "http://pipeau.univ.fr/socp/verifySSO.jsp?"
    and then I restart Calendar. pipeau is my CAS/LDAP/tomcat server.
    When I launch http://solaris.univ.fr (my calendar server) in my web browser,
    there is no request to pipeau (http://pipeau.univ.fr/socp/verifySSO.jsp?) in order to find a valid cookie.
    Thank for your help
    hugo

    I have others informations to give you
    I have a correct cookie in my favorite web browser when I was authenticated.
    .univ.fr||/||ssogrp1-ics50||SOT-zvAdApsYTyTibGDZud06UZIb3EzK5NQ8W9bOghQHaDzpMtmhiC||false||0
    When I test my verifySSO.jsp with IP adress of my computer ( http://pipeau.univ.fr/socp/verifySSO.jsp?client=xxx.xxx.xxx.xxx), I get this :
    fquid=my_login
    authtype=plaintext
    My calendar server doesn't seem to test if I am already logged with SSO.
    Any ideas ?
    Hugo

  • How to configure channels with Spring-Flex?

    Newbie here trying to get my first Flex/BlazeDS app up and running.   I'm using the Spring-Flex integration and believe I have properly configured my servet and remoting destinations.  My only remaining questions relate to how to configure the channels.
    The use of the Spring/BlazeDS integration means that I do not have to have a remoting-config.xml file anymore.  But it the documentation is unclear as to whether I need to configure my channels within a services-config.xml file still.
    If I do need a services-config.xml file (and I think I do), how does one get away without hard coding the server URL?  I've seen samples on the web like:
    url="https://\{server.name\}:\{server.port\}/flex2gateway/cfamfsecure"
    But I don't get when/where/what does the dynamic substituion?  They almost look like Maven or Spring properties, but they can't be.  Is this just something that has to be manually changed after installation?
    Finally, I really don't like the idea of compiling the Flex client against a server-side configuration file as I have seen suggested on the web.  How would one go about have the Flex client discover - or otherwise figure out what it needs to do dynamically?
    Sorry for the multi-question post....thanks for any help!

    You could load that info from an XML file as described below. I took this from the doc.
    To further externalize configuration, you can pass the endpoint URL value to the client at runtime. One way to do this is by reading a configuration file with an HTTPService component at application startup. The configuration file includes the information to programmatically create a channel set at runtime. You can use E4X syntax to get information from the configuration file.
    The following MXML application shows this configuration file technique:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        applicationComplete="configSrv.send()">
        <mx:Script>
        <![CDATA[
        import mx.controls.Alert;
        import mx.messaging.channels.AMFChannel;
        import mx.messaging.ChannelSet;
        import mx.rpc.events.ResultEvent;
        private var channelSet:ChannelSet;
        private function configResultHandler(event:ResultEvent):void
            var xml:XML = event.result as XML;
            var amfEndpoint:String = "" + xml..channel.(@id=="amf").@endpoint;
            if (amfEndpoint == "")
                Alert.show("amf channel not configured", "Error");
            else
                channelSet = new ChannelSet();
                var channel:AMFChannel = new AMFChannel("my-amf", amfEndpoint);
                channelSet.addChannel(channel);
                ro.channelSet = channelSet;
                ro.getProducts();
        ]]>
        </mx:Script>
        <mx:HTTPService id="configSrv" url="config.xml" resultFormat="e4x" result="configResultHandler(event)"/>
        <mx:RemoteObject id="ro" destination="product"/>
        <mx:DataGrid dataProvider="{ro.getProducts.lastResult}" width="100%" height="100%"/>
    </mx:Application>
    The MXML application reads the following configuration file:
    <?xml version="1.0" encoding="utf-8"?>
    <config>
        <channels>
            <channel id="amf" endpoint="http://localhost:8400/lcds-samples/messagebroker/amf"/>
        </channels>
    </config>

  • How to configure network with just 1 ethernet adapter?

    I was looking for a guide which would talk about how to configure your network in case if you have only 1 Ethernet adapter. Is it mandatory to have more than 1 network card to configure multiple ports? If not, what are the options available to deploy a Virtual Machine that can have applications which are available over the network. I don't have a separate network i.e. public network as well as management network is of same IP range.
    I am having 2 node cluster using NFS for pools as well as repository.
    ~Yagnesh

    yagneshg wrote:
    I was looking for a guide which would talk about how to configure your network in case if you have only 1 Ethernet adapter. Just enable the "Virtual Machine" role on the Management network that is automatically connected. You will then be able to add guest vNICs to the same network.
    I am having 2 node cluster using NFS for pools as well as repository. I strongly recommend you get at least one more physical NIC for your server, if not two: running NFS and the cluster heartbeat and the guest traffic all over the same network is going to put a lot of data down the wire and you may land up in a situation where the cluster traffic is overwhelmed and a node reboots. You need to be very careful in this situation. Network cards are cheap and you should have at least two or three, I reckon.

  • How to configure SSO for WAS Java stack

    Hi all,
    I want to configure our WAS server with java stack as a SAP ticket issuing system. This system does not have Portal installed on it.
    I want to know weather it is possible or not. if possible how it can be done.
    actually ABAP stack their are transaction like SSO2,SSO to do the task. but what about WAS with Java stack?
    Thank all.

    HI Kumar
    Follow this link.
    http://help.sap.com/saphelp_nw04/helpdata/en/53/695b3ebd564644e10000000a114084/frameset.htm
    Hope this helped you
    Reagrds,
    RK

  • How to configure SSO for web dynpro ABAP (not web dynpro Java)

    Hi Experts,
        I am testing SSO in IDES for web dynpro ABAP (Not for web dynpro Java / not for portal). When I am entering url of web dynpro application in web browser like internet explorer, then it should ask for user id and password first time, after login whenever user would access that url, it must not ask for user ID and password (url would be access web browser in mobile). For this I select to configure single sign-on for web dynpro ABAP. I have done below works:
    1). I have created a web dynpro application having url: http://susws076.sap.swk:<port>/sap/bc/webdynpro/sap/zadb_hello_world2
    2). I run TCode SICF and access service node to "Zadb_hello_world2". Double click on it, hit change. pressed "logon data" tab, select "Alternative logon
         procedure"
       Then deleted all logon procedure other than "SSO Authentication" and saved.
    3). Go to "STRUST" and create certificate, choosed "Environment==> Logon Ticket" fill the required parameters and execute. It is OK (no red traffic
         signal).
    4). Execute TCode "RZ10" to change profile parameter, insert new parameter (indicated by red arrow)
    After all this settings I opened a browser enter above URL and hit enter but there is an error
    There is no login page. It directly showed this error page. No cookies is saving.
    Can anyone tell me what all the settings/configuration other than this I have to do. And is there any wrong setting done by me?
    How to set the for single sign-on?
    Thanks in Advance
    Regards
    Piyush

    Hi Piyush,
    Pls refer below links,
    Single Sign On with ABAP WebDynpro
    http://help.sap.com/saphelp_nw70ehp2/helpdata/en/5e/6c85c3edf942f39349a1e337434d29/content.htm
    Regards
    K.N

  • How to use pack200 with IIS?

    I am trying to set up a Java applet that uses the Batik SVG Viewer library, which is several MB in size. In order to speed up downloads, I would like to compress the library with pack200, but there's one problem: I don't know what to do with the servlet on the deployment guide page (http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/pack200.html) because I've never used servlets before. I found a page with instructions as to how to set up pack200 without a servlet in Apache (http://joust.kano.net/weblog/archive/2004/10/16/pack200-on-apache-web-server/) but this isn't much help because my Web server uses IIS. Could someone please explain to me how to do what is done on the Apache tutorial page in IIS, or at least how to get pack200 working at all, by any method, on an IIS server?

    Did you actually get IIS to serve up pack200 jars? I have been struggling to get IIS to do this. Most of the information I found by googling indicates that it may not be possible unless you deploy a servlet and use JNLP. I have an applet (not currently deployed with JNLP) and I configured IIS with the appropriate MIME type (.jar.pack.gz application/x-java-pack200) and I enabled http compression of static and application files. I also did the http header adjustment you mentioned previously, with no luck. Your help would be greatly appreciated.

  • How to configure MQ with WLS (JMS MQ vs Native MQ)

    Hi All,
    SOA Suite = 11.1.3.3
    MQ Series = 6.0
    Jdeveloper = 11.1.3.3
    I want to read/write data to an MQ which is setup on a physical box different from Weblogic Server box. But both systems fall under the same network. I did some research on the forums to know the steps to configure MQ but ultimately got confused with the following questions in mind.
    1. What is the difference between JMS MQ and Native MQ? How to determine which one to use?
    2. If native MQ can be used here, what are the steps to configure Native MQ on WLS in my situation?
    3. Do I need any foreign servers or message bridges to be configured?
    Please provide any directions or pointers.
    Regards,
    Neeraj Sehga

    1. What is the difference between JMS MQ and Native MQ? How to determine which one to use?Native MQ refers to a proprietary api provided by IBM in multiple languages including java so that applications running on these can communicate mq. IBM also provides JMS wrappers around this native api, so that a jms client can talk to mq using JMS API. This is called MQ JMS.
    2. If native MQ can be used here, what are the steps to configure Native MQ on WLS in my situation?SOA suite provides a MQ Resource Adaptor which can be used to connect to MQ. The developers of this resource adapter would have used the native api to enable the adaptor to talk to MQ, so that you dont have to worry about it. However you will need to configure the properties of your local MQ ( qmgr , q name etc). This is done in the outbound connection pool properties of the resource adaptor.
    please check this blog for how to do this : http://soa-bpel-esb.blogspot.com/2009/09/configuring-mq-in-11g-soa-suite.html.
    Since your MQ installation is in a remote machine you will have to configure the following properties specific to your environment - hostname, port, server connection channel, along with the queue manager name and queue name
    3. Do I need any foreign servers or message bridges to be configured?Not required for your case if you are using MQ Adaptor. Since MQ also provides a JMS transport , you would have required foreign servers if you have to use JMS Adaptor instead of MQ Adaptor. Native MQ is expected to be faster than MQ JMS as it doesn't have the extra JMS layer.

  • How to configure WebLogic with WebCenter¿?

    Hi,
    I have created 2 machines:
    - WebCenter in Oracle Linux with a database.
    - WebLogic Server in Oracle Linux too.
    From WebLogic Server I have to connect with WebCenter database, and I am not sure how to do it.
    I have tried to do it with:
    <WL_HOME>/common/bin/config.sh
    And I selected to create a new domain or create from an existing template (wls.jar), but with two options the wizard doesn't show me the JDBC configurations options.
    So, from WebLogic Server Admin Web in the Domain Structure there is JDBC, from here I think I can do it.
    But here is my doubt, if I want to work with JD Edwards EnterpriseOne too, the JDBC should be the JDE's database or webcenter's database¿?
    NOTE:
    with config.sh, after select the option "Create a new WebLogic domain" I need to select Domain Source, in the "Generate a domain configured automatically to support the following products", I only can select this:
    - WebLogic Advanced Web Services Extensions
    - Basic WebLogic Server is checked.
    But I haven't other options as:
    - Oracle WebCenter Spaces
    - Oracle EnterpriseManager
    - Oracle Portlet Producer
    etc
    Why I can see these options? Because I think that the new domain should be configurated to interact with WebCenter elements.
    Thanks and regards,
    Mónica.

    Hi,
    The configuration wizard (config.sh) lets you create a WebLogic Domain, however and depending on others "Oracle Middleware" products installed on the same "Oracle Home" (directory where weblogic has been installed) the configuration wizard allows you create the new weblogic domain to support the others middleware products such as WebCenter.
    When I say support It means that Configuration Wizard allows you to create the weblogic resources like JDBC connections, JMS services, and deploys all applications that integrates another product such as WebCenter.
    I suggest create your domain with support for WebCenter and then from Admin Console create the JDBC resource to connect to other database such as JD Edwards database.
    I hope this help.

  • How to Configure Workflow with Standard TCODE

    Hello Gurus,
                I am new in Workflow. I have to trigger the workflow on the transaction MM02 on changing Material Plant Status to 41. I have ZECN object. but I am not aware with how this object is trigger on change of Material Status. Please tell me the process of attaching the workflow to standard tcode. With Important Workflow TCODE.
    Thanks,
    Sandeep Thakare

    There are many ways to trigger workflow.
    Example 1) Trigger it from change object.
                  2) From function module or class.
    However, There is no configure to bind the event with transaction code.
    In your case, you can use change document object MATERIAL to trigger a business object BUS1001 event.
    you can use transaction SWEC to trigger the event and use transaction SWETYPV to bind event with workflow.
    for basic workflow go to [SAP Workflow Help|http://help.sap.com/erp2005_ehp_04/helpdata/DE/fd/517b42303e0e53e10000000a155106/frameset.htm].
    Good luck,
    Chaiphon

  • SSHR -- how to configure email with workflow notifications

    Hi,
    I need to send email to the workflow approvers.
    Can you please tellme the steps in setting up the same.

    Pl post details of OS, database and EBS versions.
    Pl see these documents
    How Does One Configure Oracle Applications Workflow Notification Mailer And where Are The Documentat          (Doc ID 1051562.1)
    Configuring the Oracle Workflow 2.6/11i.OWF.H Java-based Notification Mailer with Oracle Application          (Doc ID 268085.1)
    Example Of Configuring Workflow Java Notification Mailer With Oracle Applications 11.5.x          (Doc ID 249957.1)
    How To Troubleshoot Java-based Workflow Notification Mailer          (Doc ID 242941.1)
    Configuring the Oracle Workflow 2.6 Java-based Notification Mailer with Oracle Applications 11i          (Doc ID 231286.1)
    HTH
    Srini

Maybe you are looking for

  • Opening and closing stock at storage location level

    Dear all I need a std report which will give the opening and closing stock at storage location level, Or should I go for dev. if yes please guide me. Regards Samuel

  • I'm looking for a good replacement printer to use with MacBook Pro. I currently have an Epson 610 Series.

    Hi, I've had a MacBook Pro since January 2013 and and Epson 610 series printer-scanner-fax for several years. I may be replacing the printer. For my purposes (printing some articles from the internet, Word documents, book reports, and some PHOTO QUAL

  • Image size from header

    Hi, I'm trying to extract image size from header for PNG, JPG, TIFF, BMP and GIF files. So far I got PNG working. I'm having problems finding size info for JPG files. Anyone knows where I can read about it (i didnt find nothing on google) or have the

  • Is there a keyboard that works?

    I run both Leopard and Windows on the iMac and I use both regularly. The keyboard issues are about to run me nuts! I am sorry but I love my big, natural microsoft keyboard. It works fine but of course no shortcuts work with the Apple side. I sold the

  • Cannot install iTunes 10

    Today, my iTunes didn't start, so I uninstalled it. My problem is, that when I try to reinstall it, it freezes at "registering iTunes automatic server". I've already used Google, some forums and the search in this forum, but nothing really helps me.