Migrating Reporting Services to new Server - Subscriptions are not transfering

Hello,
I have an instance of SQL Server 2008R2 running on Windows Server 2008.  It is setup to be a reporting server.  There are many subscriptions that are scheduled and run on this server.  We are wanting to move to Windows Server 2012 and SQL Server
2012.  So, we have built out a new VM and I have exported from the current server the ReportServer and ReportServerTempDB and have imported them to the new server.  I have resolved the one Orphaned user that happened and went to look for the subscriptions
so that I could disable them so they wouldn't run.  I could not find any.
select * from msdb.dbo.sysjobs where enabled = 1 and category_id = 100.
no rows...
I had read from other posts to let it sit for a few days and they will appear.  I have waited 2 weeks.
So, what am I missing?  I would prefer to do a clean install and migrate the data over rather than upgrading the OS and SQL.
Thanks

Hi Sql Dude,
Per my undersranding that you can't find any informamation related to the subscription in the sydjobs table after migration, right?
You issue can be caused by many factors.Please check details information below:
Please check if you can see all the subscription in the report manager and can create new subscriptions. The ReportServer database used by SSRS to store the subscriptions maintains a record of the subscription owner (as well as audit fields) which track
the user accounts that have created/modified the subscriptions. 
If you can't see subscription on the report manager and can create new subscriptions, the issue can be caused by "My subscriptions" had been created on the original non-domain server(Local User account).  Therefore, once the instance was migrated
to a new server on the domain, said Local User was no longer available.  Every user with access to the ReportServer database has an entry created in the Users table and a unique GUID generated.
To work around the issue, you can do a SQL Update query to changed the OwnerID and ModifiedByID fields on the Subscriptions table to relate to the GUID of the equivalent user on the domain.Tip:
Change the Owner of SQL Reporting Services Subscription
If you can see all the subsription on the report manager but can't find any job, please try to edit and update the subscription to see if it will recreate the job again and please also try to provide more details information in the log file to see if you
got some error message, the path like:
C:\Program Files\Microsoft SQL Server\MSRS11.SQLEXPRESS\Reporting Services\LogFiles
If above didn't help, please reference to the similar thread below:
Can't access SSRS 2008 R2 subscriptions after migration
If you still have any problem, please feel free to ask.
Regards,
Vicky Liu
Vicky Liu
TechNet Community Support

Similar Messages

  • Migrating to new server subscriptions are missing

    Hello,
    I have an instance of SQL Server 2008R2 running on Windows Server 2008.  It is setup to be a reporting server.  There are many subscriptions that are scheduled and run on this server.  We are wanting to move to Windows Server 2012 and SQL
    Server 2012.  So, we have built out a new VM and I have exported from the current server the ReportServer and ReportServerTempDB and have imported them to the new server.  I have resolved the one Orphaned user that happened and went to look for the
    subscriptions so that I could disable them so they wouldn't run.  I could not find any.
    select * from msdb.dbo.sysjobs where enabled = 1 and category_id = 100.
    no rows...
    I had read from other posts to let it sit for a few days and they will appear.  I have waited 2 weeks.
    So, what am I missing?  I would prefer to do a clean install and migrate the data over rather than upgrading the OS and SQL.
    Thanks

    Hello,
    Could you try to use the Reporting Services Migration tool? 
    Please download the tool from the following URL:
    http://www.microsoft.com/en-us/download/details.aspx?id=29560#overview
    The following article may be useful too.
    http://www.mssqltips.com/sqlservertip/2627/migrating-sql-reporting-services-to-a-new-server/
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Upgrade to Windows Server 2008 installation fails (reports Services to uninstall but they are not installed)

    I am upgrading a Windows Server 2003 to 2008.
    When I run the install it completes the Compability check and reports that Sharepoint Services and WSUS are installed. They are not installed and are not running Services either. I have attempted to remove Registry keys for these but this does not resolve
    my issue.
    Control Panel, Add/Remove does not report these as installed either. 
    How do I get the 2008 install to continue and ignore these OR how do I "truly" get these "uninstalled" if there is nothing I can do to find out what is reporting that they are installed?

    SBS 2003 does contain these feature by default. Is this a small business server OS?  If so I'd try them over here.
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/home?category=sbsserver&filter=alltypes&sort=lastpostdesc
     This one may also help.
    Transition from Small Business Server to Standard Windows Server
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • [Forum FAQ] How do I disable all subscriptions without disabling Reporting Services and SQL Server Agent?

    Introduction
    There is the scenario that users configured hundreds of subscriptions for reports. Now they want to disable all the subscriptions, but Reporting Services and SQL Server Agent service should be enable, so the subscriptions will not delivery reports to users
    and users could run the reports and create jobs on the server.
    Solution
    To achieve this requirement, we need to list all subscriptions and their schedules by running query, then use loop statement to disable all the subscription schedules by Job name.
    On the Start menu, point to All Programs, point to Microsoft SQL Server instance, and then click SQL Server Management Studio.
    Type Server name and select Authentication, click Connect.
    Click New Query in menu to open a new Query Editor window.
    List all subscriptions and their schedules by running the following query:
    Use ReportServer
    go
    SELECT   c.[Name] ReportName,           
    s.ScheduleID JobName,           
    ss.[Description] SubscriptionDescription,           
    ss.DeliveryExtension SubscriptionType,           
    c.[Path] ReportFolderPath,           
    row_number() over(order by s.ScheduleID) as rn             
    into
    #Temp  
    FROM     
    ReportSchedule rs           
    INNER JOIN Schedule s ON rs.ScheduleID = s.ScheduleID           
    INNER JOIN Subscriptions ss ON rs.SubscriptionID = ss.SubscriptionID           
    INNER JOIN [Catalog] c ON rs.ReportID = c.ItemID AND ss.Report_OID = c.ItemID   
    select * from #temp
    Use the loop statement to disable all the subscription schedules by Job name:
    DECLARE
    @count INT,
    @maxCount INT  
    SET @COUNT=1  
    SELECT @maxCount=MAX(RN)
    FROM
    #temp         
    DECLARE
    @job_name VARCHAR(MAX)                  
    WHILE @COUNT <=@maxCount        
    BEGIN      
    SELECT @job_name=jobname FROM #temp WHERE RN=@COUNT  
    exec msdb..sp_update_job @job_name = @job_name,@enabled = 0     
    SET @COUNT=@COUNT+1   P
    RINT @job_name   
    END   
    PRINT @COUNT 
    Reference
    SQL Agent – Disable All Jobs
    Applies to
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Reporting Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • Reporting Services through ISA server for All Authenticated Users

    Hello colleagues.
    I have MS SQL 2012 server with Reporting Services and it work via link:
    https://reports2.domain.com/reports
    In LAN all work fine, but I want publish this resource via ISA for All Authenticated Users.
    When in publish rule I configure (in Condition) "All users" - all work fine, but when I configure "All Authenticated Users" - I have trouble on web form on
    https://reports2.domain.com/reports/Pages/Report.aspx?ItemPat...  - scripts not work, because it run how "anonymous" (I see on ISA logging) and ISA block scripts.
    I can't use "All Users", because it's not secure.
    Maybe somebody publish Reporting Services through ISA server for All Authenticated Users?
    OR maybe - how on Reporting Services configure Negotiate authenticated for scripts?

    Hi Alexander,
    All users or applications who request access to report server content or operations must be authenticated using the authentication type configured on the report server before access is allowed. The AuthenticationType named RSWindowsNegotiate is supported
    by Reporting Services. To configure Windows Authentication on the Report Server, please see:
    http://msdn.microsoft.com/en-us/library/cc281253(v=sql.110).aspx
    Besides, we can publish report server via ISA server. Please note that you should use a new web port number with a new listener which shouldn’t be used by other web site for report server. Reference:
    http://social.technet.microsoft.com/Forums/forefront/en-US/1cc68996-1ce6-4d88-a30d-2bfd13fba06e/how-to-publish-ssrs-2008-through-isa-2006?forum=Forefrontedgegeneral
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support
    Katherine thanks for answer.
    Report Server service started as Domain account.
    I have in RSReportServer.config this:
    <Authentication>
    <AuthenticationTypes>
    <RSWindowsNegotiate />
    </AuthenticationTypes>
    <RSWindowsExtendedProtectionLevel>Allow</RSWindowsExtendedProtectionLevel>
    <RSWindowsExtendedProtectionScenario>Proxy</RSWindowsExtendedProtectionScenario>
    <EnableAuthPersistence>true</EnableAuthPersistence>
    </Authentication>
    In web.config I have this:
    <authentication mode="Windows" />
        <identity impersonate="true" />
    I can go (from Internet through ISA) to
    https://reports2.domain.com/reports  and LogOn Authentication is work, but scripts not work, because it run how "anonymous" (I see this on ISA logging) and ISA block scripts.
    Do you know where in Reporting Services configure run scripts with Negotiate authentication?

  • Reporting Services of SQL Server 2005 in SAP B1

    Hi,
    Can I used Reporting Services of SQL Server 2005 in SAP B1? If  yes then please guide me how can I do it. If not then is it possible to use these services in 8.8 version?
    Regards,
    Ghazanfar

    Hi Ghazanfar,
    The answer is YES.  You may check this blog:
    /people/community.user/blog/2008/07/04/sql-server-reporting-magic
    Thanks,
    Gordon

  • How To Use Reporting Services On SQL Server 2000 ?

    Hi all .
    Today , I has a issue .
    Normal , if the customer use SQl Server 2005 , it is no proplem , so if use SQL Server 2000 ,  Now , I want to use Reporting services on SQL Server 2000 , but , I am searching  on Internet , so I know , if I want to use SQL 2000 reporting server , I must have license of SQL server 2000 .
    is Every body  idea for this issue  ? .
    Please help me .
    Thanks alot .

    Ok ,anyway thanks alot ,.

  • Restore Reporting Services on another Server

    Hello All,
    I have a server A running reporting services which is used by everyone. I also have Server B (backup server) that has reporting services running on it. I want to restore the server B with current version of reporting services database (from Server A) just
    in case if the Server A goes down. Can anybody help me with this? Thanks.
    Regards,
    Amol

    see
    http://technet.microsoft.com/en-us/library/ms156421.aspx
    http://technet.microsoft.com/en-us/library/ms155814.aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Migrate Mirror Database to New Server

    Hi,
    I need to migrate my SQL server Mirror Database to
    a new server. my current setup is as below
    1. server A principal (192.168.1.100)
    2. server B Mirror     (192.168.1.200)
    now i have a new server (Server C) to replace server B as below
    1. server A principal (192.168.1.100)
    2. server C Mirror     (192.168.1.300)
    my question is how to migrate mirror db to new server without any affect or downtime on principal server, please share idea/experience for above.
    note: SQL SERVER 2008R2 EE(64BIT), Win2008R2 EE 64bit.
    Regard
    Faisal Wahid

    Thanks for your quick response.
    Is it possible something like in oracle (pardon as i am oracle DBA not sql server guy), 
    (Oracle Steps to migrate standby(mirror) db to new server)
    1. Pause replication on primary(principal) 
    2. Move standby(mirror) database files to new server(using copy/rman/etc).
    3. Update connection information (TNS in oracle) on primary(principal) to point new server.
    4. Start replication on primary(principal).
    the above steps will simply migrate the standby(mirror) database to new server,
    can we do something like above in sql server?

  • SCCM 2012 R2 - Reporting Services Point installation - "The Datasource does not exist"

    Hi all,
    Quick bit of background, we have SCCM 2012 R2 installed on a Windows 2012 R2 server. We have the SQL back end off box, configured on a SQL 2012 R2 server running on a Windows Server 2012 R2 cluster. Then there is yet another server which runs the reporting
    services. I've just tried installing the Reporting Services Point on the srs server but it doesn't appear to have worked that well. Here's the info i've got back: 
    A] Site Status > Reporting services point:
    SMS_SITE_SYSTEM_STATUS_SUMMERIZER
    Site System Status Summarizer detected that the availability of the "Reporting services point" role on server "\\NA-SQLR01.in.tna.local" has changed to Failed.
    B] The last message from the SMS_SRS_REPORTING_POINT Component Status is "Site Component Manager successfully installed this component on this site system"
    C] Here's the first chunk of info which appears in the srsrp.log file:
    SMS_EXECUTIVE started SMS_SRS_REPORTING_POINT as thread ID 4204 (0x106C).
    This is a SRS Reporting Point Role as SRSRP registry key exists.
    Waiting for changes for 0 minutes
    Timed Out...
    Set configuration
    Check state
    Check server health.
    Successfully created srsserver SMS_
    Reporting Services URL from Registry [http://sqlreportserver/ReportServer_SQL2012/ReportService2005.asmx]
    Reporting Services is running
    The DataSource does not exist.
    [sqlserver.local\SQL1] [SCCM_XXX] [ConfigMgr_XXX] [sqlreportserver.LOCAL]
    [SQL2012] [1] [] [xxx\SCCM2012Server]
    Confirmed version [11.0.5058.0] for the Sql Srs Instance.
    System.Web.Services.Protocols.SoapException: The item '/ConfigMgr_XXX' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/ConfigMgr_XXX' cannot be found.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetProperties(String
    Item, Property[] Properties, ItemNamespaceEnum itemNamespace, Property[]& Values)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.GetProperties(String Item, Property[] Properties, Property[]& Values)
    Extract resource language packs if exists
    Loading localization resources from directory [D:\SMS_SRSRP\SrsResources.dll]
    Looking for 'English (United Kingdom)' resources
    Looking for 'English' resources
    Found resources for 'English'
    System.Web.Services.Protocols.SoapException: The item '/ConfigMgr_XXX' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/ConfigMgr_XXX' cannot be found.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.SetProperties(String
    Item, Property[] Properties, Guid batchId)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.SetProperties(String Item, Property[] Properties)
    System.Web.Services.Protocols.SoapException: The permissions granted to user 'NT AUTHORITY\SYSTEM' are insufficient for performing this operation. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user
    'NT AUTHORITY\SYSTEM' are insufficient for performing this operation.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.CreateFolder(String Folder, String Parent, Property[] Properties, Guid batchId)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.CreateFolder(String
    Folder, String Parent, Property[] Properties)
    (!) SRS root folder was reported missing
    STATMSG: ID=7405 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_SRS_REPORTING_POINT" SYS=sqlreportserver.LOCAL SITE=P01 PID=2120 TID=4204 GMTDATE=Wed Apr 08 08:56:05.349 2015 ISTR0="ConfigMgr_XXX" ISTR1="sqlreportserver.LOCAL"
    ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
        WARNING: Could not read registry key HKEY_LOCAL_MACHINE\Software\Microsoft\SMS\MPFDM\Inboxes\ on the server, The operating system reported error 2: The system cannot find the file specified.
        WARNING: Could not read registry key HKEY_LOCAL_MACHINE\Software\Microsoft\SMS\MPFDM\Inboxes\ on the server, The operating system reported error 2: The system cannot find the file specified.
    Failures reported during periodic health check by the SRS Server sqlreportserver.LOCAL.
    Registry change
    Waiting for changes for 1 minutes
    After this point i simply get the following info messages looping endlessly:
    Set configuration
    Check state
    Check server health.
    Successfully created srsserver
    Reporting Services URL from Registry [http://sqlreportserver/ReportServer_SQL2012/ReportService2005.asmx]
    Reporting Services is running
    The DataSource does not exist.
    [sqlreportserverlocal\SQL1] [SCCM_XXX] [ConfigMgr_P01] [sqlreportserver.LOCAL]
    [SQL2012] [1] [] [XX\SCCM2012Server]
    [1] [0]
    Confirmed version [11.0.5058.0] for the Sql Srs Instance.
    System.Web.Services.Protocols.SoapException: The item '/ConfigMgr_XXX' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/ConfigMgr_XXX' cannot be found.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetProperties(String
    Item, Property[] Properties, ItemNamespaceEnum itemNamespace, Property[]& Values)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.GetProperties(String Item, Property[] Properties, Property[]& Values)
    Extract resource language packs if exists
    Loading localization resources from directory [D:\SMS_SRSRP\SrsResources.dll]
    Looking for 'English (United Kingdom)' resources
    Looking for 'English' resources
    Found resources for 'English'
    System.Web.Services.Protocols.SoapException: The item '/ConfigMgr_XXX' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/ConfigMgr_P01' cannot be found.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.SetProperties(String
    Item, Property[] Properties, Guid batchId)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.SetProperties(String Item, Property[] Properties)
    System.Web.Services.Protocols.SoapException: The permissions granted to user 'NT AUTHORITY\SYSTEM' are insufficient for performing this operation. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user
    'NT AUTHORITY\SYSTEM' are insufficient for performing this operation.~   at Microsoft.ReportingServices.Library.ReportingService2005Impl.CreateFolder(String Folder, String Parent, Property[] Properties, Guid batchId)~   at Microsoft.ReportingServices.WebServer.ReportingService2005.CreateFolder(String
    Folder, String Parent, Property[] Properties)
    (!) SRS root folder was reported missing
    Failures reported during periodic health check by the SRS Server sqlreportserver.LOCAL.
    Registry change
    Waiting for changes for 1 minutes
    Has anyone come across this issue before? Must admit, I'm not too hot on the sql side of things so any advice or suggestions would be greatly appreciated. Thanks in advance!

    Hi guys, cheers for the swift response.
    Garth, i can access SSRS in IE from the SCCM box and it looks a-ok.
    Paul, nope can't say I've done any configuration of reporting services - the whole thing has been set up by the database team. Having had a trundle through Reporting Services Configuration Manager, it seems the Database team have set up SSRS in line with
    the walkthrough you posted.
    Since i'm not seeing the ConfigMgr_XXX folder appear in SSRS I'm wondering if there's something preventing SCCM from being able to create it. The message
    "Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions
    granted to user 'NT AUTHORITY\SYSTEM' are insufficient for performing this operation" sounds like the account SCCM is leveraging to perform the install might not have the right permissions in SSRS. Do i need to delegate specific rights to the NT
    AUTHORITY\SYSTEM account in SRS perhaps?

  • Email attachments from SSRS email subscription are not being uploaded to an email enabled SharePoint 2013 document library

    Email attachments from SSRS email subscription are not being uploaded to an email enabled SharePoint 2013 document library.
    I have tested the library using a standard email (with attachment) to the library and this works fine. 
    I have monitored the drop folder on the server and I can see both emails being picked up in drop and processed by SharePoint.  The email sent from a regular email account is uploaded with the attachment, whereas the email sent via SSRS subscription
    email is uploaded and the attachment (report) is missing.

    An update on this.  The email when sending from SSRS subscription is received in the library and the attachment is contained within the .EML file uploaded.
    The behaviour that I would like from SSRS subscription emails are to just have the document and not the email.
    Below is a snippet of the .EML files I quick copied from the Drop folder.
    Email attachment snippet sent from SSRS Subscrption:
    ----boundary_2477_75fa3d73-56de-4948-ad82-6588f3a35b95
    Content-Type: application/octet-stream; name="Toilet Usage by Month.docx"
    Content-Transfer-Encoding: base64
    Content-Dis;
     filename="=?utf-8?B?VG9pbGV0IFVzYWdlIGJ5IE1vbnRoLmRvY3g=?="
    Content-ID: <10722c0f-749e-4ecb-ac3f-206317bae734>
    UEsDBBQAAAAIAEVcbEY4Xh4a5nsAAPJtMQARABwAd29yZC9kb2N1bWVudC54bWwgohgA
    KKAUAAAAAAAAAAAAAAAAAAAAAAAAAAAA7N1rr1/XcSforyL4VRooR3vd9to76Kihjto9
    I8T2TDvAzFuaPrE1kUiCouxWPv38DyX50nHSniCdyS96bIAUL+d/LnxO7Vq11qr6j//p
    v3/x+Qe/fnr75WevX/3lD9qfHz/44OnVy9e/+OzVL//yB1+9+9sfXj/44Mt3L1794sXn
    r189/eUPvn768gcf/KeP/uNv/uIXr19+9cXTq3cfPF7h1Zd/8evHH/7q3bs3f/Hhh1++
    /NXTFy++/PPXb55ePf7wb1+//eLFu8cv3/7ywy9evP27r9788OXrL968ePfZzz/7/LN3
    X3/Yj+P8wbcv8/rxXt+++otvX+KHX3z28u3rL1//7bvnN/mL13/7t5+9fPr2p+/e4os/
    5f1+8yaffPshv3+Pj4/l3a++e5Ff/1Pv9tdffP7d3/vNmz/lvf3i7YvfPL6AX3z+zTv6
    Email attachment snippet sent from Outlook:
    --_004_A4C6DCEDE4346446A79AFF493D278530FB87FA07MELABCDEXA1airp_
    Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document;
     name="Toilet Usage by Month.docx"
    Content-Description: Toilet Usage by Month.docx
    Content-Dis; filename="Toilet Usage by Month.docx";
     size=76574; creation-date="Thu, 12 Mar 2015 00:41:14 GMT";
     modification-date="Thu, 12 Mar 2015 00:41:14 GMT"
    Content-Transfer-Encoding: base64
    UEsDBBQAAAAIAMJcbEY4Xh4a5nsAAPJtMQARABwAd29yZC9kb2N1bWVudC54bWwgohgAKKAUAAAA
    AAAAAAAAAAAAAAAAAAAAAAAA7N1rr1/XcSforyL4VRooR3vd9to76Kihjto9I8T2TDvAzFuaPrE1
    kUiCouxWPv38DyX50nHSniCdyS96bIAUL+d/LnxO7Vq11qr6j//pv3/x+Qe/fnr75WevX/3lD9qf
    Hz/44OnVy9e/+OzVL//yB1+9+9sfXj/44Mt3L1794sXnr189/eUPvn768gcf/KeP/uNv/uIXr19+
    9cXTq3cfPF7h1Zd/8evHH/7q3bs3f/Hhh1++/NXTFy++/PPXb55ePf7wb1+//eLFu8cv3/7ywy9e
    vP27r9788OXrL968ePfZzz/7/LN3X3/Yj+P8wbcv8/rxXt+++otvX+KHX3z28u3rL1//7bvnN/mL

  • Server settings are not saved on client

    The client has a new workstation (Vista) where the server settings are not saved. The client is able to login but have to setup the server settings overtime she logs on to SAP B1.
    Client: Vista
    SBO: 2007A SP01
    what is causing this and how can this be resolved?

    You may check these threads first:
    Re: Server name in Change Company does not stay
    Re: SQL Connection to SAP Reset
    Thanks,
    Gordon

  • SOME SERVICES STOP AUTOMATICALLY IF THEY ARE NOT IN USE BY OTHER SERVICES OR PROGRAMS

    I currently install a software that needs to have a services run in order to for the license to be detected.When i run the services manually i got this error message
    'THE UBSLAN_LDR SERVICE ON LOCAL COMPUTER STARTED AND THEN STOPPED.SOME SERVICES STOP AUTOMATICALLY IF THEY ARE NOT IN USE BY OTHER SERVICES OR PROGRAMS'
    What can cause this and solution please

    Hi kuados  ,
    Thanks for posting here.
    After reading your posting I understand that when you establish USBLAN_LDR service on windows server 2008, system prompt an error message.
    According the information what you provided right now, it’s hard to determine what cause this issue, you may like to post more information about your environment
    (Event log ,Other  System prompting etc… ).
    Please check if it worked with assign a  Local System account instead of Local Service account to run this service.
    Open service MMC snap-in.
    Right UBSLAN_LDR service , and click “properties”.
    Click “Log on” tab , and assign a local account for running this services.
    Seems this issue related to a third party software, I suggest to consult software vendor for future troubleshooting.
    Please understand that I don't mean to bounce you between different solution provider as I am fully aware how time consuming this can be. However, they really are
    in a better position to be able to assist you with this issue as they may have experienced similar issues.
    Thanks for your understanding.
    Tiger Li
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • One or more hard drives in Server Backup are not connected

    A year ago I moved from Windows Home Server to Server Essentials 2012 as a backup solution for my simple home configuration - 2 Windows 7 Professional desktops.  It was a perfect solution and works flawlessly - and has saved my tail on numerous
    occasions.
    The configuration is simple - I have a internal SSD drive from the operating system and a few other applications and (2) identical 4 Terabyte internal hard drives setup as a single storage pool - configured as a 2 way mirror.  Every few days when I
    log into the Windows Dashboard and check out the alert viewer, I have a single error - "One or more hard drives in Server Backup are not connected".  When I follow the instructions - open the dashboard, click storage, hard drives - I see a single
    C drive (which of course is connected - it runs the OS) and a single D drive - the storage pool.  Clicking on the D drive and "Advanced - Manage Storage Spaces" shows my single pool (a green OK) and the 2 physical drives (also a green OK).
    There are no other drives attached to this server - no external USB drives, external hard drives - nothing.  Why is WSE showing this message?
    Matt M

    Go into the Server Backup Selections and reconfirm what is selected, then save.
    If it persists, change the selection (remove a folder) and save, then go back in and correct it, then save.
    Robert Pearman SBS MVP
    itauthority.co.uk |
    Title(Required)
    Facebook |
    Twitter |
    Linked in |
    Google+

  • Reports of leading & non -leading ledgers are not matching

    Reports of leading & non-leading ledgers are not matching in the trial balance
    report from t.code S_PL0_86000030 . Both should be matched but not matching. Leading ledger report
    has been taken by giving the data (Currency:10, Company code: IN06,
    Ledger: 0L, Fiscal Year: 2008, From period:1, To period: 16)
    And non-leading ledger report has been taken by giving the data
    (Currency:10, Company code: IN06, Ledger: AI, Fiscal Year: 2008, From
    period:1, To period:9)
    And account codes are not same in both the reports. If one account codes
    is there in one report it is missing in other report.
    Balance sheet for the period from April 2008 to March 2009 has to be finalised based on the non-leading
    ledger report.
    1.Non-leading ledger is acitivated .Fiscal year activated Jan to Dec-K4 .IN this case  how can I enter the periods for  to view  leading ledger and non-leading leader reports and compare the reports.
    help to solve the issue.
    Regards
    dharmendar

    Hi,
    Thanks for your inputs. I have 2 queries here...
    1. Whether the reports S_ALR_87013542 & CN41 are same displaying the same information?
    2. How can I check the Balance amount still remaining in the project? Is there any report?
    Thanks & regards,
    Bala

Maybe you are looking for

  • 15% of free space on startup disc is preferred.  Fact or Myth.

    I see this all the time.  Some users say yes, others say no.  Can I get a confirmed answer as to which is correct?  Thanks for any anticipated input from either school of thought.

  • IMac 27 " recognizes Cineman screen but nothing happens

    I just got an iMac 27", slightly used but still under warranty for one more year. In the hope I might use two screens side by side to speed up my photo editing, Bridge to InDesign layout and so on, I have connected my 27 inch Apple Cinemascreen to it

  • Is it possible to work with Field Exits in R/3 Enterp. Basis 6.20???

    How could I work with them?

  • MacBook 2nd Monitor

    Hello, I have a White 13" MacBook 2Ghz, 2GB RAM, Intel Core Duo running 10.5.7 Under normal conditions, the fans run at approximately 1700 - 2000 rpm. As soon as I connect an external Monitor via the Mini DVI port (mini DVI to adaptor) the fans ramp

  • Snapshot scenario of Inventory

    Hi Expert, While I am trying to create update rules for snapshot scenario of Inventory in InfoCube object u201CICSNAP1u201D. It will not shows the non-cumulative key figure for those we have to write the update rules. It only shows the inflow and out