Portal Users in one database and Groups is other? portal 9.2

Hi All!
My question is as follows: Is it possible to have portal users stored in one database and groups stored in other database? Also the these are the groups to which the users belongs and groups already exist as part of the current legacy system. I have to create new application and only store users in the new DB and use the groups from the existing legacy system. Does BEA supports that? Also note that these groups are nothing but custom entities and not in BEA's GROUP table. So is there a way I can write some kind of provider which will extend BEA's user-group framework? I am using BEA portal 9.2.
Please help!
Thanks
Sanjay

You can fetch data from multiple lists in ListViewWebpart, this can be possible through Content Query web part or Custom Web Part using visual studio but in that case you can not get the standard SharePoint funcationality for list (which is available in
ListViewWebparts).
No OOB filter available for multi-choice column, you also have to go with custom solution to achieve this.
Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

Similar Messages

  • User clicks one link and goes to other and comes back state maintain prob

    1st say 2 links r there,
    aaa --> if u click on "aaa" (my requirement) as shown below.
    problem : the bean values still maintaining when i go to "bbb" and come back to "aaa".
    ======
    NOTE: when user enters all fields and clicks on button it goes to "second.jsp" their ajax response (1 table) generating. That means page wont get refreshed. (panel is fixed) only down 1 table will generate.
    on FROM DATE AND TO DATE basis.
    if user presses on F5 also state maintaining with the help of bean object.
    i.e, say user in response table clicks on "page 5" then presses on F5 .
    but problem is when user goes to "bbb" link or "ccc" or "dddd" (separate interface or link) which is not related to this
    (they r nearly 50 interfaces or links) and comes back to "aaa" still old response is there.
    NOTE: i can clear the bean object, but if i clear the bean object in "onload" or general i cant handle F5 issue.
    bbb
    ccc
    ddd
    sample
    =====
    first.jsp
    =====
    <jsp:useBean id="sd" class="TestPage" scope="session">
    </jsp:useBean>
    <jsp:useBean id="sptb" class="TestPageBean" scope="session">
    </jsp:useBean>
    <script type='text'/javascript'>
    function testfun()
    --ajax response.
    forwarding to to
    "second.jsp"
    </script>
    <%
    HttpSession mdsession=request.getSession(false);
    if(mdsession!=null){
    String s1=sptb.getTxtname();
    String s2=sptb.getTestselect();
    %>
    <form>
    <table>
    <tr><td><input type='text' name='fromdate' value='fromdate'></td></tr>
    <tr><td><input type='text' name='todate' value='todate'></td></tr>
    <tr><td><select name='testselect''><option value=1>aaa</option></select></td></tr>
    <tr><td><input type='contains' name='txtname' value=''></td></tr>
    <tr><td><input type='button' name='clickname' value='Click' onclick='testfun()'></td></tr>
    </table>
    </form>
    <%
    %>
    second.jsp (this is ajax response)
    =======
    <%
    String txtname= request.getParameter("txtname");
    String testselect= request.getParameter("testselect");
    String fromdate= request.getParameter("fromdate");
    String todate= request.getParameter("todate");
    --storing in bean
    sptb.setTxtname(txtname);
    sptb.setTestselect(testselect);
    sptb.setTxtname(fromdate);
    sptb.setTestselect(todate);
    ---database conn...resultset values retrieved on "fromdate" and "to date" basis
    out.println("<table><tr><td>testeno</td><td></testename></td><td>fromdate</td></tr></td>");
    while(rs.next())
    out.println(rs.getString(3);
    %>
    output
    ====
    input screen
    1 fromdate
    1 todate
    1 selectbox
    1 contains
    1 button
    -> after clicking on button ajax response displayed below is (with out page refresh)
    1 table gets displayed on "FROM DATE" AND "TO DATE" BASIS
    with pagination

    Michael,
    Thanks a lot for the reply.
    In the case you have mentioned, how does application has to know the user is 'moving away'[clicking on other role] from the application.
    Thanks in advance,
    Regards,
    Ganga

  • Trying to move a users from one database to another gives error

    When I try moving a user from one database to another I get an error, but one some PC's installed with EMC, gives no problems. So what could the the issue here, I tried googling, but came out without any solution. Exchange 2010 sp3, EMC on Windows 7 pc.
    The error message is:
    The move request for user is invalid. The user's Active Directory identity doesn't match the mailbox identity in the
    move request. It was running command "Get-MoveRequestStatistics -identity.....

    Is this 1 specific mailbox or any mailbox? Things to consider:
    Make sure that your Exchange management tools are running the same build as your Exchange server (2010 SP3 RUx). 
    Try using the Exchange Management Shell and typing Set-ADServerSettings -ViewEntireForest $True
    You might need to use the RUN AS ADMINISTRATOR when open Exchange tools
    Try running Clean-MailboxDatabase against each DB -
    http://technet.microsoft.com/en-us/library/bb124076(v=exchg.141).aspx
    Review and then Remove old move requests
    Try mailbox repair request -
    http://technet.microsoft.com/en-us/library/ff625221(v=exchg.141).aspx

  • Copy few test assignment with User from one database instance to another

    Hi,
    I have OTL ,Payroll and HRMS system. I want to Copy few test assignment with User(Few FND Users) from one database instance to another .
    Source: DEV Instance
    OTL users to enter their Time sheet
    OTL is intergated with HRMS to pickup Employee information
    Existing business users are integrated with Employee assignment etc tables to pickup person_id
    Target: Want to copy few test OTL users from ONE instance to another. Bringing FND_User is easy but EMPLOYEE_ID, PERSON_PART_ID will not come during FNDLOADER .
    How to bring all information from one instance to another instance? Please advice.
    thanks .

    Dear,
       Try using HRMS configuration workbench. For this you might require support from your DBA for configuring the same. Once configured, you can move the items you want.
    Regards,
    Kathan

  • Jasper report on HTML when one image loaded from database and for the other

    How to generate jasper report on HTML when one image loaded from database and for the other we give a image path
    My code
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
              exporter = new JRHtmlExporter();
              exporter.setParameter(JRExporterParameter.JASPER_PRINT, print);
              exporter.setParameter(JRExporterParameter.OUTPUT_STREAM, baos);
              exporter.setParameter(JRHtmlExporterParameter.IMAGES_URI, strImageInputDirectory);
         exporter.setParameter(JRHtmlExporterParameter.IMAGES_DIR_NAME, strImageOutputPath == null ? "." : strImageOutputPath);
         exporter.setParameter(JRHtmlExporterParameter.IS_OUTPUT_IMAGES_TO_DIR, Boolean.TRUE);
         exporter.setParameter(JRHtmlExporterParameter.IS_USING_IMAGES_TO_ALIGN, Boolean.FALSE);
         exporter.setParameter(JRHtmlExporterParameter.IS_WHITE_PAGE_BACKGROUND, Boolean.FALSE);
              exporter.exportReport();
              byte[] bdata = ((ByteArrayOutputStream) baos).toByteArray();
    Can any one help pls
    Message was edited by:
    ameet.au

    hey sorry for posting it in this forum.
    but do u have sample code for making it work.. since i am able to do it on PDF format(image from Database and another stored in the webserver) using
    byte image[] =(byte[]) outData.get("image");
                        ByteArrayInputStream img = new ByteArrayInputStream(image);
                        hmimg.put("P_PARAMV3", img);
    print = JasperFillManager.fillReport(reportFileName, hmimg, jrxmlds);
    bdata= JasperExportManager.exportReportToPdf(print);

  • "Please connect to one database and try again."

    "Please connect to one database and try again."
    That is the error message that comes up when I launch Apple Mail. I have not made any changes to my Apple Mail in 8 months. Not one.
    Has anyone seen this error message before? I'm not even sure what is failing as all of my mail (at least in a quick check) seems to be working (a few IMAP and a few POP accounts).
    Thanks for any info regarding this... strange....

    Well, all of a sudden it's gone now... probably some strange IMAP occurance, but who knows.
    Thanks.

  • When I import a commercial CD itunes will create 2 identical albums and put all of the songs except one into one album and put the other song into the other album by it self. How can I combine them all into one album and why is itunes doing this?

    When I import a commerical CD Itunes will create 2 identical albums and put all of the songs except one into one album and put the other song into the second album that it created.  Why is itunes doing this and what can I do to combine them into one album?

    I found this to be somewhat helpful: Grouping Tracks into Albums
    What I did was to put in the same name for Album Artist in every track.  That seemed to do the trick (previously all those fields were empty).  It seems like a lot of work for a simple thing.
    iTunes knows (or should know) that these tracks were imported from one CD. So why is it relying on incomplete data from the gracenote database?

  • When printing from aperture my margins are unequal, even if i set my margins they come out bigger one side  and not the other. i am using a macbook pro running osx lion and printing with a canon pro 9000

    when printing from aperture my margins are unequal, even if i set my margins they come out bigger one side  and not the other. i am using a macbook pro running osx lion and printing with a canon pro 9000.
    please can anbody help or advise?

    You didn't mention any color calibration being done on your monitor.  This is an essential part of any color-correct workflow.  What are you using to calibrate your monitor (and your printer)?
    Print profiles (for soft-proofing as well as printing) are for specific combinations of paper & printer.  The nine you have are each, most likely, for a common paper (perhaps mfr'd by Canon) to be used with your printer.
    I don't know what you mean when you say "I choose a high standard print option".
    Have you read the User Manual chapter on printing?
    Printing Your Images
    There is also a good appendix on calibration:
    Calibrating Your Aperture System

  • What is meant by "an ee sits in one company and taxed to other?

    hi experts,
    Please explain this "An ee sits in one company and taxed to other"  with some example. As always, JEss is very thankful to you guys...
    JEss..

    Sounds to me like a Payroll topic. Where have you read this?

  • List normal users and corresponding ops$users in Oracle database in groups

    Hi,
    We are having Oracle database version 11.2.0.2 on Oracle Ent. Linux 5.1. Basically, according to our requirement, we need to list similar users in the database which are having individual usernames as well as their corresponding ops$usernames (in one query).
    Eg. in the database if have users 'xyz' and 'ops$xyz', 'abc' and 'ops$abc', then we need to write a query which can list this users together in groups as below;
    xyz
    ops$xyz
    Similarly,
    abc
    ops$abc.
    Can you help me write a query so that I can list all these similar users residing in my database together.
    Also, later I need to find out the roles and privileges assigned to these users once its listed.
    Thanks in advance.
    ~ Rahul

    Hi, Rahul,
    To ignore leading 'OPS$' when sorting:
    SELECT       username
    FROM       dba_users
    ORDER BY  REGEXP_REPLACE ( username
                            , '^OPS\$'
    ;'$' has a special meaning in regular expressions, so when you literally want a '$' sign, it has to be "escaped" as '\$'.
    Edited by: Frank Kulash on May 17, 2013 9:52 AM

  • Select records from one database and insert it into another database

    Hi
    I need to write a statement to select records from one database which is on machine 1 and insert these records on a table in another database which is on machine 2. Following is what I did:
    1. I created the following script on machine 2
    sqlplus remedy_intf/test@sptd @load_hrdata.sql
    2. I created the following sql statements in file called load_hrdata.sql:
    rem This script will perform the following steps
    rem 1. Delete previous HR data/table to start w/ clean import tables
    rem 2. Create database link to HR database, and
    rem 3. Create User Data import table taking info from HR
    rem 4. Drop HRP link before exiting
    SET COPYCOMMIT 100
    delete from remedy.remedy_feed;
    commit;
    COPY FROM nav/donnelley@hrp -
    INSERT INTO remedy.remedy_feed -
    (EMPLID, FIRST_NAME, MI, LAST_NAME, BUSINESS_TITLE, WORK_PHONE, -
    RRD_INTRNT_EMAIL, LOCATION, RRD_OFFICE_MAIL, RRD_BUS_UNIT_DESCR) -
    USING SELECT EMPLID, FIRST_NAME, MI, LAST_NAME, BUSINESS_TITLE, WORK_PHONE, -
    RRD_INTRNT_EMAIL, LOCATION, RRD_OFFICE_MAIL, RRD_BUS_UNIT_DESCR -
    FROM ps_rrd_intf_medium -
    where empl_status IN ('A', 'L', 'P', 'S', 'X')
    COMMIT;
    EXIT;
    However, whenever I run the statement I keep getting the following error:
    SP2-0498: missing parenthetical column list or USING keyword
    Do you have any suggestions on how I can fix this or what am I doing wrong?
    Thanks
    Ali

    This doesn't seem to relate to Adobe Reader. Please let us know the product you are using so we may redirect you or refer to the list of forums at http://forums.adobe.com/

  • Files associated with user's mailbox database and reverent directory path (exchange 2010)

    Hi,
    I want to know all the files and other associated types of log files with particular user's mailbox database in exchange 2010 & its reverent directory path . Please suggest
    Aditya Mediratta

    Hi,
    If you want to view the database file path and associated log file path, you can use the following command.
    Get-MailboxDatabase "Mailbox Database" | fl *path
    Default path is C:\Program Files\Microsoft\Exchange Server\V14\Mailbox\Mailbox Database
    Best regards,
    Belinda Ma
    TechNet Community Support

  • How to add user to one to many groups in Active directory using powershell

    Hi  All
    I am working on a script to create a user and based on user type i would like to add that user into 2 to 3 groups . At the moment i have 3 groups e.g domain users, Developers, tester, 
    $NewUser = Read-Host "New Username"
    $firstname = Read-Host "First Name"
    $Lastname = Read-Host "Last Name"
    $NewName = "$firstname $lastname"
    $Group = "Dev"
    New-ADUser -SamAccountName $NewUser -Name $NewName -GivenName $firstname -Surname $lastname -displayname $Newname -UserPrincipalName $[email protected] -Path "CN=Users,DC=mydomain,DC=local" -AccountPassword (ConvertTo-SecureString -AsPlainText
    "Password" -Force)  -Enabled $true 
    Add-ADGroupMember -Identity $Group  -Members $NewUser
    I am not sure how to give user(sys admin) this option of choosing 1 or more groups while creating new user

    modified this line Add-ADGroupMember
    -Identity ([string]$h[$group])
    -Members
    $NewUser
    and
    now getting the error message Add-ADGroupMember : Cannot find
    an object with identity: '' under: 'DC=mydomain,DC=local

  • XML Query works on one database and not working on others with errLPX-00241

    I have one query as below
    SELECT EXTRACTVALUE
    (VALUE (xml_node),
    '/inspectionActivityArtifact/ns2:landfillTypes/ns2:type[position()=1]',
    'xmlns:ns2="http://dwm.sw.xmlNamespace/InspectionActivity"'
    ) AS TEST
    FROM artifacts a,TABLE (XMLSEQUENCE ((XMLTYPE (NVL (artifact_data, '<empty></empty>'))))) xml_node
    this works well on other databases but not working on one database. Everything is same configuration and OS and everything.
    I can work on other XML parsing which is working fine but not this query.
    Any idea ?
    Viral Dave

    post versions and patch levels for both databases eg 10.2.0.1.0 and the error message you are getting.

  • Activate one database and all databases activate on mailbox server?

    We are having some performance issues on one of our mailbox servers.   I think I've narrowed it down to disk latency so trying to activate half of the databases on one node of the DAG/cluster and have half active on the other node of the DAG/cluster.  
    But, when I try to activate just one database, all databases in that cluster fail over.
    Any thoughts on why the server is doing this?
    Exchange 2010 SP2 Rollup 8
    8 mailbox servers, 6 CAS/HUB servers.
    Jason Meyer

    Hello,
    This is the exchange 2013 forum. I will help you to move your issue to exchange 2010 forum.
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

Maybe you are looking for

  • DESONERAÇÃO DE ICMS - NF-e 3.10

    Senhores (as) Será mesmo que a SAP entendeu o que é ICMS desonerado? Estamos na implementação da NF-e 3.10 e precisamos alimentar os campos conforme é determinado pela legislação em vigor NT 2013 005_v1.03 No entanto estamos tendo dificuldades a sabe

  • How do I get photo's from Iphoto to an hotmail post?

    I am trying to mail some photo's that are in Iphoto with my hotmail, but how do I do this? I cannot drag a photo from iphoto into the web browser into my email message, so how do I do this? André

  • Next Number Maintenance - Database inconsistency

    Hi , I did basic configurations in SAP ME. I also did Next number maintenance as a part of configuration. I have created few shop orders and completed successfully  with NC . Recently we have upgraded to SAP ME 5.2.4.3 from 5.2.4.1 Now I have added s

  • Data Extraction  or IDOC to flat file

    hi, I have a project to create a flat file from SAP, for an external legacy system. There are 3 requirement. What approach should I take. Simple data extraction OR Idoc to flat file. There are 4 requirements: 1. first time extract all data. 2. on sub

  • Chart Display in Web Analyzer

    Hi Forum, I want to plot a graph in Web Analyzer. On Y-Axis, Key Figure A has to be shown. On X-Axis, Key Figure B has to be shown. I want to plot Chara C as a point with respect to these 2 Key Figures. Can you please help me with some documentation.