BPM Integration with SQL Authenticator Provider in WebLogic

Hi Gurus,
Related to the explanation from this blog : http://orasoa.blogspot.com/2010/06/sqlauthenticator-and-human-worklist.html
I have followed this review, I can see all user and groups from sql authenticator provider.
And also I can assign bpm application roles to users from sql authenticator provider.
But when I try to assign bpm application roles to groups from sql authenticator provider, the bpm application is not show from bpm workspace.
Is there any clue to solve this problem?
Cheers,
Agus W

Hi All,
Found the reason for the exception. I was implementing the generated the CustomAuthenticatorImpl class (generated through WebLogic MBeanMaker utility) as the provider class by implementing the AuthenticationProvider interface. Keeping them separate solved the issue.
Able to create the jar without any issues and also no error or exception after restart.
Thanks.

Similar Messages

  • Problem with SQL Authenticator and SOA EM console.

    Hi,
    In my project, i have a need to authenticate USERS from data base tables. To acheve this i defined SQL Authenticator, inside the weblogic admin console.But, problem is after this, when i login to EM console of SOA, then, in the home page, it is showing all deployments as DOWN sate, including SOA-INFRA. But, i am able to deploy BPEL project and execute it normally. Why EM console is showing all deployments and soa-infra as down?.
    Thanks,
    Naga.
    Edited by: 984573 on Feb 5, 2013 9:56 PM

    Hi Anuj & Nicolas,
    Thanks for your reply.
         Really wonder, i found the solution. This is the problem with order of Authentication provider. If i put the "SQL Authenticator" in the top of the order as the first item in the list, then i am facing the above error in EM console. Now, i re-ordered the "SQL Authenticator" and keep it last in the list. Now, SOA EM console is working fine. I really do not understand, what is the significance of the order of Authentication provider.
    Thanks for your help.
    Regards,
    Naga.

  • SQL Authentication provider - create tables script

    Hi all!
    I'd like to use SQL Authentication provider for my Web application. I cannot find the script for creating users/roles tables used by the provider.
    Can you suggest me a link where I can download them ?
    Thanks
    Frank

    Hi Frank,
    Configure SQL authenticator:
    Start Oracle XE DB and open SQL propmt to execute below commands:
    CREATE TABLE USERS (
    U_NAME VARCHAR(200) NOT NULL,
    U_PASSWORD VARCHAR(50) NOT NULL,
    U_DESCRIPTION VARCHAR(1000))
    ALTER TABLE USERS
    ADD CONSTRAINT PK_USERS
    PRIMARY KEY (U_NAME)
    CREATE TABLE GROUPS (
    G_NAME VARCHAR(200) NOT NULL,
    G_DESCRIPTION VARCHAR(1000) NULL)
    ALTER TABLE GROUPS
    ADD CONSTRAINT PK_GROUPS
    PRIMARY KEY (G_NAME)
    CREATE TABLE GROUPMEMBERS (
    G_NAME VARCHAR(200) NOT NULL,
    G_MEMBER VARCHAR(200) NOT NULL)
    ALTER TABLE GROUPMEMBERS
    ADD CONSTRAINT PK_GROUPMEMS
    PRIMARY KEY (
    G_NAME,
    G_MEMBER
    ALTER TABLE GROUPMEMBERS
    ADD CONSTRAINT FK1_GROUPMEMBERS
    FOREIGN KEY ( G_NAME )
    REFERENCES GROUPS (G_NAME)
    ON DELETE CASCADE
    Generally customers can add users directly in DB with help below commands:
    insert into USERS (U_NAME,U_PASSWORD,U_DESCRIPTION) values('system','weblogic','admin user');
    insert into GROUPS (G_NAME,G_DESCRIPTION) values('Administrators','Administrators');
    insert into GROUPMEMBERS (G_NAME,G_MEMBER) values('Administrators','system');
    But in this case password is not encrypted so either you can add users via console or via WLST script to store them in encrypted form.
    We had executed above commands just to verify user which is directly stored in DB gets authenticated properly or not from SQL authenticator configured as below
    Now start weblogic admin server and access console to create Data source by navigating Services ->JDBC -> Data sources
    Create Data source named SqlDS
    JNDI: SqlDS
    DB type: Oracle
    DB Driver: Oracle Thin XA driver
    DB name: XE
    DB host: <hostname>
    Port: 1521
    DB user: <username>
    DB password: <password>
    Keep rest of the configuration same and click on test Configuration. If its successful click on next and target it to "AdminServer"
    Click on Finish and activate chnages
    Now navigate to Security Realms -> myrealm -> Providers
    Click on New and provide Name as SqlAuthenticator and select Type as SQLAuthenticator
    Now click on newly created provider and make Control Flag as "Sufficient"
    Navigate to provider specific page:
    1. Check on Plaintext Passwords Enabled.
    2. Provide Data source Name: SqlDS
    Keep rest of the parameters as it is and Save this configuration. It will ask you to restart Admin server.
    Now again navigate Security Realms -> myrealm -> Users & groups
    Check user which was created directly in DB is listed in table with SqlAuthenticator, Once its listed go ahead and add users as below
    B. Cretae users using Admin console:
    Login to Admin console
    Navigate to Security Realms -> myrealm -> Users & groups
    Click on users tab and try creating new user
    User name: <user name>
    Select Authentication provider: SqlAuthenticator
    User Password: <password>
    Once user is created check DB table, this user musted be added with encypted password
    C. Create multiple users using WLST script:
    Navigave to $DOMAIN_HOME/bin folder and execute setDomainEnv file as below:
    Unix: . ./setDomainEnv.sh (Do not forget to put two dots before / )
    Windows: setDomainEnv.cmd
    Now change below script as per your environment and execute as suggested in step 3:
    connect('weblogic','weblogic123','t3://localhost:7001')
    edit()
    startEdit(-1,-1,'false')
    serverConfig()
    cd('/SecurityConfiguration/base_domain/Realms/myrealm/AuthenticationProviders')
    ls()
    cd('SqlAuthenticator')
    cmo.createUser('vaishali','weblogic123','SQLuser')
    cmo.createUser('pavashe','weblogic123','SQLuser')
    edit()
    stopEdit('y')
    NOTE: Change user,password and ADMIN_URL in 1st line.
    Replace domain name " base_domain' with your domain name in line no: 5
    Chnage SQL authenticator name in line no: 6 as per your authenticator name
    Next lines create users. You need to add however users you need to create programatically.
    Syntax : cmo.createUser('user_name','user_password','user_description')
    Now save these commands in a file with extention .py and execute as below:
    # java weblogic.WLST create_user.py
    If your script fails the try executing each command separately. For this start WLST session as below:
    # java weblogic.WLST
    Now execute commands specified in above script. You will be able to debug if anything went wrong while executing script.
    Regards,
    Kal

  • How to remove custom authentication provider in weblogic server 11g

    Hi ,
    I am trying to remove the custom authentication provider in weblogic server 11g, It disappears when i delete it from list of authentication providers. But upon server restart it appears again.
    Documentation for 10g says delete it from service administration but i couldn't find one in 11g. Please help me in removing the custom authentication provider
    Thanks
    Sandeep

    You can try editing the config.xml file and removing it there. (Re: After provider reorder I cannot login admin server console
    If you are referring to a jar file - custom authenticators are usually placed in the <middleware-home>wlserver_10.3/server/lib/mbeantypes/ directory.

  • BPM integration with BRM

    Hi All,
    I am looking for a blog for complete scenario which includes business rules used in BPM,that is ,complete STEP BY STEP blog for BPM integration with BRM.Searched a lot but finding either BPM or BRM or BRM already created without mentioning steps and imported in BPM process.
    Can you help me with a complete blog for BPM integration with BRM STEP BY STEP blog?
    Thanks in advance

    Hi,
    Please check if the below articles are useful
    http://scn.sap.com/thread/3446620
    http://scn.sap.com/docs/DOC-47066
    http://scn.sap.com/docs/DOC-4588
    Regards,
    Sriram

  • BPM integration with BRM step by step

    Hi All,
    I am looking for a blog for complete scenario which includes business rules used in BPM,that is ,complete STEP BY STEP blog for BPM integration with BRM.Searched a lot but finding either BPM or BRM or BRM already created without mentioning steps and imported in BPM process.
    Can you help me with a complete blog for BPM integration with BRM STEP BY STEP blog?
    Thanks in advance

    Hi,
    Please check if the below articles are useful
    http://scn.sap.com/thread/3446620
    http://scn.sap.com/docs/DOC-47066
    http://scn.sap.com/docs/DOC-4588
    Regards,
    Sriram

  • Login issue with sql Authentication

    I create my login with read only sql Authenticator. I made my login through weblogic console. Enable ADF security and specify Authentication welcome given by through system.(Aplication->secure->configure ADF security).
    all of my users and roles are in db table. I am using oracle ADF 11 g 2 release and oracle db 10g.
    now after I log to the system. my log file display following error.
    is it error? I am not used LDAP. pls help me regarding below matter....
    Target URL -- http://localhost:7101/Librarywork-ViewController-context-root/login.html
    <JpsIdentityManagementProvider> <getIdmUserList> WARN_NO_USERS_PATTERN
    oracle.security.idm.ObjectNotFoundException: No User found matching the criteria
         at oracle.security.idm.providers.stdldap.util.DirectSearchResponse.initSearch(DirectSearchResponse.java:173)
         at oracle.security.idm.providers.stdldap.util.NonPagedSearchResponse.<init>(NonPagedSearchResponse.java:53)
         at oracle.security.idm.providers.stdldap.util.NonPagedSearchResponse.<init>(NonPagedSearchResponse.java:44)
         at oracle.security.idm.providers.stdldap.util.LDAPRealm.searchUsers(LDAPRealm.java:489)
         at oracle.security.idm.providers.stdldap.LDIdentityStore.search(LDIdentityStore.java:272)
         at oracle.security.idm.providers.stdldap.LDIdentityStore.searchUsers(LDIdentityStore.java:365)
         at oracle.adf.share.security.providers.jps.JpsIdentityManagementProvider.getIdmUserList(JpsIdentityManagementProvider.java:505)
         at oracle.adf.share.security.providers.jps.JpsIdentityManagementProvider.getUserProfileList(JpsIdentityManagementProvider.java:386)
         at oracle.adf.share.security.identitymanagement.UserManager.getUserProfileList(UserManager.java:314)
         at oracle.adf.share.security.identitymanagement.UserProfile.initialize(UserProfile.java:91)
         at oracle.adf.share.security.identitymanagement.UserProfile.<init>(UserProfile.java:81)
         at oracle.adf.share.security.providers.jps.JpsSecurityContext.getUserProfile(JpsSecurityContext.java:115)
         at oracle.adf.share.ADFContext.getEnterpriseId(ADFContext.java:850)
         at oracle.adfinternal.controller.util.LogUtils.getApplicationName(LogUtils.java:392)
         at oracle.adfinternal.controller.util.LogUtils.gotApplicationName(LogUtils.java:384)
         at oracle.adfinternal.controller.util.LogUtils.getTimer(LogUtils.java:161)
         at oracle.adfinternal.controller.util.LogUtils.getTimer(LogUtils.java:209)
         at oracle.adfinternal.controller.metadata.MetadataServiceImpl.initializePageFlow(MetadataServiceImpl.java:374)
         at oracle.adfinternal.controller.metadata.MetadataServiceImpl.getPerUserCache(MetadataServiceImpl.java:355)
         at oracle.adfinternal.controller.metadata.MetadataServiceImpl.getPerUserCache(MetadataServiceImpl.java:324)
         at oracle.adfinternal.controller.metadata.MetadataServiceImpl.getAdfPageFlow(MetadataServiceImpl.java:180)
         at oracle.adfinternal.controller.metadata.MetadataServiceImpl.getPageFlow(MetadataServiceImpl.java:435)
         at oracle.adfinternal.controller.metadata.MetadataServiceImpl.getActivity(MetadataServiceImpl.java:169)
         at oracle.adfinternal.controller.state.ViewPortContextImpl.getPhysicalURI(ViewPortContextImpl.java:1104)
         at oracle.adfinternal.controller.application.AdfcPageResolver.getPhysicalURI(AdfcPageResolver.java:75)
         at oracle.adf.controller.faces.lifecycle.Utils.getPagePathFromViewId(Utils.java:44)
         at oracle.adfinternal.controller.application.model.UpdateBindingListener.setBindingELVariable(UpdateBindingListener.java:108)
         at oracle.adfinternal.controller.application.model.UpdateBindingListener.beforePhase(UpdateBindingListener.java:61)
         at oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper.beforePhase(ADFLifecycleImpl.java:550)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchBeforeEvent(LifecycleImpl.java:100)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchBeforePagePhaseEvent(LifecycleImpl.java:147)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$PhaseInvokerImpl.dispatchBeforePagePhaseEvent(ADFPhaseListener.java:119)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.beforePhase(ADFPhaseListener.java:63)
         at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.beforePhase(ADFLifecyclePhaseListener.java:44)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:324)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:207)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:508)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    <ViewHandlerImpl> <_checkTimestamp> Apache Trinidad is running with time-stamp checking enabled. This should not be used in a production environment. See the org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml
    <UIXEditableValue> <_isBeanValidationAvailable> A Bean Validation provider is not present, therefore bean validation is disabled
    thks.
    thisu..

    This is not error(just wrong log level in one of adf libraries)
    If you don't want to see this message, change log level for oracle.adf.share.security to SEVERE
    You can do that form Enterprise Manager(but you probably don't have that on integrated WLS) or from Weblogic Scripting Tool(WLST), something like this:
    setLogLevel(target=<servername>,logger="oracle.adf.share.security",level="SEVERE", addLogger=1)Dario

  • Authentication Provider in WebLogic 7.0

    Hi
    I am trying to understand the Security Frame-work in WLS 7.0.
    I found out that WLS 7.0 uses embedded LDAP server to store users information. It also supports external LDAP. But for our application, I want to keep users info in a database.
    Is there any suggestion to solve this problem. Do I need to create my own Authentication Provider? or is there any other way to do this?
    I will appreciate any help
    Thanks
    Virender Sandhu

    does anybody know where a production ready copy of rdbmls realm is on the
    net? I did a search and didnt find much?
    thanks
    Joel
    "PaulF" <[email protected]> wrote in message
    news:[email protected]..
    Virender Sandhu <[email protected]> wrote in
    news:3cdab13c$[email protected]:
    Hi
    I am trying to understand the Security Frame-work in WLS 7.0.
    I found out that WLS 7.0 uses embedded LDAP server to store users
    information. It also supports external LDAP. But for our application,
    I want to keep users info in a database. Is there any suggestion to
    solve this problem. Do I need to create my own Authentication
    Provider? or is there any other way to do this?
    I will appreciate any help
    Thanks
    Virender Sandhu
    I think that you have two choices: 1) you can configure a Compatibility
    Realm, take the RDBMS example, tweak it so that it is production ready (or
    grab a production ready copy from someplace out on the net...I think
    they're out there), or 2) create your own provider that talks directly to
    your database.
    Paul F.

  • Development integration with SQL*Forms

    Dear All:
    I do work for Intergraph and have a custommer who is asking about any development (like an OCX) for developing SQL*Forms with the help of that OCX (or whatever available tool) from the inside of our "object oriented Automation Server" called Geomedia, which is a GIS (geographic information system). The thing is that they want to use SQL*Forms from Geomedia in order to develop and customize the interface of their tabular data capture modules, keeping the aspect of their outside (standalone) system, developed with SQL*Forms. Is it possible? Is there any thing available for that?
    Thanks in advance for your help and comment,
    Gilberto Chavez.
    Intergraph MEXICO.

    Wolfram,
    I think the answer to your question is going to be no, but can you explain your requirements in detail? I don't understand what you want to do.
    Scott

  • ORACLE BPM - Integration with BI

    We have to integrate Oracle BPM with SAP-BI. Does Oracle BPM provide any adapters to connect to staging tables.
    ThankYou!

    before importing delete / rename PublicReportService under business services, and also delete/rename all the IO for project XMLP Integration. Make sure there are no other Siebel repositories existing except Siebel Repository (no backups). Then import the WSDL.

  • Crystal reports integration with sql server and visual studio 2010

    when I am trying to open a crystal report  through code ( visual basic 2010 ) I get the error
    the report has no tables
    I am using SQL SERVER 2008 R2
    HERE IS THE CODE I WROTE 
    Imports System.Data
    Imports System.Data.OleDb
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Windows.Forms
    Imports CrystalDecisions.Shared
    Public Class frmRep
        Dim objConnection As New OleDbConnection("Provider=SQLOLEDB;Data Source=ASHRAF-PC\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=TEST")
        Dim objDataAdapter As New OleDbDataAdapter()
        Dim objDataSet As New DataSet()
        Private Sub CrystalReportViewer1_Load(sender As System.Object, e As System.EventArgs) Handles CrystalReportViewer1.Load
        End Sub
        Private Sub frmRep_Load(sender As Object, e As System.EventArgs) Handles Me.Load
            Dim cr As New ReportDocument
            objDataAdapter.SelectCommand = New OleDbCommand()
            objDataAdapter.SelectCommand.Connection = objConnection
            objDataAdapter.SelectCommand.CommandType = CommandType.Text
            objDataAdapter.SelectCommand.CommandText = "select * from bands"
            objConnection.Open()
            objDataAdapter.Fill(objDataSet, "bands")
            objConnection.Close()
            cr.Load("D:\MY VB 2010 PROJECTS\test2\test2\CrystalReport1.rpt")
            cr.SetDataSource(objDataSet.Tables("bands"))
            CrystalReportViewer1.ReportSource = cr
            CrystalReportViewer1.Refresh()
        End Sub
    End Class

    I suggest you post that question in a Crystal Reports forum.
    Markus

  • BPM integration with UCM(universel Content Mgmt)

    Hi,
    I'm working with BPM , in my project there is a requirement.
    to the human task there is a need to attach more than 2mb file.
    i came to know that which is possible by integrating bpm with UCM repository.
    could any one help me to integrate BPM with UCM.
    Thanks and Regards,
    Rajendar.

    Hi Rajendar,
    You can increase the maximum UCM file upload size and temporary storage size to 5mb by adding these additional parameters in your web.xml file:
    <context-param>
        <!-- Maximum memory per request (in bytes) -->
        <param-name>oracle.adf.view.faces.UPLOAD_MAX_MEMORY</param-name>
        <!-- Use 500K -->
        <param-value>512000</param-value>
    </context-param>
    <context-param>
        <!-- Maximum disk space per request (in bytes) -->
        <param-name>oracle.adf.view.faces.UPLOAD_MAX_DISK_SPACE</param-name>
        <!-- Use 5mb -->
        <param-value>5120000</param-value>
    </context-param>
    <context-param>
        <!-- directory to store temporary files -->
        <param-name>oracle.adf.view.faces.UPLOAD_TEMP_DIR</param-name>
        <!-- Use an ADFUploads subdirectory of /tmp -->
        <param-value>/tmp/ADFUploads/</param-value>
    </context-param>Dan

  • UCCX 8.0 database integration with SQL Server 2005 Express

    Dear Support Community,
    I need to set up a script to read SQL Server 2005 Express records.
    The SQL Server 2005 Express is compatible with the UCCX 8.0?
    Let me know if you need more information

    Nope, SQL Express is not supported. Please refer the comp matrix here http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_compatibility/matrix/crscomtx.pdf
    Supported Enterprise DBs with UCCX 8.0 are
    Oracle 10g R2, Oracle 10g XE
    Sybase Adaptive Server 12
    IBM DB2 8.2
    MS SQL Server 2000
    MS SQL Server 2005
    MS SQL Server 2008
    HTH
    GP.
    Pls rate helpful posts !!

  • BPM integration with UCM

    Hi,
    Can any one suggest me how to integrate BPM with UCM.
    My requirement is with a human task in BPM i should able to attach a file or document and that particular file should be stored in UCM.
    Thanks & Regards :
    PRAMEELA PADAM

    Hi Nomado,
    yes i configured the UCM.
    I didn't enable any accounts. Please tell me how to enable the accounts.
    This is my Config.cfg file.
    <?cfg jcharset="Cp1252"?>
    #Server System Properties
    IDC_Name=idc
    IdcProductName=idccs
    InstanceMenuLabel=i
    InstanceDescription=Instance 8QDYMV1appsahydcom16200
    SocketHostAddressSecurityFilter=127.0.0.1|0:0:0:0:0:0:0:1|172.16.5.111|*.*.*.*
    #Database Variables
    SystemDatabase:DataSource=CSDS
    SystemDatabase:UseDataSource=true
    #Internet Variables
    HttpServerAddress=172.16.5.209:16200
    MailServer=mail
    SysAdminAddress=[email protected]
    HttpRelativeWebRoot=/cs/
    UseSSL=No
    #General Option Variables
    IsAutoNumber=Yes
    AutoNumberPrefix=8QDYMV1appsahy
    UseAccounts=1
    #Additional Variables
    AllowUpdateForGenwww=1
    registerStartMenuActions=1
    FileEncoding=UTF8
    WebServer=javaAppServer
    IntradocServerPort=4444
    Thanks & Regards
    Pramila Padam
    Edited by: Pramila Padam on Feb 14, 2013 9:39 AM

  • BPM Integration with Java webdynpro

    Hi All,
       I am new in BPM forum . I want to integrate one JWD DC to anather JWD (Java webdynpro) so i need to pass one value to anather Dc using BPM .
    My Scenario is..
      I want to pass one unique value from one component (person who is created the  unique value l) to anther component (to fetch that value from second level in portal ) and showing in Portal work flow  task as LEAVE Request or approval scenario .
    Thanks
    Sudhir

    Hi Sudhir,
    from your explanations it is not completely clear which of the following scenarios applies to you:
    1) Both WebDynpro Components are connected to each other via WebDynpro Component dependencies. This would mean that a user is able to directly navigate from one to the other. A BPM process is not involved at all. In this case, you might consider to use WebDynpro context mapping or passing an URL parameter.
    2) Each WebDynpro Component is assigned to a dedicated BPM Task which again is integrated into a BPM process. Users would open the WebDynpro Components as Tasks from the UWL without a direct navigation between the components. In this case, you have to use a process context and context mapping in BPM to transfer the value between the WebDynpro components.
    Best regards,
    Stefan

Maybe you are looking for

  • Sounds NOT working! Please help!

    I have a ON/OFF switch to sound the music. When the site loads the music plays automatically and if clicked it turns off the music and it works OK, but if I imported a new music file with a different file name and delete the one that worked. I set th

  • Can I use mini dvd's in my new imac?

    Have several movies made with sony mini dvd camcorder, can I put the mini-dvd in the dvd slot of my imac, or will it get stuck? Thanks, Dan

  • ORG UNIT Hierarchy

    Hi All, I am working on a BI side of SAP. At my work place they have defined the ORG_UNIT Hierarchy in the poratl but not in the ECC Box. But there are reports our users are requesting to have a hierachial selection. Since it is not defined in ECC I

  • Automatically place images within multiple InDesign documents

    I work for a publishing company of agricultural trade magazines and work on few titles each month. We are trying to streamline our production procedures and previous company I worked for had a script they used to place images within text pages by sea

  • IS There A Link To Download An Earlier Version of Reader Cannot Get Version X To Install

    I am running a computer with XP Pro SP3 and cannot get version X to install, I keep getting an error code.  I used to have Version 5, I think it was on the computer and wanted to upgrade it.  I deleated that version and cannot get version 10 to insta