SAP HR: How to prevent delimiting of records when setting a lock

Hi All,
I am part of a SAP HR implementation. In one of the Infotypes, I am copying a record and setting a lock in the new record by going to the menu Edit-->Lock/Unlock.
This should ideally lock the record without touching the previous record. But in my case, the previous record is being delimited. Can someone tell me what settings need to be done in order to prevent the delimiting of the previous record till the lock is unlocked.
Thanks & Regards,
Shobhit

I think it depends on the Time Constraint of the Infotype in question. Do you have a valid record with a BEGDA after the record that you are trying to lock?
~Suresh

Similar Messages

  • HT1277 how do i uncheck 'password' authentication when setting up email accounts on ipad 2

    how do I uncheck the password authtication when setting up email accounts on ipad 2

    As best I know all ISP providers operating Mail Servers for their customers REQUIRE "password authentication" in order to access and download your email.  Why wouldn't you want to set it?
    Hope this helps

  • How do I turn VoiceOver off when I am locked in Guided Access on an iPad?

    I have an iPad that I use in therapy with children with impairments and often have to switch between accessibility options.  I am currently stuck in the TouchChat app with VoiceOver and Guided Access both turned on.  Every time I triple click the home button the accessibility options come up but it just reads the options aloud to me rather than letting me turn VoiceOver off.  Since I am also in Guided Access I am unable to get out of the app to go to settings to turn the VoiceOver off.  I have even tried a forced shutdown hoping that that would help, but when I turn it back on I am automatically locked back in TouchChat.  Please help!  How do I turn VoiceOver off when I am also locked in Guided Access?

    Open the Seeing tab of the Universal Access pane of System Preferences and turn it off. If it's on at the login window, turn it off from the Accounts pane under Login Options.
    (45576)

  • How to prevent summation of records in bex based on keyfigure

    Hi All,
    I am getting records from Cube as below.
    EMP1     24/1/2015    7 -- Request 1
    EMP1     24/1/2015    6 -- Request 2
    So When i display in bex report. I want to display as individual records instead of summation. How can I achieve it.
    Regards,
    Raj

    There are four approaches.
    Enhance existing cube with new characteristics and maintain unique number (for this we may need routine by updating current 0REQUID number) while loading data. we can access 0REQUID number in start routine. even if you compress the cube still we can see different records.
    Add new infoobject and through virtual characteristics add unique number it will not summarize.
    Create new infoobject let call ZUNIQUE update ZUNIQUE withe numbers like 1001, 1002 upto based on count of records in existing cube. and add ZUNIQUE infoobject to existing cube and create multiprovider with these infocube and infoobjecgt ZUNIQUE identify both objects since mutliprovider is union it will bring the data from both values ZUNIQUE from cube(no values in cube) as well as infoobject (we maintained numbers) in this case data wont be aggregate. let try this
    Final options should not compress the cube
    SAP BW BEx Virtual Characters
    Thank you,
    Nanda

  • How to prevent inserting a record in @SecondaryTable

    Hello,
    I have a table
    USER:
    -USER_ID
    -USERNAME
    -PASSWORD
    and view that is not updatable
    USER_STATISTICS:
    -USER_ID
    -TOTAL_RATING
    -OWNED_ENTITIES_COUNT
    I used @SecondaryTable annotation to get all data for a User in one class.
    {color:#339966}@SecondaryTable(name="USER_STATISTICS", pkJoinColumns={@PrimaryKeyJoinColumn(name="USER_ID",referencedColumnName="USER_ID")})
    public class User
    {}{color}
    What I want is - to save data only in USER table. I tried to set insertable=false, updatable=false to totalRating and ownedEntitiesCount, but it is impossible to do this for USER_ID in USER_STATISTICS.
    Is it possible to do what I want with @SecondaryTable approach? How I can do it in different way? Thank you very much.

    Hi Abhi
    Yes u can add records or overwrite records in ODS main difference in Cube and ODS is we can't overwrite in Cube.
    Look at this Link
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a64d3e07211d2acb80000e829fbfe/content.htm
    and check these previous threads also
    Data Load correction in Cube and ODS
    ODS: Full update: How to update existing records in ODS ?
    gives u some idea
    Regards
    NR
    Message was edited by: NR

  • How to Prevent the Duplicate record insertion by JDBC Receiver?

    HI Experts,
    I have File Sender to JDBC Receiver scenario.I am using SAP PI 7.1 system.
    Purpose of this Scenario is to read the data from specified file and INSERT or  UPDATE the same records in Oracle Database.
    Before inserting the data I want to check in the same table for prventing runtime error(Key fields Duplicatin).
    So if records with the same key fields are available in table then I want to UPDATE the same record instead of INSERT.
    Please Suggest me the poosbile way.
    Thanks & Regards
    Jagesh

    Hi Jagdesh,
    The JDBC receiver format has the following structure
    <root>
    <StatementName1>
    <dbTableName action=u201DUPDATEu201D | u201CUPDATE_INSERTu201D>
    <table>Table1</table>
    <access>
    <col1>val1</col1>
    <col2>val2new</col2>
    </access>
    <key>
    <col2>val2old</col2>
    <col4>val4</col4>
    </key>
    This structure creates a query in this way :
    UPDATE( OR UPDATE_INSERT) into Table1 set col1=val1 and col2 = val2new WHERE col2=val2old and col4=val4.
    The key field works like a Where clause. So for the receiver format when you specify the key, it checks the DB with that field as the where criteria. Hence for a UPDATE_INSERT query, when you specify the key field, it checks whether that value specified within the key field exists in the DB or not. Then it proceeds to execute the statement for only those values.
    Hence it makes sense to provide a primary key attribute in the key field of the JDBC receiver format.
    Regards,
    Kshitij

  • How to prevent a new record sequence number to be created for a period of 14 days

    ALTER proc [dbo].[spCreateSequenceContainerFill]
    (@containerID as nvarchar(64),
    @lotNum as bigint,
    @customerID as int = 1164,
    @productID as int,
    @fillDateTime as datetime
    as
    BEGIN
    declare @checkcontainerID as bigint
    DECLARE @ID int;
    set nocount on
    SELECT @checkcontainerID = CONVERT(bigint, SUBSTRING(@containerID, 1, 6)) FROM ContainerFillHistory WHERE containerID = @containerID
    IF (@checkcontainerID is null)
    SELECT @ID = COALESCE((SELECT MAX(ID) + 1 FROM ContainerFillHistory), 1)
    ELSE
    SELECT @ID = Max(ID) FROM ContainerFillHistory WHERE containerID = @containerID AND @fillDateTime >= DATEADD(DAY, 14, CAST(fillDateTime as DATETIME))
    IF (@ID is not null)
    SET @ID = @ID + 1
    INSERT INTO ContainerFillHistory(ID, containerID, lotID, customerID, productID, fillDateTime, purchorderNum)
    VALUES(@ID, @containerID, @lotNum, @customerID, @productID, @fillDateTime, null)
    END
    If there is a no record with an ID then a new record is created and inserted in the table.  After 14 days it is OK to add another record with that ID and bump up the sequence number of the total records in the table.  Handling the non existing
    case the first time is OK, but the restriction of 14 days if a new record is trying to be inserted has to be ignored.
    So far I have this TSQL code.

    Please try the following and tweak accordingly.
    ALTER proc [dbo].[spCreateSequenceContainerFill]
    (@containerID as nvarchar(64),
    @lotNum as bigint,
    @customerID as int = 1164,
    @productID as int,
    @fillDateTime as datetime
    AS
    BEGIN
    SET NOCOUNT ON;
    DECLARE @ID int;
    IF EXISTS (select * FROM ContainerFillHistory WHERE containerID = @containerID)
    BEGIN
    SELECT @fillDateTime = DATEADD(DAY, -14, @fillDateTime)
    IF EXISTS ( SELECT *
    FROM ContainerFillHistory
    WHERE containerID = @containerID
    AND CAST(fillDateTime as DATETIME) > @fillDateTime --AND @fillDateTime >= DATEADD(DAY, 14, CAST(fillDateTime as DATETIME))
    BEGIN
    RETURN; --//14 Days condition not met
    END
    ELSE
    BEGIN
    SELECT @ID = Max(ID) FROM ContainerFillHistory
    WHERE containerID = @containerID
    AND CAST(fillDateTime as DATETIME) <= @fillDateTime
    END
    END
    ELSE
    BEGIN
    SELECT @ID = MAX(ID) FROM ContainerFillHistory ;
    END
    IF @ID IS NULL
    BEGIN
    SET @ID = 1 ;
    END
    ELSE
    BEGIN
    SET @ID = @ID + 1 ;
    END
    INSERT INTO ContainerFillHistory(ID, containerID, lotID, customerID, productID, fillDateTime, purchorderNum)
    VALUES(@ID, @containerID, @lotNum, @customerID, @productID, @fillDateTime, null) ;
    END

  • SAP MM - How to prevent further GR if delivery completed in MIGO

    Hi Experts,
    Scenario:
    1. Partial GR has been made for PO.
    2. Delivery Completed is already set/ticked upon the partial GR.
    We would like to ask if it is possible to prevent further GR for a PO that has been partially GR'ed already using transaction MIGO? Is there a field in MIGO that we can use to tag PO as closed?
    Thank you so much.

    Hi,
    you can only set the delivery complete indicator during the receipt. This does not stop any further receipts.
    The only option is to change the purchase order in me22n. You could set the latest GR date (and change the message to an error in customising) or reduce the order quantity to that which has been delivered and set the tolerances to zero to prevent another delivery.
    Matt

  • How do I select one record when working with image data sets?

    David Powers had an example with creating spry data sets and using the filename in the database linked to images in the local files as data sources.  The pages shows the images with the specified information requested, however all of the images display with their content.  I want to pull an individual record with the image and content. HELP!
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $maxRows_rs_getPhoto = 10;
    $pageNum_rs_getPhoto = 0;
    if (isset($_GET['pageNum_rs_getPhoto'])) {
      $pageNum_rs_getPhoto = $_GET['pageNum_rs_getPhoto'];
    $startRow_rs_getPhoto = $pageNum_rs_getPhoto * $maxRows_rs_getPhoto;
    mysql_select_db($database_gepps1_db, $gepps1_db);
    $query_rs_getPhoto = "SELECT last_name, first_name, personal_bio, file_name, width, height FROM mem_profile";
    $query_limit_rs_getPhoto = sprintf("%s LIMIT %d, %d", $query_rs_getPhoto, $startRow_rs_getPhoto, $maxRows_rs_getPhoto);
    $rs_getPhoto = mysql_query($query_limit_rs_getPhoto, $gepps1_db) or die(mysql_error());
    $row_rs_getPhoto = mysql_fetch_assoc($rs_getPhoto);
    if (isset($_GET['totalRows_rs_getPhoto'])) {
      $totalRows_rs_getPhoto = $_GET['totalRows_rs_getPhoto'];
    } else {
      $all_rs_getPhoto = mysql_query($query_rs_getPhoto);
      $totalRows_rs_getPhoto = mysql_num_rows($all_rs_getPhoto);
    $totalPages_rs_getPhoto = ceil($totalRows_rs_getPhoto/$maxRows_rs_getPhoto)-1;
    ?>
    <table width="800" border=" ">
      <tr>
        <td>Image</td>
        <td>thumbnail</td>
        <td>firstname</td>
        <td>lastname</td>
        <td>personal bio</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><img src="<?php echo $row_rs_getPhoto['file_name']; ?>" alt="" width="<?php echo $row_rs_getPhoto['width']; ?>" height="<?php echo $row_rs_getPhoto['height']; ?>"></td>
          <td><img src="<?php echo $row_rs_getPhoto['file_name']; ?>" alt="" width="50" height="35"></td>
          <td><?php echo $row_rs_getPhoto['first_name']; ?></td>
          <td><?php echo $row_rs_getPhoto['last_name']; ?></td>
          <td><?php echo $row_rs_getPhoto['personal_bio']; ?></td>
        </tr>
        <?php } while ($row_rs_getPhoto = mysql_fetch_assoc($rs_getPhoto)); ?>
    </table>
    <?php
    mysql_free_result($rs_getPhoto);
    ?>

    I tried pulling the record by using entered value, but then I would need to create several recordsets.
    It's actually no problem doing that.  Can you explain more what you want the final result of this page to display? You are pulling a recordset of the entire group of photos.  Do you still want that comprehensive recordset on this page?  How many other images do you want?  Are you trying to make a master/detail pair where this page displays only the details for a single image?  See what I mean?

  • How to prevent iTunes from launching when iPad is connected?

    I don't want iTunes 11.0.1 to launch every time I connect my iPad (3rd generation, running iOS 6.0.1) to my Mini. I want to decide if I want iTunes, and then, if I do, launch it manually. How may this be accomplished?
    Notes:
    1.  iTunes .. Preferences .. Devices ==> "Prevent ... from syncing automatically" is UNchecked.
    2.  (in iTunes while connected) iPad .. Summary .. Options ==> "Open iTunes when this iPad is connected" is UNchecked.
    3.  When iTunes auto-launches, it does NOT sync. It "mounts" the iPad and then sits idle.
    TIA for any ideas,
    Mark

    Found the answer via Bing:
    http://www.brighthub.com/computing/hardware/articles/72004.aspx
    With the iPad connected and (at least in my case) iTunes NOT running, start the program "Image Capture" (mine is version 6.1). In the lower left will be a label "Connecting this iPad opens:" and below that label is a drop-down box which, in my case, was set to iTunes (don't ask me how), and I have since changed to "No application".
    Gee, that was obvious.
    </sarcasm>
    Mark

  • How to delete the master records when corresponding details records exist.

    What is the SQL statement to delete the records of master when the corresponding detail records are present.
    Note: No Cascade clause was used at the time of creation of referential integrity constraint.
    "M"- Master Table
    "D"- Detail Table
    I used, "Delete from M cascade". This statement is not working.
    Your favour in this will be deeply appreciated.
    Cheers
    PremChin

    Hi folk,
    i appreciate your suggestion,
    my crux of the situation is to know whether there is a way to make it without disabling,removing or modifying the referential integrity constraint.
    If so, modifying, please help me out how to modify the constraint in order to remove the master records keeping detail records in-tact.
    Cheers
    Premz

  • SAP RM: How can I create a Node when the node is not visible for the user

    Hi,
    Product: SAP records Management for Public Sector
    Version: 7.00
    is it possible to create a instance node when the model not is not visible for the active user?
    I looked in the CL_SRM_XML_REC_MODEL but every methode I used gave me no results with the special user.
    Regards and thanks for every beginning
    Fanninger Thomas

    Hi,
    here an example.
    When I use the method CL_SRM_XML_REC_INSTANCE->IF_SRM_XML_POID~GET_ALL( POID_TAB COUNT_USER_REST COUNT_POID_AUTH ).
    When I used the user with no right for viewing the invisible nodes I get no elements in the tabelle POID_TAB and 38 in the value COUNT_USER_REST.
    So did any one know a solution you can I create a nodes and change the restriction for the new node with the normal user?
    Regards
    Fanninger Thomas
    Edited by: Thomas Fanninger on Feb 5, 2008 8:15 AM

  • How to sort the new records when you input them in a Forms bloc?

    Hi,
    I have a multi-record data block, how can I do to sort the records in this block when you enter some new records? for instance, you have a table(emp), 3 coloumns(empid, empname, deptno). when you enter new records, how can you do to make records order by deptno? not in quiry status.
    Thanks. Please help me!

    I think Steve has answered your question and I doubt that what Frank is suggesting is what you are actually trying to do.
    However,
    from the top of my head I don't know if you can set the order by clause on a datablock dynamically <<-Yes you can set it with set_block_property. You don't really want to put it in the where clause because if the user enters query criteria in database fields, they will get appended after the order by and the query will fail.

  • How to prevent RDC sessions closing when inactive

    I am using MS Remote Desktop version 8.0.5
    and I have observed that the session automatically closes on my desktop [whether a PC or my iMac] if I should happen to step away from my desk and leave the session being inactive for over about 5 mins or so.
    How can I prevent this or at least prolong the time of inactivity before automaticclosing of session.
    BTW - when I reopen the session on my desktop - the Terminal Services end [Windows Server 2012] is still running where I left it.
    Thanks

    Hi,
    It is true with the Power Saving mode and I am afraid that it is the only option.
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • How to prevent computer from sleeping when downloading Lion from the recovery partition?

    Hello,
    I just got a new MacBook Pro that came with Lion. I'm reinstalling from the recovery partition and I'm on the downloading additional components stage. It has 3 hours to go and the computer keeps going to sleep. How can I prevent this? I don't want to have to babysit the computer for 3 more hours.
    Thanks.

    Looking for an answer to this question now.  Did you find one?  I'm about an hour into a 6+ hour reinstall of Mountain Lion from the Recovery partition on my MacBook Pro.  So I can't change the sleep corners or caffenate it or do much of anything but wait.   I want to go to bed and let it install overnight, but I assume it will go to sleep, and that will kill the download.  It there any way to prevent it from sleeping now? 
    Even trying to think of something I can put on the trackpad to trick it into thinking I'm touching it.
    Maybe ill put it under my dog, and her movements will keep it awake?  Thinking outside the box here.
    Any ideas would be appreciated.

Maybe you are looking for

  • OA_MEDIA variable in rtf doc

    Just wondering why won't the OA_MEDIA not resolve in the rtf doc, like this <?import: ${OA_MEDIA}/TEMPLATE/template_header.rtf?> Here I am hoping that the OA_MEDIA would get replaced with the web address, but its not. What am I doing wrong?

  • Brarchive - BR0301W - ORA-00257: archiver error

    Hi all, when calling /usr/sap/B16/SYS/exe/run/brarchive -u / -p initB16.sap -d rman_util -sd and there already is an archiver stuck I get the following error: BR0002I BRARCHIVE 7.20 (16) BR0006I Start of offline redolog processing: aehmrvjb.svd 2011-

  • Authorizations....Sales organization level

    Hi all I want to create the authorizations for the sales organization level. I have made the Sales Organization Object authorization relevant. After that i created an authorization object based on the Sales org object. I created a roles and created a

  • Installing Oracle ebs 12.2.3 VM appliance on a Mac

    Hi I am trying to install the ebs VM template/appliance on VirtualBox on my MacBook but I've run into problems when trying to run visionappsconfig.sh. For some reason my local host name and domain appear as "unknown.Home". I have run configdhcp.sh bu

  • Sun Fire X4250 - RAID5 - how long does it take to Quick Initialize?

    I am creating a 7x300GB raid5 array on a Sun Fire X4250 which is running Windows 2003. Anyway, i chose quick initialisation in the adaptec array config utility and its been running for 15 hours - is this normal? how long will a so-called 'quick initi