Issue when synchronizing my SUP

Hi guys,
Context : MP (Windows Server 2008 R2) + WSUS 3.0 SP2
I add the SUP role on my Management Point specifying that it has to be synchronized from Microsoft Update. When I launch the Synchronize Software Update button, I open the WCM.log to check and I got this issue 
The Windows 7 and Office 2010 categories are not found on the WSUS ...
When I open the WSUS console / Options / Products, I don't have these products.
Do you have an idea please ?
Thanks.

wsyncmgr.log
Sync failed: WSUS update source not found on site CON. Please refer to wcm.log for configuration error details.. Source: getSiteUpdateSource
STATMSG: ID=6703 SEV=E LEV=M SOURCE="SMS Server" COM="SMS_WSUS_SYNC_MANAGER" SYS=MP.contoso.local SITE=CON PID=2920 TID=4632
ISTR0= "getSiteUpdateSource" ISTR1="WSUS update source not found on site CON. Please refer to wcm.log for configuration error details. "ISTR2=""ISTR3=""ISTR4=""ISTR5=""ISTR6=""ISTR7=""ISTR8=""ISTR9=""NUMATTRS=0
Sync failed. Will retry in 60 minutes
wsusctrl.log
Found supported assembly Microsoft.UpdateServices.Administration version 3.1.6001.1
Supported WSUS version found
Attempting connection to local WSUS server
Successfully connected to local WSUS server
No changes - local WSUS Server proxy settings are correctly configured as Proxy Name and Proxy Port 80 (I don't have a proxy and I don't defined a port!)
There are no unhealthy WSUS Server components on WSUS Server MP.contoso.local

Similar Messages

  • Mapping Issue for Synchronous interface

    Hi Experts,
    We are facing the below issue in a SOAP to RFC synchronous scenario.
    Data from WS is successfully uploaded to RFC via RFC request. However we face the below issue when the RFC response is received.
    com.sap.aii.utilxi.misc.api.BaseRuntimeException:Character reference "&#00" is an invalid XML character.
    We receive this error particularly when one field has the below values.
    <FIELD> X 20140812201409101211 1 USD TP 00000000 </FIELD>
    When we click on view source the same field shows as below:
    <FIELD> &#00;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#12;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#12;X  20140812201409101211            1             USD     &#00;&#00;&#00;&#00;&#12;&#00;&#00;&#00;&#00;&#12;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#00;&#19;TP&#12;     00000000&#00;&#12;&#00;&#12;&#00;&#12;&#00;&#00;&#12;&#00;&#00;&#12;</FIELD>
    Even while pasting the same source xml from view source in Message Mapping we get the below error:
    Unable to display tree view; Error when parsing an XML document (Character reference "&#00" is an invalid XML character.)
    How is a simple value getting converted to some huge value when we open it using view source.
    Please help me resolving the same.
    Regards,
    Shai

    Hi Shaibayan
    looks like there is inconsistency in the RFC maintained in ECC to PI as non unicode.
    In RFC channel check the flag for Unicode.
    Or
    Write a java mapping to remove the special characters
    Regards
    Osman

  • JTable text alignment issues when using JPanel as custom TableCellRenderer

    Hi there,
    I'm having some difficulty with text alignment/border issues when using a custom TableCellRenderer. I'm using a JPanel with GroupLayout (although I've also tried others like FlowLayout), and I can't seem to get label text within the JPanel to align properly with the other cells in the table. The text inside my 'panel' cell is shifted downward. If I use the code from the DefaultTableCellRenderer to set the border when the cell receives focus, the problem gets worse as the text shifts when the new border is applied to the panel upon cell selection. Here's an SSCCE to demonstrate:
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.EventQueue;
    import javax.swing.GroupLayout;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.border.Border;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    import sun.swing.DefaultLookup;
    public class TableCellPanelTest extends JFrame {
      private class PanelRenderer extends JPanel implements TableCellRenderer {
        private JLabel label = new JLabel();
        public PanelRenderer() {
          GroupLayout layout = new GroupLayout(this);
          layout.setHorizontalGroup(layout.createParallelGroup().addComponent(label));
          layout.setVerticalGroup(layout.createParallelGroup().addComponent(label));
          setLayout(layout);
        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
          if (isSelected) {
            setBackground(table.getSelectionBackground());
          } else {
            setBackground(table.getBackground());
          // Border section taken from DefaultTableCellRenderer
          if (hasFocus) {
            Border border = null;
            if (isSelected) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusSelectedCellHighlightBorder");
            if (border == null) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusCellHighlightBorder");
            setBorder(border);
            if (!isSelected && table.isCellEditable(row, column)) {
              Color col;
              col = DefaultLookup.getColor(this, ui, "Table.focusCellForeground");
              if (col != null) {
                super.setForeground(col);
              col = DefaultLookup.getColor(this, ui, "Table.focusCellBackground");
              if (col != null) {
                super.setBackground(col);
          } else {
            setBorder(null /*getNoFocusBorder()*/);
          // Set up our label
          label.setText(value.toString());
          label.setFont(table.getFont());
          return this;
      public TableCellPanelTest() {
        JTable table = new JTable(new Integer[][]{{1, 2, 3}, {4, 5, 6}}, new String[]{"A", "B", "C"});
        // set up a custom renderer on the first column
        TableColumn firstColumn = table.getColumnModel().getColumn(0);
        firstColumn.setCellRenderer(new PanelRenderer());
        getContentPane().add(table);
        pack();
      public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
          public void run() {
            new TableCellPanelTest().setVisible(true);
    }There are basically two problems:
    1) When first run, the text in the custom renderer column is shifted downward slightly.
    2) Once a cell in the column is selected, it shifts down even farther.
    I'd really appreciate any help in figuring out what's up!
    Thanks!

    1) LayoutManagers need to take the border into account so the label is placed at (1,1) while labels just start at (0,0) of the cell rect. Also the layout manager tend not to shrink component below their minimum size. Setting the labels minimum size to (0,0) seems to get the same effect in your example. Doing the same for maximum size helps if you set the row height for the JTable larger. Easier might be to use BorderLayout which ignores min/max for center (and min/max height for west/east, etc).
    2) DefaultTableCellRenderer uses a 1px border if the UI no focus border is null, you don't.
    3) Include a setDefaultCloseOperation is a SSCCE please. I think I've got a hunderd test programs running now :P.

  • Syntax Error When Synchronizing *.msg files

    I am running SyncToy 2.1, version 2.1.0.0.
    When synchronizing folders that contain Outlook messages saves as *.msg files, I recieve the message "Error: Cannot write to the destination file. The filename, directory name, or volume label syntax is incorrect (Exception from HRESULT: 0x8007007B)..."
    If I modify the synchronization settings to exclude *.msg files, the synchronization runs without errors.
    I have browsed this SyncToy support forum and haven't found any posts that relate to this error.
    Any help would be appreciated.
    Thanks.

    I know it's a long shot but I had this error message when trying to write files from a local drive to a mapped SharePoint location. The problem came down to the name I'd used when I mapped the SharePoint library. I'd mapped it as something like this:
    Z: --> \\intranet\myteams\erp\Shared%20Documents
    and kept hitting this issue. However, when I mapped it like this:
    Z: --> \\intranet\myteams\erp\Shared Documents
    it worked.

  • Problem: software changes my Outlook contact info when synchronizing (cuts off part of first name)

    When I sync, the BB software cuts off part of the first name of my Outlook contacts.  The problem seems to happen when I have a space in the first name (eg: First Name - Bill & Jane).  I have several of my contacts listed that way so I can see spouses of contacts easily.  I have never had this problem before with my other MS Op phone.  Thanks for your help.
    Message Edited by friedchicken on 01-05-2009 01:23 AM

    I found out what happens.
    Wherever the First Name filed on the BB contains a Blank (or Space) character, when synchronizing to MS Outlook, the content of the field is divided in two parts: the first part, before the Blank, is transferred to the Outlook First Name field, the second part, after the Blank, is transferred to the Outlook Middle Name  field.
    This goes beyond the useser's intentions and is a nuisance, becuase you can of course turn around the problem after synchronization, by exporting the MS Outlook contacts to MS Access, or MS Excel, put the two fields together, and reimport them into MS Outlook. But you need to do that each time yoy synchronize.
    It would be nice if RIM could fix the issue.

  • Timeout issues in synchronous webservices

    Hi Everybody,
    I am working on a synchronous webservice Interface in which sender is a Webservice and receiver is BAPI (RFC) and I need to handle the time out issue when i dont get the response from the receiver SAP system.Also need to raise an alert.
    Can anybody help me out on this.
    Helpful answers will be rewarded points.
    Regards,
    RK

    Hi,
    For the timeout issue look at these:
    Web Service Timeout Configuration
    SOAP adapter - Module options...
    For the alert I think you should take a look at these:
    Does XI support standard SOAP Fault exceptions?
    SOAP Fault message (***)
    Handling Web Service SOAP Fault Responses in SAP NetWeaver XI
    Hope it helps.
    Best Regards,
    Arman
    (Please mark your question as answered when it is solved)

  • Photoshop Elements agent stops when synchronizing with Revel.

    I have a Macbook Pro with Photoshop Elements 13 and Adobe Revel. When I try to upload to Revel the agent stops at the stage downloading. Everything is OK when updating.

    Hi,
    I am not a beginner but still an amateur. To follow your instruction is
    not easy. Especially not when my computer language is Swedish. I followed
    you to the last step in number 3.
    Regards
    Tomas Hilmo
    Från:  SurendraPal <[email protected]>
    Svara till: 
    <[email protected]>
    Datum:  onsdag 10 december 2014 09:17
    Till:  Tomas Hilmo <[email protected]>
    Ämne:   Photoshop Elements agent stops when
    synchronizing with Revel.
    Photoshop Elements agent stops when synchronizing with Revel.
    created by SurendraPal in Photoshop Elements - View the full discussionHi
    tohi99,To investigate this issue, I would be needing logs. Detailed steps
    for creating log related entries are mentioned in 'Logs for Revel/Mobile
    albums' section of my blog: Photoshop Elements (PSE) knowledge base. 
    Please let me know if you face any issues in retrieving logs. Let me know
    once you have logs ready. I will send you a private mail to send me the
    same. ~Surendra
    If the reply above answers your question, please take a moment to mark
    this answer as correct by visiting:
    https://forums.adobe.com/message/7001501#7001501 and clicking ‘Correct’
    below the answer Replies to this message go to everyone subscribed to this
    thread, not directly to the person who posted the message. To post a
    reply, either reply to this email or visit the message page:
    Please note that the
    Adobe Forums do not accept email attachments. If you want to embed an
    image in your message please visit the thread in the forum and click the
    camera icon: https://forums.adobe.com/message/7001501#7001501 To
    unsubscribe from this thread, please visit the message page at
    , click "Following" at
    the top right, & "Stop Following" Start a new discussion in Photoshop
    Elements by email or at Adobe Community For more information about
    maintaining your forum email notifications please go to
    https://forums.adobe.com/thread/1516624.

  • LSO---- Authoring Environment----Error when synchronizing the objectives

    Hi All
    I am getting this error  when i am creating  new learning objectives in Authoring environment.
    ""A fatal error occurred when synchronizing the off-line objectives catalog with online catalog""
    Any advises????
    Regards
    Rajya

    Hi
    Authorizations is one issue. First try with authorization.
    If you have a Learning Portal Installed, you will also find this problem there. In that case, tell your Basis Admin to check the RFC connection.
    Regards
    Waz

  • Dreamweaver CS5 core temp spike when synchronizing

    I have a Dell Studio 1558 i7 laptop with Web Design suite CS5 installed. It normally sits happily at a core temp of around 60 degrees C. When I synchronize files in Dreamweaver the core temperature spikes to about 90 degrees C!! My laptop has now started hanging when synchronizing. It has got to the stage where I am finding if difficult to keep up to date with work for my clients.
    When uploading and downloading files with FileZilla I don't get a spike at all. What is Dreamweaver doing to create this core temperature spike. Is there something (a setting) I can turn off that would prevent this from happening?
    Many Thanks.

    Hi ZeroGravityWeb,
    Can you try this out and see if it helps? Just for your information, a lot of memory and CPU related issues were fixed in the DW 12.1 update for CS6.
    In Dreamweaver, select Edit > Preferences
    In the General section, deselect Enable Related Files.
    Click OK.
    Close Dreamweaver, and reopen it.
    Thanks,
    Preran

  • ORA-01740: missing quotes error when synchronizing mobilink

    Hi,
    I'm getting a missing quotes error when synchronizing with mobilink.
    followed by
    [-10058] Unable to open download_delete_cursor
    and the name of the table.
    and name of the script
    Script: {CALL "scriptversion".DOWNLOAD_DELETE_CURSOR_ABC (?, ?)}
    How can I see what is causing this... I already checked the script for that table in the ml_scripts table.... nothing special there... the script looks exactly the same as in previous versions....
    I'm assuming that it's the parameters that are creating the problem. but no idea on how to see them...
    any suggestions?
    thank you !

    Hi,
    thanks for your tip. I just did that and get a LOT of logging.
    Not sure if my employer would appreciate me sharing DB details in public.
    In private messaging I could send it through, but i guess that wouldn't help others with the same issue..
    i also changed the startup parameters to -vt -o
    And this is the result that I get (I modified scriptpackage name and cursorname a litle bit):
    I'm guessing that  : p1  and : p2 is incorrect as parameter....and the complaints come from there..
    Also, this time I ran another publication and now it's complaining on the newly added table and not on that random old table I mentioned on my previous post.
    PS. error message is in dutch since the server is in dutch, but it's the missing quotes issue.
    I. 2014-03-31 15:36:26. <1> COMMIT Transaction: prepare_for_download
    I. 2014-03-31 15:36:26. <1> Translated SQL:
                            CALL "scriptversion".DOWNLOAD_DELETE_CURSOR_ABC (:p1, :p2)
    E. 2014-03-31 15:36:26. <1> [-10002] Consolidated database server or ODBC error:  ODBC: [Sybase][iAnywhere Solutions - Oracle][Oracle]ORA-01740: Ontbrekend dubbele aanhalingsteken in identificatiesymbool.
                            ORA-01740: Ontbrekend dubbele aanhalingsteken in identificatiesymbool.
                             (ODBC State = 42000, Native error code = 1740)
    E. 2014-03-31 15:36:26. <1> [-10002] Consolidated database server or ODBC error:  ODBC: [Sybase][iAnywhere Solutions - Oracle][Oracle]ORA-01740: Ontbrekend dubbele aanhalingsteken in identificatiesymbool.
                            ORA-01740: Ontbrekend dubbele aanhalingsteken in identificatiesymbool.
                             (ODBC State = 42000, Native error code = 1740)
    E. 2014-03-31 15:36:26. <1> [-10058] Unable to open download_delete_cursor
    I. 2014-03-31 15:36:26. <1> Error Context:
    I. 2014-03-31 15:36:26. <1> Remote ID: c44a5403-74ba-4c98-bf6d-4e1db5fb24c9
    I. 2014-03-31 15:36:26. <1> User Name: USR:66ed647c-20b1-4cff-9663-8147b0e7e2fd
    I. 2014-03-31 15:36:26. <1> Modified User Name: USR:66ed647c-20b1-4cff-9663-8147b0e7e2fd
    I. 2014-03-31 15:36:26. <1> Transaction: download
    I. 2014-03-31 15:36:26. <1> Table Name: MY_NEWLY_ADDED_TABLE
    I. 2014-03-31 15:36:26. <1> Script Version: scriptversion
    I. 2014-03-31 15:36:26. <1> Script: {CALL "scriptversion".DOWNLOAD_DELETE_CURSOR_ABC (?, ?)}
    I. 2014-03-31 15:36:26. <1> End of Error Context
    I. 2014-03-31 15:36:26. <1> ROLLBACK Transaction: end_download
    I. 2014-03-31 15:36:26. <1> ROLLBACK Transaction: end_synchronization

  • Issue when uploading Sales data from DSO to Cube.

    Dear All,
    I have an issue when I am uploading Sales data from DSO to Cube.  I am using BI 7.0 and I have uploaded all sales document level data to my DSO.  Then I use a transformation rule to calculate the Sales Value when I am doing DTP to cube.  Cube has customer wise aggregation data.
    In DSO I have NetPrice(KF) and Delivered_QTY(KF).  I do a simple multiplication routine in the transformation from DSO to Cube.
    RESULT =   SOURCE_FIELDS-NET_PRICE * SOURCE_FIELDS-DLV_QTY .
    At the moment I use Active Table(With out Archive) on the DSO to get the data since this is my first load.
    Issue is that the figure (Sales Value) in the cube is incorrect. I am getting a very large values which is impossible.
    Can someone please help me.
    Shanka

    Hi,
    are you sure that cube has customer wise aggregated data..since it will always aggregate the values of the key figures for the same set of characters...
    did you checked the values for the key figures as well and if even they are inflated or is the problem with this key figure only.
    During the data load the records may aggregates first for the same values of characters and then multiplication will be happening....if that is the case then you may have to multiply the values before storing it in the data package and then let it aggregate....can be achived through start routine...
    but first verify if other key figures are also having the same issue.
    Thanks
    Ajeet

  • File formatting issues when saving PDF as PPTX in Acrobat XI Pro

    Hi guys,
    I have some issues when I'm saving my PDF (initially comming from InDesign) as PPTX. The format is suddenly changing, leaving a blank zone, and some of the pages are rotated.
    Is it a problem comming from the Indesign or from the Acrobat options itself? I have already tried changing the chekboxes in the option box when I'm saving, but nothing worked.
    If someone has an idea how to fix that, i would be very grateful! Thanks in advance

    Which dot version of Acrobat XI are you currently using in your export?  Is the PDF file tagged?  If not, then you may want to tag the PDF file before exporting it.

  • Mid 2009 17" MacBook Pro battery shutdown issue when waking from sleep.

    My unibody 17" MacBook Pro occasionally shuts down on waking from sleep when it isn't plugged in.
    When I open the lid to wake it I can hear the hard drive and fans starting to spool, and then the next second it's off and silent. The laptop doesn't mind being turned on again after it does this and might go a week without doing it again, equally it might do it next time I try and wake it from sleep. It does this regardless of battery charge level.
    coconutBattery says the battery still has 86% of its designed capacity, and I haven't noticed anything else untoward regarding battery charging or performance when in use.
    So my question is two fold:
    1) Does it sound like the battery's internal processor is malfunctioning, or could it be something else?
    2) If it is the battery's internal processor, will replacing the battery replace the processor, or are they fitted separately (in defference to the 'internal' part of its name)?
    Cheers,
    James
    nb. just in case it makes any difference, the laptop is a 17" Mid-2009 MacBook Pro, 2.8GHz Core 2 Duo with 4Gb Ram running OSX 10.7.3

    James
    I have had issues when i press the space bar from sleep, sometimes it wakes but others i'm forced to power it on with the power button.
    Is this similar to anything you've experianced?
    Its so inconsistantly these days, but i'm also connected to an external screen.

  • I reinstall the Yosemite due to the wifi issue, when finished, the iMovie was not installed, I try to download it from app store, but it's not free. How can I get iMovie back?

    I'm using a mid 2014 13" rmbp. I reinstall the Yosemite due to the wifi issue, when finished, the iMovie was not installed, I try to download it from app store, but it's not free. How can I get iMovie back?

    It's something to do with the main user account (not iTunes account) on my Mac because I logged in with another account and it downloaded fine, I installed it on the HDD and even though the date in App Store was 16th October 2014, it is the full installer of 10.10.2.
    To try to resolve this problem, I have copied the installer app elsewhere and deleted it but App Store still will not allow me to download it with my main user account yet just allowed me to update iTunes.
    I had a brainwave last night that it might have been related to me changing the default downloads folder to one not on my boot drive (to save disk space on my main boot drive) but having changed it back, tried again, rebooted and tried yet again, deleted my App Store preferences. nothing has worked.

  • OBIEE 11g - issue when export hierarchy to a csv

    Hello,
    I have an issue when I try to export to a csv file a report containing a Logical Dimension field, when I export just the first level of hierarchy is exported and not all the records. When I export to another format (such as excel) all the records are exported correctly. Do you know what can I do in order to have all the records exported to a csv?
    Thanks!
    Solange.

    This is a bug see below.
    Bug 13083479 : EXPORT DATA TO CSV FORMAT DOES NOT DOWNLOAD EXPANDED HIERARCHICAL COLUMNS
    Proposed workaround : OBIEE 11.1.1.5: Pivot Table Report Export To Csv Does Not Include Hierarchical Data [ID 1382184.1]
    Mark if answered.!
    Thanks,
    SVS

Maybe you are looking for

  • How do i use my itunes giftcards for clash of clans

    i'm having difficulty paying for gems in clash of clans with an itunes gift card.  they want a credit card, but i don't have one.  thanks.

  • Drivers for Lenovo 3000 N500 4233-5FG notebook

    Hi everybody! yesterday I became my brandnew N500 4233-5FG notebook. Here are the specifications: http://www5.pc.ibm.com/europe/products.nsf/$wwwPartNumLookup/_NS75Fxx?open&OpenDocument&epi=w​eb_express A friend of mine and I tried to install Win XP,

  • Help using file sharing with different users accounts on same Macbook

    Hi, I just wanted a little help using the file sharing option. My wife and I had different users accounts on the same MacBook, but when I am trying to share my baby's picture from my documents folder for my wife to have the same picture, I can't find

  • DVD Menu play all & chapter selections

    I have a client requesting something that he has done with Adobe's DVD authoring system that I don't believe Studio Pro can do, but thought I would put it out there and maybe someone else has figured it out: He wants 2 menus (MAIN & SUB MENU) - Main

  • Get computer login names

    Hey Everyone, I started at a new company recently and there are a ton of computers that are not associated to users.  Basically I don't have a way of knowing which computer belongs to whom unless I check each computer.  I need a script that checks th