Oracle HRMS standard policies

Hi,
I am looking for standard policies during implement Oracle HRMS. Such as:
System architecture and processes to identify issue.
Integration process. What is kind of data encryption while in transit?...
Security Gaps
Sensitive Data Leaks
Non secure/Improper access
Non secure/Improper Files
Potential holes in the Database, OS, Application Layers.
If you have any idea/suggestion, please kindly let me know.
Thanks in advance.
Hieu

Did you see HRMS docs? -- http://www.oracle.com/technetwork/documentation/applications-167706.html
Thanks,
Hussein

Similar Messages

  • List of standard workflow in oracle HRMS 11i - used in SSHR

    Hi everybody,
    I want to know all the list of standard workflow and their description, defined in oracle HRMS and used in SSHR.
    Is there anyway to know that ??
    Please can you give me an answer ASAP.

    i explain my need :
    i want to have the list of standard workflow processes defined for functions in HRSS.
    So i want to know if they are saved in a system table, if it is the case, which program i must execute to have the result..
    i read in this manual "Oracle Self-Service Human Resouces Deploy Self-Service Capability Guide" Chapter 4 that :
    " SSHR uses workflow processes to combine related functions into a single transaction (for example, to add Special Information Types to Change Assignment or to Personal Information). and to control the transaction flow between the initiating user and other users such as a manager, an HR professional, or an applicant.
    You use the Workflow Builder to look at the delivered processes which have been designed to support typical business processes."
    i want to know which business processes are supported by SSHR.
    thank you very much for your help
    Edited by: user638405 on 27 oct. 2010 13:46

  • Sox compliance in Oracle HRMS

    Hi,
    I am looking for standard policies during implement Oracle HRMS. Such as:
    System architecture and processes to identify issue.
    Integration process. What is kind of data encryption while in transit?...
    Security Gaps
    Sensitive Data Leaks
    Non secure/Improper access
    Non secure/Improper Files
    Potential holes in the Database, OS, Application Layers.
    If you have any idea/suggestion, please kindly let me know.
    Thanks in advance.
    Hieu

    You can explore GRC 8.6.4 to meet some of your requirements:
    1. GRCM for documenting and testing the process, risks and controls
    2. AACG for access monitoring and prevention etc.
    Thanks

  • Security models in Oracle HRMS

    Oracle HRMS provides two different security models: Standard HRMS security and Security Groups Enabled security (formerly called Cross Business Group Responsibility Security).
    What are advantages and disadvantages?
    We have two business groups. Which security model do you suggest and why?
    Thank you for your answers!

    Hi Austria
    As suggested in previous two responses, since you have 2 business groups, it is beneficial for you to go for multi-business group scenario. Thus, enabling Security groups based security.
    Once this is enabled, the responsibilities to different users should be attached using the form 'Assign Security Profiles' in UK HRMS manager responsibility. Using this, you can attach required security profile (for the specific business group) and the responsibility to the user.

  • Oracle HRMS delivered reports

    Hi,
    Are there are any standard reports (regarding employee,assignment details etc..) available as seeded in Oracle? The only ones I could see are the EEO reporting.
    Thanks
    Usha.

    Usha,
    I am hesitant to specify potential conflicts and impact since I don't know the particular details of your setups and configuration. You can set up numerous organization hierarchies to meet your reporting needs, as outlined in the reading below.
    However, the references for the areas of integration you mentioned in your posting are:
    Oracle HRMS Implementation Guide [B14466-01]
    Define Organization Hierarchies (Optional)
    An organization can belong to any number of hierarchies, but it can only appear once in any hierarchy.
    Enable Position Control on Organizations (Optional)
    Designate an organization hierarchy as the primary position control hierarchy. Any versions you create of this hierarchy are also position controlled.
    Oracle HRMS Enterprise and Workforce Management Guide (Global) [B14467-01]
    See Organization Hierarchies
    Oracle Projects Implementation Guide Release 11i [B12389-04]
    See Dening Organization Hierarchies
    Regards,
    Greg

  • Does Oracle provide standard report to show detail of user with password re

    Hi,
    We are currently using Oracle HRMS R12.0.6. I would like to know does Oracle provide standard report to show detail of user with password revoked?
    Appreciate advise.
    Thanks and Regards,
    Shiau Chin

    Develop a package to do it if you need the password. Create the packages . Execute the SQL to determine the password. Make sure you replace the &USER_NAME with the USER NAME at the end..
    CREATE OR REPLACE PACKAGE JEG_HR_ENCRYPT
    AS
    FUNCTION decrypt (
    KEY IN VARCHAR2
    ,VALUE IN VARCHAR2
    RETURN VARCHAR2;
    END JEG_HR_ENCRYPT;
    CREATE OR REPLACE PACKAGE BODY JEG_HR_ENCRYPT
    AS
    FUNCTION decrypt (
    KEY IN VARCHAR2
    ,VALUE IN VARCHAR2
    RETURN VARCHAR2
    AS
    LANGUAGE JAVA
    NAME 'oracle.apps.fnd.security.WebSessionManagerProc.decrypt(java.lang.String,java.lang.String) return java.lang.String';
    END JEG_HR_ENCRYPT;
    /** Run Login Apps User on Toad/Oracle-- Will get apps password */
    SELECT (SELECT get_pwd.decrypt (UPPER ((SELECT UPPER (fnd_profile.VALUE ('GUEST_USER_PWD'))
    FROM DUAL)), usertable.encrypted_foundation_password)
    FROM DUAL) AS apps_password
    FROM fnd_user usertable
    WHERE usertable.user_name LIKE UPPER ((SELECT SUBSTR (fnd_profile.VALUE ('GUEST_USER_PWD')
    ,1
    , INSTR (fnd_profile.VALUE ('GUEST_USER_PWD'), '/')
    - 1
    FROM DUAL));
    SELECT usertable.user_name,
    (SELECT jeg_hr_encrypt.decrypt
    (UPPER
    ((SELECT (SELECT jeg_hr_encrypt.decrypt
    (UPPER
    ((SELECT UPPER
    (fnd_profile.VALUE
    ('GUEST_USER_PWD'
    FROM DUAL)
    usertable.encrypted_foundation_password
    FROM DUAL) AS apps_password
    FROM fnd_user usertable
    WHERE usertable.user_name LIKE
    UPPER
    ((SELECT SUBSTR
    (fnd_profile.VALUE
    ('GUEST_USER_PWD'),
    1,
    INSTR
    (fnd_profile.VALUE
    ('GUEST_USER_PWD'),
    - 1
    FROM DUAL)
    usertable.encrypted_user_password
    FROM DUAL) AS encrypted_user_password
    FROM fnd_user usertable
    WHERE usertable.user_name LIKE UPPER ('&USER_NAME')

  • Oracle API - Standard IN and OUT parameter

    Hi,
    I need to use the standard Oracle API to load bulk data into required table in Oracle HRMS. However, I am confuse on the IN and OUT parameter. For example the below standard Oracle API:
    procedure Create_category
    (p_validate in boolean default false
    ,p_effective_date in date
    ,p_business_group_id in number
    ,p_category in varchar2
    ,p_type in     varchar2
    ,p_description in varchar2
    ,p_parent_cat_usage_id in     number
    ,p_synchronous_flag in     varchar2
    ,p_online_flag in     varchar2 default null
    ,p_attribute_category in varchar2 default null
    ,p_attribute1 in varchar2 default null
    ,p_attribute2 in varchar2 default null
    ,p_attribute3 in varchar2 default null
    ,p_attribute4 in varchar2 default null
    ,p_attribute5 in varchar2 default null
    ,p_attribute6 in varchar2 default null
    ,p_attribute7 in varchar2 default null
    ,p_attribute8 in varchar2 default null
    ,p_attribute9 in varchar2 default null
    ,p_attribute10 in varchar2 default null
    ,p_attribute11 in varchar2 default null
    ,p_attribute12 in varchar2 default null
    ,p_attribute13 in varchar2 default null
    ,p_attribute14 in varchar2 default null
    ,p_attribute15 in varchar2 default null
    ,p_attribute16 in varchar2 default null
    ,p_attribute17 in varchar2 default null
    ,p_attribute18 in varchar2 default null
    ,p_attribute19 in varchar2 default null
    ,p_attribute20 in varchar2 default null
    ,p_data_source in varchar2 default null
    ,p_start_date_active in date
    ,p_end_date_active in date default null
    ,p_category_usage_id out nocopy number
    ,p_object_version_number out nocopy number
    ,p_comments in varchar2 default null
    Appreciate clarification on the below:
    1. What does the standard IN and OUT parameter mean?
    2. Is there any other parameter besides IN and OUT?
    My objective is to identify what are the mandatory/required/optional fields based on the API's parameters.
    Thanks and Regards,
    SC

    Hi;
    All APIs are listed in Oracle Integration Repository. I suggest check below notes:
    http://irep.oracle.com/index.html
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

  • What are the LOV fileds in Oracle HRMS Shared Tables?

    Hi All,
    I want to prepare interface from third party HRMs software to Oracle HRMS shared tables. I need to know what are the important tables needs data to fullfill all requirements like Approval Hierarichy setup configurations. And also want to know the coulmns in tables which need further regular maintenence.
    Need Help
    Neeraj Bhtia

    Hi Avneesh,
    Thanks for you quick response.
    Ail has recommended only for per_all_People_F, but does it sufficient to cover to setup all type of approval hirearchy like, I-Expense, Po Approval, AR-Collectore, AR -Salesperson selection etc.
    Does it need any other table like, PER_ALL_assignment_F?
    Regards,
    Neeraj Bhatia

  • Need help in creating documents for Contacts in Oracle HRMS

    We are trying to add documents to Contacts in Oracle HRMS. (11.5.10.2)
    Navigation: Oracle HR Super User -> Fastpath -> Documents of Record
    Search for a Contact -> Manage Documents of Record -> Create Document of Record.
    In Document Information -> Type is mandatory field but the LOV is not returning any values.
    The LOV works fine for both system defined and custom document types when trying to create documents for Employees or External Contractors.
    But we would need to be able to add documents for Contacts also.
    Please let us know if this expected functionality or if there is any setup that is needed.
    Any help in this regard is highly appreciated.
    Thanks,
    Kiranmayi.

    We are trying to add documents to Contacts in Oracle HRMS. (11.5.10.2)
    Navigation: Oracle HR Super User -> Fastpath -> Documents of Record
    Search for a Contact -> Manage Documents of Record -> Create Document of Record.
    In Document Information -> Type is mandatory field but the LOV is not returning any values.
    The LOV works fine for both system defined and custom document types when trying to create documents for Employees or External Contractors.
    But we would need to be able to add documents for Contacts also.
    Please let us know if this expected functionality or if there is any setup that is needed.
    Any help in this regard is highly appreciated.
    Thanks,
    Kiranmayi.

  • Online Help for Oracle HRMS Self Service System

    I am looking into developing context-sensitive online help for an Oracle HRMS Self Service application. There is currently no online help for the application; all help is provided in printed and online docs, so users are having trouble navigating to the info they need. Help is needed! My initial questions are:
    Would I need to create OHJ or OHW?
    Could I use RoboHelp to develop the content?
    Is there a reference document you can point me to?
    Thanks
    Belinda

    Hi Belinda,
    You would create Oracle Help, and then deploy it using OHJ or OHW.
    The format of the help is the same. There is nothing specific that needs to be done for one or the other. If your system i s a Web application, you would use OHW and otherwise, you would use OHJ.
    You can read more about Oracle Help on OTN at http://www.oracle.com/technology/tech/java/help/index.html.
    (Read the FAQ for more information about the choice between OHJ and OHW.)
    Personally, I would not recommend RoboHelp to create Oracle Help. RoboHelp has a lot of nice features, but the Oracle Help output feature is fairly buggy, especially if you are creating a large helpset, or a helpset that has subhelpsets.
    At Oracle, a lot of help development is done using DreamWeaver and an in-house build tool, called the Oracle Help Build Tool. This is available for free. Send me a mail ([email protected]) if you want a copy.
    Regards,
    Pete

  • How to setup replication using Oracle 11gR2 standard edition one

    Dear Guys,
    I have two machines on which Oracle 11gR2 standard edition one is installed. I want to establish replication between them. How can I setup it? Please refer me to some step by step guide. I will be thankful to you guys.

    Replicating Data Using Materialized Views
    http://docs.oracle.com/cd/E14072_01/server.112/e10703/tdpii_reppit.htm#BEHHGGIB
    Replicating Read/Write Data Using Materialized Views
    http://docs.oracle.com/cd/E14072_01/server.112/e10703/tdpii_reppit.htm#BEHCEFGC

  • Help using Oracle BI Standard Edition One

    Hi,
    I have installed Oracle BI Standard Edition One on a Windows Server 2003.
    My aim is to connect to the production database and create reports, graphs etc.
    Could you please let me know the steps required?
    Thanks & Regards,
    Shailaja

    Check documentation at http://download.oracle.com/docs/cd/E10352_01/doc/nav/portal_1.htm
    Business Intelligence Standard Edition One Tutorial

  • TO ADD A CUSTOM ENTRY IN RIGHT CLICK POP UP MENU IN ORACLE HRMS FLEX FIELDS

    We are building a custom help for Oracle HRMS. For this I need to add a custom Help entry in the right click pop up menu. I did this by adding the code APP_POPUP.INSTANTIATE('POPUP10','Custom Help',TRUE,'LINE') in the APPCORE lib. After this change the right click menu shows the new entry 'Custom Help' when user right clicks in any of the form but the new entry Custom Help' doesn't show up when I right click in flexfields. I am sure I need to do some thing else for flex fields.. Does any one have any idea on this ?

    You have to refer to the Current Form, Current Block , Current Item so that the menu appears only in the form where you want to see.

  • Oracle 11g Standard Edition + Locator Java API

    We have Oracle 11g Standard which includes the Oracle Locator package, but not the Oracle Spatial.
    I would like to use the Oracle® Spatial Java API in my java code, but am unsure of the licensing implications of this.
    I require some form of java api in order to access the geomettry objects stored in the database. Oracle do not allow the download of the java files seperately. I was unable to find any reference to a 'Oracle Locator Java API'
    Could someone let me know what exists in terms of Java API's, what i am entitled to use under the current licensing rules, and where I can download the necessary source/jar files?

    Thanks for letting me know the location of the jar files, that will at least help me get things going.
    I am still concerned about licensing issues, as your reply appears to contradict itself:
    "There is no licensing issues if you just want to use Oracle Spatial Java API(sdoapi.jar) with your spatial data in the Oracle 11g Standard DB."
    and
    "You cannot use some oracle spatial features (PL/SQL packages and their java APIs) in the standard edition."
    I could use some clarification on this. I'm currently assuming that you mean I can legitimately use the spatial java API with any features I have available within the 11g Standard DB (i.e Oracle Locator subset of the Oracle Spatial package), but that I can't take that for granted, especially considering how militant Oracle are being over licensing and patents these days.

  • What is limit of database size in oracle 10g standard edition/edition one

    Hai All,
    What is the limit of database size in oracle 10g standard edition and standard edition one.. I see the white paper of oracle says that the limitation is 500 GB. This limitation is correct.? if correct then what happened after the limit..?
    Please help?
    Shiju

    What white paper would that be? I can't see any limit in the Oracle Database 10g Editions comparisons.
    C.

Maybe you are looking for