MySite set for deletion... manager has no access.

I've got managers receiving the following:
"The My Site of [USER] is scheduled for deletion"
Now, the issue isn't that the user is scheduled for deletion (a problem for which there are dozens and dozens of articles around the web). This is working perfectly.
The issue is that the manager, upon trying to access the MySite, the manager gets "Error - User not found.".
The users' MySite is still there, but the permissions are apparently not set so that the manager can access the site.
I can turn off notifications on this so it's no longer a problem, but that doesn't resolve the access denied issues.
Thanks to anyone who can help us get around this problem.

Who is set as the site collection owner when viewed in Central Admin?

Similar Messages

  • Info reocrd set for deletion in error, how to reverse this?

    Hi all -
    There was a info record set for deletion in error usin WSE1 and must be reversed.  Can you guide me in the steps to get this done?
    Thank you

    Paul,
    ME12.  Enter purch org and info record number.  Once you have the info record on the screen in Change mode, Extras > Deletion Flags.  Deselect the checkboxes as appropriate.  Save.
    Best Regards,
    DB49

  • Updating and iPod that has preferences set for "manually manage songs..."

    I have my iPod set with "manually manage songs and playlists" so that
    (a) it won't try to update every time I connect it; and
    (b) so that I can see all of the songs from my iTunes application, as I don't store my music library on my laptop computer.
    But sometimes I do want to do a full sync of the iPod to my music library. I'm not sure how to do that. If I select "update ipod", it says "iPod update complete", but doesn't really do anything.
    Any ideas?
    thanks

    Hi, Michael, and thanks for your help.
    I realize I can change the options to "automatically update..."
    But the whole point of my inquiry was to find out whether there's a way to NOT have that preference set, as I
    (a) don't want the iPod updating every time I plug it in; and
    (b) want to be able to see its songs on other computers when I'm not seeking to update it.
    What I want is a command that I can initiate that will say "act as though the automatically-update preferences were on and do a full update just this once".
    I suppose I can go in and turn the preference on, do the update, then turn the update off, but it seems like lots of steps. I might have thought that there would be a control+click command that would accomplish this all in one click.

  • Material getting set for Batch Management in O/B delivery

    Hi Folks,
    For a material which is not batch managed, I created an outbound delivery.
    For some reason, the material is getting set as 'BatchManagement' even though the Batch Management indicator is not set.
    Due to this PGI is not possible.
    Any thoughts on why the 'Batch Management' indicator has been set and how to resolve this?
    Regards,

    Hi Jürgen  ,
    I am unable to replicate this problem in Q. Its occuring only in P while doing a goods issue.
    Message is
    "The batches are not defined for delivery item XXXXXX".
    As I said earlier, we have not set the batch management check box in MM.
    However the outbound delivery has the batch management check box selected .
    Anything I missed to check? Q is almost identical to P. But still issue is only in P.
    Regards,

  • HOW TO SET  VARIABLE WHEN METHOD HAS PRIVATE ACCESS ? ?

    Dear People,
    When I try to use an if then else statement the if part is not executed
    only the else
    if(highestBid != null)
    System.out.println( Bid is: + highestBid.getValue());
    else
    System.out.println(" (no bid) )";
    which can only mean that "highestBid is not being set
    but since "Class Lot" has a private method
    private void setHighestBid(Bid highestBid)
    this.highestBid = highestBid;
    the error message says:
    "TryAuction.java": Error method setHighestBid()
    has private access in class
    so how do I get a value to "highestBid" so the "if" statement
    will have a vaule for "highestBid ?
    the showLots() method in the Class "Auction" doesn't print out the bids !
    below are the classes
    thank you in advance
    Stan
    package stan_bluej_ch4p90;
    //Purpose of project: To demonstrate collections of objects
    //Version: 2001.05.31
    //How to start this project:
    // Create an Auction object.
    // Enter a few lots via its enterLot method. Only String
    // descriptions of the lots are required.
    // Create one or more Person objects to represent bidders.
    // Show the lots and select one to bid for.
    // Get the required Lot onto the object bench.
    // Enter a bid for the lot, passing the Person who is
    // bidding to the bidFor method.
    public class TryAuction
    public static void main(String[] args)
    //create the auction
    Auction cityAuction = new Auction();
    //create the lots for sale
    Lot bicycle = new Lot(1,"bicycle");
    Lot lamp = new Lot(2, "lamp");
    Lot trailer = new Lot(3, "trailer");
    //enter the lots into the city Auction
    cityAuction.enterLot("A bicycle in so so condition");
    cityAuction.enterLot("A brand new lamp");
    cityAuction.enterLot("A trailer built in 2001");
    //show the lots
    System.out.println();
    System.out.println("The first lot for sale: " + bicycle.getDescription());
    System.out.println("The second lot for sale: " + lamp.getDescription());
    System.out.println("The third lot for sale: " + trailer.getDescription());
    //create the people who will bid for the lots
    Person Steve = new Person("Steve");
    Person Maria = new Person("Maria");
    //create the people's bids
    Bid mariaLampBid = new Bid(Maria, 460);
    lamp.setHighestBid(mariaLampBid);
    Bid steveLampBid = new Bid(Steve, 510);
    //create the people's bids
    Bid mariaBicycleBid = new Bid(Maria, 1460);
    //bicycle.setHighestBid(mariaBicycleBid);
    Bid steveBicycleBid = new Bid(Steve, 1510);
    //create the people's bids
    Bid steveTrailerBid = new Bid(Steve, 700510);
    //trailer.setHighestBid(steveTrailerBid);
    Bid mariaTrailerBid = new Bid(Maria, 900460);
    //give the bids
    bicycle.bidFor(Maria,1460);
    bicycle.bidFor(Steve, 1510);
    System.out.println("The highest bid for the bicycle is " + bicycle.getHighestBid().getValue() );
    lamp.bidFor(Maria,460);
    lamp.bidFor(Steve,510);
    System.out.println("The highest bid for the lamp is " + lamp.getHighestBid().getValue() );
    trailer.bidFor(Steve, 700510);
    trailer.bidFor(Maria,900460);
    System.out.println("The highest bid for the trailer is " + trailer.getHighestBid().getValue() );
    System.out.println(" \nMaria's bicycle bid is : " + mariaBicycleBid.getValue() );
    System.out.println("Steve's bicycle bid is : " + steveBicycleBid.getValue() );
    System.out.println(" \nMaria's lamp bid is : " + mariaLampBid.getValue() );
    System.out.println("Steve's lamp bid is : " + steveLampBid.getValue() );
    System.out.println("\nSteve's trailer bid is : " + steveTrailerBid.getValue() );
    System.out.println(" Maria's trailer bid is : " + mariaTrailerBid.getValue() );
    System.out.println();
    cityAuction.showLots();
    //cityAuction.close();
    //The output I get is:
    //The first lot for sale: bicycle
    //The second lot for sale: lamp
    //The third lot for sale: trailer
    //The highest bid for this item is stan_bluej_ch4p90.Bid@f4a24a
    //Maria's bicycle bid is : 1460
    //Steve's lamp bid is : 1510
    //Maria's lamp bid is : 460
    //Steve's lamp bid is : 510
    //Steve's trailer bid is : 700510
    // Maria's trailer bid is : 900460
    //1: A bicycle in so so condition
    // (No bid)
    //2: A brand new lamp
    // (No bid)
    //3: A trailer built in 2001
    // (No bid)
    package stan_bluej_ch4p90;
    import java.util.*;
    //Ex4.14
    * A simple model of an auction.
    * The auction maintains a list of lots of arbitrary length.
    * @author David J. Barnes and Michael Kolling.
    * @version 2001.06.08
    public class Auction
    // The list of Lots in this auction.
    private ArrayList lots;
    // The number that will be given to the next lot entered
    // into this auction.
    private int nextLotNumber;
    * Create a new auction.
    public Auction()
         lots = new ArrayList();
         nextLotNumber = 1;
    * Enter a new lot into the auction.
    * Lots can only by entered into the auction by an
    * Auction object.
    * @param description A description of the lot.
    public void enterLot(String description)
         lots.add(new Lot(nextLotNumber, description));
         nextLotNumber++;
    * Show the full list of lot numbers and lot descriptions in
    * this auction. Include any details of the highest bids.
    public void showLots()
         Iterator it = lots.iterator();
         while(it.hasNext()) {
         Lot lot = (Lot) it.next();
         System.out.println(lot.getNumber() + ": " +
                   lot.getDescription());
         // Include any details of a highest bid.
         Bid highestBid = lot.getHighestBid();
         if(highestBid != null) {
              System.out.println(" Highest Bid: " +
                        highestBid.getValue());
         else {
              System.out.println(" (No bid)");
    * Return the lot with the given number. Return null
    * if a lot with this number does not exist.
    * @param number The number of the lot to return.
    public Lot getLot(int number)
         if((number >= 1) && (number < nextLotNumber)) {
         // The number seems to be reasonable.
         Lot selectedLot = (Lot) lots.get(number-1);
         // Include a confidence check to be sure we have the
         // right lot.
         if(selectedLot.getNumber() != number) {
              System.out.println("Internal error: " +
                        "Wrong lot returned. " +
                        "Number: " + number);
         return selectedLot;
         else {
         System.out.println("Lot number: " + number + " does not exist.");
         return null;
    // public void close()
    // Iterator i = lots.iterator();
    // while(i.hasNext())
    //     System.out.println("The winning amount for the " + bicycle.getDescription()
    //     + " is " + bicycle.getHighestBid());
    //     System.out.println("The winning amount for the " + lamp.getDescription()
    //     + " is " + lamp.getHighestBid());
    //     System.out.println("The winning amount for the " + trailer.getDescription()
    //     + " is " + trailer.getHighestBid());
    package stan_bluej_ch4p90;
    * A class that models an auction bid. The bid contains a reference
    * to the Lot bid for and the user making the bid.
    * @author David J. Barnes and Michael Kolling.
    * @version 2001.05.31
    public class Bid
    // The user making the bid.
    private final Person bidder;
    // The value of the bid. This could be a large number so
    // the long type has been used.
    private final long value;
    * Create a bid.
    * @param bidder Who is bidding for the lot.
    * @param value The value of the bid.
    public Bid(Person bidder, long value)
         this.bidder = bidder;
         this.value = value;
    * @return The bidder.
    public Person getBidder()
         return bidder;
    * @return The value of the bid.
    public long getValue()
         return value;
    package stan_bluej_ch4p90;
    * A class to model an item (or set of items) in an
    * auction: a lot.
    * @author David J. Barnes and Michael Kolling.
    * @version 2001.06.08
    public class Lot
    // A unique identifying number.
    private final int number;
    // A description of the lot.
    private String description;
    // The current highest bid for this lot.
    private Bid highestBid;
    * Construct a Lot, setting its number and description.
    * @param number The lot number.
    * @param description A description of this lot.
    public Lot(int number, String description)
         this.number = number;
         this.description = description;
    * Attempt to bid for this lot. A successful bid
    * must have a value higher than any existing bid.
    * @param bidder Who is bidding.
    * @param value The value of the bid.
    public void bidFor(Person bidder, long value)
         // We trust that lot is genuine. There is nothing to
         // prevent a spurious lot from being bid for, but it
         // would not appear in the auction list.
         if((highestBid == null) ||
         (highestBid.getValue() < value)) {
         // This bid is the best so far.
         setHighestBid(new Bid(bidder, value));
         else {
         System.out.println("\nLot number: " + getNumber() +
                   " (" + getDescription() + ")" +
                   " has a bid of: " +
                   highestBid.getValue());
    * @return The lot's number.
    public int getNumber()
         return number;
    * @return The lot's description.
    public String getDescription()
         return description;
    * @return The highest bid for this lot. This could be null if
    * there are no current bids.
    public Bid getHighestBid()
         return highestBid;
    * @param highestBid The new highest bid.
    private void setHighestBid(Bid highestBid)
         this.highestBid = highestBid;
    package stan_bluej_ch4p90;
    * Maintain details of someone who participates in an auction.
    * @author David J. Barnes and Michael Kolling.
    * @version 2001.05.31
    public class Person
    // The name of this user.
    private final String name;
    * Create a new user with the given name.
    * @param name The user's name.
    public Person(String name)
         this.name = name;
    * @return The user's name.
    public String getName()
         return name;

    Are you ready to kick yourself? The problem lies in the class Auction. You are using showLots() to print the lots, which you are trying to show the lot number, the description and the highest bid. But no there is no where in the class where you set the highest bid. In enterLot() you pass the description of the lot and it creates a new lot with the lot number and the description, but you don't give a bid. Then after the bids are done you do not update Auction to reflect the bids. Let the kicking commence. :-)

  • IMG Setting for Fleet Management - Set Reference Object for Vehicles

    On other SAP 4.7 systems I have been able to access in the IMG "Set Reference Object Screen for Vehicles" under the "Settings for Fleet Management".  I am currently working in a system that doesn't have that option in the IMG.  What do I have to do to get this menu in the IMG?

    Hi,
    All the extra features provided by business functions in PLM are documented in note [1389108|https://service.sap.com/sap/support/notes/1389108]. See the pdf attachment in that note.
    -Paul

  • Transaction code to view process orders set for deletion

    Hi PP Gurus
    We are trying to search for transaction code to view the process orders which have status as DLFL i.e deletion flag  set for the orders. In cooispi, the deleted orders are not shown in the report output.
    I request you to let me know if there is any other code through which we can view deleted process orders.
    Thanks & Regards
    Harleen Kaur

    Dear,
    In COOISPI  put DLT in system status field and execute the report this will give you the list of all order with deletion flags
    Also refer this thread,
    COOIS Report for Production orders with status DLFL
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on May 6, 2009 11:16 AM

  • Default setting for deleting files, default setting for deleting files

    How can I change default value for deleting files from 'Keep file' to 'In waste basket' (sorry this is a translation from the German 'In den Papierkorb') meaning delete file from harddisk definitely.

    Thank you for your quick answer. Yes that's the place I am doing the job. And yes I do get a choice to choose between 'Delete from hard disk' or 'Delete from iTunes only'.
    But the 'Delete from iTunes only' is the default setting. I would like to change the default setting to 'Delete permanently (from hard disk too)'. This would enable me to work much quicker by using keys only (Del + Enter) without touching the mouse to change from 'Delete from iTunes only' to 'Delete permanently'.

  • Permanantly removing vendor from sap which are set for deletion flag

    Hai Pals,
    I want step by step explanation of how to delete vendors which are marked for deletion.I have check the forum & got only transaction code SARA & Archiving object FI_ACCPAYB.I dont know hau to proceed further please give some explanation to proceed further

    Archiving is done from transaction SARA.
    Enter the object, then hit enter.
    to get the object specific steps, these are process from top to down. 
    You have to do the customizing first, which can be done from SARA transaction as well.
    Follow the link to the very details.
    See the menu on the left, expecially the first knot "Introduction to Data Archiving (CA-ARC)"
    http://help.sap.com/saphelp_erp2005/helpdata/en/ba/4b68b8327911d2a25c0000e8a5f24f/frameset.htm

  • Configuration setting for funds management

    We are going to implement funds management module.Kindly let me know what are the configuration setting required for that.
    Thanks
    shivaji

    Hi,
    check this link:
    http://help.sap.com/saphelp_47x200/helpdata/en/f0/ca5716260211d28a430000e829fbbd/frameset.htm
    Also check the wiki document :
    My Home  >  Public Sector >  Home > PSM-FM Funds Management
    Thanks
    Javed

  • MySite is Scheduled for Deletion

    Hi,
    I have a few questions regarding this notification (we are running SharePoint 2013):
    1) is there a way to modify the text of that email?  We'd like to change a thing or two in the body of the email, but I'm not finding a way to do so
    2) We'd like to be able to keep the mysites of specific employees, but keep the Mysites Cleanup Timer service running for most sites.  From what I've researched, we'd have to customize the back end coding to allow this.  In the meantime, would
    the following workaround be acceptable: move the account back to the original OU, keep the AD account as disabled and expired, and run the SharePoint User Profile Sync. 
    Would that work?  Or would the fact that it's disabled in in AD still keep the mysite flagged for deletion?  IF that won't work, what would be the quickest workaround?
    Thanks very much

    For either option, you would have to create your own timer job or other process to complete this task. The MySite Cleanup job cannot be modified itself.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Rebate agreement setting for new customer

    I have a scenario, where business has a customer who had some sales and now that the cusotmer has changed his name and new customer is created for that. old customer has been set for deletion. now business wants to transfer the old customer sales data to new customer inorder to create the rebate agreements. as i understand rebate agrements are created based on customer and cannot be created for old customer and accru another customers sales. did any one came across such scenario, please give your suggestion.

    Hi
    No it is not, it is accrued into the accruals account based on the accruals value you have defined in the condition record of the agreement.
    Example scale :
    scale value            Amount             Accruals
           0,00 EUR         5,000- %          7,000-
      100,00                   8,000-                       
    1.000,00                12,000-     
    If you create a real invoice for less than 100 Euro according to your current understanding the 5% rate would apply and if the invoice value was over 100 Euro the 8% rate would apply. In both cases the 7% accrual rate would apply with no consideration of the scale.               
    When you create rebate condition with scales, for the individual customer billing document,the system will take the first scale level / the accruals amount. Only during the final settlement, will the detailed scales condition be taken into consideration for the real customer payment.
    Check this note: 392711 - Rebate conditions with scales
    Most customer's would maintain their accruals amount as an average based on the business reality when using rebate scales.
    Hope it helps
    Kind regards
    Brian

  • Entourage emails hare marked for deletion after read on iPhone

    Hi
    I have a predicament that I cannot find a solution to.
    My friend uses Entourage for her work email on her Mac.
    The email account is an IMAP account.
    When ever emails are downloaded to the iPhone and read, the email on Entourage has a strikethrough and is marked for deletion. The email then gets deleted from Entourage, the iPhone and the server once email is check on teh iPhone.
    The only way to stop this is to disable the account on the iPhone.
    Teh settings on Entourage are NOT set in anyway to delete or mark emails for deleteion.
    Any ideas?
    glenn

    There is no setting available with the iPhone's mail client to mark a message for deletion that has been read with an IMAP account, nor am I aware of the same for an IMAP account with any email client.
    If the read messages remain in the account's Inbox mailbox and are not marked for deletion - which moves the messages to the account's Trash mailbox, something else is wrong.
    I suggest deleting and recreating the account as an IMAP account on the iPhone.

  • T-code for delete file from application server

    Hi all!
    Please, has any t-code for delete file from application server? For upload exist CG3Z, for download has CG3Y. And for delete? Has anyone?
    I need to delete file from application server in QA system and i don't want to create a program for this because i will need to transport a request from DEV to QA.

    I don't have contact with basis team.
    The FM EPS_DELETE_FILE support directory name with max 60 char. My dir. has more than that. I need a transaction for this.
    Anybody know if this transaction exist?

  • Function modules or BAPI for deleting plan costs on a cost center

    Hi all,
    I search for a function module or bapi to delete plan costs / activity on a cost center.
    At the moment I update the planning with 0, but that cause a mass of needles entries on the cost centers.
    For check and posting I use the function group 6026 - BAPI_COSTACTPLN_* ,
    but there is no function for deleting.
    Has anyone an idea?
    Thx for help - points as reward !

    check
    BAPI_COSTACTPLN_POSTACTINPUT   Activity Input Planning: Posting                
    BAPI_COSTACTPLN_POSTACTOUTPUT  Activity/Price Planning: Posting                
    BAPI_COSTACTPLN_POSTKEYFIGURE  Stat. Key Figure Planning: Postings             
    BAPI_COSTACTPLN_POSTPRIMCOST   Primary Cost Planning: Postings                 
    BAPI_PDTRANSCO_POSTPRIMCOST    Transfer of Planning Data: Post Primary Costs   
    K40C                           CO Actual Postings, Manual                      
    BAPI_ACC_PRIMARY_COSTS_POST    Accounting: Post Primary Costs                  
    BAPI_COPAACTUALS_POSTCOSTDATA  BAPI Operating Concern: Post Costing-Based Actua
    BAPI_PRIM_COST_CHECK_AND_POST  Primary Costs: Formal Parameter Check           
    S@meer

Maybe you are looking for

  • Safari Crashes when attempting to download files

    Ever since I uninstall DAP (Download Accelerator Plus), I can no longer download files. For example, when I click to download a zip or dmg file, (direct http) Safari (2.0 412) crashes with the following message: Date/Time: 2006-04-01 20:40:38.474 -06

  • How to attach a document stored in Archive link in a notification

    Hi Friends, Is it possible to get the PDF file stored in Archive link and make it as an attachment in a notification. I think we need to get this PDF attachment and convert it into SOFM instance, then only we can make it as an attachment in notificat

  • DBConcurrencyException

    Hi Folks, I use the wizard to generate my sql query with parameters ( select, update, insert and delete) I can get data from database in my datagrid but if I want update my data from datagrid to database, I get the following error: An unhandled excep

  • WAS ABAP Sneak Preview  - Download options

    Hi, I have been trying to download the WAS ABAP Sneak Preview. I have tried over 10 - 12 download softwares and all other options, but everything in vien. Kindly link this download to serverice market place or download manager so that we can download

  • OBI vs OBIEE installation time and components

    Hello Guys I installed OBI Standard Edition 1 and OBIEE and wondered why on earth the OBI Standard Edition 1 installation takes so much longer than OBIEE. I noticed that OBI Standard Edition installs: Oracle Warehouse Builder Oracle BISE1 Seed Databa