Appears to be orphaned entries in PLMK

Hi,
Even i have faced same kind of issue. Client was trying to create Inspection Plan with external number assignment. He used QP01 transaction to create Inspection Plan. He entered Material, Plant and Group. Then selected the usage and status and went to operations screen to define operation details. Then cliked on Inspection Charactersitics button to enter the MIC. In this it is MIC. Surprisingly, some characteristics already selected. Then he tried to save it. The transaction got terminated and issued message saying duplicated record exist. Material assignment was not done so no data apperaed MAPL but Orphaned entries exist in PLMK table.
I was just wondering how could without saving Inspection Plan system is issuing Duplicate record. Then i debugged the program and found PLFL table there is an entry.
I thought at least i could enter remaining details in the change mode of IP. Used QP02 transcation to enter the details. But Group is available.
Different tables i have checked and found enteries in PLPO, PLMK, PLAS, PFLF, and PLKZ, and last but not least PLZU.
Found enteries in all these tables. In PLMK, the characteristics are dispalyed, in rest of the tables only grop and group counter details exist.
I have tried to delete the Group and create a new one. Even that was also failed saying Group does not exist.
Has anyone come across this situation, If so, please share your experience how you had resolved this issue.
User had not created any Inspection Plan with this Group number. How come entries have come in the PLFL and in other tables
Is there any way we can resolve this issue
Regards,
Krishna mohan

Hi Sujit,
User has not created any Group number in Inspection Plan. He was trying to create it using QP01. Surprisingly MIC was existing for the new group. However, while he was trying to create to Group for a material system abruptly treminated and displayed message that duplicate record exist.
How is it possible? Without creating IP how could Group and group counter and MIC exist. In the investgation i found data is existing in the tables PLFL, PLPO and so on.
How can i clean up this data?

Similar Messages

  • I have a little symbol appearing on all my entries which looks like this:   ~  What doe this mean?

    I have a little symbol appearing on all my entries which looks like this:   ~  What does this mean?

    If you see a lock icon in the upper right corner of the screen - then the screen orientation is locked.
    Try the side switch above the volume rocker first and see if that unlocks the screen. If that doesn't do it, double tap the home button and swipe to the right and look for the lock icon all the way to the left.
    If the screen is unlocked but still will not rotate, reset the iPad.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the button
    For the WiFi issue try Settings>General>Reset>Reset Network Settings. You can also power cycle your router, Unplug it for about 30 seconds and then plug it back in.

  • Orphan entries in Realm as a result of using usermanager

    Hi All,
    The usermanager first uses the realm class to create newuser and then use the
    profilemanager and others to create property. Now my question if the later fails
    then the entries saved in the realm won't be rolled back (even if the realm is
    RDBMS) as it's already commited.
    This is my understanding. Am I right ? If yes, then this may create orphan entries.
    Can anybody pls tell me if there is any work around or not ?
    TIA,
    Sudarson

    Thank you very much Tom. Yeah, I think I may have to go for some custom realm as
    u have suggested. You're right it won't make sense to have roll back for non-transactional
    realm like LDAP. So it's perfectly okay that cashing realm doesn't contain any
    rollback sort of the method. The thing I was expecting that if there is some extra
    method implemented in RDBMS realm class in p13n, so that if some one can make
    use of it.
    anyway, is that possible to inherit custom RDBMS realm class from the RDBMS realm
    provided in p13n and incorporate the rollback method ?
    Thanking you once again,
    Regards,
    Sudarson
    "Tom Stamm" <[email protected]> wrote:
    Well like I said there is no method in the weblogic realm interface to
    support rollback, so we couldn't really expose it. For example, rolling
    back
    a transaction might not make sense in the case of something like an ldap
    realm.
    If this is a big issue for you, your best bet might be to create your
    own
    realm implementation which does expose a rollback method. Then when you
    catch an exception you can grab the realm, cast it to your specific
    implementation, and rollback the transaction. FYI our realm is loosely
    based
    on the sample RDBMSRealm that is in the weblogic server examples, we
    just
    added things like delegate pooling and a more robust group table structure.
    So you can probably use that as a starting point too.
    Your realm would probably also have to be designed as a singleton, with
    some
    sort of static method to find itself, since there is no way to retrieve
    the
    delegate realm from the CachingRealm. You would need to set that singleton
    instance in the realm's constructor, which gets called by the server
    on
    startup.
    Hope that helps...
    -Tom
    "sudarson" <[email protected]> wrote in message
    news:[email protected]...
    Thanks Tom for your help.
    Regarding conection pool and realm, I got the point why u need therealm
    before
    connection pool is to be created. If I'm not it's because it may berequired to
    check whether the logged in user has the access to the pool or not.
    But still somewhere u have created connection usingDriverManager.getConnection
    and perhaps setAutocommit also to false. So is any method there inthat
    class
    which will call that connection.rollback() ?
    Beacuse it's always safe to have rollback rather than trying to deleteentries
    in the exception block. As u never know what could be the situationwhere
    that
    exception will arise. Suppose, there is a network problem or some databaseproblem
    itself while this exception has occured and so the deletion mechanismwon't work.
    Pls correct me if I'm wrong.
    So if u can pls suggest any alternative, it will be of great help.
    Thanks,
    Sudarson
    "Tom Stamm" <[email protected]> wrote:
    Unfortunately, there is no rollback functionality in the realm interface,
    which we implement; and there really is no way around needing to
    initialize
    the realm's connections before the main connection pools are created,
    since
    the connection pool calls the realm on creation.
    Are you running into a specific problem with an exception happeningwhile
    creating a new user's profile? It seems like the only thing that would
    cause
    this is if there was a problem with the database, in which case therealm
    entry should not have been created either...
    But if you're just looking for a way to delete the realm entry, youcan
    always call the realm directly in your catch block:
    import weblogic.security.acl.CachingRealm;
    import weblogic.security.acl.Security;
    import weblogic.security.acl.User;
    CachingRealm realm = (CachingRealm)Security.getRealm();
    User user = realm.getUser( username );
    if ( user != null )
    realm.deleteUser( user ):
    "sudarson" <[email protected]> wrote in message
    news:[email protected]...
    Hi Tom,
    Thanks for the help.
    I have couple of questions here:
    1. But isn't it a bad thing to have this kind of situtation ? BecauseI
    may be
    interested to insert the record of an user with his profile. And
    if
    profile couldn't
    be created, realm entry should be rolled back. Is there any methodcalled
    rollback
    in the realm class, so that if an exception occurs we can roll backthe
    realm
    operation in the catch block .
    2. otherwise, it won't be a good design to create user with all
    profile
    and property
    data without this kind of support.
    Pls do suggest.
    Thanks,
    Sudarson
    "Tom Stamm" <[email protected]> wrote:
    Hi Sudarson,
    The RDBMS realm uses it's own connection pool for database
    connectivity,
    because at the time the realm is booted up, the reglar connectionpools
    are
    unavailable. (they call the realm on initialization, so you have
    a
    chicken-and-egg situation) The ProfileManager uses the standard
    "commercePool" connection pool, via a DataSource. So unfortunatelywe
    do not
    support transactions in this situation.
    However, the UserManager is designed to work with realms that areout
    of its
    control, so if there is a realm entry without a corresponding profile
    entry,
    it will automatically create a new profile entry. So in your caseof
    having
    an orphan realm entry, there shouldn't be anything to worry about.
    If your situation requires special handling, you can always implement
    your
    own custom realm by extending weblogic.security.acl.ManageableRealm.
    Hope that helps,
    -Tom
    "sudarson" <[email protected]> wrote in message
    news:[email protected]...
    Hi Daniel,
    Thanks for the reply.
    Thru admin tool it can be removed. But my concern is that it
    should
    not
    create
    at all any orphans. Can we give some kind of transactional behaviourto
    this so
    that if any exception arises while saving profile data, realm
    should
    also
    roll
    back the user entry as well as the userid sequence in the sequencertable
    Is that possible ?
    Thanks,
    Sudarson
    "Daniel Selman" <[email protected]> wrote:
    Sudarson,
    Could you please post your test code and I will get an engineer
    to
    take
    a
    look. Are the orphans NOT being removed by the User Management
    admin
    tools?
    Sincerely,
    Daniel Selman
    "sudarson" <[email protected]> wrote in message
    news:[email protected]...
    Hi All,
    It's very urgent. Can anyone pls help me in this regard?
    THanks,
    Sudarson
    "sudarson" <[email protected]> wrote:
    Thanks for the reply. I have also gone thru this section.
    But
    have
    u
    tested this
    ? As in my case, I'm getting orphan entries while simulating
    exception
    at property
    data insertion and getting orphan entries as a result.
    Actually this usermanager calls most probably realm.newUserand
    in
    the
    realm class
    data is always commited.
    Can any body pls suggest ? Perhaps BEA folks may help in
    this
    regard.
    Thanks,
    Sudarson
    "Prady" <[email protected]> wrote:
    Here is a snippet of the documentation:
    Integration between Profiles and the Realm
    The User Manager and Group Manager session beans act as
    a
    single
    entry
    point
    for user/group profiles and user/group security. When
    createUser
    or
    removeUser is called, they delegate to both the realm and
    the
    profile
    manager components to ensure that they stay synchronized.
    If a read-only realm such as LDAP is being used, new users
    and
    groups
    cannot
    be created through the User Manager or Group Manager. However,profiles
    for
    users and groups that exist in the realm will be created
    on-the-fly.
    For
    example, if a user "joe" exists in your LDAP server, and
    you
    are
    running
    the
    LDAP realm, the first time Joe's profile is requested the
    UserManager
    will
    see that the profile does not exist. It will then verify
    that
    Joe
    exists
    as
    a user in the realm, and will create a new profile record
    at
    that
    point
    and
    return it. Because the UserManager has no way to know when
    users
    and
    groups
    are removed from the realm, this can result in leftover
    profile
    records
    that
    belong to users and groups that no longer exist.
    Note: The User Management Administration Tools provide a
    means
    to
    cleanup
    these leftover records. See the section Deleting User Records
    That
    Do
    Not
    Exist in the Realm from the Personalization Database.
    In your case, the next time the user profile is requested
    for
    the
    user
    who
    has an entry in the Realm, but not in the user profile,
    it
    will
    create
    a new
    profile record and return it (provided you are using the
    default
    profile
    manager and not your custom profile manager. If you have
    implemented
    a
    custom profile manager, you can either try to re-create
    the
    profile
    the
    first time or when a user profile is requested at a later
    stage).
    Prady
    "sudarson" <[email protected]> wrote in message
    news:[email protected]...
    Hi All,
    The usermanager first uses the realm class to create newuser
    and
    then
    use
    the
    profilemanager and others to create property. Now my question
    if
    the
    later
    fails
    then the entries saved in the realm won't be rolled back
    (even
    if
    the
    realm is
    RDBMS) as it's already commited.
    This is my understanding. Am I right ? If yes, then this
    may
    create
    orphan
    entries.
    Can anybody pls tell me if there is any work around or
    not
    TIA,
    Sudarson

  • AB: Everything appears twice in each entry

    After a nightmare of sync failures with my mobile phone I have an Address Book where everything appears twice for each entry: for a person X the phone numbers, e-mail addresses etc appear twice. I can remove the entries for some persons, but for some other persons removing the private address removes all private addresses for this entry.
    Any hints how I can solve this problem?
    Thanks in advance,
    Boris

    Not sure what phone you're using, but after similar nightmares (it's always a good idea to create a back up before synchronizing, so you can delete the messed up address book and import the back up in case of a problem).
    I got Mark Space's Missing Sync and it synchronized properly...so my advice is to start fresh from a backup (if you have one) and use MS.

  • Remove orphaned entries from my library?

    These are in iTunes on a Windows 7 PC.  My files are ripped from my CD's and not purchased from iTunes.
    I want to remove some of my MP3 files from my library.  They are in one particular directory on my PC, but are scattered all over my iTunes library (they have different artists, albums, genre etc. No easy way to locate them all inside iTunes).
    If I delete or move the files from my hard drive, the entries in iTunes will get orphaned.
    How do I remove, cull, weed my library of orphaned files? (I'm surprised that this is not available as a maintenance tool in iTunes...)
    These have been uploaded to iTunes Match as well.  If I delete them from my library and update my Match, will these get deleted from the iCloud as well? 
    I would like these orphaned songs removed from both my local library and my Match.
    Thanks.
    Aloke

    Lost & Found
    Create a playlist called Found, select everything in Music and drag it into the Found playlist (it may take some time to count the tracks that are to be dropped). Create a smart playlist called Lost matching All the rules Playlist is Music and Playlist is not Found. Your lost tracks will be in this playlist.
    You can select all the entries in the Lost playlist with Ctrl-A, then press Shift-Delete to delete them from the library.
    I'm not certain what the score is with iTunes Match as I don't subscribe, but I believe you may get a box to confirm the deletions which includes an option to "Remove from iCloud", in which case select it.
    tt2

  • XSLT Mapping: URI appearing in each field entry in the output

    Hi there,
    I am mapping a custome build Invoice to xCBL structure in Stylus Studio. The output look ok, but in each field URI value appear as well, as shown below.
    --Start
    <p:msgDetails xmlns:p="http://localhost/webs/msgDetails.xsd">
    <p:sender xmlns:p="http://localhost/webs/msgDetails.xsd"><p:senderId xmlns:p="http://localhost/webs/msgDetails.xsd">SCA HA</p:senderId><p:senderName xmlns:p="http://localhost/webs/msgDetails.xsd">SCA HA</p:senderName></p:sender><p:receiver xmlns:p="http://localhost/webs/msgDetails.xsd"><p:receiverId xmlns:p="http://localhost/webs/msgDetails.xsd">PEL</p:receiverId><p:receiverName xmlns:p="http://localhost/webs/msgDetails.xsd">Progressive Enterprise</p:receiverName></p:receiver><p:docType xmlns:p="http://localhost/webs/msgDetails.xsd">invoice</p:docType><p:docFormat xmlns:p="http://localhost/webs/msgDetails.xsd">xcbl40</p:docFormat><p:transmissionDetails xmlns:p="http://localhost/webs/msgDetails.xsd"><p:testMsg xmlns:p="http://localhost/webs/msgDetails.xsd">true</p:testMsg><p:transmissionDate xmlns:p="http://localhost/webs/msgDetails.xsd">2005-05-23 14:20:20</p:transmissionDate><p:messageId xmlns:p="http://localhost/webs/msgDetails.xsd">2005-05-23 14:20:20</p:messageId><p:username xmlns:p="http://localhost/webs/msgDetails.xsd"/><p:password xmlns:p="http://localhost/webs/msgDetails.xsd"/></p:transmissionDetails></p:msgDetails>
    ---End
    The expected output is,
    - Start
    <p:msgDetails xmlns:p="http://localhost/webs/msgDetails.xsd">
      <p:sender>
        <p:senderId>SCA HA</p:senderId>
        <p:senderName>SCA HA</p:senderName>
      </p:sender>
      <p:receiver>
        <p:receiverId>PEL</p:receiverId>
        <p:receiverName>Progressive Enterprises</p:receiverName>
      </p:receiver>
      <p:docType>invoice</p:docType>
      <p:docFormat>xcbl40</p:docFormat>
      <p:transmissionDetails>
        <p:environmentFrom>dev</p:environmentFrom>
        <p:testMsg>true</p:testMsg>
        <p:transmissionDate>2005-05-18T11:14:06</p:transmissionDate>
        <p:messageId>104435_2005-05-18T11:14:06</p:messageId>
        <p:username></p:username>
        <p:password></p:password>
      </p:transmissionDetails>
    </p:msgDetails>
    --end
    Its happening in the body area as well. Can somebody please suggest.
    Thank you.
    Warm Regards,
    Ranjan

    Hi Ranjan,
    You can resolve this in this way.
    In ur xsl, delete the namespaces appearing. Then hardcode with ur hand the namespace like <p:msgDetails xmlns:p="http://localhost/webs/msgDetails.xsd">.
    Make sure that the template match is coming before the
    <p:msgDetails ..
    Hope this helps out.
    Rgds,
    Deno

  • Values Set does not appear in Input Element Entry (Com. and benefits)

    Hi all
    I have created one values set, but it does not shown, wenn i selecting this values set in Element Entry. Pls. give me some advices.
    Thanks

    Hi JIGAR BHATT,
    Please have a look at below SPRO paths and verify it...
    IMG menu path
    SPRO->Financial Accounting->Financial Accounting Global Setting->Tax on Sales/Purchase->Basic Setting->Define Tax Juridiction
    SPRO->Materials Management->Logistics Invoice Verification->Incoming Invoice->Maintain Default Values for Tax Codes.
    Also have a look on Documentation which is available at the above path of SPRO
    And also ask to BASIS and Functional Consultant if they can help you out for it.
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7

  • Stop log window from appearing instead of connection entry

    Good afternoon all.
    I have a install that has a preconfigured file in it. When the install has completed, the VPN dialer initiates with the log file as the default window instead of the connection entry window that most folk want. I recall a corrective action to this in the .pcf file, but I cannot remember exactly what it was. Can anyone send a link for this correction or is there a quick fix?
    Thanks
    Dwane

    hello, this is usually caused by adware on your pc.
    please run a scan of your system with [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner] & also manually check that you don't have any suspicious entries like 3rd-party-toolbars presently installed under ''firefox > addons > extensions'' (adware like babylon also might install some unwanted stuff that comes under the names "Browser Manager", "Browser Protector", "Bprotector", "Object Installer", etc.) or in the windows control panel > programs section.
    afterwards install the search reset addon - it will revert the most common customziations those adware programs do in firefox back to the default: https://addons.mozilla.org/firefox/addon/searchreset/
    [[Remove a toolbar that has taken over your Firefox search or home page]]

  • Managing optdepends/orphans, DIY-style

    Hi all,
    Imo there is no good way to manage installed optdepends yet in pacman.
    Currently you can:
    - install optdeps explicitly: they will become undetected 'orphans' if you remove the package that you installed it for.
    (because they are not installed as 'dependencies', if you delete the 'parent' package the installed optdepends are not cleaned up)
    - install them --asdeps: they appear to be orphans because you probably don't have a package that 'really' depends on it.  Over time you might want to clean up your orphans and accidentially delete the wrong package if you don't exactly remember if/why you needed the package
    This issue has been discussed a while ago ( http://www.nabble.com/%22explicit-depen … 40889.html ) but afaik there is no real solution yet in pacman/libalpm
    Luckily, this is very easy to solve yourself, DIY style!
    (Maybe someday, if I brush up my C skills I would send a patch for pacman, but for now this bash trick does the job just fine for me)
    How? install --asdeps but keep track of the package and it's install reason/"parent" package separately,
    use some convenient scripts that know about this to avoid mistakes.
    ~/.optdeps
    #!/bin/bash
    # specify the installed optdepends here, optdepend_${packagename/-/_}="<parent package>: install reason"
    # example: optdepend_gtk2_perl='rxvt-unicode: to use the urxvt-tabbed'
    2 bash functions:
    #!/bin/bash
    install_optdepend () {
    if [ -z "$2" ]
    then
    echo "\$1: package name to install as optdep, \$2: 'parent' package" >&2
    return 2
    fi
    optdep=$1
    parent=$2
    if ! data=`pacman -Qi $parent`
    then
    echo "Seems like you don't have parent package $parent installed" >&2
    return 3
    elif ! data=`grep " $optdep: " <<< "$data"`
    then
    echo "Seems like $parent does not have $optdep as an optdep" >&2
    return 4
    fi
    str=`sed "s/.* $optdep: //" <<< "$data"`
    [ "$optdep" = gtk-perl ] && optdep=gtk2-perl #fix for bad field in rxvt-unicode
    entry=optdepend_${optdep/-/_}"='$parent: $str'"
    echo "Installing optdep $optdep for parent $parent ..."
    if ! sudo pacman -S $optdep --asdeps
    then
    echo "Could not install $optdep. aborting."
    return 5
    fi
    # example: optdepend_gtk2_perl="rxvt-unicode: used for tabs"
    echo "Adding entry '$entry' to ~/.optdeps ..."
    if echo "$entry" >> ~/.optdeps
    then
    echo "All done!"
    return 0
    else
    echo "Something went wrong" >&2
    return 6
    fi
    clean_orphans () {
    source ~/.optdeps
    for i in `pacman -Qdt | awk '{print $1}'`
    do
    var=optdepend_${i/-/_}
    [ -n "${!var}" ] && echo "***** WARNING: 'orphan $i' is probably on OPTDEPEND: ${!var} ******"
    [ -z "${!var}" ] && echo "-- orphan $1. Not registered as on optdepend --"
    pacman -Qi $i
    [ -n "${!var}" ] && echo "Remove this likely installed optdepend?"
    [ -z "${!var}" ] && echo "Remove this likely real orphan?"
    REPLY=
    read && [ "$REPLY" == y ] && sudo pacman -R $i
    done
    So, all optdepends that you install this way are stored in ~/.optdeps along with their 'parent' and install reason taken from the optdepend entry from the parent.  You can do this manually or use the install_optdepend function to do it automatically.
    If you then go through your orhans with pacman -Qdt you can see which ones are installed optdeps by using the ~/.optdeps file.
    clean_orphans is a function to go through each orphan, tells you what it knows, and asks you if you want to remove it.
    Currently automatic cleanup of ~/.optdeps is not implemented (eg when you remove an optdep), but I don't mind doing that manually for now (or just keeping the entry for reference sake).  Also, a function could be implemented so that when you remove a package, it checks for optdeps, checks the ~/.optdeps and asks you if you want to remove it or not.  But that's not really needed Imo, the interactive orphan cleanup function does the job for me
    What do you guys think?
    Last edited by Dieter@be (2008-11-21 08:32:04)

    I didn't really have a problem with this so far, but I really don't understand the way pacman handles optdepends either, so I'll probably give this a try. Thanks for this script!!

  • How can I remove incorrect entry in OCR

    Hi all
    During a CRS upgrade from 10.2.0.4 to 11gR2 I noticed some errors relating to some values that should not have been there! This might have been due to an incorrectly removed node or database previously.
    Anyway, the output from ocrdump looks like this
    /u01/app/oracle/product/10.2.0/crs/bin/ocrdump.bin -stdout -keyname DATABASE.ONS_HOSTS
    [DATABASE.ONS_HOSTS]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS.node4!my!domain]
    ORATEXT : node4.deg.aus
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS.node4!my!domain.PORT]
    ORATEXT :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS.node2!my!domain]
    ORATEXT : node2.deg.aus
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS.node2!my!domain.PORT]
    ORATEXT : 6200
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS.node1]
    ORATEXT : node1
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [DATABASE.ONS_HOSTS.node1.PORT]
    ORATEXT : 6200
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}I need to remove the entries [DATABASE.ONS_HOSTS.node4!my!domain] and [DATABASE.ONS_HOSTS.node4!my!domain.PORT] and wondered if I should use racgons remove_config - although as you will see there is no port listed for the [DATABASE.ONS_HOSTS.node4!my!domain]
    Many thanks

    Thanks again Sebastian - that really helped.
    If you dont mind one last question, I seem to have some orphan entries in OCR.
    $ ocrdump.bin -stdout -keyname DATABASE.LOG
    [DATABASE.LOG]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_ALL_ACCESS, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.LOG.test]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_ALL_ACCESS, USER_NAME : oratestt, GROUP_NAME : oinstall}
    [DATABASE.LOG.test.INSTANCE]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_ALL_ACCESS, USER_NAME : oratest, GROUP_NAME : oinstall}
    [DATABASE.LOG.testdb]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oratest, GROUP_NAME : oinstall}
    [DATABASE.LOG.testdb.INSTANCE]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oratest, GROUP_NAME : oinstall}Basically, the database and instances test and testdb do not exist but I cannot remove them using srvctl remove database or srvctl remove instance
    as I get PRKO-2007 : Invalid instance name: or PRKR-1001 : cluster database TESTDB does not exist. Also they do not appear in crs_stat.
    Any ideas how I can remove them from OCR? If I were to try crs_unregister, I am not sure what resource name to use because they don't show up in crs_stat.
    Many thanks

  • DNS entry for DC not dynamically updating (Server 2008 R2)

    Windows Server 2008 R2. I've got a single DC (I'm preparing to install the 2nd in the next few days). The host (A) record for the DC shows to be static for some reason. I changed the name of the DC recently, then brought down the Exchange server and rebooted
    and it successfully connected again. I might have entered in a static DNS entry for the new server name before renaming the server, but I'm not sure.
    I've tried to delete the static DNS record for the DC and then reload, but it continues to appear as a static entry. The mail server's DNS record still appears as a dynamic entry.
    What am I doing wrong?
    Noel Stanford Oveson
    jeremyNLSO
    MCTS, MCITP, CCENT, CNE, MCSE, CLSE
    Berlin, Germany

    Hello,
    Like Mike suggested, it is normal that it is a static record.
    However, if your DC with its new name is not updating its DNS record, check that "Register this connection' addresses in DNS" is checked on the DC's adapter and then run
    ipconfig /registerdns using an elevated prompt.
    This
    posting is provided "AS IS" with no warranties or guarantees , and confers no rights.   
    Microsoft
    Student Partner 2010 / 2011
    Microsoft
    Certified Professional
    Microsoft
    Certified Systems Administrator: Security
    Microsoft
    Certified Systems Engineer: Security
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Active Directory, Configuration
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Network Infrastructure, Configuration
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Applications Infrastructure, Configuration
    Microsoft
    Certified Technology Specialist: Windows 7, Configuring
    Microsoft
    Certified Technology Specialist: Designing and Providing Volume Licensing Solutions to Large Organizations
    Microsoft Certified IT Professional: Enterprise Administrator
    Microsoft Certified IT Professional: Server Administrator
    Microsoft Certified Trainer

  • How to define default subtypes for Infotype 0105 on entry

    Hello;
      I have spend an entire day trying to look into PA configuration to determin how to make specific Subtype of the 0105 Communication Infotype automatically appear when an HR person is entering in a new employee.
    Currently we have the 0001, 0010, and ADP subtypes automatically appear in the Communication Infotype screen when the person is entering in a new employee.  I was asked to create three new Subtypes for Infortype 0105 and have these new subtypes automatically appear on the data entry screen for Infotype 0105.
    I can not find anywhere in configuration how to do this.  I ahve burnt an entire day searching configuration and have about had it with this garbage.
    Can someone please point me to specific spot in configuration where these subtypes of and Infotype can be identified as default data entry screens.
    I would greatly appreciate any help ... since I am not a HR Configurator ... just a plain old ABAP'er who has lost our configurators.
    Scott.

    Hi Scott,
    To create subtypes follow:
    Tcode: SPRO
    Path: Personnel Management>Personnel Administration>Communication>Create Communication Types
    Half the job is done. Then include those subtypes in your hiring action. To do so:
    Tcode: SPRO
    Path: Personnel Management>Personnel Administration>Customizing Procedures>Actions>Define infogroups>Info group
    Select your hiring infogroup and create new entries with operation INS for 105 and the three subtypes.
    You are all set!
    Cheers,
    Donnie

  • Service entry sheet creation for planned services

    Hi,
    I have created a service purchase order with planned services. After this I am trying to create a service entry. During ML81N, I give the P.O number and then click on create service entry.
    However, to adopt the services from the purchases, there is a service selection tab which takes the user to the services tab of the purchase order and then the user must select the relevant service and click on the adopt button to bring the  service into service entry sheet screen.
    However, in my  case, the service selection tab is not appearing on the service entry screen. Hence I am not able to call the services from the purchase order. I am on ECC 6.0 version.
    Am I missing some step in config or in procedure ?
    Kindly advice.
    Regards,
    Rajeev

    Hi,
    This doesn't sound like a config problem.
    If the services are on the PO then you should be able to select the option to choose them from the PO services.
    A remote (very remote) possibility is that you may have an authorisation problem, stopping you from being able to use the PO details? Is this possible? do you have authorisation to change this PO via ME22N etc:?
    Steve B

  • Mail OS Snow Leopard: Double entry of email-address in column "sender"

    I just downloaded my mails from my google imap-account.
    In the column "sender" certain mails appear with a double entry in the following way:
    <[email protected]> <[email protected]>
    This behavior occurs for certain mails, independent if the senders are in the address book.
    Surprisingly, if you open the mail you find only one entry in the header. For those senders listed in the address book the name is listed correctly.
    Please let me know if you have an idea how to make the program only show the sender once.
    I hope that one of you can help me with this problem, thanks.

    Hi,
    hope it works that way:
    *Return-Path: <[email protected]>*
    *From: <[email protected]>*
    *To: <[email protected]>*
    *Subject: =?iso-8859-1?Q?Schl=FCsselbestellung?=*
    *Date: Thu, 27 Nov 2008 14:58:08 +0100*
    *Message-ID: <002a01c95098$3c894550$[email protected]>*
    *MIME-Version: 1.0*
    *Content-Type: multipart/mixed;*
    * boundary="----=NextPart_000_002701C950A0.8F6E26C0"*
    *X-Mailer: Microsoft Outlook Express 6.00.2800.1506*
    *X-GMX-Antispam: -2 (not scanned, spam filter disabled)*
    *Thread-Index: AclQmDyt8JNE3pZJSoWCwDb05OmyHQ==*
    *X-Flags: 0000*
    *X-GMX-UID: spUdfYwhX1VoBiAQNGByJY13SDc4NMx8*
    *X-GMX-Antivirus: 0 (no virus found)*
    *X-OlkEid: 2D643A205454AB0E3C1E844BA67D6A4989DF42D5*
    *X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506*
    *X-MS-TNEF-Correlator: <002a01c95098$3c894550$[email protected]>*
    *This is a multi-part message in MIME format.*
    ------=NextPart_000_002701C950A0.8F6E26C0
    *Content-Type: text/plain;*
    * charset="iso-8859-1"*
    *Content-Transfer-Encoding: 8bit*
    *Sehr geehrter Herr xxx,*
    (Text Start)
    (Text End)
    Thanks, Mathias

  • Dreamweaver not correctly detecting orphans

    I have a site with hundreds of files, all files have a "skip to content" link. Whenever I run a site wide link report, no HTML files appear as orphans.
    I've tracked this down to links within pages to anchors: for example any "in-page contents list" or "back to top" or "skip to contents" etc. Some of the HTML files are not linked to by any other files, and if you try to delete them you get no warning message saying "there are X files linking to..." So Dreamweaver knows the file is an orphan (no file linking to it), but does not list it in the orphans report.
    Attached are three files as an example: A links to B, B links to A and nothing links to C yet C does not appear in the orphans report.
    Currently using Dreamweaver 8.
    Does anyone know how to get these orphans listed in the orphans report? Any extensions etc? Or if later versions of DW have fixed this issue?
    Thanks

    namdam239 wrote:
    Alright. This is very strange. I'm making a design right now, and it is incorrectly displaying my code in design view. You may be wondering "How is that strange? Dreamweaver has always had it's mishaps when it comes to design view" Well here's the strange part: It displays perfectly fine when I push the "Live Preview" button, which is the one that doesn't open up in a browser but the same Dreamweaver window.
    Anybody know what's up? I'm thinking I might have hit a setting or something by accident and it messed up how it gets displayed, but I have looked through and don't know now.
    Regards,
    Jared
    That's the way it is sometimes. Live view emulates what the browser sees whereas Dreamweaver does not.
    Dreamweaver is still a bit of a dog when it comes to css rendering in Design View. Infact I was astonished to find only a few days ago that it baulked at tried and tested css attributes I have been using for years that had previously displayed correctly. Of course I may have used them in a combination, given there is literally hundreds of minor variations, that it was just not happy with.
    The css worked in all modern browsers so I couldn't be asked to pick the page to pieces to detect just when and where the 'fracture' ocurred.
    I'm sure if I had the patience I could find a work around to correct the issues but sometimes its just not worth the extra time and frustration.

Maybe you are looking for