Universal app on Windows Phone 10 black screen

Hello,
I received strange feedback that my application has some problems on Windows Phone 10. I can't test this because I don't have any Win10 devices. Can anyone check this app:
https://www.windowsphone.com/en-us/store/app/instabullet/28cffcfa-4568-45e5-820d-fb761b408bdd?signin=true
I have no idea where is the problem. After application starts it loads WebView with login page and on Win10 it is only black screen - at least one user has this problem with Lumia 635. Anyone had similiar problems? It is said that Universal app should work
on Win10 if they work on Win 8.1.

It's a simple page with WebView, frameworks used are Unity, MVVM light.
XAML:
<Page
x:Class="PushBulletClient.Views.WebAuthView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:PushBulletClient"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:utils="using:PushBulletClient.Utils"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
DataContext="{Binding WebAuthViewModel, Source={StaticResource Locator}}"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:controls="using:PushBulletClient.Controls"
xmlns:interactivity="using:Microsoft.Xaml.Interactivity"
xmlns:core="using:Microsoft.Xaml.Interactions.Core">
<Grid x:Name="LayoutRoot" Background="{StaticResource BackgroundColor}">
<Grid.ChildrenTransitions>
<TransitionCollection>
<EntranceThemeTransition/>
</TransitionCollection>
</Grid.ChildrenTransitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!-- Title Panel -->
<controls:HeaderControl Header="Login" IconSource="{StaticResource LogoImage}"/>
<!--TODO: Content should be placed within the following grid-->
<Grid Grid.Row="1" x:Name="ContentRoot" Margin="19,9.5,19,0">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid x:Name="GridLoading" Visibility="{Binding State,
Converter={StaticResource StateIsEqualConverter},ConverterParameter=Loading}"
Grid.Row="0" >
<StackPanel HorizontalAlignment="Stretch" VerticalAlignment="Center">
<ProgressBar HorizontalAlignment="Stretch" Background="{StaticResource BackgroundColor}" IsIndeterminate="True" />
<TextBlock HorizontalAlignment="Center" Text="Loading..." />
</StackPanel>
</Grid>
<Grid x:Name="GridDeclined" Visibility="{Binding State,
Converter={StaticResource StateIsEqualConverter},ConverterParameter=Declined}"
Grid.Row="0" >
<StackPanel Orientation="Vertical">
<TextBlock Margin="0,0,0,20" Style="{StaticResource SubheaderTextBlockStyle}" Text="Declined"/>
<TextBlock TextWrapping="Wrap" Text="You must allow access to use Instabullet."/>
<Button Margin="0,10,0,0" Content="Back" Click="ButtonBack_OnClick"/>
</StackPanel>
</Grid>
<WebView Grid.Row="0"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
x:Name="Navigator"
NavigationStarting="Navigator_OnNavigationStarting"
Visibility="{Binding IsBrowserVisible, Converter={StaticResource BoolToVisibilityConverter}}"
>
<interactivity:Interaction.Behaviors>
<core:EventTriggerBehavior EventName="NavigationStarting">
<core:InvokeCommandAction Command="{Binding NavigationStartingCommand}"
InputConverter="{StaticResource StartingArgsToWebNavigationResultConverter}" />
</core:EventTriggerBehavior>
<core:EventTriggerBehavior EventName="NavigationCompleted">
<core:InvokeCommandAction Command="{Binding NavigationCompletedCommand}"
InputConverter="{StaticResource CompletedArgsToWebNavigationResultConverter}" />
</core:EventTriggerBehavior>
</interactivity:Interaction.Behaviors>
</WebView>
</Grid>
</Grid>
</Page>
CS
using System;
using Windows.Foundation;
using Windows.Phone.UI.Input;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;
using GalaSoft.MvvmLight;
using PushBulletClient.Common;
// The Basic Page item template is documented at http://go.microsoft.com/fwlink/?LinkID=390556
using PushBulletClient.Contracts.ViewModels;
using PushBulletClient.Contracts.Views;
using PushBulletClient.Models;
using PushBulletClient.Utils;
using PushBulletClient.ViewModels;
namespace PushBulletClient.Views
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class WebAuthView : Page, IView
private NavigationHelper navigationHelper;
private ObservableDictionary defaultViewModel = new ObservableDictionary();
public WebAuthView()
this.InitializeComponent();
this.navigationHelper = new NavigationHelper(this);
this.navigationHelper.LoadState += NavigationHelper_LoadState;
this.navigationHelper.SaveState += NavigationHelper_SaveState;
this.Unloaded += WebAuthView_Unloaded;
HardwareButtons.BackPressed += HardwareButtons_BackPressed;
Navigator.Navigate(new Uri(Consts.AppUri));
void WebAuthView_Unloaded(object sender, RoutedEventArgs e)
HardwareButtons.BackPressed -= HardwareButtons_BackPressed;
/// <summary>
/// Gets the <see cref="NavigationHelper"/> associated with this <see cref="Page"/>.
/// </summary>
public NavigationHelper NavigationHelper
get { return this.navigationHelper; }
/// <summary>
/// Gets the view model for this <see cref="Page"/>.
/// This can be changed to a strongly typed view model.
/// </summary>
public ObservableDictionary DefaultViewModel
get { return this.defaultViewModel; }
/// <summary>
/// Populates the page with content passed during navigation. Any saved state is also
/// provided when recreating a page from a prior session.
/// </summary>
/// <param name="sender">
/// The source of the event; typically <see cref="NavigationHelper"/>
/// </param>
/// <param name="e">Event data that provides both the navigation parameter passed to
/// <see cref="Frame.Navigate(Type, Object)"/> when this page was initially requested and
/// a dictionary of state preserved by this page during an earlier
/// session. The state will be null the first time a page is visited.</param>
private void NavigationHelper_LoadState(object sender, LoadStateEventArgs e)
/// <summary>
/// Preserves state associated with this page in case the application is suspended or the
/// page is discarded from the navigation cache. Values must conform to the serialization
/// requirements of <see cref="SuspensionManager.SessionState"/>.
/// </summary>
/// <param name="sender">The source of the event; typically <see cref="NavigationHelper"/></param>
/// <param name="e">Event data that provides an empty dictionary to be populated with
/// serializable state.</param>
private void NavigationHelper_SaveState(object sender, SaveStateEventArgs e)
#region NavigationHelper registration
/// <summary>
/// The methods provided in this section are simply used to allow
/// NavigationHelper to respond to the page's navigation methods.
/// <para>
/// Page specific logic should be placed in event handlers for the
/// <see cref="NavigationHelper.LoadState"/>
/// and <see cref="NavigationHelper.SaveState"/>.
/// The navigation parameter is available in the LoadState method
/// in addition to page state preserved during an earlier session.
/// </para>
/// </summary>
/// <param name="e">Provides data for navigation methods and event
/// handlers that cannot cancel the navigation request.</param>
protected override void OnNavigatedTo(NavigationEventArgs e)
Navigator.Refresh();
this.navigationHelper.OnNavigatedTo(e);
protected override void OnNavigatedFrom(NavigationEventArgs e)
this.navigationHelper.OnNavigatedFrom(e);
#endregion
public ViewModelBase ViewModel
get { return this.DataContext as ViewModelBase; }
private void HardwareButtons_BackPressed(object sender, BackPressedEventArgs e)
if (Navigator.CanGoBack)
Navigator.GoBack();
e.Handled = true;
private void Navigator_OnNavigationStarting(WebView sender, WebViewNavigationStartingEventArgs args)
if (args.Uri.AbsolutePath.Contains("blank"))
Navigator.Navigate(new Uri(Consts.AppUri));
private void ButtonBack_OnClick(object sender, RoutedEventArgs e)
Navigator.Navigate(new Uri(Consts.AppUri));
There is also logic in ViewModel which doesn't contain any specific logic. 

Similar Messages

  • Windows Server 2008 black screen with mouse *PLEASE HELP*

    Hello fellow techs,
    I have been tearing my hair out for the past 12hrs on this issue.
    About 3 weeks ago, one of our clients reported that they were experiencing
    issues on the network so one of the staff went into the server room and noticed
    the screen was black with only the cursor. As they couldn't reboot, they
    decided to hold the power button to power it off. When they powered it back
    up, it went passed the windows loading
    splash screen, and again the screen is black with
    the mouse pointer in the center of the screen.
    I am diagnosing the server and find that at the black screen, I’m able to move
    the cursor and beyond that nothing happened. I started in safe mode with the
    exact same results.
    I have been trying many different solutions from posts that I have found in
    Google but no change.
    From other machines you can type \\servername in
    the run box and see the shared folders, as well as ping it.
    This is a very urgent request as I need to have the Server back up and running
    by tomorrow.
    I am quiet willing to pay for phone support with anyone that can assist as soon
    as possible. I am happy to transfer founds via Paypal.<o:p></o:p>
    PLEASE HELP!

    Hi,
    I agree with sm, you should give us more details. Also you should use sfc  /scannow
    command to scans the integrity of all protected system files and repairs files with problems when possible. For more details, please refer to the following article.
    Sfc
    http://technet.microsoft.com/en-us/library/ff950779.aspx
    Before going further, would you please let me know whether there were any changes on the affected server? Has windows update or any new device been added? Please also check your shadow copies.
    The Windows Server black screen may be caused by them.
    In addition, there are similar questions, please refer to.
    Windows Server 2008 black screen
    http://social.technet.microsoft.com/Forums/en-US/463b529b-26a6-4d5d-88f5-7d8b3460d165/black-screen-windows-2008-r2
    Windows Server 2008 and the Black Screen of Waiting
    http://projectdream.org/wordpress/2009/03/03/windows-server-2008-and-the-black-screen-of-waiting/
    By a way, you also can be able to boot into last know good configuration to solve the trouble. You can refer to the following similar question that provide the detailed operations.
    Windows Server 2008 black screen with only the mouse pointer showing
    http://social.technet.microsoft.com/Forums/en-US/5c878af8-78f2-430d-9530-a0e5ad73ff03/windows-server-2008-black-screen-with-only-the-mouse-pointer-showing
    Hope this helps.
    Best regards,
    Justin Gu

  • [Desktop][Other] Universal App for Windows 10

    Spotify should consider developing a universal app for Windows 10 so it can be used on Desktops, Phones, Tablets and on the Xbox. You already have a Windows Phone app so I'm assuming the majority of the code is already written. Essential features such as connect need to added to the app also. Having Spotify on the Windows Store for desktop would be beneficial for users who are not tech savy and only use the store to install applications. There are a couple of people I know who wanted to try Spotify out and came back to me saying they "couldn't find it on the store". Seeing as Windows 10 will be a free upgrade to both Windows 7 and 8 users it would be a great idea to look into this.

    Updated: 2015-07-05Hi and thanks for your contribution! A similar idea has also been suggested here:
    https://community.spotify.com/t5/Live-Ideas/Spotify-app-for-Windows-10-Windows-phones-Tablets-PC-and-Xbox/idi-p/1008682
    Add your kudos and comments there please!

  • HP All-in-One Printer Remote App For Windows Phone 8.1 Troublesho​ot

    Dear HP,
    Device                Nokia Lumia 520
    OS                        Windows Phone 8.1
    Printer                HP Officejet Pro 8600 All in One Printer
    I have installed HP All-in-One Printer Remote on my smartphone as well as on my PC having Microsoft Windows 8.1. The PC app is running 
    fine but on my smartphone, app can't find my HP Wireless printer. All Devices(PC, Smartphone, Printer) are connected to same wireless LAN Network.
    Regards
    Sahyog Vishwakarma
    Mob.: +91-7206369455
    Yamuna Nagar
    Haryana

    Hi,
    The app for Windows phone is a BETA version. In my case (also a Nokia) it can find my printer but when sending something to printer, printer won't print. Again, it's only a BETA version.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Make a flashlight App for Windows Phone 8.1 (TorchControl not supported)

    I want to develop a simple flashlight app for Windows Phone 8.1 (non Silverlight). I used the TorchControl but it returns a false when i tried to run on my Device
    Here is the code i Used
    private async void SwitchOn(object sender, RoutedEventArgs e)
    var mediaDev = new MediaCapture();
    await mediaDev.InitializeAsync();
    var videoDev = mediaDev.VideoDeviceController;
    var tc = videoDev.TorchControl;
    if (tc.Supported)
    if (tc.PowerSupported)
    tc.PowerPercent = 100;
    tc.Enabled = true;
    else
    res.Text = "not Supported";
    Is there any other way to do that..
    Thanks In Advance.
    Gopal Kandoi

    Hi Gopal,
    I would also suggest you to try the solution from this post:
    https://social.msdn.microsoft.com/Forums/en-US/329c40e7-fa9a-4a27-8347-b4a80100842e/cant-turn-on-lumia-1520-wp-81-flashlight-use-videodevicecontrollertorchcontrol?forum=wpdevelop
    Start the video capture first and then start the torch control.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is there port of "HP Printer Control " app for Windows Phone?

    Are there port of "HP Printer Control " app for Windows Phone? This is at the same time request if there is not.
    Regards.

    Hello Zubru,
    I saw your post, good question! There are no apps at this time available for the windows phone however here is the link to the HP ePrint site to keep an eye out for any possible changes to that.
    Click the KUDOS star on the left to say “thanks” for helping!
    Please mark a reply “Accept as Solution” if it solved your issue so others can find it.
    I work on behalf of HP.
    I worked on behalf of HP.

  • VS2013 - I cannot deploy and debug windows phone 8.1 store app to windows phone device

    Hello, I create a project from C#-> Store Apps -> Windows Phone Apps, but  I cannot deploy my apps to my blue device. There was a error message show "Element not found". I can run the app from Blend, and found Blend package the app to Appx
    file. Is any method that we can deploy store app into windows phone blue device directly and how to debug it on VS 2013?

    Hi,
    Welcome to MSDN.
    I am afraid that this is not the proper forum for this issue, since this forum is to discuss and ask questions about the Visual Studio Debugging tools, Visual Studio Profiler tools, and Visual Studio Ultimate IntelliTrace.
    Since your issue needs professional windows phone knowledge, and there is dedicated forums for windows phone development issues
    Windows Phone Development forums, you could choose one of its sub forums depends on your issue like  Tools
    for Windows Phone development or  
    Developing for Windows Phone .
    In addition, I did a research, you could check whether the following links help.
    http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402565(v=vs.105).aspx
    http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402523(v=vs.105).aspx#BKMK_Runanddebug
    Thanks for your understanding.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to publish Windows Phone 8.1 Silverlight app to Windows Phone store?

    I created Windows Phone 8.1 Silverlight app, and I can't to upload it into WP store. I want to use Create
    App Packages tool in Visual Studio 2013 Professional, but it's impossible for Silverlight apps. I read many guides
    on dev.windows.com. It's necessary to upload only .appx, .appxbundleor .appxupload files,
    but I have .xap file
    only in Bin\ARM\Release folder.
    May anyone help me?

    Appx packages are only for Windows Runtime apps. Windows Phone Silverlight apps use xap files. The Windows Phone Store will accept either xap (for Silverlight) or appx (for Runtime) apps.
    I discussed this in more detail in my blog entry: Why can’t I create an app package? Windows Phone Xap vs. Appx   

  • Unable to install Windows 7! Black screen?

    Unable to install Windows 7! Black screen?
    Hey everyone!
    Some background info:
    I built my computer ~2 years ago and it worked fine for about half a year, until it crashed. Since then I've been unable to reinstall Windows and I kinda forgot about it... which sucks! So please help me get it up and running again :)
    Motherboard: GigaByte Z68
    Processor: Intel Core i3
    HDD: Seagate Barucada 1TB (st31000524as)
    OS: Windows 7 Home Premium 64bit
    My problem: 
    When I boot from the windows cd (original), sometimes I get stuck at a black screen after "Windows is starting" or the black "loading files" screen. Sometimes it just takes a while but I eventually get to the install menu.
    When I am about to chose my hdd, it says it can't install on it. I deleted all partitions, created a new one and formated it (took about 1 hour), still not able to install.
    I tried booting from my GigaByte cd, and it went through some kind of install (not sure what it did, it was weird because it's actually made for backups). After I chose "reboot" I was able to install on my hdd again. But after I got to 100% i got
    stuck at the black screen again! I waited for a couple hours before I had to turn it off, so I'm back where I started. :/
    I always google stuff, and people said the black screen problems could be related to other drives/usb stuff connected to my pc. I only have 1 hdd and 1 usb for mouse/keyboard... I tried disconnecting it but it didnt work and also it doesnt make sense since
    I need to reconnect it to click on stuff anyway...
    People also said I should try booting with F8 and choose "low res", didn't work either. Other people said "connect a secondary screen", I have a hdmi screen and a rgb screen, I tried all combinations of them and nothing seemed to work...
    I also have some confusion with the XHD/RAID/IDE/AHCI settings. I am only using one HDD, so I figured AHCI makes more sense for me - sine i have a SATA hdd and windows 7 64 bit. 
    However, when I load "Optimized System Defaults" from BIOS, it sets SATA mode to IDE...? When I reboot I get a warning screen that says the system is running in IDE mode and I should switch to AHCI for optimal performance.
    How do I know if my system supports AHCI or not, what should I use?
    Whenever I select IDE, and I enter Windows installation, it can't even find my hdd!
    Only when I select AHCI it finds the hdd, but it won't let me install on it.
    I've been strugling for DAYS, so i REALLY appreciate help. :) Also, I've tried making "boot cds/usb", and I have no experience with linux so it's really frustrating. Please don't suggest going linux unless it's really necessary. :( I only have a Knoppix
    live CD, but I find the whole linux system so confusing I wasn't really able to do anything, despite several "guides" and youtube videos. I have a computer that's barely been used and a original windows CD, shouldn't I have all I need to repair my
    system?
    Sorry about the long post, I'll be eternally grateful if someone has any clues!

    I am not sure which specific issue that is, but it definitely sounds like a hardware issue rather than a software or settings issue.  Windows should not have any issues installing; if it does, that would usually point to a hardware issue of some sort. 
    It could even be your motherboard.  Your best bet is to disconnect EVERYTHING that is not needed from the motherboard, including RAM sticks except for the least amount possible, and try installing Windows with that configuration.
    Example: you need the power supply, so connect that.  If you're installing from a CD/DVD, then you need a CD/DVD drive.  You need at least 2 GB of RAM.  You need to be able to turn on the computer, so the on/off switch needs to be connected
    to the motherboard.  You will need a mouse and keyboard.  And so on.  If this bare-minimum configuration does not work, start replacing items: use a different RAM stick, use a different mouse, use a different keyboard, etc.  If, after you
    do all this, it still does not work, then I would suspect that your motherboard has an issue.  You can also try resetting the CMOS on your motherboard.  Some motherboards have a jumper for that, and for others, simply removing the CMOS battery will
    do it.
    As far as IDE, AHCI, and RAID settings are concerned, this should not matter so long as whichever setting it is on when Windows is installed is the same after it is installed.  For example, if it is installed using IDE, then you need to stick with IDE. 
    If you installed it with AHCI, then you need to stick with AHCI.  Changing it after installation can make Windows not boot.  There are, of course, ways around that, but it is easiest to simply be consistent.

  • How come when I try to open an app on my phone does the screen just blink and the app not open?

    How come when I try to open an app on my phone does the screen just blink and the app not open?

    Some apps crash. If they do, try this, in order.
    1. Double click your home button and put your finger on any app and hold for a second. Then delete that app. You're not deleting the app from your phone, so don't worry. Then try opening the app again.
    2. If that doesn't work, hold your sleep+home buttons for 10 seconds and don't let go. Ignore the power off message. Then try again.
    3. If that doesn't work, delete the app and re-download it. (This will work most of the time)
    4. If that doesn't work, download the app on iTunes on your computer and sync it from there.
    5. If that doesn't work, wait for an update by the developers.

  • Playmemories app for Windows phone

    I have recently bought the HDR-AS100VR action cam, and has desperately beeb looking for the Playmemories app for my also recently acquired Windows phone. This however seems futile. I can find several post in here and others on the internet dating back from 2013 discussing why this app is not available for Windows smartphones. Sony (and Microsoft) please make an effort to help your loyal customers and see to it that this app is made available ASAP instead of pushing them into using other devices, which will be the result id nothing happens.

    Hi Kasper,
    The PlayMemories Mobile app is only available in iOS and Android devices. It is also available for Vaio running Windows 8 and 8.1. We understand that you'd want to control the camera or send pictures to your mobile device. We will take not of this and forward it to the engineering department for future product developments.
    Please refer to this other thread for suggestions on how to control the camera in a Windows phone. http://community.sony.com/t5/Cybershot-Cameras/Playmemories-app-for-Windows-phone/td-p/167875/highlight/true/page/8
    For further assistance with your concern, we recommend visiting our Sony Global Web site for information on contacting the Sony Support Center in your region at http://www.sony.net/SonyInfo/Support/.
    If my post answers your question, please mark it as "Accept as Solution". Thanks_Mitch

  • I tried to restore from 4.2.1 to 4.3.3 through iTunes my iphone4 was on state after restore it gave error 3194 and my phone got black screen its not getting on what to do to turn on it

    I tried to restore from 4.2.1 to 4.3.3 through iTunes my iphone4 was on state after restore it gave error 3194 and my phone got black screen its not getting on what to do to turn on it

    http://support.apple.com/kb/TS3694#error3194

  • Trying to reformat and reinstall windows but get black screen with cursor

    Im trying to reformat my computer after a blue screen error and when i pop in my disk to reformat and install it goes through the first stuff...opening files then it says starting windows and then black screen with cursor..nothing else..i can move the
    cursor but i cant click anything..nothing happens.

    Hi  Marrik,
    Is there any error code or error message displayed in the installation process ? because just based on your description in the post, it is difficult to find the root cause for a black screen even after a clean install, this might be caused by a corrupt installation
    media or a hardware issue, so, I give two potential suggestion:
    1.Try another Windows installation media and perform a clean install again to  see the result.
    2.Go to the computer vendor for hardware support, this also can be caused by a memory or hard disk issue.
    Regards
    Wade Liu
    TechNet Community Support

  • How to deploy galileo app in windows phone

    Hi Everybody,
    Could you please suggest how to deploy galileo app in windows phone ? .
    I have built this app in C++
    Seeking your co-operation and support..
    Thanking you,

    Only Metro/Store style apps can be installed on Windows phones - unless you're an OEM
     -Brian
    Azius Developer Training www.azius.com Windows device driver, internals, security, & forensics training and consulting. Blog at www.azius.com/blog

  • HT1430 My brand new iPhone 4 is quitting apps unexpectedly, turning into a black screen and then restoring to home page. Restarting didn't correct problem. Shall I follow full resetting instructions?

    My brand new iPhone 4 is quitting apps unexpectedly, turning into a black screen and then restoring to home page. Restarting procedures didn't correct problem. Shall I follow full resetting instructions?

    Thanks for the straightforwardness roaminggnome - I wasn't sure if this problem qualified as deseving a reset. Unfortunately, for some reason I can't explain, your response remained undisclosed to me for a while, the next reply after yours took preference and I ended up doing as Meg St.Clair's susgested and initiated download, installation and syncing of Smartsync which is now taking ages to finish... If problem persists shall do the resetting and restoring.

Maybe you are looking for

  • SD report on sales which have been delivered but not yet billed

    Dear all, Do we have any SAP SD standard report showing a total of the value (preferably by sales office) of sales which have been delivered but not yet billed. Client has a legacy system which shows report showed up goods which have been PGI'd/deliv

  • My Photosmart Premium C310 printer has lost Web services

    My printer worked perfectly with my PCs, iPad and for printing over the web for 8 months until a few weeks ago since when, after downloading a software upgrade it will only work with the PCs over my home network. A previous post led to some very comp

  • PIA service does not start

    Hi, my webserver is Weblogic (9.2, Tools 8.49 , HRMS90). PIa service does not start automaticaly when I start/boot the server. I should run startPIA.cmd. And then I can connect in 4/3. Do you have any idea for that ? In windows Evenetlog it says Even

  • APP, F-53, F-58, Invoices printing,  & TDS Cert.

    Dear Friends, Can you pl. help us in soling the following issues: 1. F110 - APP Error Message No. FZ003. Also, can you pl.let us know how to select the Check Issued (Bank Sub Account) GL Account for credit of outgoing payments. 2. F-53 - Outgoing Pay

  • Unable to see the Hyperion tab in Excel 2003

    Hi Hyperion gurus, Can anybody shed light on an issue that a user encountered with Smartview? This user installed Smartview and had been using it without any problems. We just started parallel testing and he needed to use Smartview as part of the pro