Copy and delete using FM - HR_INFOTYPE_OPERATION..

Hi All,
I would like to copy the record and delete the record using the FM - HR_INFOTYPE_OPERATION..
Scenario : For Example IT 0010
Existing Record
BEGDA                      ENDDA
01.01.2005     30.09.2007
I would like to copy the records with new begda - 01.10.2007, this is working fine and I am doing the commit work after FM - HR_INFOTYPE_OPERATION with Action COPY.. After this I have put a break point and cross checked theire are two records in IT 0010
BEGDA                      ENDDA
01.01.2005     30.09.2007
01.10.2007     31.12.9999
After this again I am using HR_READ_INFOTYPE with BEGDA and ENDDA as 01.10.2007, I was expecting the latest record that begda with 01.10.2007 but I am getting the old record that 01.01.2005 and 31.12.2007….!! When I cross check using PA20/PA0010 It shows two records but when I use HR_READ_INFOTYPE it still access the old records…!!, how do we overcome this , for me I need to record with begda 01.10.2007 and endda 31.12.9999 so that I can delete it…!!
Please suggest..
Regards,
Mangalagi S V

Dear Suresh,
Thanks for the suggestion., it's worked..!!
Regards,
Mangalagi S V

Similar Messages

  • Getting eroor while copying and deleting user

    Hi All,
      I am unable to copy and delete users from one client, we are in ecc6.0. i am getting the following error while copying and deleting. the error is
    NUMBER_GET_NEXT AENDBELEG INTERVAL_MISSING.
    Please help me in this regard,
    thanks,
    praveen

    Hi Praveen,
    Implement the program correction to ensure that the system issues the correct error message.
    Manually create the missing interval.
    You can use error message CD 121 to enable you to identify the error more accurately. Depending on the additional information, the status is as follows:
    OBJECT_MISSING : The entire AENDBELEG number range object is missing and must be created.
    INTERVAL_MISSING: Number range interval 01 is missing and must be created.
    INTERVAL_NOT_INTERNAL: The definition of number range interval 01 is incorrectly set to 'external number assignment'. Delete the 'external' selection in the interval definition.
    Check the definition of the AENDBELEG number range object in transaction SNRO:
    Object name:   AENDBELEG
    Short text:    Change documents
    Long text:     Number Ranges for Change Documents
    To-year flag:                        Do not select
    Number length domain:                 CHAR10
    No interval rolling:                  Do not select
    Number range transaction:             SCDN
    Warning %:                            10.0
    Main memory buffering:
    No. of numbers in buffer:             10
    You must define the following interval:
    Interval No. 01
    from 0000000001
    to 9999999999
    internal number assignment
    Please look st SAP Note: <b>659573</b>
    Hope it helps.
    Please award points if it is useful.
    Thanks & Regards,
    Santosh

  • I installed Windows 7 in my Macbook pro, I can access Windows data in Mac, but I can't copy and delete it. and the same case while i am working in Windows. Could you please guide me if there is any solution, where I could copy/paste/delete my data.

    I installed Windows 7 in my Macbook pro, I can access Windows data in Mac, but I can't copy and delete it. and the same case while i am working in Windows. Could you please guide me if there is any solution, where I could copy/paste/delete my data.

    OS X can natively read NTFS of Windows, but not write to it.
    Windows can't read or write to HFS+ of OSX, and that's a good thing from a security standpoint.
    Ideally if you share files between operating systems you should have a FAT/MSDOS formated USB key or hard drive. (exFAT external drive if any of your files are over 4GB in size) both these formats are universal for OS X or Windows.
    If you install software into Windows and OS X to read each others formats, then you have to pay to update/upgrade it deal with headaches.
    If you swtich between Windows and OS X a lot, don't need full hardware performance for Windows, you may consider installing virtual machine software like VMFusion or Parallels which can take a copy of your Windows in Bootcamp and place it into OS X as a file then run that copy of Windows in a window in OS X like so.
    Advantage here is you run most of your light weight Windows programs like this at the same time as OS X.
    Benefit is you can run just about any Windows or Linux version and OSX server editions (not client versions)
    Bootcamp only allows Windows 7, that's it now.
    You'll also be interested in two fre pieces of software, Carbon Copy Cloner and Winclone on macupdate.com.
    CCC clones OS X partition and Winclone clones the Bootcamp partition. Valuable for you.
    Good Luck

  • Currently, I cannot copy and paste using the icons in the toolbar. How do I enable this?

    I am trying to make edits to a website for our company. Currently, I cannot copy and paste using the icons in the toolbar. Instead, I have to use control+c and control+v which doesn't always work. How do I enable the feature to be able to use the icons?

    Are those toolbar buttons grayed?
    Do the entries in the Edit menu look enabled if there is text selected or text on the clipboard?
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Advanced table copy and delete slow when done programatically

    I am modifying a line in an advanced table, then copying it and deleting it. What I noticed is that
    it takes a lot less time to copy and delete manually within the application verses doing it programatically.
    To copy or delete 10 lines it takes about 1 or 2 seconds within the form. When I do this programatically
    it can take up to 20 seconds. Does anyone know why it takes so much longer?
    Here is a sample of my code.
              porequisitionlinesvorowimpl.setSelected("Y"); //programatically select line for copy
         ArrayList deletearraylist = null;
         String s1 = porequisitionlinesvorowimpl.getItemNumber();
              java.sql.Connection connection = oadbtransaction.getJdbcConnection();
              //Query values from for child item.
              OraclePreparedStatement oraclepreparedstatement = null;
              ResultSet resultset = null;
              try {oraclepreparedstatement = (OraclePreparedStatement)connection.prepareStatement("SELECT I2.DESCRIPTION WHERE                       I.SEGMENT1 = ?");
                               int i = 1;
                               oraclepreparedstatement.defineColumnType(i++, 12, 240);                                                                 oraclepreparedstatement.setString(1, s1);
                               resultset = oraclepreparedstatement.executeQuery();
                               while(resultset.next())
                                    //Collect values from query for child item.
                                    String desc = resultset.getString(1);
                              porequisitionlinesvorowimpl.setItemDescription(desc);
                              //Copy modified parent to produce a child line.
                              ArrayList copyarraylist = new ArrayList(2);
                               copyarraylist.add("populateAndDuplicate");
                               copyarraylist.add("lines");
                               executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutLinesSvrCmd", copyarraylist);
                               } //while loop for resultset
              resultset.close();
         oraclepreparedstatement.close();
              catch(SQLException sqlexception) {
                   ErrorUtil.handleFatalException(oadbtransaction, sqlexception, this);
              //Delete original Kit Parent           
              deletearraylist = new ArrayList(2);
              deletearraylist.add("populateAndDeleteReqLines");
              deletearraylist.add("lines");
              executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutLinesSvrCmd", deletearraylist);

    I timed these too and they appeared to completed very quickly. The only events that took a significant amount of time where the calls to the executeServerCommand when I copied and deleted lines.
    Can the database connection and looping the resultset be slowing these activities down?
    There is no VO existing that generates the query results I am looking for. Do I need to create my own VO?

  • How can I copy and paste using 'CTR "C" and "P"?

    Hi Guys,
    How can I copy and paste using 'CTR "C" and "P"?

    Press Command and V instead of Control and P.
    (110450)

  • Using a server side package to copy and delete flat files.

    Can anyone tell me if it is possible to copy or delete flat files using comands issued from within a PL/SQL program unit on the server. I know of the package UTL_FILE for the reading and writing of flat files.

    Malcolm,
    if you use 8i, you can create a Java class to do that for you, and call one of it's metohds from PL/SQL, see http://www.oracle.com/oramag/oracle/00-Mar/o20java.html
    null

  • Copy and paste using Voice Over

    Hello,
    I use Voice Over on Leopard 10.5 and am having problems using cut, copy, and paste via Finder.
    1. Command+X for cut never seems to work. The CUT option in the Finder edit menu is always dimmed.
    2. Finder seems to always hang if I paste a file into a folder which contains a file with the same name as the file I am trying to paste. Sometimes, but not always, I get an Alert with buttons to replace the file or to stop the copy. Alas using vo keys + SpaceBar or even vo keys + Shift + SpaceBar to activate either of these buttons never seems to work.
    Am I doing anything wrong? Is there a Leopard bug here?
    Many thanks.
    Paul Hopewell
    [email protected]

    Paul Hopewell wrote:
    1. Command+X for cut never seems to work. The CUT option in the Finder edit menu is always dimmed.
    To quote an old joke, "it's not a bug, it's a feature!"
    The Finder does not allow you to Cut an object. `This is because if there were a crash during the operation, the object might be lost both from its source and its destination. You simply have to copy the object (Command-C), then paste it (Command-V), then return to the source folder and delete the object.
    2. Finder seems to always hang if I paste a file into a folder which contains a file with the same name as the file I am trying to paste. Sometimes, but not always, I get an Alert with buttons to replace the file or to stop the copy. Alas using vo keys + SpaceBar or even vo keys + Shift + SpaceBar to activate either of these buttons never seems to work.
    Here the procedure requires you to interact with the Alert dialogue box three times in a row. After the first interaction, you hear "Interact with. List operation progress, group"; after the second time, you hear "Interact with. Operation progress, group, 3 items unknown"; after the third time, you hear "Interact with. Unknown. 3 items. An item named (filename) already exists in this location. Do you want to replace it with the one you're moving?". You can then navigate once right to the Stop button, or twice to the Replace button.
    HTH

  • Defining event handlers for renaming, moving, copying and deleting of files.

    Hi every one.
    I had created a tool for InDesign CS6 written using Javascript to manipulate portions of text in nested way by marking them with small non-printing small anchored text frames contains sequenced numbers and storing these portions as snippets in a spicific folder beside the InDesign documents.
    This tool is open source and free of charge, the only this that I want from you (after downloading) as a user to feedback and as a developer to improve it and join me.
    sourceforge.net/projects/livesnippets
    My question is not about this but I want to trace when the user rename, move, copy or delete a file of these snippets or any container folder and interact according to that by reserving the links between snippet files and their instances which interspersed in InDesign documents.
    Thanks.

    Here is an example of using Bridge events… What this scrript will do if you add it to Bridge scripts… is set *all* indesign snippets in the folders you browse to… to be locked/readonly… This means that users will get an extra dialog if they want to delete the file… Finder or Bridge… You can't just rename the file Finder or Bridge… and Bridge's Batch Rename will only function if the user makes copies to new location… You could set this property using the File Object with indesign…
    #target bridge
    onDocLoaded = function( event ) {
        if ( event.object instanceof Document && event.type == 'loaded' ) {
            lockIDSnippets();
            return { handled: true };
    function lockIDSnippets() {
        var i, count, doc, thum;
        doc = app.document;
        count = doc.visibleThumbnailsLength;
        for ( var i = 0; i < count; i++ ) {
            thum = doc.visibleThumbnails[i];
            if ( /\.idms/.test( thum.spec.name ) ) {
                thum.spec.readonly = true;
    // Register event handler
    app.eventHandlers.push( { handler: onDocLoaded } );

  • How to update and delete using rest services in SharePoint 2013..

    I am looking to create,update and delete data in SharePoint list where i am using below code for creating data..I should be performing three operations on single button click how can i achieve this.Below is the code i am using for creating data to list and
    displaying in CEWP.
    <html>
    <head>
    <style type="text/css">
    #mytable{
    border : 1px solid;
    </style>
    <script type="text/javascript" src="https://sharepointapp28.sharepoint.com/sites/Dev2013/SiteAssets/Scripts/jquery-1.11.1.min.js" ></script>
    <script type="text/javascript">
    var ListName;
    var webUrl;
    $(document).ready(function(){
     SP.SOD.executeFunc('sp.js', 'SP.ClientContext', sharePointReady);//Doubt
    function sharePointReady() {
    webUrl = _spPageContextInfo.siteAbsoluteUrl;
    ListName = "test"; 
    $('#btnSub').click(function () {
    updateItem();
    function updateItem() {
    var name = $('#txtName').val();
    var Desc = $('#txtDesc').val();
    var city = $('#txtCity').val();
        var itemType = GetItemTypeForListName(ListName);
        var item;
            item = {
                '__metadata': { "type": itemType },
                'Name': name,
                'Description': Desc,
                'City': city
        var xmethod = 'POST';
        jQuery.ajax({
            url: webUrl + "/_api/web/lists/getbytitle('" + ListName + "')/items",
            type: "POST",
            data: JSON.stringify(item),
            contentType: "application/json;odata=verbose",
            headers: {
                "Accept": "application/json;odata=verbose",
                "X-RequestDigest": $("#__REQUESTDIGEST").val()
            success: onUpdateMSOPProcessSuccess,
            error: onUpdateMSOPProcesFail
        function onUpdateMSOPProcessSuccess(data) {
    alert('successfully updated to MyList!!!')
        function onUpdateMSOPProcesFail(data) {
            alert(data.d.err);
    function GetItemTypeForListName(name) {
        return "SP.Data." + name + "ListItem";
    </script>
    </head>
    <body>
    <table style="width:500px" id="mytable">
    <tr><td colspan="3">&nbsp;</td></tr>
    <tr><th colspan="3">Rest API</th></tr>
    <tr><td colspan="3">&nbsp;</td></tr>
    <tr><th>Name</th> <td> : </td> <td> <input type="text" id="txtName" /> </td></tr>
    <tr><th>Description</th> <td> : </td> <td> <input type="text" id="txtDesc" /> </td></tr>
    <tr><th>City</th> <td> : </td> <td> <input type="text" id="txtCity" /> </td></tr>
    <tr><td colspan="3">&nbsp;</td></tr>
    <tr><th></th><td colspan="2" align="left"><input type="button" value="submit" id="btnSub" /></th></tr>
    <tr><td colspan="3">&nbsp;</td></tr>
    </table>
    </body>
    </html>

    Hello,
    With one button you want to perform 3(Create, Update and Delete) operation
    To create:
    First check whether the data exist with full combination of Name,Desc and City.
    If not exist you can execute the create function.
    If exist, get confirmation to delete the item by pop up. Using item ID you can perform Delete operation
    To Update:
    How you want to update the item, by keeping unique value or combination of columns?
    based on that you can perform the update operation.
    Whenever you see a reply and if you think is helpful, click "Alternate TextVote As Helpful"! And whenever you see a reply being an answer to the question of the thread, click "Alternate TextMark As Answer

  • How I can highlight, copy and paste using magic mouse?

    I'm wondering how I can use Magic Mouse to highlight, copy and paste documents. I look at directions in manual and preferences, but could not find the answer.

    Just like any mouse. Click down at the start of text you want to highlight, drag to the end of the text. To copy, either use cmd-C, or ctrl-click (hold down the ctrl key and click) or right-click, and click Copy in the popup menu. For paste, cmd-V, or use Paste in the right-click menu.
    Matt

  • Error message when I try to copy and paste using mouse

    I am taking college classes online. When I try to copy and paste something using the right mouse button I keep getting error messages that something is blocked on my browser, and cannot copy and paste. When I use ctrl A ctrl C ctrl V everything works fine, but I don't always want to copy everything. How can I fix this because its starting to be a hassle.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • Can't copy and paste using mouse

    Hello all.
    It seems that after the installation of patch # 19 for Unix AIX the feature of copy and paste by using the middle button of the mouse doesn't work anymore.
    Does anyone confirm this behavior? If so, is there any work around to solve this issue?
    Thanks in advance,
    Fred
    Edited by: [email protected] on Feb 17, 2009 11:12 AM

    I think CUT, COPY, PASTE works like Forms 6i in Windows XP.
    I am giving the detail If you feel that it is better then correct me otherwise reply me for more.
    1. Goto Form's Object Navigator Property
    2. Find Popup Menus Node
    3. Doubble Click on it.
    4. Menu would appear.
    5. Doubble Click on it.
    6. Menu Item would appear.
    7. Give menu name and goto its property.
    8. Goto "menu type item" on Property Platte
    9. Select "Magic" from it.
    10. Now, goto "magic item" on Property Platte
    11. select "cut" from it.
    12. Now, goto form and then goto that's item property for which you want to show the menu.
    13. Goto "popup menu" on Property Platte.
    14. Select defined menu.
    15. Now run the form and test it.
    I hope it would work in other platforms.

  • Can I programmatically copy and delete VIs within LLBs?

    When I try to programmatically copy a vi within a llb using the "copy"-vi I get an error. The same occurs with "delete". Is there any way in LabView 5.1 to get that going? Does it work in LV 6? Thanks for any idea,
    Daniel Troendle

    Dennis is partially correct. I think all LV versions have it, because it is used in the menu system to manage VI libraries.
    If you go to vi.lib->utility->libraryn.llb, you'll see the librarian vis, including the librarian delete. This will allow you to delete a file in a library.
    I don't have the professional version, and I have it. I tried it, and it works.
    Mark

  • Copy and Paste using Adobe Flex3

    I am trying to copy the images from Adobe Flex 3 application
    and paste it in the Microsoft Word or PowerPoint. I couldn't find
    any examples online. I am not sure whether I could do this using
    Adobe Flex3. I know this is possible with Adobe AIR.
    Could you please provide me an example for how to do this
    using Adobe Flex3? I have Flash Player 9.
    Thanks,
    maluri

    Hi BOX697,
    I would suggest posting this question in the Adobe Bridge forum, located here: http://forums.adobe.com/community/bridge
    You will probably get a quicker answer there!
    Cheers,
    Michael

Maybe you are looking for