Copy existing user password & attricutes to another user

Dear all,
The requirement is to copy the user attributes, especially the existing password to a New User ID. i.e., I want to replace/rename the existing user id with the same password. I tried copying the USR02-BCODE. But it is not working.
Kindly help in this regard.
Regards
Aravind

Hi Aravind,
Pls check BAPI_USER_CLONE.
Not quite sure,hope you can play around this in your development system.
Regards,
Babul.

Similar Messages

  • How to copy a user account from one Mac to another

    If I have a main user (admin) account on one Mac, and want to copy its Home Folder over to another Mac that already has user accounts on it, what is the best way to do it?
    For example, if I boot the source Mac in Target Disk Mode then connect it to the other Mac, can I just drag and drop from its Users folder into the Users folder on the other Mac? And would that then appear in SysPref/Accounts, complete with names and passwords etc, or is it not that simple?
    (Actually, I just checked by launching Migration Assistant, and it seems to indicate I can use it to copy User Accounts from a different Mac - is this all I need? How would I connect the two Macs for this to work?)

    Slightly confusing, that article - it talks about using Migration Assistant in Lion or Mountain Lion, but in my case both computers have used Snow Leopard. Does it still apply?
    (One other observation - don't you find it confusing the way Apple defines "Target Disk Mode"? It's pretty much always the case that a computer booted in this way becomes the Source computer, while the Target computer is the one it's connected to!!)

  • Can I create ASP user validated website using existing MD5 passwords from SQL table?

    I'm attempting to build a user authenticated site in Dreamweaver CS5 using an existing USERS table from another site.  The password field in the existing SQL table appears to be MD5 encoded.  How can I MD5 encode the form field (or the SQL query) so that it verifies MD5 to MD5?
    Currently, it's comparing the form's plain text field to the MD5 encrypted password field in SQL.
    I've built a simple login form using the following:
    <form id="form1" name="form1" method="POST" action="<%=MM_LoginAction%>">
        <input name="username" type="text" id="username" accesskey="u" tabindex="1" /><input name="password" type="password" id="password" accesskey="p" tabindex="2" /><input name="submit" type="submit" value="submit" />
        </form>
    With the stock Dreamweaver Log In User Server Behavior as follows:
    <%
    ' *** Validate request to log in to this site.
    MM_LoginAction = Request.ServerVariables("URL")
    If Request.QueryString <> "" Then MM_LoginAction = MM_LoginAction + "?" + Server.HTMLEncode(Request.QueryString)
    MM_valUsername = CStr(Request.Form("username"))
    If MM_valUsername <> "" Then
      Dim MM_fldUserAuthorization
      Dim MM_redirectLoginSuccess
      Dim MM_redirectLoginFailed
      Dim MM_loginSQL
      Dim MM_rsUser
      Dim MM_rsUser_cmd
      MM_fldUserAuthorization = ""
      MM_redirectLoginSuccess = "results.asp"
      MM_redirectLoginFailed = "error.html"
      MM_loginSQL = "SELECT user_name, password"
      If MM_fldUserAuthorization <> "" Then MM_loginSQL = MM_loginSQL & "," & MM_fldUserAuthorization
      MM_loginSQL = MM_loginSQL & " FROM dbo.users WHERE user_name = ? AND password = ?"
      Set MM_rsUser_cmd = Server.CreateObject ("ADODB.Command")
      MM_rsUser_cmd.ActiveConnection = MM_ADSX_STRING
      MM_rsUser_cmd.CommandText = MM_loginSQL
      MM_rsUser_cmd.Parameters.Append MM_rsUser_cmd.CreateParameter("param1", 200, 1, 32, MM_valUsername) ' adVarChar
      MM_rsUser_cmd.Parameters.Append MM_rsUser_cmd.CreateParameter("param2", 200, 1, 32, Request.Form("password")) ' adVarChar
      MM_rsUser_cmd.Prepared = true
      Set MM_rsUser = MM_rsUser_cmd.Execute
      If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then
        ' username and password match - this is a valid user
        Session("MM_Username") = MM_valUsername
        If (MM_fldUserAuthorization <> "") Then
          Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value)
        Else
          Session("MM_UserAuthorization") = ""
        End If
        if CStr(Request.QueryString("accessdenied")) <> "" And false Then
          MM_redirectLoginSuccess = Request.QueryString("accessdenied")
        End If
        MM_rsUser.Close
        Response.Redirect(MM_redirectLoginSuccess)
      End If
      MM_rsUser.Close
      Response.Redirect(MM_redirectLoginFailed)
    End If
    %>
    Please help!

    unfortunately classic asp does not have a built in function for md5. what we used for our legacy sites is a javascript that hashes a string to MD5. here's the code we've used in the past http://pajhome.org.uk/crypt/md5/md5.html
    your asp should have something like this...
    <script language="jscript" src="path_to_js_file/md5.js" runat="server"></script>
    <%
    'hash the password
    Dim md5password       ' md5password variable will hold the hashed text from form variable txtPassword
    md5password = hex_md5(""&Request("txtPassword")&"")
    ' based on the code you posted...
    MM_rsUser_cmd.Parameters.Append MM_rsUser_cmd.CreateParameter("param2", 200, 1, 32, md5password) ' adVarChar
    %>

  • Copy paste of a package to another user gives error ..

    Hi,
    I have created a package having procedures in a user .Now when i copy and paste that package in another server user,that is giving error . When i separatelly run the code where error is shown, then is ran successfully.
    All the errors says that "table or view does not exist" ,even the table exists ,since they are saying about system tables.
    The error code is ORA-00942
    What is this problem ?
    Thanks.
    Edited by: user12222356 on Jun 14, 2010 10:04 AM

    ok,this is the exact package code.
    i am using Oracle 10g
    CREATE OR REPLACE PACKAGE BODY GKP020 AS
    PROCEDURE TABLE_NAME (tb_cursor OUT md_cursor)
    AS BEGIN
    OPEN tb_cursor FOR SELECT DISTINCT UPPER(TABLE_NAME) FROM DBA_CONSTRAINTS WHERE owner='GIUSR'
                    AND CONSTRAINT_TYPE = 'P' AND table_name IN (SELECT OBJECT_NAME
                   FROM dba_objects WHERE owner = 'GIUSR' AND object_type = 'TABLE'
                   AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG') AND object_name LIKE ('%YKPI_%')) MINUS SELECT DISTINCT TABLE_NAME
                   FROM DBA_CONSTRAINTS WHERE owner='GIUSR' AND CONSTRAINT_TYPE = 'R'
                   AND table_name IN (SELECT OBJECT_NAME FROM dba_objects WHERE owner = 'GIUSR'
                   AND object_type = 'TABLE' AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG')) UNION
                   (SELECT OBJECT_NAME FROM dba_objects WHERE owner = 'GIUSR' AND object_type = 'TABLE'
                   AND object_name NOT LIKE ('%_BKP')  AND object_name NOT LIKE ('%_LOG') AND object_name LIKE ('%YKPI_%')MINUS (SELECT DISTINCT TABLE_NAME FROM DBA_CONSTRAINTS
                   WHERE owner='GIUSR' AND CONSTRAINT_TYPE = 'P' AND table_name IN (SELECT OBJECT_NAME
                   FROM dba_objects WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name
                   NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG')) MINUS SELECT DISTINCT TABLE_NAME FROM DBA_CONSTRAINTS WHERE owner='GIUSR'
                   AND CONSTRAINT_TYPE = 'R' AND table_name IN  (SELECT OBJECT_NAME FROM dba_objects
                   WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG'))))
                   MINUS ( SELECT DISTINCT origtab FROM (SELECT a.owner ORIGOWNER, a.constraint_name ORIGCONS,
                   a.constraint_type ORIGCONSTYP,  a.table_name ORIGTAB, b.column_name ORIGCOL,
                   b.position ORIGCOLPOS, a.r_owner FKOWNER, a.r_constraint_name FKCONS, c.Table_name FKTABS,
                   c.column_name FKCOL, c.position FKCOLPOS FROM dba_constraints a, dba_cons_columns b,
                   dba_cons_columns c WHERE a.owner='GIUSR' AND a.table_name IN (SELECT OBJECT_NAME
                   FROM dba_objects WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name
                   NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG')) AND a.constraint_type='R' AND a.owner=b.owner AND a.table_name=b.table_name
                   AND a.CONSTRAINT_NAME = b.CONSTRAINT_NAME AND a.owner=c.owner
                   AND a.r_constraint_name = c.constraint_name AND b.position = c.position) aa
                   LEFT OUTER JOIN (SELECT DISTINCT TABLE_NAME FROM DBA_CONSTRAINTS    WHERE owner='GIUSR'
                   AND CONSTRAINT_TYPE = 'P' AND table_name IN (SELECT OBJECT_NAME FROM dba_objects
                   WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG'))
                   MINUS SELECT DISTINCT TABLE_NAME FROM DBA_CONSTRAINTS WHERE owner='GIUSR'
                   AND CONSTRAINT_TYPE = 'R' AND table_name IN (SELECT OBJECT_NAME FROM dba_objects
                   WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG'))) bb
                   ON aa.FKTABS=bb.TABLE_NAME WHERE bb.TABLE_NAME IS NULL);
    END TABLE_NAME;
    PROCEDURE COLUMN_NAME (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT column_name FROM dba_tab_columns
                   WHERE owner='GIUSR' AND table_name= tab_name
                   AND column_name NOT LIKE ('%_MANDT') AND column_name NOT LIKE ('%_CRT_ID')
                   AND column_name NOT LIKE ('%_CRT_TS') AND column_name NOT LIKE ('%_UPD_ID')
                   AND column_name NOT LIKE ('%_UPD_TS') AND column_name NOT LIKE ('%_FL_ACTIVE')
                   AND column_name NOT LIKE ('%_DEFN') AND column_name NOT LIKE ('%_PIC');
    END COLUMN_NAME;
    PROCEDURE PRMKY_COL (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                       WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'P'
                          AND a.table_name = b.table_name AND a.owner = b.owner
                       AND a.CONSTRAINT_NAME = b.CONSTRAINT_name MINUS
                       SELECT COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                       WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'R'
                       AND a.table_name = b.table_name AND a.owner = b.owner
                       AND a.CONSTRAINT_NAME = b.CONSTRAINT_name;
    END PRMKY_COL;
    PROCEDURE ALL_PRMKY_COL (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT DISTINCT COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                       WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'P'
                       AND a.table_name = b.table_name AND a.owner = b.owner
                       AND a.CONSTRAINT_NAME = b.CONSTRAINT_name;
    END ALL_PRMKY_COL;
    PROCEDURE DDL_COL (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                     WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'R'
                     AND a.table_name = b.table_name AND a.owner = b.owner AND a.CONSTRAINT_NAME = b.CONSTRAINT_name;
    END DDL_COL;
    PROCEDURE HEADER_NAME (col_name IN VARCHAR2, tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT INITCAP(a.COLUMN_NAME), INITCAP(COMMENTS)
                FROM dba_tab_columns a LEFT OUTER JOIN DBA_COL_COMMENTS c
                ON a.OWNER = c.owner
                AND a.table_name = c.table_name
                AND a.column_name = c.column_name
                WHERE a.table_name =  tab_name
                AND a.OWNER = 'GIUSR'
                AND a.column_name IN (col_name);
    END HEADER_NAME;
    PROCEDURE DDL_REF_TBL (col_name IN VARCHAR2, tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT DISTINCT c.COLUMN_NAME, c.TABLE_NAME  FROM dba_cons_columns c,
                       (SELECT a.table_name, a.OWNER, b.constraint_type, a.constraint_name,
                       b.R_constraint_name, a.COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                       WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'R'
                       AND a.table_name = b.table_name AND a.OWNER = b.OWNER
                       AND a.constraint_name = b.constraint_name
                       AND a.COLUMN_NAME = col_name ) d
                       WHERE c.owner=d.owner AND c.constraint_name=d.R_Constraint_Name
                       AND SUBSTR(c.column_name, 4, LENGTH(c.column_name)-3) = SUBSTR(d.column_name, 4, LENGTH(d.column_name)-3);
    END DDL_REF_TBL;
    PROCEDURE DDL_REF_CLMN (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT DISTINCT COLUMN_NAME, TABLE_NAME FROM DBA_COL_COMMENTS
                   WHERE OWNER = 'GIUSR' AND Comments='Description' AND table_name =tab_name;
    END DDL_REF_CLMN;
    END GKP020;The error list is:
    >
    LINE/COL ERROR
    4/20 PL/SQL: SQL Statement ignored
    6/21 PL/SQL: ORA-00942: table or view does not exist
    38/20 PL/SQL: SQL Statement ignored
    38/44 PL/SQL: ORA-00942: table or view does not exist
    49/20 PL/SQL: SQL Statement ignored
    49/64 PL/SQL: ORA-00942: table or view does not exist
    61/20 PL/SQL: SQL Statement ignored
    61/73 PL/SQL: ORA-00942: table or view does not exist
    70/20 PL/SQL: SQL Statement ignored
    70/64 PL/SQL: ORA-00942: table or view does not exist
    77/20 PL/SQL: SQL Statement ignored
    LINE/COL ERROR
    78/52 PL/SQL: ORA-00942: table or view does not exist
    90/20 PL/SQL: SQL Statement ignored
    92/80 PL/SQL: ORA-00942: table or view does not exist
    103/20 PL/SQL: SQL Statement ignored
    103/65 PL/SQL: ORA-00942: table or view does not exist
    >
    Edited by: user12222356 on Jun 14, 2010 11:45 AM

  • Weblogic admin user password change w/o disrupting existing users

    Hi Folks,
    As a business policy we need to change the password of the admin user in weblogic after a cycle of specific period.
    Please let us now how can we do that without losing the other existing users in 'my realm.'
    I understand that we can use the weblogic.utils.security.AdminAcoount utility to give the new password, which will create a new DefaultAuthenticatorInit.ldift file in +<domain-home>/security+ folder (according to Doc ID 1082299.1).
    The password will change but the users in 'my realm' will be lost. (there are many users and it is a production environment so recreation is out-of- question)
    Is there a way we can retain the users and still proceed with the password change?
    Cheers,
    Jeegar

    Hi Jeegar,
    This can be doen by followin the standard procedure by login to console and navigate to :-
    DOMAIN_STRUCTURE--->Security Realm--->myrealm--->Users and Groups---->User tab click on the user weblogic
    --click on the password tab and put the new password there and save (password is changed for the user here)
    ---Logout from the console and login to the console again using the new password
    But when the server starts it do not read the password for the user directly from the realm rather it picked the same from the $DOMAIN_HOME/servers/AdminServer/security/boot.properties
    Now in order to make this change available when the server starts change the values for the username and password in boot.properties and specify them in plain-text and save the same.
    Now next time whenever the server will start it will pick up the new values from the boot.properties and once the same had been accepted those will be encrypted again.
    You might have to make the change for the boot.properties for all the Managed Server if you have the Managed Servers in the domain which will be located at the location $DOMAIN_HOME/servers/<<Managed Server Name>>/data/nodemanager/boot.properties
    You can test the steps on some lower environment first and try the same in Critical environment once the testing goes successful.
    Regards,
    Vijay
    Edited by: V Kumar on Oct 25, 2012 3:06 PM

  • How do I change an existing user account to another user name?

    I am trying to change the username on an existing Thunderbird email account to another user name. I have the name changed and can send email out from it. However, you cannot treply back to the email, you get an error message saying that the address does not exist. Nor can you receive an email sent directly to the account with the changed name.
    Thank you,
    Judy Pfeffer

    Is the new username an established email account with an email provider? If not, that is your problem. You cannot just make up a username and expect to receive email with it.
    I would not suggest changing usernames due to a new email account. I would set up a new account in Thunderbird for the new email account.

  • Changing passwords for 800 + existing users.

    Hi, Hope people reading this list can help with this.
    Start of a new school year here and our local education office has generated new passwords for our existing students. I use Passenger to import new users and their passwords onto the server from the supplied spreadsheet. Can I also use Passenger (or some method within workgroup manager) to import just the new passwords for the existing users? I would prefer not to have to delete the users and then re-import them from new files.
    Thanks
    Anthony O'Brien

    Hi,
    If you are using Passenger to import new users, I presume you are using an LDAP connection to interface with OD. In which case you could just construct a script to do a batch import of the password field. If you are using Rails or Ruby this could be done with a Rake task or independently.
    On the OD side you can import passwords into OD in clear text but it has to be done following the formatting rules provided in the CommandLine_Adminv10.5 document p. 123.
    HTH,
    Harry

  • Is it possible to copy a user fm one client to another

    Hi'
      Is it possible to copy a user from one client to another client?
      e.g., in our DEV we have two client say 500 & 201.A user say dev_user is present in client 500 with some authorization.Now i want the same user dev_user with same authorization in client 201.
    note:-
      *according to my knowledge user is a client dependent.
      *plz avoide hint like
    1)create a new user in 201 with the same user name with the help of su01
    2)client copy.

    Hi,
    I am not sure of replication a single use, but u can move all users by CLIENT Export. That means , u will be creating a transport request which will contain all User master records using SCC8. here select the USER profile SAP_USER.
    Hope this helps
    Cheers !!

  • Invalid Existing Users email user name or password

    In trying to setup a second email account and I am prompted for the user name and password of the Existing Users email account.  I assume that this information is the same as that needed to access my regular email account, such as through Outlook.  However, I get an invalid user name or password response when I attempt to log in.  Is the BlackBerry system asking for different information than what I am providing?
    Solved!
    Go to Solution.

    Hi there!
    Sorry for the delay!
    1) Who is the "Existing User"?
    2) What exactly is prompting your for credentials? What does the screen look like? What did you do (exactly) to get the prompt?
    We need some details to figure out what you are seeing...you are our eyes and hands...we can help, but we need the details in order to do so.
    Get back to us with some more details and we'll try to help.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to delete existing user and create the account

    Hi All,
    How to delete the existing user and does not loose the shopping cart link, confirmations for etc and then create back the account for the user?
    Please tell me the steps.
    Thank you.
    Regards,
    Henry

    How to delete the existing user and does not loose the shopping cart link, confirmations for etc and then create back the account for the user?
    I believe you can not delete the user 100% fully since all documents must be closed before.since it had a relation in crmd_partner table. However it has links with business objects..
    Copied from forum threads.. for your reference..
    Note 1148837 - SRM user cannot be deleted
    in consulting note 550071
    Q8. What happens if I delete the user who has created the shopping cart
    A8. If the user is deleted, and the shoping cart exists in the application, then the shooping cart cannot be displayed. If you want to view/ process those shopping carts, then you have to create a dummy user and retrieve the document. In CRMD_PARTNER table, the old user GUID should be replaced with the new user GUID.
    User deleted from SRM, deletion of SC not possible
    if you have a central recipient cancel them with that role or as advised by akash cancel from r/3.
    discussions are welcome..
    regards
    Muthu

  • Install new OS, but use existing User folders

    I'm going to buy a SSD for my Mac Pro. I would like to install a fresh OS on that drive, but use the existing User folders on my HD.
    I assume there's an easy way to do this, but I *suspect* that the install will make default User folders and accounts?
    Any advice?

    Maury Markowitz wrote:
    I'm going to buy a SSD for my Mac Pro. I would like to install a fresh OS on that drive, but use the existing User folders on my HD.
    I assume there's an easy way to do this, but I *suspect* that the install will make default User folders and accounts?
    Any advice?
    If you are the only user of your system you may be able to do this fairly easily.  If there is more than one account it still may be be possible but there's a potential "gotcha".
    If you intend to keep your home dir on a separate drive from your boot ssd, depending on how many of your own apps and data you intend to put on the ssd for faster access you really only need a 60GB to 120GB ssd.  Assume the OS itself will need up to about 25GB of that ssd. 
    Assuming your are the only user then install the new OS on the ssd and create an account with the same account name of the one you had for the original system.  Once that is up and running you can use the standard procedures to move an account to another drive.  In other words use the Account system preferences to modify the account (account's Advanced Options) home dir info to point to your old home dir on the other drive.  In this case you don't have any current home dir to actually move since you intend to use your old one on your other drive.  Now reboot.  Hopefully your reboot will come up using your old home dir.
    The "gotcha" here is the userid.  If you are the only user it should remain 501.  So doing what I suggest above hopefully will work -- "hopefully" in that it has to be assumed your old account also had userid 501.  With more than one account, if your old account wasn't 501 then I think you are in for ownership problems.
    If you try this don't even attempt this without full backups of your original home disk(s).  Best you create a bootable backup of your newly created ssd too so you don't have to reinstall and you can revert it from the backup if something goes wrong.  Doing it this way doesn't write to new ssd cells if you don't have to (I am always concerend about this with ssd's even with possible TRIM or garbage collection).

  • Hyperion Planning copy Application User provisioning

    Hi, i'm copying an 9.3.1 application from development to production.
    With copy app i have migrated data and metadata. I'm not able to find out how copying also user and provisioning.
    there is any tool or i have to make it manually?
    Thanks in advance
    DecaXD

    really thanks for the quick answer.
    I've tried the tool but i obtain
    D:\Hyperion\Planning\bin>UpdateUsers localhost hpadmin mypassword copybdg
    Creating rebind thread to RMI
    Setting Arbor path to: D:\Hyperion\common\EssbaseRTC\9.3.1
    Setting HBR Mode to: 2
    HBR Logging Config File : HBRServer.properties
    2009-07-29 11:15:23,893 WARN main com.hyperion.hbr.security.HbrSecurityAPI - Error retrieving user by identity
    Embedded HBR initialized.
    the user hpadmin is the owner of the application.
    The essbase server is on another machine.
    Any suggestion?
    Thanks
    DecaXD

  • Existing User to be added as an admin to local spicework portal on company LAN

    Please assist. I am part of the IT team at my firm. We are using Spicework as a help desk.
    My colleague launched an offline Spicework portal from his computer and he has invited us to his local site so we can help engage the tickets.
    He has us already listed as users in his local Spicework site
    And we all each have an account with Spicework already and a community password
    My question is, can we have detailed steps on how to add an existing user to our colleagues local site?
    thank you
    This topic first appeared in the Spiceworks Community

    so i set up this bit of a lab network in packet tracer. (will set up a more complex lab once this little bit is working right). See imageI've got the following172.16.1.0/24 on the left172.16.2.0/24 on the right172.16.4.0/24 serial link between the two routersThe host PC's can ping each other, across the "pond". they can also ping the router interfaces. the routers can ping each other and the hosts. the only goofy thing is, i can't ping the switches on the opposite side from the router or hosts. I can ping the switch from within it's own subnet but not from afar.the switches also can't ping the serial port IP's of the router on it's own side. (example, switch on the left can ping 172.16.1.1 but not 172.16.4.1I've set up static routes on both routers, and what I believe to be the proper default gateway routes on both switches. Maybe it's...

  • Booting from firewire drive does not recognize existing users.

    Hello,
    I just bought a Lacie firewire drive to have a bootable backup of my Macbook internal drive.
    I used SilverKeeper 1.1.4, that comes with the drive, to make a bootable copy.
    The copy is bootable but when Tiger startus up fro the firewire drive I get the presentation video and am asked to setup the system including creating a new user.
    It is as if the existing Users directory, that was copied, is not recognized by the clonned system.
    Running Tiger 10.4.11
    Any ideas?
    Joaquim

    I think this was driver issue

  • Firefox downloads but then will not unpack without administrator status on home computer nor as existing user

    I uninstalled "Firefox" having used it for years, after accidentally adding a taskbar I did not want.
    On attempting to re-load the "Firefox" downloads straightforwardly but then comes up with an unfamiliar screen.
    This says that I may not have the permissions to access all of "Firefox" features so to take a choice of;
    (a) Running opening of Firefox as existing user,
    or
    (b) Running Opening "Firefox" as an Administrator asking for a password.
    Neither choice starts the unpacking of downloaded software, the computer just goes quiet.
    This is my home computer and I have never been asked this before, and have no special restrictions.
    Any suggestions? I have downloaded "Firefox" via Google Chrome and Internet Explorer with same results.
    Thank you.

    And I still have a bricked iPhone 4

Maybe you are looking for

  • Our USDA Direct timeline- 99% there after 103 days

    Yesterday we were told our Certificate of Eligibility was being sent out, so I figured it's time to start a journal-type post for all those hunting for info. I spent a lot of time searching for timelines, so I hope someone else finds the following he

  • Plugin causes fatal error

    running nt 4 platform with plugin 1.4.2_01. The java plugin causes a fatal error when attempting to view an applet in netscape 6+ and IE. If netscape communicator 4.74 on the same system does not have the same problem. Applet can be viewed ok. The er

  • Where to submit feature suggestions?

    I occasionally have some suggestions for IOS and other OS for commands which I'm certain would be extremely popular, such as a "shut cycle 5" for interfaces which would power down the interface for 5 seconds, then bring it back up (handy for remote w

  • PPRO CS5.5 - Would be nice if sorting of project material took place immediately

    Hi there... Perhaps I am doing something wrong or I have missed some hidden preference. Anyway, what is really bugging me is that in my project I have LOTS of files and bins etc. After importing a clip or creating a new bin and giving it a name PPRO

  • Servlet seem to execute but just return a blank page

    I have two servlets that I am calling from a jsp. One servlet executes fine, the other seems to execute but comes back with a "done" message in the messagebar and no page whatsoever. I checked the web.xml. It is correct. Anyone have any ideas?