How to make National Identifier unique across business group

Hi Everyone,
We're into R12.1.3 Oracle HRMS
HR: Make National Identifier Optional = No
HR: NI Unique Error or Warning = Error
HR:Cross Business Group = Yes
HR: Cross BG Duplicate Person Check = Yes
The idea is to make raise an ERROR whenever user encounter a duplicate national identifier
Thank You
Elmer

Hi Elmer,
Which legislation code are you running? It should be set to 'I'. Check with
select application_short_name, legislation_code, status from hr_legislation_installations;
If it is not set some post install steps may have been missed.
Regards,
Joe

Similar Messages

  • How to make an object distributed across multiple jres?

    Hi,
    We used cache data mechanism for performance tuning. It will store data in static variable (Hashtable) and get initialized when app starts . We are using IPlanet Application Server and
    Using 6 KJS engines. This object ( Hashtable) is not distributed across all JRES.It has to reinitialize data again when request goes to any other KJS.
    We avoid sharing data in session and request, as data is huge.
    Can any one help us how to make this object distributed across all KJSs?
    Thanks in advance.
    raj

    We used cache data mechanism for performance tuning.
    It will store data in static variable (Hashtable) and
    get initialized when app starts.
    We are using IPlanet Application Server and
    Using 6 KJS engines. This object ( Hashtable) is not
    distributed across all JRES. It has to reinitialize
    data again when request goes to any other KJS.
    We avoid sharing data in session and request, as data
    is huge.
    Can any one help us how to make this object
    distributed across all KJSs?When you say 'initialized when app starts' do you mean iPlanets StartUp classes, rather than the Servlets init() ? Given a 'huge' dataset, avoid the latter.
    I'd suggest that a better approach is to implement this as an Entity Bean and accessed from Session bean and using Value Objects to return the data subsets.
    Checkout the Java Pet Store
    http://java.sun.com/blueprints/code/jps13/datasheet.html

  • How to make the entry unique

    Hi guys,
    I have a table of people with the following fields:
    firstName
    lastName
    DOB
    email
    address
    group
    as you can see, nothing makes an entry unique. so say I would like to get some info about John Smith, I might found more than one entry for John Smith.
    Question: any idea how to make an entry unique? hashing???
    I'm using mySQL.
    Thanks for any help
    Peter

    You need to assign a primary key to your table ( a field that can't be reproduced). You can add a social security field and make it your primary key.
    Your mysql line might look like this (for a table with 2 fields):
    mysql> CREATE TABLE Info( Name varchar(64),
                                                         SSN varchar(64) primary key);

  • Supplier data across business groups

    Our business group is currently using only Core HR and there are several contractors/contingent workers in the system. What is the best way to capture the supplier name? Right now, it is captured in some DFF but I want to use the supplier name field in the supplier tab of assignment form. There are other business groups in the same instance for different countries and they are using the purchasing module and have defined suppliers for their use which I am able to see in the list of values for supplier field in my business group.
    I want to suggest our HR folks to start using the supplier field instead of capturing this information in some DFF. Will there be any negative implications of doing this? Is supplier data shared across business groups? If I define suppliers for our business group purposes, will the other business groups be able to see our values?
    Please suggest.
    Thanks
    Jay
    Edited by: Jay on Oct 10, 2012 8:02 AM

    Hi Ranay,
    Approvals using Position Hierarchy can be used across Business Group. But specific to purchasing module not 100% sure.
    Thanks
    AshokP

  • Using i-setup, how to migrate EBS configuration from one Business Group to the other within the instance?

    Using i-setup, how to migrate EBS configuration from one Business Group to the other within the instance?

    Sandeep,
    Yes, I think your command format is not correct.
    Try the one that Rod posted.
    About the note on metalink. It seems that it is under review.
    Here is the basics of the note:
    1. Determine the owner of the workbook. Say UserA.
    2. Open an sqlplus session to the database.
    3. Run the following sql:
    SQL> set heading off
    SQL> set feedback off
    SQL> set echo off
    4. Now spool the result of the following sql to a file.
    SQL> spool c:\exp.bat
    5. Run the sql statement
    NOTE: CHANGE DISCOE_HOME
    SQL>select '<Disco_Home>\discvr4\dis4adm /connect
    EUL_owner_name/passwd@connect_string /export c:\'||rownum||'.eex /workbook "'||
    doc_created_by||'.'||doc_name||'"' from
    SELECT EUL4_DOCUMENTS.DOC_NAME, doc_created_by, NVL(EUL4_EUL_USERS.EU_USERNAME,
    'Document Not Shared') shared_with
    FROM EUL4_ACCESS_PRIVS EUL4_ACCESS_PRIVS, EUL4_DOCUMENTS EUL4_DOCUMENTS,
    EUL4_EUL_USERS EUL4_EUL_USERS
    WHERE ( EUL4_DOCUMENTS.DOC_ID = EUL4_ACCESS_PRIVS.GD_DOC_ID(+) ) AND (
    EUL4_EUL_USERS.EU_ID(+) = EUL4_ACCESS_PRIVS.AP_EU_ID )
    where doc_created_by='UserA'
    where,
    Disco_Home is the Location or Discoverer 4 Home.
    4. SQL> spool off
    5. SQL> set feedback on
    6. Now run the batch command file (exp.bat)
    Regards
    Roelie Viviers

  • Single Item Master across Business Groups

    Hi Gurus,
    Client wants to implement single item master across the business groups (BG).
    Does this require set up of HR Profile for allowing Cross Business groups?
    Is there any other setting that needs to be done (in addition to traditional Inv Org definition)?
    Appreciate your early response.
    Thanks,
    Sudarshan

    Sudarshan
    I think you need to setup Hr security profile only if you are using that. If not you just need to enable the profile value for cross business group. This is required just in case if an employee needs to be picked up in the lov in an item attribute (I don't remember whether there is one) from diff BG.Also move order approvals need to be tested if you are using that feature.
    In general I think anything that need to do with employees need to be tested.
    Thanks
    Nagamohan

  • How to make a function take a specific group of constants

    I know i asked this before, maybe a year ago, but I totally forgot how to do it, and I haven't been programming much lately. But I was wondering if somebody can tell me how to make a certain function take specific constants. For example there are java functions, of which I can not remember that will only take certain values. So the function might look like:
    public getInfo(String INFONAME){}Where INFONAME has to be like one of two names or something, and they are constants that are defined somewhere else. If anybody knows what I mean by this, and knows how to create functions like that please let me know. Thank you.

    here's an overkill,
    import java.util.*;
    abstract class DoWhatever {
        public static Hashtable ht = null;
        public static Object DoWhat( String s, Object obj ) {
         if( null == ht ) {
             ht = new Hashtable();
             ht.put( ThisDoWhatever.NAME, new ThisDoWhatever() );
             ht.put( ThatDoWhatever.NAME, new ThatDoWhatever() );        
         return ( (DoWhatever) ht.get( s ) ).doWhatever( obj );
        public abstract Object doWhatever( Object obj );
    class ThisDoWhatever extends DoWhatever {
        public final static String NAME = "this";
        public Object doWhatever( Object obj ) {
         System.out.println( NAME );
         return null;
    class ThatDoWhatever extends DoWhatever {
        public final static String NAME = "that";
        public Object doWhatever( Object obj ) {
         System.out.println( NAME );
         return null;
    public class DoThisOrThat {
        public static void main( String[] args ) {
         DoWhatever.DoWhat( args[ 0 ], null );
    }

  • How to make clone of active directory security group

    Hi
    i am having one Security group in AD, i want to make copy or clone of that group with same members in different name in AD.
    Anybody help me out...

    Hi Vino1985,
    Just do it with ds-tools.
    dsquery group -samid %SamidOfYourReferenceGroup% | dsget group -members |  dsmod group %distinguishedNameOfYourNewGroup% -addmbr -c
    This should work as
    "dsquery group -samid " will return the distinguished name of your reference group and pipe it to dsget group
    "dsget group -members" will return all distinguished-names of the members and pipe it to dsmod group
    "dsmod group -addmbr" will all DN's to the membership-attribute of the new group the switch "-c" will continue on errors.
    best regards
    Switch
    MCITP Enterprise Administrator
    MCSA Windows Server 2012
    MCTS Windows 7 Configuration
    Disclaimer: This posting is provided "AS IS" with no warranties, and confers no rights.

  • How to make a field unique accross two or more tables?

    Hi Experts,
    We have a requirement where we need to establish uniqueness for accross two fields of two different tables.
    Consider the following example:
    Table Table1 has Field Field1 and Table Table2 has Field Field2.
    Table1>Field1 have the following values:
       Mnum_1
       Mnum_2
       Mnum_5
    and Table2>Field2 have the following values:
       Mnum_3
       Mnum_4
       Mnum_6
    Now we need to have the uniqueness defined in such a way that, adding Mnum_1 into Table2>Field2 should violate the constraint. And simillary adding Mnum_3 into Table1>Field1 should violate the constraint.
    We should be able to add a new value, say Mnum_7, into either of the column, but after adding into one, we should not be able to use the same value into the other table.
    We are using SAP MDM 5.5 SP06.
    Please let me know if this is possible and how. Even if we could define it using some valiation it would be helpful.
    BTW, Table1 is the Main table and Table2 is a Look Flat table.
    Thanks in Advance.
    Regards,
    Uday

    Hi Uday
    this is not possible. Unique keys are defined for a table and we cant link this definition across different tables.
    Even Validations work at atable level hence we can not check for the unique key violation using validations as they are in two diff tables.
    consider introducing 1 more field in table1 or 2 for defining the uniqueness may be or revisit the data model.
    Otherwise this can be controlled outside MDM. How are you maintaining values in these 2 tables- manually or via import. If this is via import and say the source files are excel then this can be checked in the excel sheet itself.
    best regards
    Ravi

  • How to make a copy of a business area in same EUL

    Hi,
    We have a standard BIS eul (which is provided by Oracle as a part of Business Intelligence pack). This EUL is powerful and very useful.
    I want to leverage this EUL as well as do some customization to this eul as per the client's requirements. The issue is -
    How to copy all the Business Areas in same EUL but different Name and identifier (as we do not want to use this in any existing workbooks. However, we want to use this in new workbooks only if the standard BIS eul does not satisfy the report requirement and needs some customisation).
    Let me know if anyone has done this before.
    Thanks,
    HP

    We had that plan as well. But then there are few things which concerns us if we go for 2 eul -
    1) If I take that approach, how can we congifure two eul in e-business suite, so that we can have one standard eul with all the standard workbooks and other custom one.
    2) And if in near future there is any BIS patch then we have to apply it at two places (the patch which might effect the metadata type of tables)
    regards,
    Hp

  • How to make a column unique in localdb

    I created a database in localdb\projectv12 in my visual studio 2013, in it i created a table with a primary key, how can I make a additional table column unique without making it a primary key.
    Knowledge is Power, Guard it Well!!

    You can also just create a UNIQUE index on the column.
    UNIQUE KEY is based on UNIQUE index as well, but there are some subtle differences between the two solutions.
    Related thread:
    http://social.msdn.microsoft.com/forums/sqlserver/en-US/3ee27f0d-1c56-4788-b948-c061ec6eda70/difference-between-unique-index-and-unique-key
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • How can make an image "float" across the screen on a path I set?

    I want to be able to insert an image, and set its path and speed so I can make it float on screen to my disgresion.

    welcome Bihmerson to the  iMovie boards ...
    Bihmerson wrote:
    I want to be able to insert an image, and set its path and speed so I can make it float on screen to my disgresion.
    not possible within iMovie (any version... )
    only option:
    FinalCutExpress, 199$ .. it allows anything you want..

  • HT2523 how to make a simple line across the page

    how to mmake a line across

    In what application, running what version of OS X?
    (A Mac cannot run iOS)

  • How to make coldfusion identify my ID in network?

    I am build a intranet site with coldfusion 7.
    Do you think if the coldfuison can get the person's network
    ID or person's active directory ID when a person access the
    intranet site?
    What is the syntax to do this if it is possible.
    Thanks
    Mark

    mark416 wrote:
    >
    > What is the syntax to do this if it is possible.
    Yes it is possible we do it all the time.
    <cfldap action="query"
    server="#variables.ldapConfig.server#"
    name="qUser"
    start="#variables.ldapConfig.start#"
    filter="samaccountname=#arguments.userName#"
    username="#variables.ldapConfig.domain#\variables.ldapConfig.user#"
    password="#variables.ldapConfig.password#"
    attributes = "#variables.ldapConfig.attributes#">
    If you combine this with 'Windows Integrated Security' In the
    Windows
    Web Server, then users connect through a Windows Network
    using a Windows
    Browser on a Windows Client the domain and user name can be
    collected
    through the cgi.auth_user parameter.

  • How to make logical link visible in workcenter group (not type AA, BB, CC)?

    In Marketing Workcenter MKT-MKT-WCC there are 5 assignment blocks with grouplinks. Except the classified link groups (AA=Create, BB=Search, CC=Reports), there are 2 non-classified groups.
    How to add a Z-link in these assignment block.
    When we create a new Z-group, add Z-links and make them visible in the businessrole, they don't appear. Only when we set the Z-group to classified, for example Create, the link becomes visible.
    Please advise,
    Toine

    Hi Toine
    If you create a Direct Link Group(including direct links with pos number), then
    assign the same to your Nav Bar Profile with some position number.
    If you do this, then by default Direct Link Group will be visible in the Business Role
    but, the links under the Direct Link Group will be invisible. So make the Direct links
    under the link group to visible and then relogin.
    It should work 100%, because i have already done the same.
    Please let me know with the steps you are following if it is still not working.
    Thanks
    Arun

Maybe you are looking for

  • Home Sharing in iTunes no longer working with Lion....

    Anyone else having this problem?? I have not seen it as a topic. We have 2007 iMacs so chips do not support Air Drop. However, I would not think Air Drop would be required for home sharing in iTunes. Moving to Lion has not been a very good experience

  • Video Playback in version 7

    Why do the videos I purchased with version 6 of i tunes play fine, but any video purchased after upgrading to version 7 play choppy. This only happens when I watch the video in itunes, They all play fine on my ipod.

  • Jumping to a specific page in a Paginated Report

    Good Day Folks, I've created a Report from an SQL query. The report is paginated (5) records/page. On the report one of the fields is a link to a form to edit the record. On the editing form I have the usual Update button which saves the record and r

  • Consuming a web service on 4.6C

    Hi Folks! I'm pretty new to this subject. Is it possible to consume a web service in the Sap version 4.6C? If it is possible, can you give me a little example of how to do this? I have checked the weblog: /people/durairaj.athavanraja/blog/2004/09/20/

  • Email report distribution

    Good morning to all, new to this forum and relatively new to the CR tool. I want to make an electronic warning system in crystal that notifies the one responsible via email. I have written the letter in CR, and it uses an ODBC source. At any given ti