donot find 50001 user id in the HSP_USERS table

Hi all

I use EMP 11.1.1.1.0 and that you want to import a planning application. In one of the threads I read that you should keep a backup of the SID of the HSP_USERS table in the schema where the USER) iD = 50001.

But I donot have a record in the HSP_USERS table with this userid (50001).

Please can someone explain why I didn't...

Thanks in advance...

Alicia

Hello

Sometimes you don't have to update all the records in the HSP_USERS table, if migration is between applications that use the same shared services then you too need planning.
Also, if you have created the application of planning with the admin account by default as it does not change between environments.

If you do not need to change, to change the record where the role = 3, make sure that it is the same username between environments as well.

See you soon

John
http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • Store user information in the specific table

    I created the new table where I want to store the application user data,
    ex: if I connect in the apex with user 'john' and make changes in the specific application report, I want to insert into the created table information, user who are chaneges in the folder - directed by: john for example...

    Sorry for my English, I hope understand you what I want to do...

    any ideas?

    Published by: Regent1904 on November 3, 2009 02:52
    CREATE or REPLACE TRIGGER dave
    
    BEFORE UPDATE
    ON VIZIT_FULL
    FOR EACH ROW
    BEGIN
      :NEW.users := V('APP_USER');
    END; 
    

    Try it like this.

    : NEW.users specifies the new value of the users who is updated column.

    Van
    Trent

    Published by: tr3nton on November 3, 2009 21:06

  • How can I find what user database has the ROLES

    Hello

    Are there any request for assistance that I can find which database user has what role assinged?

    Any help would be grateful.

    Yes column BENEFICIARY can be the database user name, but also a role name and you can rewrite this query in the form:

    select
    grantee as username,
    granted_role as role
    from
    dba_role_privs,
    dba_users
    where
    grantee = username
    order by grantee
    

    But as already said, the best script is http://www.petefinnigan.com/find_all_privs.sql because he will take care of the roles granted to other roles.

    Edited by: P. Forstmann August 26, 2011 08:18

    Edited by: P. Forstmann August 26, 2011 08:20

  • With regard to the supply of a user database of the Access Tables

    Hello

    I just finished with the installation of IOM 9101 and upgradation of 9101 to 9102. I am facing a little weird. When I try to create a TAG for Tables of database Access, I am not able to see the Tables of database Access option in the drop down menu to the Transport provider.

    I am a bit confused whether I'm wrong updated the system or if at all, I missed a step. Although IOM seems to be ok and works fine.

    Any suggestions on how to fix this?

    Concerning
    Nikhil

    Reinstall the connector using the connector installer of the IOM again. That should solve the problem.

  • How can I create an another user to access the HR schema data

    I am new to Oracle and just downloaded the: 10 x e. I have connected as human resources and was able to modify data in tables.
    I created another user, then say ABC, when connected as SYS. But then I could not access the tables and the data even in human resources.

    I learned that every user has its own schema, but how do I create an another user to access the same tables, and the data I see in the Oracle DB?

    Log in as a user of the system (or sys as sysdba) and:
    create user identified by ;
    Grant connect, create session ;

    To see objects to a different schema from the database user must then obtain the privilege:

    Grant select on hr. à ;

  • Update of several rows of the same table using trigger

    Hello

    I have the following table

    ---------------------------------------------------------------------------------------------------------

    CREATE TABLE ATT_PERMISSIONS
    (
    DATE OF PRMONTHYR,
    EMPIDNUMBER (10)DEFAULT VALUE 0,
    FROMDATETIMEDATE,
    TODMTFDATETIMEDATE,
    NUMBER OF PERMMINS (3),

    SSLINASTRETCH NUMBER (3).

    PERMATTINELIGIBLENUMBER (1)DEFAULT VALUE 0
    );

    ------------------------------------------------------------------------------------------------------

    I want to update the column PERMATTINELIGIBLE in the same table when each line is inserted.

    I created following trigger for that

    CREATE OR REPLACE TRIGGER SSL_AFTER_UPDATE AFTER UPDATE ON ATT_PERMISSIONS

    FOR EACH LINE

    BEGIN

    Update ATT_PERMISSIONS set PERMATTINELIGIBLE =

    (

    SELECT THE CHECK BOX

    WHEN PERMMINS < = 60

    or

    (

    PERMMINS < = SSLINASTRETCH

    AND

    COUNT (CASE WHEN PERMMINS = 0 THEN NULL OTHERWISE 1 END)

    COURSES (PARTITION BY empid, prmonthyr) < = 1

    )

    THEN 1

    0 OTHERWISE

    END

    FROM ATT_PERMISSIONS where prmonthyr =:new.prmonthyr, empid =:new.empid

    ) where prmonthyr =:new.prmonthyr, empid =:new.empid;

    END;

    ---------------------------------------------------------------------------------------------------

    That is to say.

    When a row is inserted the PERMATTINELIGIBLE of all records for this employee for the month is recalculated.

    There would be only two or three records for an employee for a month.

    PERMMINS is the number of minutes to use as short leave.

    If it is less than 60 is eligible for the bonus to attendance for this employee.

    If this isn't normally the date is not eligible for the attendance for this employee premium.

    but an exception is that if a short leaves of DISP employee allowed a month (IE. ( SSLINASTRETCH ) in a straight line, IE. one day, that day is eligible for the bonus of presence.

    That is to say. Why the number of short leaves in a month is taken. If it's one and done minutes use is lower to SSLINASTRETCH, then the day is eligible for the attendance bonus.

    But when I try to create the trigger I get error, PL/SQL: ORA-00907: missing a right parenthesis.

    Help, please

    I use oracle 10g

    I want to update the column PERMATTINELIGIBLE in the same table, when each row is inserted.

    No - you do NOT want to do in a trigger.

    You cannot query the same table that the trigger is activated on. -C' is a MUTANT and you will get an exception.

    When a row is inserted is recalculated to the PERMATTINELIGIBLE of all the records for that employee for that month.

    There would be only two or three records for an employee for a month.

    PERMMINS is the number of minutes to use as short leave.

    If it is less than 60 is eligible for the bonus to attendance for this employee.

    If is not normally the day is not eligible for the premium of attendance for this employee.

    but an exception is that if a short leaves of DISP employee allowed a month (IE. SSLINASTRETCH) in a straight line, IE. one day, that day is eligible for the bonus of presence.

    That is to say. Why the number of short leaves in a month is taken. If it's one and done minutes use is less than SSLINASTRETCH, then the day is eligible for the bonus of presence.

    But when I try to create the trigger I get error, PL/SQL: ORA-00907: missing a right parenthesis.

    You can not do in a trigger. Even if correct you this error of syntax, you will get the exception that I mentioned above.

    Oracle is a multi-user system. Other users can modify the same table that you use.

    So even if you could try to interview "all the records for this employee" some of them may be locked if other users access them. Also, an insert statement could try to insert two rows for an employee and the trigger could not have seen the other lines still.

    If you want to work with data SETS (all records for an employee), you must write the PL/SQL code that LOCKS all lines updated to prevent others to interfere.

    Then you make your operations but NOT in a trigger. Perform inserts and then use an UPDATE query to set this value.

    Then VALIDATE to unlock the lines.

  • I'm trying to access my work PC to remote my PC at home. The box says Windows 2000 Server and I do not know where to find my user name or password

    Original title: Windows 2000 server

    Search results for "I try to access my work PC to remote my PC at home. I need to get through my credentials and don't know where to find the information. The box says Windows 2000 Server and I do not know where to find my user name or password. The one I use to log into my work PC or PC at home do not work. »

    Hello

    Post your question in the TechNet Server Forums, as your question kindly is beyond the scope of these Forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • Download error "Windows cannot find"C:\Users\User\Downloads\ ((name of the program here))". Make sure you typed the name correctly and try again. »

    Original title: ((Vista)) I can't install anything!

    So, basically, I have a Windows Vista. I'm using Google Chrome, but that doesn't really count because I tried on all browsers. When I try to download something, it comes up with something like that... "Windows cannot find"C:\Users\User\Downloads\ ((name of the program here))". Make sure you typed the name correctly and try again. "This has nothing to do with a name of typing correctly. I'm downloading at the wrong place? If Yes, where can I download it?

    Hello

    Thanks for posting in the Microsoft Community.

    If I understand correctly that you have problems with downloading files on Windows Vista.

     

    Please follow the below mentioned thread that addresses a similar issue:

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-files/Windows-cannot-find-error/537677b9-016b-427e-8cc6-50f8620c84bb

    Note: The thread also applies to Windows Vista.

    Hope the helps of information. We know if you need help. We will be happy to help you.

  • When you try to upload a document in Word from the Internet Windows error: "Windows cannot find"C:\Users\jma1... ". »

    Whenever I try to upload a document in word from the internet, I get a msg of error "Windows cannot find"C:\Users\jma1\AppData\Local\Temp\Low... ". "It will not download every word on the internet documents. How can I fix? Please give me instructions step by step. Thank you!

    Need help

    Hello

    1. doesn't this problem occurs only with download of word or other files?

    2. what version of internet explore do you use?

    I suggest that you try to upload to another location and check.

    Method 01:

    I suggest also allows you to check in SafeMode with network.

    Advanced, including safe mode startup options

    http://Windows.Microsoft.com/en-us/Windows7/advanced-startup-options-including-safe-mode

    I suggest you to follow the methods and check.

    Method 02:

    How to remove the contents of the temporary Internet files folder

    http://support.Microsoft.com/kb/260897

    Method 03:

    I suggest you to follow the steps and check.

    Run the command to reset the low integrity level on the low folder

    (a) click the start Pearl, click on "All programs" and click on "Accessories".

    (b) right-click "Command Prompt" and click "Run as Administrator".

    (c) in the window "Administrator: command prompt", copy and paste (without the quotes)

    (d) "ICACLS"% userprofile%\AppData\Local\Temp\Low"/setintegritylevel (OI) (CI) low.

    (e) press ENTER.

    (f) restart the computer and test the issue.

  • Where can I find documentation users manual or product for the HP 2311xi monitor?

    Where can I find documentation users manual or product for the HP 2311xi monitor?

    The only documentation that I could find was the specifications for the HP 2311xi IPS LED backlit LCD monitor. I hope this helps.

  • the transfer will not find my user account

    My XP workstation has my profile with a dot in the name such as "user.systemname".

    Easy transfer will not find this user account.  I was trying to rename the profile, but the system won't let me not renaming the directory that I do not have enough permissions or something is in use.

    How can I get an easy transfer to recognize a profile with a dot in the name?

    Like Windows 7...

    Create a new user account and transfer your files and settings to the new account.

    See: http://fredcoulson.com/blog/fred/index.php/2007/08/15/renaming-your-windows-xp-user-account/

    Note: The easy transfer will not migrate type .dat and .tmp files

    J W Stuart: http://www.pagestart.com

    If that were the case, might as well the user simply copy the content of the personal folder under C:\Documents & Settings of an external hard drive.

    Question is the part of a domain user account? If so, that may be why he won't let you rename (without permission).

    If you are, I recommend the UN machine in the domain join then rename the account.

  • I get an error "Windows cannot find"C:\Users\Steph\Downloads\APPLICATION F0RM.zip". Make sure you typed the name correctly"when I try to open a ZIP file.

    Hi, I applied for a job in which they said send me an application form who sent in a zip format, so I clicked on the link to download in which came on the download area of Firefox so I tried to click and it did not open so then I tried it on Chrome and this message popped up.
    Windows cannot find 'C:\Users\Steph\Downloads\APPLICATION F0RM.zip'. Make sure you typed the name correctly and then try again.
    Can someone help me to open this file?
    I restored the computer and nothing changed so I tried to search for the file and it didn't turn up.
    Thank you!

    Original title: Windows cannot find ' C:\... zip "make sure you typed the name correctly, and then try again.

    Hi StephanieCowley,

    Thanks for posting in the Microsoft Community.

    In addition, how are you doing today?

    You have a problem with opening the Zip files on the computer. This can be very frustrating for you, and I appreciate the efforts you have put in. Let us work together as a team and try to get this fixed number.

    We start with a few questions-

    (1) is this problem limited to opening files on Mozilla Firefox and Google Chrome?

    (2) you are able to open other files zip on the computer?

    (3) you have a program to open ZIP files installed on the computer?

    (4) you are able to open the same file on another computer (running the same version of the operating system)?

    (5) you get an error code?

    (6) do you have made further changes on the computer before the show?

    I would like more information about the issue.

    It is possible the file association by default to open this type of file is either corrupted or needs to be changed.

    Method 1-

    I would like that you try to open other files zip on the computer. Check if it helps.

    Method 2-

    I would have you scan a System File Checker to verify violations of integrity.

    See the article-

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7

    http://support.Microsoft.com/kb/929833

    Method 2-

    I would have you look at the article-

    Change the programs that Windows uses by default

    http://Windows.Microsoft.com/en-us/Windows7/change-which-programs-Windows-uses-by-default

    We know if you need help. We will be happy to help you. We, at tender Microsoft to excellence.

    Thank you.

  • I am a user of yosemite, and I find it impossible to buy the photoshop of cc. any suggestions?

    I am a user of yosemite, and I find it impossible to buy the photoshop of cc. any suggestions?

    You try to buy the subscription?

    See link below:

    https://creative.Adobe.com/plans

    For further assistance contact the Support from Adobe:

    Click always need Help (help), and then select the Chat option:

    Contact the customer service

  • Hello! I have already repeatedly sent an invitation to a new user of creative cloud. This invitation never reaches the level of the receiver. Or even anti-spam filter in the other mailboxes this mail to find. Is it because the word testuser occurs in the

    Hello! I have already repeatedly sent an invitation to a new user of creative cloud. This invitation never reaches the level of the receiver. Or even anti-spam filter in the other mailboxes this mail to find. Is it because the word testuser occurs in the mail?

    Hi Eric, if you have tried all the steps from the link mentioned in the previous post, please Contact Customer Care

    Atul_Saini

  • How to find the number of users connected to the database of the level operating system (Linux)

    Hi all

    Could someone knows how to find the number of users connected to the database without connection with sql * more

    y at - it a command to find?

    example, we have 10 databases in a server, how to find the number of users connected to the special data base without connecting to database(v$session)?

    the Oracle version:-10g, 11g
    Operating system:-OEL4, OEL5, AIX, Solaris

    any help will be appreciated.

    Thanks in advance.

    Thank you.

    Kind regards
    Rajesh.

    but you can say total number of connection with the above given the command? It would also be useful to know.

    See you soon,.
    LKM

Maybe you are looking for

  • F11 KEY does not work properly

    Hello. The F11 key on my laptop turned off recently.  It was not lit in red when I press it. In addition, the laptop have no sound at all regarless I press F9 or F10 Keys. It's only function when I restart the laptop everytime. Product name: HP ENVY

  • Stor.e TV + playlist

    I unpacked my Stor.e TV +, copied the files on the HARD drive and plugged into the TV. I tried to create a playlist, but has no matter what I do, I get a message "unable to create a playlist. Can someone please?

  • win xp

    We are a small business here and have an embroidery machine to Amaya, it works on xp. an updated version of the amaya looks like $ 20,000, so how can I update internet explorer 5 to 8, for final updates in xp? Update site doesn't let me do anything.

  • Growth of hidden Windows files

    I have more 1 908, 11 238 files of the type ' $NtServicePackUninstallIDNMitigationAPIs$ ' 2.51 GB of occupation. Thay are multiplying faster than rabbits and occupation of the CISC more space. Can I safely delete these files? Colin

  • How can we get the last time of reboot of the device in bb10

    Hello can we get last time when starting the device developing native blackberry 10.