Move dashboards from perfomance point server 2007 to share point 2013

 Hello every one,
can you please help me in the below.
I have to move the reports and dash boards from old to new share point (2013) site. There is already a share point site built and running successfully. I need to add 1 section of dash boards and reports into sharepoint 2013 from the old site.
For this I need to add new sub site site rite? My question here is how to bring dash boards and reports from old site to new site (share point 2013).
Old site is performance point server 2007 and new site is share point 2013.
Thanks
Kumar

Given you aren't using PowerPivot for SharePoint, you can continue using SSAS 2008 R2 for your cubes and data connections. BI dashboards, Lists, and so forth are just SharePoint content, and they get upgraded when you migrate to 2013.
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.

Similar Messages

  • Move Analysis from test OBIEE server to production

    Hi all,
    how do I move Analysis from test OBIEE server to production without re-creating it again from the beginning?

    Check this link
    http://www.rittmanmead.com/2011/02/obiee-11g-migrations/
    Look at Catalog manager part.
    Navigate to the specific folder/report using Catalog Manger and then select the report(s) and then File Menu archive and specify the folder to save the archive
    Move them to Prod box and the Open Catalog Manger and navigate to specific folder and File menu Unarchive select the path for file
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10541/prescatadmin.htm#i1044262
    If helps mark
    Edited by: Srini VEERAVALLI on Feb 19, 2013 12:18 PM

  • Folders Not Showing in Server Admin AFP Share Point?

    Hello all,
    My problem is I can make a folder in Server Admin under AFP Share Point, But the Folder wont actually be made on the HD.
    Under Server Admin AFP Share Point it will tell me that it doesn't exist?
    So I thought I'll go to that point on the HD and make the folder then set the permissions to it... nope I can make the folder I can see it in finder and in terminal, But not in Server Admin AFP Share Point.
    I have never seen this before any help is greatly welcomed.

    Hi Kristoffer,
    I have seen an attribute for folder object which could control SharePoint folder hide or show in webdav explorer view, you can use PowerShell to output the problematic folder property, see if it the case, then use the PowerShell code to set it's property
    with blank value to make it show in explorer view,
    Use the PowerShell to get the folder object and then check the property value with this code line $folder.Properties["vti_winfileattribs"]
    #folder can be site, library level and folder level
    $folder = (Get-SPWeb http://sp).Folders["shared documents"].SubFolders["folder1"]
    #hide folder
    $folder.Properties["vti_winfileattribs"]="00000016"
    #show folder
    ####$folder.Properties["vti_winfileattribs"]=""
    $folder.Update()
    https://social.technet.microsoft.com/Forums/lync/en-US/9ceafb38-24dc-466c-b497-2cee062b81cf/explorer-view-hidden-folder-attribute?forum=sharepointgeneral
    Thanks
    Daniel Yang
    TechNet Community Support

  • How do I move mail from an old server to a new server?

    I am rebuilding my server. The new server runs on OS X 10.9.4 with Server 3.1.2. The old server ran OS X 10.9.x and Server 3.x (the exact versions are not known).
    Within the folder /Library/Server/Mail, I found the email stores for both systems.  I have gone through each folder and identified the 36 character string that serves to identify the user's mailbox and paired each one to a user id on both systems.  On the old system, there are multiple mailboxes for some users, and I think it is a result of the users being deleted and recreated: perhaps the system identified the identical name and assumed that the user might be different and therefore created a unique 36 character id for the mail system.
    The trick is, I am trying to recover the mail from the old server.
    I have attempted to copy the files which are human readable and formatted for SMTP transmission to the new server under the correct mailbox corresponding to the owning user (see screen shots below). The simple act of copying the files has not made these files visible via the IMAP protocol. I have tried restarting the mail service hoping that the Server app would rebuild whatever indexes need to be built so that the mail can be served via IMAP, and that has not worked either.
    The question is, how do I get the mail from the old server mail boxes into the new server mailboxes?
    This screen shot shows the location of one mail collection at /Library/Server/Mail/Data/mail/[userid].  Mail sits in the "new" folder only for a moment before being processed and put into the "cur" folder.  Copying mail from the old server into the "new" folder produces an empty "new" folder, but one can see the files populate briefly before they are moved into the "cur" folder.
    The next screen shot shows one email opened in TextEdit.  The format should look very familiar.  This is the same format that one would use to send SMTP requests to an SMTP server.  This particular example happens to be an email from a Gmail account to the PediatricHeartCenter.org domain to test the mail system when the old server was set up.  It was sent on 24 Jan 2014 and had text reading "Intended for Mavericks1. -Jared".

    On further research, I have learned that OS X Server sets Dovecot to use the MailDir format.  The email messages can be removed from the folders and put back, and as long as they were present in the folder to begin with (received by Dovecot originally), they reflect in the Mail.app on client computers.  Deleting a file in the "cur" folder causes the file to disappear in Mail.app. Copying the file back into the "cur" folder will cause the file to reappear without any modification of an index file or any other system component, as long as the file was properly formatted by Dovecot to be identifiable to that folder.
    According to Dovecot.org's review of MailDir found here (http://wiki2.dovecot.org/Ma,ilboxFormat/Maildir), the file name can be broken into simple pieces: " [unixtimestamp].[process id].[hostName],S=<message size>,W=<virtual message size>/2,[status tags]".  The original MailDir++ specification requires the string ":2," to appear after the virtual size, but this file naming format is not legal in Mac OS X, so Dovecot is modified by Apple to use "/2," instead.
    The Dovecot's wiki describes inserting new messages as follows:
    Mail delivery
    Qmail's how a message is delivered page suggests to deliver the mail like this:
    Create a unique filename (only "time.pid.host" here, later Maildir spec has been updated to allow more uniqueness identifiers)
    Do stat(tmp/<filename>). If the stat() found a file, wait 2 seconds and go back to step 1.
    Create and write the message to the tmp/<filename>.
    link() it into new/ directory. Although not mentioned here, the link() could again fail if the mail existed in new/ dir. In that case you should probably go back to step 1.
    All this trouble is rather pointless. Only the first step is what really guarantees that the mails won't get overwritten, the rest just sounds nice. Even though they might catch a problem once in a while, they give no guaranteed protection and will just as easily pass duplicate filenames through and overwrite existing mails.
    Step 2 is pointless because there's a race condition between steps 2 and 3. PID/host combination by itself should already guarantee that it never finds such a file. If it does, something's broken and the stat() check won't help since another process might be doing the same thing at the same time, and you end up writing to the same file in tmp/, causing the mail to get corrupted.
    In step 4 the link() would fail if an identical file already existed in the maildir, right? Wrong. The file may already have been moved to cur/ directory, and since it may contain any number of flags by then you can't check with a simple stat() anymore if it exists or not.
    Step 2 was pointed out to be useful if clock had moved backwards. However again this doesn't give any actual safety guarantees, because an identical base filename could already exist in cur/. Besides if the system was just rebooted, the file in tmp/ could probably be even overwritten safely (assuming it wasn't already link()ed to new/).
    So really, all that's important in not getting mails overwritten in your maildir is the step 1: Always create filenames that are guaranteed to be unique. Forget about the 2 second waits and such that the Qmail's man page talks about.
    The process described by the QMail man page referenced above suggests that as long as a file is placed in the "new" folder, that a mail reader can access it.  The mail reader then moves the file to the "cur" folder and "cleans up" the "new" folder.  This is clearly happening in OS X, because the messages are moving from "new" to "cur", but IMAP is still not serving these foreign messages to the remote readers.
    The thought crossed my mind that perhaps it is the fact that the host name does not match, which would cause the failure, however changing the "host" portion of the name from the old-server to the new-server did not fix the issue.  Even with the new server name in the file name, the inserted message fails to appear in client Mail applications.
    Within the file their is header information that still references the old machine. I'd like to not have to change the email files, because this will violate the integrity of the message. Also, this might take a lot of time or incur risks associated with poor automated processing. The header information should not be referenced by Dovecot, because the wiki page describing MailDir notes that neither Dovecot nor Dovecot's implementation of IMAP refers to the messages header information when moving and serving these mail files.
    Unlike when using mbox as mailbox format, where mail headers (for example Status, X-UID, etc.) are used to determine and store meta-data, the mail headers within maildir files are (usually) notused for this purpose by dovecot; neither when mails are created/moved/etc. via IMAP nor when maildirs are placed (e.g. copied or moved in the filesystem) in a mail location (and then "imported" by dovecot). Therefore, it is (usually) not necessary, to strip any such mail headers at the MTA, MDA or LDA (as it is recommended with mbox).
    This paragraph leads me to believe that after the mail box is identified that the content of the file becomes irrelevant to the system which manages. This suggests that we should be able to inject messages into a mailbox and have the system serve them as though they had belonged in that mailbox all along. Yet I have not found a way to do this.

  • Migration of Unity users from MS Exchange server 2007 to 2010

    Hi,
    I am having Unity 7.0 with MS Exchange server 2007,now want to transfer the users and Unity mailboxes to MS Exchange server 2010. Want to know the procedure. Can anyone help me out?

    The way you're doing it has two very high hurdles.
    First, you have to get the data out of an offline server and into Office 365.  That's hardly a trivial task.  If the server were online and reachable by the Internet you could use a move request or a third-party tool like MigrationWiz.
    Second, if you do get the mail moved, you will want to synchronize the legacyExchangeDN attribute from the old organization into an X500 proxy address in Office 365 for all mailboxes to preserve mail replyability.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Using iPad to AirPlay home movies/pictures from a media server/external HD

    I'm trying to access all my home movies and pictures from a media server or external HD. I want use my iPad as the interface and use AirPlay to display them on my tv. One of my key requirements is that the interface allow the movies and pictures to be organized into albums like iPhoto. They need to be together instead of a folder for photos and a photo for videos. I would also like to have a favorites album that is essentially shortcuts to photos and videos in my other albums, just like iPhoto. Any ideas?
    FYI...I'm using a local storage device so I don't have to worry too much about network latencies and bandwidth. I also prefer not to have a full-fledged computer running all the time just to serve stored media. Thereforey preference is to use a media server instead of an external HD (although I would be open to that if airport extreme would be part of the solution.)

    I'm trying to access all my home movies and pictures from a media server or external HD. I want use my iPad as the interface and use AirPlay to display them on my tv. One of my key requirements is that the interface allow the movies and pictures to be organized into albums like iPhoto. They need to be together instead of a folder for photos and a photo for videos. I would also like to have a favorites album that is essentially shortcuts to photos and videos in my other albums, just like iPhoto. Any ideas?
    FYI...I'm using a local storage device so I don't have to worry too much about network latencies and bandwidth. I also prefer not to have a full-fledged computer running all the time just to serve stored media. Thereforey preference is to use a media server instead of an external HD (although I would be open to that if airport extreme would be part of the solution.)

  • Move certificates from Windows CA Server to IOS CA (Router 2900).

    Hi,
    You can move the CA certificates from my server windows  server 2003 to  a Cisco router?
    I currently have a Windows 2003 server CA (SCEP)  and need to move certificates from this machine to a cisco 2900 router (ISR) ... Is it possible?

    Hi Yerko,
    Yes you can.  Please have a look at the below link:
    http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_conn_pki/configuration/15-mt/sec-pki-15-mt-book/sec-cert-enroll-pki.html
    Please visit the below section.
    Configuring Cut-and-Paste Certificate Enrollment
    SUMMARY STEPS
    1.    enable
    2.    configure terminal
    3.    crypto pki trustpoint name
    4.    enrollment terminal pem
    5.    fingerprint ca-fingerprint
    6.    exit
    7.    crypto pki authenticate name
    8.    crypto pki enroll name
    9.    crypto pki import name certificate
    10.    exit
    11.    show crypto pki certificates
    Regards,
    Kanwal
    Note: Please mark answers if they are helpful.

  • How to move phones from one CUCM server to another?

    How easy is it to migrate IP phones from one CUCM server to another?
    The situation is this:
    A vessel currently sitting in dry dock has 14 IP phones onboard which currently register with a CUCM server half way round the world (literally). As you can imagine there is quite a fair amount of delay for the signal processing, not to mention the connectivity being over a VSAT link. This being a temporary solution.
    A CUCM server has been configured and installed on the vessel with all the relevant partitions, route patterns, trunks etc. The phones have also been added to the new server ready for migration. The only real thing that will be different when the phones are migrated is the Directory Number on each phone. Both CUCM servers are running software version 7.1.3
    The phones currently pick up their local IP addresses via a local DHCP server which assigns 150 TFTP Server IP Address for the remote CUCM server. Is changing the the TFTP Server IP address to the local CUCM server enough to have the phones register with the local server.
    This is not something I've tried before so would appreciate feedback or any comments that may indicate anything I missed along the way.
    Thanks,
    Ric

    Hi Ricardo,
    On the DHCP scope created for the voice vlan change the Option 150(TFTP Server IP address) to the new CUCM and remove/delete the remote CUCM IP address just to ensure that phones once after registering to the new CUCM will not fetch any config from the remote CUCM as the DN's of the phones are changed on the new CUCM please ensure this.
    Apart from this i dont see any challenges as the firmware of the IP Phones will also remain same as CUCM version is same.
    Hope that helps.
    Regards
    Najaf

  • Trying to move itunes from a network server but not succeeding. Help!

    my work laptop is part of an exchange server network thing. I have to move my personal data from this network and so have experienced a few problems. Firstly when i moved the itunes files to my desktop away from the synched files in 'my documents' and 'my music' it deleted my whole library. I still had the files but everytime i tell itunes to add folders of music from their new location it still insists on putting the files back into 'my music' as well and thus back onto the server. I've changed the file location in the advanced settings to its new location on the desktop but its still doing the same thing. Can anyone help please?

    1 Quit iTunes.
    2 Copy the entire iTunes folder including music to the another location/external drive.
    3 Restart iTunes holding (Shift-Windows, Option-Mac).
    4 Select Choose library. Select the library in the folder you just moved.
    5 Move the old iTunes folder to the trash but do not empty it.
    6 Restart iTunes normally and verify the songs work. If they do, empty the trash.

  • OSX Server / MAMP / Move material from client to server

    I have a several questions.
    On my laptop I've been using MAMP (mamp.info) for quite some time, and I love it, most notably for the ease of use and clear directory structure. I've recently purchased a mini and osx server to learn that environment, and I know it already has php and apache installed. I'm actually running some web pages from the server now.
    Question is, I'd like to use the mamp stack on the server... is this a good idea. I like that all the files are in one directory. From a security standpoint, is it safer to use the included stuff in osx server?
    also, i'd like to use phpmyadmin and drupal on the server, like I am on the client stack once i'm done programming stuff. How can I go about this?
    thanks in advance for the info

    Question is, I'd like to use the mamp stack on the server... is this a good idea. I like that all the files are in one directory. From a security standpoint, is it safer to use the included stuff in osx server?
    I've never used MAMP to know what it's plusses are, although I guess it must have some since a number of people seem to use it (although maybe that's because they don't know most of the stuff is built-in). However, if you do go that route you're required to maintain it yourself with regard to updates (compared to the built-in version that Apple periodically updates via Software Update). This may be good or bad depending on a) how much time you have on your hands and b) how quickly MAMP update their distribution vs. Apple.
    I also loathe the fact that MAMP puts all its files in /Applications (this is just wrong).
    also, i'd like to use phpmyadmin and drupal on the server, like I am on the client stack once i'm done programming stuff. How can I go about this?
    Just download and install them like you would anywhere else. I can't speak for Drupal but I've used PHPMyAdmin on Mac OS X for years.

  • Playing movies loaded from a home server...

    I'm thinking of getting an apple tv and then loading all my dvds onto a home server. What would be the process to allow apple tv to see these movies? Do I need to convert them all into a particular format first and if so, how?

    Thanks! That's very helpful. Does it matter what operating system I run on the server? Is there a "best" choice to go with all this? Obviously I would love to run Apple Server but not at the costs. I'm thinking of a linux box with about 8 TB of storage should give me plenty of room to grow for a long time.

  • Crystal Reports Server and MicroSoft Share Point

    I am currently use Report Server 2008 to distribute reports (email and file system).  I need to place reports into a share document folder within SharePoint Web site.  Enterprise XI had an add on product.  Is there the same type of product for version 2008?  If there is does it work with SharePoint services?

    I'm pretty sure sharepoint was released for 3.0 and that should include CRS08. I'm transferring to the integration kit forum but from the looks of things no one is responding to sharepoint posts right now. Can you open a message with support (integrated solutions team).
    Regards,
    Tim

  • Best practice for creating a new email address to Exchange Server 2010 for share point Library

    Hi,
    Please advise if there is any best practice for the above issue?
    Thanks 
    srabon

    Hi Srabon,
    Hope these are what you want.
    Use a cmdlet to Create a User account and Mailbox in Exchange 2010
    http://technet.microsoft.com/en-us/magazine/ff381465.aspx
    Create a Mailbox for an Existing User
    http://technet.microsoft.com/en-us/library/aa998319(v=exchg.141).aspx
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Is it possible to debug step by step for share point designer workflow in share point 2010

    Hi all,<o:p></o:p>
    I have created a reminder date work flow but it is not working .In this work flow it need to be check first its status if its status is suspend then only workflow can run .I am
    attaching below workflow logic check if any modifications needed please suggest me . And  I have doubt is it possible to check step by step debugging like in coding we are using break point in this way any break point is available for designer workflows
    ? If break point is available please guide me how to get and use those<o:p></o:p>
    Thanking you,<o:p></o:p>
    ArunDarly 
    <o:p>Workflow logic given below</o:p>

    You can't step through a SharePoint Designer Workflow.  The normal workaround is to Log messages to the History list with the values you want to look at where you would normally put breakpoints.  Then run the workflow and examine the history
    list to see how the values changed as you went through your workflow.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Performance point service errors in share point wfe servers event viewer

    HI
    i am facing a problem in performance point service , i seen two errors  in event viewer of a sharepoint wfe server
    An exception occurred while the width of the Web. Diagnostic information that may help determine the cause of the following in this issue: 
    Microsoft.PerformancePoint.Scorecards.BpmException: There is a problem in the preparation of a Web Part for display. 
    Error code "Services PerformancePoint" is 20700.
    2 error)
    Log Name:      Application
    Source:        Microsoft-SharePoint Products-PerformancePoint Service
    Date:          02/09/35 01:11:41 م
    Event ID:      39
    Task Category: PerformancePoint Services
    Level:         Error
    Keywords:     
    User:          NT AUTHORITY\IUSR
    Computer:      XYZWFE02.XYZportal.com
    Description:
    A PerformancePoint service application call was aborted by the caller.  This may indicate the HttpRuntime executionTimeout for the Web Application is configured to
    a value smaller than the DataSourceQueryTimeout for the PerformancePoint Service Application.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-SharePoint Products-PerformancePoint Service" Guid="{A7CD5295-CBBA-4DCA-8B67-D5BE061B6FAE}" />
        <EventID>39</EventID>
        <Version>14</Version>
        <Level>2</Level>
        <Task>1</Task>
        <Opcode>0</Opcode>
        <Keywords>0x4000000000000000</Keywords>
        <TimeCreated SystemTime="2014-06-29T10:11:41.385108100Z" />
        <EventRecordID>1422377</EventRecordID>
        <Correlation ActivityID="{D707EAF7-6A6A-45FA-AF83-77DC3231B658}" />
        <Execution ProcessID="18236" ThreadID="19172" />
        <Channel>Application</Channel>
        <Computer>XYZWFE02.XYZportal.com</Computer>
        <Security UserID="S-1-5-17" />
      </System>
      <EventData>
      </EventData>
    </Event>
    adil

    Hi
    also  below error is coming in eventy viewer of wfe servers
    Log Name:      Application
    Source:        Microsoft-SharePoint Products-PerformancePoint Service
    Date:          03/09/35 02:25:26
    م
    Event ID:      39
    Task Category: PerformancePoint Services
    Level:         Error
    Keywords:     
    User:          NT AUTHORITY\IUSR
    Computer:      XYZWFE02.XYZportal.com
    Description:
    A PerformancePoint service application call was aborted by the caller.  This may indicate the HttpRuntime executionTimeout for the Web Application is configured to a value smaller than the DataSourceQueryTimeout for the PerformancePoint Service Application.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-SharePoint Products-PerformancePoint Service" Guid="{A7CD5295-CBBA-4DCA-8B67-D5BE061B6FAE}" />
        <EventID>39</EventID>
        <Version>14</Version>
        <Level>2</Level>
        <Task>1</Task>
        <Opcode>0</Opcode>
        <Keywords>0x4000000000000000</Keywords>
        <TimeCreated SystemTime="2014-06-30T11:25:26.997772700Z" />
        <EventRecordID>1425270</EventRecordID>
        <Correlation ActivityID="{EB0C99EA-5B6A-4001-9D9B-C91FF779CD4B}" />
        <Execution ProcessID="6736" ThreadID="15788" />
        <Channel>Application</Channel>
        <Computer>XYZWFE02.XYZportal.com</Computer>
        <Security UserID="S-1-5-17" />
      </System>
      <EventData>
      </EventData>
    </Event>
    adil

Maybe you are looking for