Windows 8.1 Networking and a lot more

Where do I start? I've been redirected here from the Windows Community site by Microsoft as I guess it's too complicated for them. Since updating to 8.1 the other day, networking is erratic to nonfunctional. Some of the issues:-
1. I cannot connect to my NAS which is using Windows Home Server unless I reboot the laptop.
2. Networking says I'm using a router that I got rid of months ago. Even after it finally said it was using my Asus router, next reboot it reverted to the old one. When you hover the mouse over the wireless network indicator on the bottom control bar it
says the old router, when you right click to get connects it says the new one is connected!
3. Windows Firewall will not recognise my security software (Panda) and give a warning even though Action Center does and says everything is fine. Can it be a firewall issue Windows 8.1 is imagining?
4. Sometimes I have to reboot to get an internet connection. At the moment said controlbar wireless icon is saying I'm not connected but I am.
5. I can't join my home group, 3 pc's and laptops using Windows 7, thank God. They work fine, just the Windows 8.1 is on its own, an outcast!
Oh Lord, why can't I go back to Windows 8.0 even?

Hi,
I have been able to set up a homegroup with Windows 7 SP1, and joined a Windows 8.1 PC in that group successfully. from what have been disscussed above, I suspect your Windows 8.1 PC can't join homegroup is most probably caused by the
network issue. So we might first take a try to solve the network issue.
We might first start with the link below:
Wired and wireless network problems
Also please take a try to delete the wireless network profiles and then reconnect the network, then check the results:
Manage wireless network profiles
The homegroup link provided showed the reasons why can't join homegroup in I can't create, join, or use a homegroup. In addition to the network aspects, please also take a check with the others.
Best regards
Michael Shao
TechNet Community Support

Similar Messages

  • After updating ios on my iphone 5 to 7.0.2, some aps as facebook, whatsapp and a lot more do not start any more. It is impossible to login or connect.

    after updating ios on my iphone 5 to 7.0.2, some aps as facebook, whatsapp and a lot more do not start any more.
    In Facebook e.g. it is impossible to login or connect.

    Hello rvdrvd,
    If you are having issues with your apps, check out the general troubleshooting for apps downloaded.
    iOS: Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Anybody know how to read "xerces"?? and a lot more......

    And, what's the relationship between xerces and sun's JAXP? Is jaxp more a interface less an implementation? I found jaxp calls some part of xerces pack. Meanwhile, in xerces pack there sits a jaxp pack. Xerces say it support jaxp, so, is that mean xerces is a implementation of jaxp interface?
    Both of the two pack contains some implementation..... I'm confused.
    Can anybody give me an insider's view of jaxp package?
    "The SAX Plugability classes allow an application programmer to provide an implementation of the
    org.xml.sax.DefaultHandler API to a SAXParser implementation and parse XML documents. As the parser processes the XML document, it will call methods on the provided DefaultHandler."
    ------from jaxp1.2 spec
    I'm sorry but English isn't my mother tongue. I'm rather confused by the statements above. Anybody do me a favour to translate it to plain English? Very much thanks.
    Also, what does the following code mean? (from javax.xml.parser.SAXParserFactory.java)
    class FactoryFinder is in nowhere to be found. Can anybody help explain it?
        public static SAXParserFactory newInstance()
            throws FactoryConfigurationError
            try {
                return (SAXParserFactory) FactoryFinder.find(
                    /* The default property name according to the JAXP spec */
                    "javax.xml.parsers.SAXParserFactory",
                    /* The fallback implementation class name */
                    "org.apache.crimson.jaxp.SAXParserFactoryImpl"); //what's this??
            } catch (FactoryFinder.ConfigurationError e) {
                throw new FactoryConfigurationError(e.getException(),
                                                    e.getMessage());
        }Moreover, what the relation between SAXParserFactoryImpl and SAXParserFactory?
    I wrote a program to validate xml files against dtd or schema. Does the package automatically find dtd or schema files within the xml or i have to offer them in the command line? In my case, it seems to be the latter.

    Well, you see, my real problem is that i coded to validate a xml file against xsd or dtd. However, I have to feed the program with a dtd or xsd file in the command line to make it work. Isn't it supposed to find out a proper dtd/xsd in the xml file(when specified)? Or I it isn't properly configured?
    Help me, please!
    Here is the code:
    package xmltool;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.*;
    import java.io.*;
    * This class validate a xml file against its DTD or Schema.
    * @version 1.1
    * @auther Data Zoe
    public class Check extends DefaultHandler
        /** Constants used for JAXP 1.2 */
        static final String JAXP_SCHEMA_LANGUAGE =
            "http://java.sun.com/xml/jaxp/properties/schemaLanguage";
        static final String W3C_XML_SCHEMA =
            "http://www.w3.org/2001/XMLSchema";
         public static void main(String args[])throws Exception
              //tag varible
              boolean dtdValidate = false;
              boolean xsdValidate = false;
              //xml file to be validated
              String fileName = null;
              //Check input
              for(int i=0;i<args.length;i++)
                        if(args.endsWith(".xml")||args[i].endsWith(".XML"))
                             fileName = args[i];
                        else if(args[i].endsWith(".xsd")||args[i].endsWith(".XSD"))
                             xsdValidate = true;
                        else if(args[i].endsWith(".dtd")||args[i].endsWith(".DTD"))
                             dtdValidate = true;
                        else
                                  System.err.println("Out put usage infomation.");
              if(fileName!=null)
                   SAXParserFactory spf = SAXParserFactory.newInstance();
                   spf.setNamespaceAware(true);
                   spf.setValidating(dtdValidate||xsdValidate);
                   SAXParser saxParser = spf.newSAXParser();
                   XMLReader xmlReader = saxParser.getXMLReader();
                   xmlReader.setContentHandler(new Check());
                   xmlReader.setErrorHandler(new myErrorHandler(System.err));
                   xmlReader.parse(fileName);
                   if (xsdValidate)
                        try     {saxParser.setProperty(JAXP_SCHEMA_LANGUAGE, W3C_XML_SCHEMA);}
                        catch (SAXNotRecognizedException x)
                                  // This can happen if the parser does not support JAXP 1.2
                                  System.err.println(
                                       "Error: JAXP SAXParser property not recognized: "
                                       + JAXP_SCHEMA_LANGUAGE);
                                  System.err.println(
                                       "Check to see if parser conforms to JAXP 1.2 spec.");
                                  System.exit(1);
              else
                   System.err.println("No xml file to validate");
         * Error handler
         private static class myErrorHandler implements ErrorHandler
              /** Error handler output goes here */
              private PrintStream out;
              myErrorHandler(PrintStream out)
                   this.out = out;
              * Returns a string describing parse exception details
              private String getParseExceptionInfo(SAXParseException spe)
                   String systemId = spe.getSystemId();
                   if (systemId == null)
                        systemId = "null";
                   String info = "URI=" + systemId +
                        " Line=" + spe.getLineNumber() +
                        ": " + spe.getMessage();
                   return info;
              // The following methods are standard SAX ErrorHandler methods.
              // See SAX documentation for more info.
              public void warning(SAXParseException spe) throws SAXException
                   out.println("Warning: " + getParseExceptionInfo(spe));
              public void error(SAXParseException spe) throws SAXException
                   String message = "Error: " + getParseExceptionInfo(spe);
                   throw new SAXException(message);
              public void fatalError(SAXParseException spe) throws SAXException
                   String message = "Fatal Error: " + getParseExceptionInfo(spe);
                   throw new SAXException(message);

  • FPC Bench, Database API and a lot more...

    FPC Bench is a FREE java benchmark to test and compare the performance of a phone with others phones.
    FPC Bench is a complete test tool to test performance and features.
    - CPU/Memory benchmark (single threaded and multi threaded)
    - NetMeter benchmark (GPRS, EDGE, UMTS, HSDPA speed)
    - Check for total heap memory size
    - Check for free heap memory size
    - Check for full screen's maximum resolution in a Java canvas
    - Check for double buffering
    - Check for RMS size
    - Check for RMS speed (external/internal memory speed)
    - Check for your internet connection speed
    - Check for available profile/configuration
    - Check for the latest APIs:
    JSR 75: File System access API.
    JSR 82: Bluetooth/OBEX API.
    JSR 118: Mobile Information Device Profile API.
    JSR 120: Wireless Messaging API (WMA 1.1).
    JSR 135: Multimedia API (MMAPI)
    JSR 139: Connected Limited Device Configuration 1.1
    JSR 172: Wev service specification.
    JSR 177: Security and Truste Services API.
    JSR 179: Location API.
    JSR 180: SIP API.
    JSR 184: Mobile 3D Graphics.
    JSR 185: Java Tech for Wireless Industry API.
    JSR 205: Wireless Messaging API (WMA 2.0).
    JSR 209: Advanced graphics and user interface.
    JSR 211: Content Handler API.
    JSR 226: Scalable 2D vector graphics for JavaME.
    JSR 229: Payment API.
    JSR 234: Advanced Multimedia API.
    JSR 238: Mobile internationalization API.
    JSR 239: Java binding for OpenGL ES.
    JSR 248: MSA Umbrella.
    JSR 248: Fully featured MSA.
    JSR 256: Mobile Sensor API.
    JSR 257: Contactless communication API.
    This application runs on all Java Micro Edition MIDP platforms.
    We have a big database where you can check if a phone supports an API simply by filtering our database with the api of your interest.
    Please help us enlarging our results database by sending us your results directly from FPC Bench using Internet or SMS.
    Sending results by Internet is really cheaper than a normal SMS.
    You can find more info about our project here:
    http://www.dpsoftware.org
    Message was edited by:
    overtheclock

    FPC Bench is a FREE java benchmark to test and compare the performance of a phone with others phones.
    FPC Bench is a complete test tool to test performance and features.
    - CPU/Memory benchmark (single threaded and multi threaded)
    - NetMeter benchmark (GPRS, EDGE, UMTS, HSDPA speed)
    - Check for total heap memory size
    - Check for free heap memory size
    - Check for full screen's maximum resolution in a Java canvas
    - Check for double buffering
    - Check for RMS size
    - Check for RMS speed (external/internal memory speed)
    - Check for your internet connection speed
    - Check for available profile/configuration
    - Check for the latest APIs:
    JSR 75: File System access API.
    JSR 82: Bluetooth/OBEX API.
    JSR 118: Mobile Information Device Profile API.
    JSR 120: Wireless Messaging API (WMA 1.1).
    JSR 135: Multimedia API (MMAPI)
    JSR 139: Connected Limited Device Configuration 1.1
    JSR 172: Wev service specification.
    JSR 177: Security and Truste Services API.
    JSR 179: Location API.
    JSR 180: SIP API.
    JSR 184: Mobile 3D Graphics.
    JSR 185: Java Tech for Wireless Industry API.
    JSR 205: Wireless Messaging API (WMA 2.0).
    JSR 209: Advanced graphics and user interface.
    JSR 211: Content Handler API.
    JSR 226: Scalable 2D vector graphics for JavaME.
    JSR 229: Payment API.
    JSR 234: Advanced Multimedia API.
    JSR 238: Mobile internationalization API.
    JSR 239: Java binding for OpenGL ES.
    JSR 248: MSA Umbrella.
    JSR 248: Fully featured MSA.
    JSR 256: Mobile Sensor API.
    JSR 257: Contactless communication API.
    This application runs on all Java Micro Edition MIDP platforms.
    We have a big database where you can check if a phone supports an API simply by filtering our database with the api of your interest.
    Please help us enlarging our results database by sending us your results directly from FPC Bench using Internet or SMS.
    Sending results by Internet is really cheaper than a normal SMS.
    You can find more info about our project here:
    http://www.dpsoftware.org
    Message was edited by:
    overtheclock

  • Apps are crashing and a lot more

    I got my my ipad in June and it has never given me a problem. Now after the new update with IOS 4.2 all apps crash after opening, ipad randomly restarts. I have restored my ipad from beginning and also restore it from stratch. I do not know what to do now. can someone please give me and idea on what to do to fix this.

    which apps are crashing? a lot of 3rd party developers haven't had a chance to update their apps yet. If you want to know if others are experiencing the same problem, go to iTunes app or iTunes store on desktop --> search for the app and then look at Reviews or Ratings section or whatever and see if other users are running into the same issues.

  • Lines lines lines and a lot more lines

    when i boot my imac g5 up their are 7 lines on it. i am able to see the screen. the lines did not show up when doing a screen capture. HELP! HELP! HELP! HELP! HELP! HELP! HELP!

    Are the lines horizontal or vertical? If vertical you may have a common flaw that Apple will fix out of warranty (if under warranty take it in asap). Call Apple and ask for a product specialist & explain the problem. this is common for 2006 20" iMacs. see this strand:
    http://discussions.apple.com/message.jspa?messageID=8596225#8596225

  • Wifi can't connect to home network but can to school network and via ethernet

    My MBP cannot connect to any of my home networks (we have three, same ISP but not the same security) but it can connect to my unsecured school network and to my home network via ethernet cable. Other devices can connect to the network, including my iPhone, my fathers machines... etc.
    I spent an hour on the phone with apple care and tried a large variety of things...
    Changing my DNS settings to add 8.8.8.8 and 8.8.4.4
    deleting the .plist settings in my system config folder
    running diagnostics 500 times
    restarting
    reinstalling mt.lion (without wipe)
    restarting the router
    and a lot more.
    Basically, it says I have full internet access and diagnostics tells me there is nothing wrong. Green light and everything but not a single program can connect to the internet while I can connect to home based servers.
    I cannot ping anything and I cannot access any websites using either their IP or their domain name.
    Needless to say, this has been getting quite frusterating and I'm running out of ideas.

    Boot into Recovery by holding down the key combination command-R at the startup chime. Release the keys when you see a gray screen with a spinning dial.
    From the OS X Utilities screen, select Get Help Online. A clean copy of Safari will launch. No plugins, such as Flash, will be available. While in Recovery, you'll have no access to your saved bookmarks or passwords, so make a note of those before you begin, if they're needed for the test.
    Test. After testing, reboot as usual and post the results.

  • Printing to a Windows shared printer, keep getting "Hold for Authentication" when I'm on the Windows shared network and can browse the computers.

    I have had two MacBook Pros now, and this has been an issue in Mountain Lion and Mavericks. I've got a shared printer on the local Windows network (it's a USB printer shared via the network and the computer), and the other Windows computers in the house can print to it no problem. The Mac sees it no problem, yet whenever I try to print to it, I just get "Hold for Authentication."
    Like I said, persists over Mountain Lion and Mavericks. No other computer in the house has any issues printing to it. I've installed the drivers for the printer as well (Brother HL-2240).
    I've tried to follow the instructions here: https://discussions.apple.com/message/23268762#23268762 but the printer isn't listed in Keychain Access.
    Any thoughts?
    Thanks in advance!
    Patrick Campanale

    Well, that isn't too useful. Try this instead: Adding a printer shared by a Windows computer via SMB/CIFS.
    You may find more by selecting Mac Help from the Finder's Help menu and searching for articles by keyword.

  • I use itunes on a Dell XPS502 with W7/64. In some cases have have problems to import CD's. The sound is very disturbed and the import need a lot more time than in normal cases. Is there a problem between itunes W7/64 or a known hardware issue?

    I use itunes on a Dell XPS502 with W7/64. In some cases have have problems to import CD's. The sound is very disturbed and the import need a lot more time than in normal cases. Is there a problem between itunes and W7/64 or a known hardware issue?
    Example-CD : "Tracy Chapman , Telling stories" is not able to import . I have more such negative cases. But in other cases it works fine and the sound is great.
    The firmware at the inbuild CD/DVD DS-6E2SH is the latest version.
    What can I do??

    hi b noir,
    I don't no about virtuel drives like you mententioned. In the mean time I have rebooted the XPS and run again the iTunes diagnostics. I think the back - chance in the registry was not ready to use.  Now there are another results. They are the same in case of a running CD or a not running CD. The difference in total is like before. It takes more time that iTunes reads the (bad) CD and at the there is no good sound. In both cases ( running or not running CD) iTunes diagnostics gives as a result :
    (the copie from ITunes shows the result of the not running CD from Tracy Chapman)
    Microsoft Windows 7 x64 Ultimate Edition Service Pack 1 (Build 7601)
    Dell Inc. Dell System XPS L502X
    iTunes 10.3.1.55
    QuickTime 7.6.9
    FairPlay 1.11.17
    Apple Application Support 1.5.2
    iPod Updater-Bibliothek 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.4.0.25
    Apple Mobile Device Treiber 1.55.0.0
    Bonjour 2.0.5.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes-Seriennummer 00D7B2B00CD25750
    Aktueller Benutzer ist kein Administrator.
    Aktuelles Datum und Uhrzeit sind 2011-06-11 19:33:22.
    iTunes befindet sich nicht im abgesicherten Modus.
    WebKit Accelerated Compositing ist aktiviert.
    HDCP wird unterstützt.
    Core Media wird unterstützt.
    Info zu Video-Anzeige
    NVIDIA, NVIDIA GeForce GT 540M
    Intel Corporation, Intel(R) HD Graphics Family
    **** Info für externe Plug-Ins ****
    Keine externen Plug-Ins installiert.
    iPodService 10.3.1.55 (x64) arbeitet zurzeit.
    iTunesHelper 10.3.1.55 arbeitet zurzeit.
    Apple Mobile Device service 3.3.0.0 arbeitet zurzeit.
    **** CD/DVD-Laufwerkstests****
    LowerFilters: PxHlpa64 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    D: PLDS DVDRWBD DS-6E2SH, Rev CD11
    Audio-CD im Laufwerk
    11 Titel auf der CD gefunden, Spieldauer: 42:07 auf Audio-CD
    Titel 1, Startzeit: 00:02:00
    Titel 2, Startzeit: 03:59:47
    Titel 3, Startzeit: 07:19:27
    Titel 4, Startzeit: 11:31:30
    Titel 5, Startzeit: 15:31:50
    Titel 6, Startzeit: 20:07:50
    Titel 7, Startzeit: 24:27:15
    Titel 8, Startzeit: 27:49:10
    Titel 9, Startzeit: 32:41:25
    Titel 10, Startzeit: 35:29:65
    Titel 11, Startzeit: 38:38:00
    Audio-CD erfolgreich gelesen (Suche nach alter Firmware).
    Laufwerksgeschwindigkeit erfolgreich erkannt
    Die CDR-Geschwindigkeiten des Laufwerks sind:  4 10 16 24
    Die CDRW-Geschwindigkeiten des Laufwerks sind:  4
    Die DVDR-Geschwindigkeiten des Laufwerks sind:  4
    Die DVDRW-Geschwindigkeiten des Laufwerks sind:  4
    After starting the import it is going slower and slower. If it is helpful I can send you a soundfile with these distortions.
    best regards
    tcgerd

  • I have problem with data transfer between Windows Server 2012RT and Windows7 (no more than 14kbps) while between Windows Sever 2012RT and Windows8.1 speed is ok.

    I have problem with data transfer between Windows Server 2012RT and Windows7 (no more than 14kbps) while between Windows Sever 2012RT and Windows8.1 speed is ok.

    Hi,
    Regarding the issue here, please take a look at the below links to see if they could help:
    Slow data transfer speed in Windows 7 or in Windows Server 2008 R2
    And a blog here:
    Windows Server 2012 slow network/SMB/CIFS problem
    Hope this may help
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    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.

  • HP Business Inkjet 1000/1200 networked and Windows 7 64-bit

    Hi,
    Wondering if anyone can help, I'm having an absolute nightmare getting our HP Business Inkjet 1000/1200 printers working on our laptops which have Windows 7 64-bit installed. There is no Windows 7 driver to download for this printer, I'm using the pre-installed one in Windows 7, I can get this to work perfectly with Windows 7 32-bit in our VMWare enviroment but on the laptops it just freezes programs when you go to print (mainly Office 2010). I have networked the printers on a Windows Server 2008 SP2 32-bit print server. I have added the print drivers to the server through print management console, from Windows 7 32-bit and 64-bit. I can use the same print driver locally to the laptops and add the TCP/IP ports from there and it works perfectly but I really do not want to be manually adding the printers locally, I want users to be able to add from the print server directory.
    Shot in the dark but has anyone else had a similar experience?
    Regards,
    Ross

    Hi @Firoskhan,
    Welcome to the HP Forums!
    I am sorry, but to get your issue more exposure I would suggest posting it, in the commercial forums since this is a commercial product. You can do this at HP Enterprise Business Community.
    Hope this helps!  
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Unidentified Network appears Windows 7 pro reboot and stops NW access

    I have a Dell T3500 workstation  which had Windows 7pro problem is whenever  I reboot NW access fails. In Network Sharing there are 2 networks "Local area " and "public Network". I have to disable the NW Adapter and enable
    each time to get rid of the "public  Network" and recover NW access.
    How can I fix this?

    Hi viren84,
    Please first take a try with the network troubleshooter:
    Using the Network troubleshooter in Windows 7
    For more Internet connection troubleshooting, see:
    Wired and wireless network problems
    Regarding Unidentified Network, that because the network are indetified as public, which is not safe enough:
    More on:
    Network Location Awareness (NLA) and how it relates to Windows Firewall Profiles.
    You may consider change it to work profile:
    Change ‘Unidentified network’ from Public to Work in Windows 7
    Best regards
    Michael Shao
    TechNet Community Support

  • I am setting up a lab of imacs in a school.  I have successfully bound the imacs to our network and can log in using the windows account.  However, I cannot access my files.  Is there another step?

    I am setting up a lab of imacs in a school.  Our network is windows based using active directoy.  I have successfully bound the imacs to our network and can log in using the windows account.  However, I cannot access my files.  Is there another step?

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • Windows 7 home premium and windows 8.1 pro op network problem

    I have two PC-s, one is with windows  7 home premium  and the other one with  windows 8.1 pro op system.  They are wired via ethernet/ home network. Till I had old Windows  XP instead of Windows 7, the two PC-s were connected,
    file sharing and device sharing was easy and functioning. 
    Today it doesn't,  windows 8.1 finds the other PC and creating the network, even identifying the different folders on the other PC however as I want to open a file, then loading forever starts, but
    on the other side the windows 7 PC is frozen, only the hard switch off helps. ...
    Any idea what to do? The diagnose shows that the access was lost.

    Here is the forum for you

  • Windows XP with Bootcamp and lots of headaches

    After much trouble installing Windows XP on my Macbook (OSX 10.5.8) The third time was finally a charm and it worked. Once into windows I tried to install the drivers from the OSX cd and it said 'cannot unpackage need to update". I went into mac forums and found that I needed to install SP2 or SP3 and it would work. I then tried to connect to the internet but could not do it. Windows sees the connection, it has it listed under 'Lan or high speed internet" but i cannot connect to it. There is no icon on the tabs. I tried setting up home networks, lan networks, and an internet connection, but have gotten no where. Any advice will help.

    Hi CT,
    download this from Microsoft site: "WindowsXP-KB936929-SP3-x86-ENU.exe"
    It is the 'Service Pack 3' for winXP 32-bit.
    You can download it on your Mac side, copy on Men. stick & then use when in windows.
    I don't know IF it'll let you upgrade the windows this way - it suppose to be integrated with-in the windows install CD/DVD.
    It is relatively large download (332MB)- if you can't use it in the end...

Maybe you are looking for

  • Material block for Valuation Type

    Hi, I would like to block material for the particular valuation type. That means the system should not allow me to create PO or any document for that valuation type. How shall i can do in SAP? I know in MM06 we can set deletion flag for the material

  • Usage Decision Results to any stock update?

    Dear SAP Experts, I want to know , when usage Decision is taken in QM, stock will be updated or not? After usage decision say few quantity is scrapped and given usage decision code for the same. I want to know this decision will update to stock or no

  • Digital Editions Help

    Can I use Adobe Digital Editions with a Nook HD+?

  • Error when exporting to Tiffs or JPEGs

    I've finished toning, and cropping 103 ORF raw files. When I try export them to a to a new folder, I get a failed to export message, and none of the files will open in the develop module. I rebooted, and ran defrag, and just to be on the safe side I

  • Turn logging off for a roll off job

    Hi Everyone, We are running into an issue in one of our bw production systems.  Once a week we run a chain that deletes data that is past our required retention period. The infoproviders we are doing the data roll off on are quite large.  Most contai