How to remove the duplicate HR record from per_all_people_f table

Because of some mistake user has created two records for one employee one with start date 4th may 2010 and end date with 1st may 2011 and another with start date with 2nd may 2011 and end date is 31st of dec 2012.
When I go to enter and maintain employee i found the record which starts with 4th may 2010 and end date with 1st may 2011.
Please let me know how to remove the end date from this record.
when I ran the query
select * from PER_ALL_PEOPLE_F PAPF where upper(first_name)='UDAYA';
i have first four column for this type.I want to remove the first row from here
41246     02-MAY-11     31-DEC-12     81     1125
41246     04-MAY-10     01-MAY-11     81     1125
Please help.
Regards,
Prakash

Okay, so you wish to just have one person record from the 4th May 2010 through to the 31st December 4712, right?
In that case, do this:
1) Query the person in the Enter & Maintain person form
2) Hit Delete on the toolbar
3) Select "Delete Next Change" from the date-track mode and save
4) Re-query
Now the date-track update from 2nd May is gone.

Similar Messages

  • How to get the last inserted record from a table ?

    :-) Hiee E'body
    I work on Oracle 8i and need to get the last
    record inserted in a table.
    I have tried using rownum and rowid pseudo-columns
    but that doesn't work.
    Can you please help me out ?
    :-) Have a nice time
    Vivek Kapoor.
    IT, Atul Ltd.,
    India.

    I'm not sure about 8i features.
    I assume here that you don't have 'Date-Time' stamp columns on the table which is the easiest way to determine the last inserted row in the table.
    If not try the following :-
    select address, piece, SQL_TEXT
    from V$SQLTEXT
    where upper(sql_text) like '%INSERT INTO TABLE_NAME%'
    Substiute the TABLE_NAME with the name of the actual table.
    Have fun.
    Regards,
    Shailender
    :-) Hiee E'body
    I work on Oracle 8i and need to get the last
    record inserted in a table.
    I have tried using rownum and rowid pseudo-columns
    but that doesn't work.
    Can you please help me out ?
    :-) Have a nice time
    Vivek Kapoor.
    IT, Atul Ltd.,
    India.

  • How to remove the system data details from the overview tab in crmd_order?

    Hi All,
    How to remove the system data details from the overview tab in crmd_order?

    Hi,
    It is a standard functionality. Those information will be very useful when you send a message to SAP.
    If you still want to remove them, raise an OSS message.
    Regards,
    Rajesh Kumar

  • How to get large no of records from adf table

    Hi All,
    I'm working on adf.I'm using jdeveloper 11.1.1.5 version.In my adf application i have 1000 records in my adf table.I want to get the 500 selected records from that table at a time.But im not able to get huge number of records.How can i get the records from adf table.Please give me ur valuable suggestions.
    Thanks!

    Hi.
    for large record check the oficial doc.
    http://docs.oracle.com/cd/E24382_01/web.1112/e16182/bcadvvo.htm#CEGDBJEJ
    PAGE_RANGING is the best option for large tables.
    and these maybe will help you
    Re: Performance scrolling large ADF tables
    Re: Expert opinion needed: Best practices to handle huge rowsets on UI

  • HT2589 How to remove the credit card details from itunes?

    How to remove the payment details from itunes?

    Click "Account" under Quick Links at the top right of the iTunes store. Next to payment information click "Edit" and then select "None" under payment method.
    On an iOS device go to Settings>Store>Apple ID>View Apple ID>Payment Information>None.
    If "None" is not an option, you may want to contact iTunes support:
    http://www.apple.com/support/itunes/contact/

  • How to remove the duplicate Columns in Multiple Rows?

    Hi,
    I want to remove the duplicate columns in a Multiple Rows.
    For example:
    Now i'm getting the output like this
    S_NO Order_number Assy_item Assy_Desp Item_Number
    1     S3123 12345 TEST     *1245*
    2     S3123 12345 TEST     *1256*
    3     S3123 12345 TEST     *1289*
    4     S3123 12345 TEST     *1223*
    5     S4123 42345 SAMPLE *4568*
    6     S4123 42345 SAMPLE *5656*
    7     S4123 42345 SAMPLE *4558*
    the Original output should be like this
    S_NO Order_number Assy_item Assy_Desp Item_Number
    1     S3123 12345 TEST     *1245*
    2                         *1256*
    3                         *1289*
    4                         *1223*
    5     S4123 42345 SAMPLE *4568*
    6                         *5656*
    7                         *4558*
    note: Alignment Problem all the Bold Numbers are Item Number(Last Column)*
    i'm using XML and RTF template.
    RTF Template is a Basic Table like Structure
    i pasted the XML code below
    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="items" version="1.0">
    <parameters>
    <parameter name="P_DATE" dataType="date"/>
    <parameter name="P_DEPT_NO" dataType="varchar2"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="ROW1">
    <![CDATA[
    SELECT
    SUBSTR(IMGR.ORDER_NUMBER,3,2) MACHINE_NO
    ,IMGR.ORDER_NUMBER
    ,IMGR.ASSY_ITEM_NUMBER
    ,IMGR.ASSEMBLY_DESCRIPTION
    ,IMGR.ITEM_NUMBER
    ,IMGR.ITEM_DESCRIPTION
    ,SUBSTR(IMGR.ORDER_NUMBER,1,2) DEPT_NO
    ,IMGR.PLAN_DESCRIPTION
    FROM XXI.IGL_MRP_GROSS_REQUIREMENTS IMGR
    WHERE IMGR.DEMAND_TYPE IN ('Discrete job','Non-standard job')
    AND IMGR.PLAN_DESCRIPTION ='MRP-PRODUCTION'
    AND IMGR.DEMAND_DATE <= :P_DATE
    AND SUBSTR(IMGR.ORDER_NUMBER,1,2) IN (&P_DEPT_NO)
    ORDER BY
    DEPT_NO
         ,MACHINE_NO
    ,IMGR.ASSEMBLY_DESCRIPTION
    ,IMGR.ASSY_ITEM_NUMBER
    ,IMGR.ORDER_NUMBER
    ,IMGR.ITEM_NUMBER
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_IGLOO_QA_FPI" source="ROW1">
    <element name="MACHINE_NO" value="MACHINE_NO"/>
    <element name="ORDER_NUMBER" value="ORDER_NUMBER"/>
    <element name="ASSY_ITEM_NUMBER" value="ASSY_ITEM_NUMBER"/>
    <element name="ASSEMBLY_DESCRIPTION" value="ASSEMBLY_DESCRIPTION"/>
    <element name="ITEM_NUMBER" value="ITEM_NUMBER"/>
    <element name="ITEM_DESCRIPTION" value="ITEM_DESCRIPTION"/>
    <element name="DEPT_NO" value="DEPT_NO"/>
    <element name="PLAN_DESCRIPTION" value="PLAN_DESCRIPTION"/>
    </group>
    </dataStructure>
    </dataTemplate>
    Please Share your ideas.
    Thank
    Aswath

    hi Ananth,
    i tried the logic but its also not printing the First Line.
    Syntax:
    <?if:ORDER_NUMBER!= ORDER_NUMBER?><?ORDER_NUMBER?><?end if?>
    I think this condition works fine if it is start from second line of the row.
    Output:
    S_NO Order_number Assy_item Assy_Desp Item_Number
    1     12345 TEST     1245
    2     12345 TEST     1256
    No Order_number displayed.
    i hope you got my point. Please help me to get through it.
    Thanks
    Aswath

  • How to remove the DATA Provider(Query) from the WAD 3.5

    Hi,
         I want to remove the unused dataprovider(query) from the WAD 3.5,
         How to delete the dataprovider.
    Please suggest here

    Go to HTML tab. You will see all the data providers on top. You can delete the unused ones there.

  • How to Remove the appropriate extent parameters from the command

    Hi friends
    I am altering one B-tree index
    alter index employees_last_name_idx storage(next 400k maxextents 100);
    I am getting error
    Ora-25150:-Remove the appropriate extent parameters from the command
    How I can remove it
    Plz help me
    Best regards
    Raza
    Edited by: user8021439 on Dec 8, 2009 1:35 AM

    If the tablespace has been created with EXTENT MANAGEMENT LOCAL UNIFORM or EXTENT MANAGEMENT LOCAL AUTOALLOCATE, you cannot change the NEXT and MAXEXTENTS parameters of segments (tables or indexes) after having created them.
    Check the tablespace parameters in DBA_TABLESPACES for the tablespace that index has been created in.
    Why do you want to change those parameters anwyay ? Such changes were sometimes used in Tablespaces that are Dictionary Managed -- pre 8i/9i
    Hemant K Chitale

  • How to remove the installed base view from the IC web client?????

    Hello All
    I am working on CRM 6.00 IC webcilent
    In the interaction center view there two views called installed base and objects, i want to remove these two views as we donu2019t need them I removed the there fields using BSP WD workbench but still the view is there, is there a way to remove them without enhancements?
    Regards
    Jacopo Francoise

    Hi,
    Just check if it works for you??
    Go to:
    SPRO->IMG->CRM->Interaction Center WebClient->Define Account Identification Profiles
    Select your account identification profile and go to Object Components.
    Remove the entry of ICCMP_IBASE from here.
    Thanks and Regards,
    Rohit

  • How to remove the duplicate record in DART Extract

    Hi Guys,
    We are getting duplicate record when we do validate the DART extract file through DATA VIEWS for FI General Ledger Account Balances. If any one have experance on this, pls help us.
    Following are the steps we done to Validate the DART EXTRACT File for FI General Ledger Account Balances.
    1. We have run the DART extract program to extract the data from table to directory file by period vice in T.code FTW1A.
    2. When we do validate the data from DART extract file through DATA VIWE for FI General Ledger Account Balances in T.code FTWH, getting duplicate record.
    We unable to find out from where the duplicate records are coming out. will be great if any one can help us immediately.
    Thanks & Records,
    Boobalan,v

    If the dup records are actually in the DART View versus the DART Extract, you could try OSS Note 1139619 DART: Eliminate duplicate records from DART view.
    Additional Note - 1332571 FTWH/FTWY - Performance for "Eliminate duplicate records
    Colleen
    Edited by: Colleen Geraghty on May 28, 2009 6:07 PM

  • How to remove the Options and Task from the toolbar

    In the FLM portal initially we can see 'Options' in the menu bar after we log in. Below it there is 'Tasks' and 'Reports'. on clicking 'Tasks' and new menu bar 'Tasks' can be seen, under which 'New Tasks' option is there. When we click on 'New Forms' it shows the list of forms and when we select the desired form it opens the interactive form.
    My problem is when this form is opened on the header the 'Options' and 'Tasks' bar can be seen, under which the adobe menu bar comes (Print, Save, Zoom etc.) . This 'Options' and 'Tasks'  how to remove from the interactive forms page.
    Edited by: NIKHILKUMAR POOJARI on Feb 13, 2009 4:24 PM

    Dear Mano,
    By using Authorizations you can remove the Drag and Relate Menu
    Goto Administration ---> System Initialization -
    > Authorization -
    > General Authorization
    General -
    > Drag & Relate -
    > No authorization
    Regarding Authorizations, click the below link to get details
    [Define Authorizations|https://websmp205.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_HIER_KEY=701100035871000437965&_OBJECT=011000358700000481572006E&_SCENARIO=01100035870000000183&]
    Regards,
    Bala

  • How to remove the header in Report from SQVI

    Folks,
    I created a report by joining 4 tables in SQVI, the output data is around 200 pages. I need to remove the header from the report so I can down load to a excel.
    Can some tell me how to switch of the header in SQVI ( Layout Mode). I did this before using Legend on/off but I quite didn't remember how I exactly did it.
    Thanks,
    Kumar

    Hi,
          It is not about the thing that, whether your source is XML or flat file. If you dont want some thing in your source file , dont consider it and dont map it with your target structure. think that, your not getting the header in your source.  What is the header here.
    <Emp_details>
    <Emp_Id> Employee No </Emp_Id>
    <Emp_Name> Employee Name </Emp_Name>
    </Emp_details>
    <Emp_details>
    <Emp_Id> 1234 </Emp_Id>
    <Emp_Name> xxxx </Emp_Name>
    </Emp_details>
    <Emp_details>
    <Emp_Id> 5678 </Emp_Id>
    <Emp_Name> yyy </Emp_Name>
    </Emp_details>
    you have two fields under node Emp_details. What do u want to avoid here?
    Regards,
    Reyaz

  • What is the best way to get the end of record from internal table?

    Hi,
    what is the best way to get the latest year and month ?
    the end of record(KD00011001H 1110 2007  11)
    Not KE00012002H, KA00012003H
    any function for MBEWH table ?
    MATNR                 BWKEY      LFGJA LFMON
    ========================================
    KE00012002H        1210             2005  12
    KE00012002H        1210             2006  12
    KA00012003H        1000             2006  12
    KD00011001H        1110             2005  12
    KD00011001H        1110             2006  12
    KD00011001H        1110             2007  05
    KD00011001H        1110             2007  08
    KD00011001H        1110             2007  09
    KD00011001H        1110             2007  10
    KD00011001H        1110             2007  11
    thank you
    dennis
    Edited by: ogawa Dennis on Jan 2, 2008 1:28 AM
    Edited by: ogawa Dennis on Jan 2, 2008 1:33 AM

    Hi dennis,
    you can try this:
    Sort <your internal_table MBEWH> BY lfgja DESCENDING lfmon DESCENDING.
    Thanks
    William Wilstroth

  • How to remove the "Index Page" option from the Router in Network Magic Pro 5.5.9195

    I find it ironic and I can click on my router in the Map view of network magic, and the last option is "Index Page".  This immediately loads my router setup in a browser window. It completely bypasses the router login and password.  I do not want anyone to be able to start my PC, open Network Magic, and click this option and have access to my router.  This is stupid.  How do you turn this option off, remove it, or hide it?
    Yes, I know, I could put a password on my PC, but I share it, with other family members, and at this time I don't have user accounts setup for them.  
    I am looking for a solution in Network Magic, not my OS.
    Thanks,
    Brian

    Anything you do without submitting to form has to be done on the client side (ususally by JavaScript) using data which has been send already from the server.
    With JavaScript you can do quite a bit. You can download tables which don't necessarilly appear on the screen, loading them into JavaScript arrays by dynamically generating javascript. Then you can pick up events like drop-box selection and use these tables to chose what you do next (e.g. preloading other fields, setting drop box content etc.).
    Or, you can cause forms to be submitted when actions like a selection happen without the user clicking a button. It's generally a matter of how much data you'd need to transmit.
    Another posibility is to use a Java applet, which can generate requests to the server and handle the results as it chooses. That are a number of problems with that but occasionally it's the best solution.
    What you can't do is to handle user input inside a JSP. The JSP has come and gone before the user even gets to see your form.

  • How to recover the missing delta records from R/3

    Hi Experts,
    I am Beginner in BI.
    User has created a ticket stating that, he found that there are only three invoice numbers pulled from R/3 (2lis_13_vaitm) to cube for date on 24.05.2010 where has in r/3 there are 372 invoice numbers are available.  
    i was suggested to recover the data for 24th may'10.
    Please tell me detailed steps to recover the data for one day. Invoice data source will feed the data to DSO and then CUBE.
    Thanks in Advance.
    Latha.

    Hi,
      Please search in forum for how to do a repair full load. You have to fill the setup tables for 24th of may and then do a repair full load.Also check is there any restriction which prevented the invoices from loading.
    Regards,
    Raghavendra.
    Edited by: Raghavendra Padmanaban on Sep 23, 2010 1:42 PM
    Edited by: Raghavendra Padmanaban on Sep 23, 2010 1:43 PM

Maybe you are looking for

  • Iphone 3G not recognized by iTunes 8.0

    Hi all, I recently upgraded to iTunes 8.0, and it no longer recognizes my 16GB iPhone 3G. However, the USB connection seems to be working fine. I'm running Windows XP Pro, and have tried restarting both the phone and the computer, but nothing seems t

  • Weblogic, Forms and reports 11g - help with report server

    Hi Everyone To start with i'm very new to forms and reports (3 months!!!) so my question may sound a bit silly. At the moment we have 10 apps using forms and about 6 of them using reports. All the reports get run from the forms. We are upgrading form

  • DYnamic data grid through ActionScript

    Hi... I want to create a Data grid dynamically during runtime based on some input through action script. It will be helpful if some one can post me an example of how to creat the data grid dynamically and use all its common properties. Regards

  • IDVD 6 Quit Unexpectedly

    iDVD 6 "quits unexpectedly" and reliably after iPhoto libraries are loaded in the media window without further action. I have the latest 10.4.7 and iDVD 6.02, no further program running on a Duo G5 2 Ghz 6.5Gig Memory. Any advice what I should do or

  • Why I can't buy diamond in game Castle Kingdom ?

    Tại sao tôi không mua được diamond trong game Castle Kingdom ? Lúc tôi mua , nó thông báo rằng "Please contact Itunes Support to complete this transaction" .