Reg:: Determing the Site Title Change date

Hi Techys,
I have created a SharePoint 2013 team site on 07-july-2014, and according to the customer requirement I have granted the permissions for some users. But, today(05-Aug-2014) I have recognized someone has changed the site tile. Now, I would like to know
who was changed the site title and when it was happen.
This is a huge escalation from my customer, could you plz help me....
Many Thanks,
Madhu

If you have enabled audit log then you can view the reports, if you haven't enabled it then you can not get the details that who has updated the site title. You can view audit log reports from top level site settings --> Site Collection Administration
--> Audit Log Reports.
If it is not enabled then you have enable it for getting audit reports (for future use). Check below link for reference.
http://sureshpydi.blogspot.com/2013/05/audit-log-reports-in-sharepoint-2013.html
Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

Similar Messages

  • Is there a way using javascript to get the Site title?

    I was wondering if there is a way to get the site title using javascript and then place that info in a workflow var?

    Hi SPSADmin,
    If you are using custom workflow then you can easily get site title in the workflow.Please go through below link to get site title
    http://msdn.microsoft.com/en-us/library/office/gg749857(v=office.14).aspx
    For Sharepoint designer workflow its bit tricky but you can achieve
    http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/MS-SharePoint/Q_27910482.html
    Regards
    Soni K

  • Web Gallery- Make the Site Title a link

    Not sure if this is common knowledge, so I figured I'd pass it along...
    You can make the Site Title a link by entering the following:
    <a href="www.your-url.com">Your Site Title</a>

    If I enter this ( Home ) into my collection title I end up with this
    ( <a href="../index.html">Home</a> ) in the group.xml file.
    When I first enter the original text it appears as ( Home ) in the LR display, upper right corner. Once I save as preset or export the web gallery it then appears as
    ( Home ) in the LR display.
    What am I doing wrong?

  • Changing the specs of the site title: Can it be done?

    Is there a way to change the font type and or font size of the Site and Collection titles in the HTML website galleries that LightRoom can generate?

    you can't load same dll twice(if dll is in two differen location)
    but you can call same dll from diff application(in both application same dll with same location )has been called

  • I can't update/downloads an app from app store by using by iphone 4s. The icon will change to blank keep waiting, this problem was trouble me for 1 week. pls help me.I try all the method (reset/change date setting)no help my network is ok.

    I can not update/download an app from app store by using my iphone 4s. I try every method by re-setting date/time and reboot the phone etc.NO Help.
    The icon will change to blank keep waiting & can not go in & use in. Anyone have solution for this. pls help me...tks

    .local indicates local activity by the computer host Williams-macbook-pro.local=hostname@domain . The UID of 501 is the standard UID of a local computer administrator.
    Copy and paste this little script in your terminal:
    if [ "SSH_CONNECTION ]; then
         echo I am remote
    else
         echo I am local
    fi
    A return of "i am local" ensures there is no remote connection to your machine (through SSH).
    In the future, to avoid remote entry, I would recommend not posting your IP address though.

  • Error in the Moment of Change Date ESS Address

    Good Afternoon,
    I have the following issue,
    When the employee tried of change date of address the system display a message of Error:
    ! You have no authorization to Insert!
    The other issue is that the system not update the field Municipality in the moment of select the field of the listbox Region, ie the listbox aren't dynamic.
    Someone know of some note?
    Regards,
    Wilman

    To Begin with its suggested that you either use a standard Employee role, or copy of Standard role. and then you can remove unwanted authorizations from them.
    refer
    helps[help|http://help.sap.com/saphelp_erp60_sp/helpdata/en/99/76b6c6eb2711d1899d0000e8216659/frameset.htm]
    Hope this helps.
    Rgds

  • Access the site title, url from new -spsite cmd let

    hi,
    I am creating  new site using the pshel
    new-spsite -name $projectName –Description $projectDescri -Template "STS#0" -ContentDatabase $contentdbnameproj $sitecollecName -OwnerAlias $primAdmin_1 –SecondaryOwnerAlias $secondaryAdminin -verbose
    and I want to get the site url  created here,
    Can i assign the output  of this command to a pshell varibale? so that i can  access the root web's title and url and perform more operations like  adding few users into the members group,add some other users into a list within
    this site collection etc ...

    i have written the  belwo script  for creating siet collec with sepcific content db and geting the rootweb property and able to manipulate partially.
    but i was getting few errrors while manipulating the  groups etc
    $ErrorActionPreference="Stop"
    Write-Host "Create SiteColection"
    $dummywebappname= "http://srvr:1009"
    $projectName = Read-Host "Enter Project Name"
    $projectDescri = Read-Host "Enter Project Description"
    $contentdbnameproj= "WSS_ContentDB_"+$projectName
    #$contentdbnameproj="WSS_ContentDB_Project"
    new-spcontentdatabase -name $contentdbnameproj -webapplication $dummywebappname -verbose
    Write-Host -f yellow "Project DB has been created"
    $sitecollecName = $dummywebappname + "/sites/"+$projectName
    #$primAdmin = Read-Host "Enter primray admin name: like in\p.p";
    $primAdmin_1 = "in\p.p"
    #$mtemplate= Get-SPWebtemplate -Identity "STS#0"
    #$secondaryAdmin = Read-Host "Enter secondary admin name: like in\p.p";
    $secondaryAdmin_1 = "in\h.v"
    #$rildccs= read-host  "Enter names with semilcolon separated like: "
    #$EM= read-host "Enter EM Name with semilcolon separated like: "     #"in\m.n";
    #$PM= read-host "Enter PM Name with semilcolon separated like: "     #"in\m.n";  "in\r.r.s";
    # list name where EM and PM needs to be inserted
    $projlistname="Project_Master"
    new-spsite -name $projectName –Description $projectDescri -Template "STS#0" -ContentDatabase $contentdbnameproj $sitecollecName -OwnerAlias $primAdmin_1 –SecondaryOwnerAlias $secondaryAdminin -verbose
    $mprojectURL=$sitecollecName
    $sitecollecURL=  $sitecollecName
    $currsite=Get-SPSite $sitecollecURL
    $currWeb=$currsite.RootWeb
    Write-Host  -f yellow "Project named " $projectName  " with URL" $mprojectURL "was  successfully created"
    Write-Host -f yellow "starting to create default groups..."
    $projSite = New-Object Microsoft.SharePoint.SPSite($sitecollecName) 
    $projweb = $projSite.RootWeb
    $projweb = Get-SPWeb $projweb.Url
    $projweb.Update()

  • The page title Changing.

    Hi Gurus,
    due to some clien t requiremen ts i have changed welcome page hearder .
    but when check with key value of page header we are unable find .
    key value is (b2b.fs.title).
    please let me know where ( DC) key value exist.
    Thanks,
    Jagadish Babu.

    You can find this ".xlf" file under project
    /DNF_DEVISA_Dcrmtcwebecommercebase~sap.com
    File name is "crmtcecommercebase~resources_en.xlf" for English version.
    You can go to NWDS click on "Search" from "Java Perspective" select 2nd option "File" from drop down menu.
    In Containing Text input Box provide "b2b.fs.title" and File name Patterns input box provide *.xlf and then press "Search"
    You have to create project "crm/tc/web/ecommercebase" from SC "sap.com_SAP-SHRWEB"
    I hope this will solve your problem.
    Cheers....
    Ecommerce Developer.

  • How to change "YOUR SITE TITLE"?

    I just started experimenting with web galleries, and when I try to edit the stock "YOUR SITE TITLE" I can select the text but then when I type it doesnt change.
    Uh, whats up with that??? How does one set the site title?

    Hello, okamisama
    Quote: "I just started experimenting with web galleries, and when I try to edit the stock "YOUR SITE TITLE" I can select the text but then when I type it doesnt change."
    Yeah, you're righ, the workaround is click in the text box but don't select the entire text just click in it so that the cursor is blinking and then type in it.
    love & peace,
    victor

  • Sales Order creation/ change date for the items

    I have a unique scenario and i need to get a Report for this
    A sales order is created for 4 line items.
    Out of these , for 2 line items a delivery is created. I need the sales order creation date and time  for these 2 items in a custom report
    Now the other 2 items go in to some kind of block- Now these are released by going in the sales order VA02 and after releasing the delivery is created. Again for these two items , i need the sales order change date as after a user goes and changes the sales order to remove the block only then delivery is created for these two items
    Also another scenario is the 2 line items go for back order and when we get stock  at tht time system confirms the stock and then the delivery is created for these. So also for this when this change occured i need to get the date for these 2 line items
    Can any one please suggest how to get this data  from the scenarios?
    I dont want to get the date when the delivery is created as i can get tht from the LIKP table. I need the sales order create and change dates for these.

    You may be aware, any changes to a document will be recorded in CDHDR (for header changes) and CDPOS (for item changes).  You can explore these two tables.
    thanks
    G. Lakshmipathi

  • Table name for Info-record where i can get the last changed date and user

    Using ME12, i have changed the price of the info record i want to get the who was the user and changed date...
    I had check in EINA EINE but i couldnt find out please anybody Please help me out by providing solution for this??

    Hi
    If at the data element level the field for which you want to know the old and new fields  the option of CHANGE DOCUMENT option must be  enabled ,then you can find the old and new values in the
    CDHDR -
    Change document header
    CDPOS -
    Change document items.
    Regards
    Pavan

  • Can you programmatically change the iView Title?

    Hi,
    I have a custom iView, and a requirement is to have the iView tray title changed depending on the content shown.
    Is it possible to have the iView Title changed from the custom iView code?

    Hi,
    Check this code:
    Just have these two methods and use the setPCDContextTitle() method
    public static void setPCDContextTitle(
            String currentPcdLocation,
            Locale locale,
            IUser user,
            String title)
            throws NamingException, PrivilegedActionException {
            IPcdUtils pcdUtils = PcdAccess.getPcdUtils();
            IPcdAttribute basePcdAttribute =
                pcdUtils.createPcdAttribute(PcdAttributeValueType.TEXT, IAttrPcmGeneral.ATTRIBUTE_TITLE);
            basePcdAttribute.set(locale, title);
            IPcdAttributes basePcdAttributes = pcdUtils.createPcdAttributes();
            basePcdAttributes.put((Attribute) basePcdAttribute);
            PcmAdminBase adminBase =
                (PcmAdminBase) getPCDContext(currentPcdLocation, PcmConstants.ASPECT_ADMINISTRATION, user);
            IPcdContext context = adminBase.getPcdContext();
            context.modifyAttributes("", DirContext.ADD_ATTRIBUTE, basePcdAttributes);
        public static Object getPCDContext(String currentPcdLocation, String aspect, IUser user)
            throws NamingException {
            Context pcdContext;
            Object currentObject = null;
            Hashtable env = new Hashtable();
            env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
            env.put(Context.SECURITY_PRINCIPAL, user);
            env.put(Constants.REQUESTED_ASPECT, aspect);
            try {
                pcdContext = new InitialContext(env);
            } catch (NamingException e) {
                logger.severe(e, "Error in PCDPath");
                throw e;
            try {
                currentObject = pcdContext.lookup(currentPcdLocation);
            } catch (NamingException e) {
                logger.severe(e, "Error in PCDPath");
                throw e;
            return currentObject;
    Greetings,
    Praveen Gudapati
    p.s. Points are always welcome for helpful answers

  • Change Data Source not showing tables (in the taget drop down) that begin with "SYSTEM"

    I am trying to change the data source to a database table that is named someschema.SYSTEM_XXX_XXX but none of my tables that are named SYSTEM_.......  are in the combo box list of the taget tables (Change Data Source) dialog.   I have tried this on several database with the same results.   Are you filtering out tables that begin with system ?

    <p>This issue has been resolved in the latest hot fix for CR4E.   You can download the latest version of the hot fix by   following these steps:</p> <ol><li>Go under the <strong>Help</strong> menu</li><li>Select the option <strong>Software Updates -> Manage Configuration</strong></li><li>Expand the tree until you see <strong>Crystal Reports for Eclipse 1.0.1.v671</strong> (or similar)</li><li>Highlight this entry and select the <strong>Scan for Updates</strong> option in the window on the right.</li></ol> <p>This will allow you to update to the latest version which is   currently <strong>1.0.2.v795</strong> </p> <p>Please let me know if this fix does not resolve the issue   outlined in this thread. </p><p> </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a>          </p>

  • Some segments are missing in the idocs for master data zdebmas

    hi guru's,
    can any one hlep me here we facing the probelumm
    some segments are missing in the idocs for master data zdebmas
    , there is some issue on the generation of the Site Master IDoc (Message type: ZDEBMAS, Basic type: DEBMAS06).
    This is using the SAP standard program (RBDMIDOC) which reads the Site master change pointers.
    There is  some segments below is missing in the IDoc:
    how to chcek this probelumm...

    hi
    i got the function module. it is  triggerig whne i do changepointer running.
    what ever changes i made only that segments are onlycomming in to the idoc. but remaing segments are not comming.
    my req is to show all segments  even if i do changes in one segmet fields  dont change theay have send to the interfece all athe segments.i ahve to do some enhancemetns for that
    can u plse help me the login  or any function module which will fill the alla the segmetns .

  • Batch title change in photo version 1

    The new "Photo" has changed the user interface completely.  Is there a way to to the "batch title change" for a group of photos?  There are instructions for how to do for one, but I'm hoping that this has not been lost.  I'm using version 1.
    Is there any way to remove the conformation that is now required each and every time you want to delete a photo or group of photos? 
    Thanks,
    DMW

    Batch changing is not yet supported in Photos for Mac.
    You could try to do it using AppleScript and Automator.
    I posted a few scripts on the Photos User Tips page:
    See:  Photos for Mac
    Batch Changes in Photos for Mac:  Change the titles to a Given String
    Photos for Mac: Batch Change the Date and Time to a Fixed Date
    Photos for Mac: Batch Change the Descriptions

Maybe you are looking for

  • Acrobat Reader 7.0.3 and xfa.host.exportData("",0);

    I have a lot of forms that I have made with Designer 7.0. Each of them has 'Export XML' button that has the following code xfa.host.exportData("",0); So far people with Acrobat Reader clients have been able to export form content to XML file, but now

  • Why does pressing the left and right cursor keys not navigate within ical?

    Where do I make feature requests?

  • Configurations for MBA on desktop

    Hi - I just bought 13" MBA and plan to use it on my desk top with external monitor and HD for back up.  My problem is that I want to connect to internet on 1gigabit ethernet cable.  It seems I have three options: 1) Use TB port to HDMI for display an

  • IWork updaters refuse to recognise apps

    I downloaded the Pages 3.0.1 Update, the Keynote 4.0.2 update and the Numbers 1.0.2 update but, for each of them, when the installer program runs I get this message... "An eligible Pages application was not found in the location /Applications." I rea

  • COA and reports problem

    Hi My COA is somewhat different from available coa ,means i've to add or delete some active and title account in it. i will import it through excel.Many of it will be duplicated. Now the reports like balance sheet,p/l statement, trial balance will ch