UWL showing multiple userids

Hi,
We have a consumer portal connecting to multiple backend systems and multiple BI portal systems. When I try to forward a workitem and search for a userid, it shows 2-3 entries with the same userid. I am not sure why it's showing multiple entries with the same userid, though userid is unique. Is it picking up the userid from all the systems it's trying to connect?
Please let me know with helpful answers/suggestions.
Thanks in advance
Regards

Can anyone suggest me on this pls.
will for helpfull ans.
Thanks in advance

Similar Messages

  • PO Values showing multiple time in Report

    Hello Expert,
    We had one report called PO Status report it is fetching data from ME23N from ECC,when i am checking the report in BW the report PO showing multiple values for different different invoices which should not be the case it should be same,please help me to fix the issue.can i change something in reporting level
    Thanks and Regards,
    Jyoti

    Hello All,
    Thanks for the reply i had cheked by putting PO number and Invoice number next to next in the report but the total amount of the value is coming more than the line items in the Purchase order in ECC.I would like to give example of the issue like for X PO there are 3 line items and 5 invoices the total sum of the line items for the PO is for ex 3000 with  5 invoices.Expected results in BW is the sum of the line items=(PO Amount),but in report it is taking the invoices value and PO value for each invoices and adding all the invoices PO amount as in our case 15000 which is incorrect.Please help
    Thanks and Regards,
    Jyoti

  • Data in the cube is showing multiple entries when compared with ODS

    Hello BW Gurus,
    We have a waste report in production planning on Cube and ODS separately. The same info package loads both targets (which means same infosource) but when we run a report on Cube, the records are showing multiple entries (i.e. Key Figures are not matching when compared to ODS) where as the ODS records are showing correctly as it was in R/3. There are totally 6 key figures out of which 4 pulled from R/3 and 2 are populated in BW.
    An Example:
    Waste report in PP run for plant 1000 for 12/2005 and process order 123456. The operational scrap should be 2.46% and the component scrap should be 3.00% for material 10000000. The report is showing 7.87% for planned operational waste % and 9.6% for planned component waste %. These values are not correct. The ODS values for order 123456 matched the data in R/3 for component and operational scrap.
    There is a Start routine to the ODS and also to the cube. I am not good at ABAP so requesting your Help.
    Here is the ODS Code:
    tables: /BI0/PPRODORDER.
    loop at data_package.
    select single COORD_TYPE
    PRODVERS
    into (/BI0/PPRODORDER-COORD_TYPE,
    /BI0/PPRODORDER-PRODVERS)
    from /BI0/PPRODORDER
    where PRODORDER = data_package-PRODORDER
    and OBJVERS = 'A'.
    if sy-subrc = 0.
    if /BI0/PPRODORDER-COORD_TYPE = 'XXXX'
    or /BI0/PPRODORDER-COORD_TYPE = 'YYYY'.
    data_package-PRODVERS = space.
    else.
    data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
    endif.
    endif.
    if data_package-calday = space
    or data_package-calday = '00000000'.
    if data_package-TGTCONSQTY NE 0.
    data_package-calday = data_package-ACTRELDATE.
    endif.
    endif.
    modify data_package.
    endloop.
    Here is Cube Code:
    tables: /BI0/PPRODORDER,
    /BIC/ODS.
    TYPES:
    BEGIN OF ys_mat_unit,
    material TYPE /bi0/oimaterial,
    mat_unit TYPE /bi0/oimat_unit,
    numerator TYPE /bi0/oinumerator,
    denomintr TYPE /bi0/oidenomintr,
    END OF ys_mat_unit.
    DATA:
    l_s_mat_unit TYPE ys_mat_unit,
    e_factor type p decimals 5.
    loop at data_package.
    select single COORD_TYPE
    PRODVERS
    into (/BI0/PPRODORDER-COORD_TYPE,
    /BI0/PPRODORDER-PRODVERS)
    from /BI0/PPRODORDER
    where PRODORDER = data_package-PRODORDER
    and OBJVERS = 'A'.
    if sy-subrc = 0.
    if /BI0/PPRODORDER-COORD_TYPE = 'XXX'
    or /BI0/PPRODORDER-COORD_TYPE = 'YYY'.
    data_package-PRODVERS = space.
    else.
    data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
    endif.
    endif.
    if data_package-calday = space
    or data_package-calday = '00000000'.
    if data_package-TGTCONSQTY NE 0.
    data_package-calday = data_package-ACTRELDATE.
    endif.
    endif.
    data_package-agsu = 'GSU'.
    data_package-agsu_qty = 0.
    select single gr_qty
    base_uom
    into (/BIC/ODS-gr_qty,
    /BIC/ODS-base_uom)
    from /BIC/ODS
    where prodorder = data_package-prodorder
    and material = data_package-material.
    if sy-subrc = 0.
    if /BIC/ODS-base_uom = 'GSU'.
    data_package-agsu_qty = /BIC/ODS-gr_qty.
    else.
    SELECT SINGLE * FROM /bi0/pmat_unit
    INTO CORRESPONDING FIELDS OF l_s_mat_unit
    WHERE material = data_package-material
    AND mat_unit = 'GSU'
    AND objvers = 'A'.
    IF sy-subrc = 0.
    IF l_s_mat_unit-denomintr <> 0.
    e_factor = l_s_mat_unit-denomintr /
    l_s_mat_unit-numerator.
    multiply /BIC/ODS-gr_qty by e_factor.
    data_package-agsu_qty = /BIC/ODS-gr_qty.
    ENDIF.
    else.
    CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
    EXPORTING
    INPUT = /BIC/ODS-gr_qty
    NO_TYPE_CHECK = 'X'
    ROUND_SIGN = ' '
    UNIT_IN = /BIC/ODS-base_uom
    UNIT_OUT = 'GSU'
    IMPORTING
    OUTPUT = DATA_PACKAGE-gsu_qty
    EXCEPTIONS
    CONVERSION_NOT_FOUND = 1
    DIVISION_BY_ZERO = 2
    INPUT_INVALID = 3
    OUTPUT_INVALID = 4
    OVERFLOW = 5
    TYPE_INVALID = 6
    UNITS_MISSING = 7
    UNIT_IN_NOT_FOUND = 8
    UNIT_OUT_NOT_FOUND = 9
    OTHERS = 10.
    endif.
    endif.
    endif.
    modify data_package.
    endloop.
    some how the AGSU qyt is not populating in the cube and when I dbug the code, I could see a clean record in the internal table but not in the cube.
    your suggestion and solutions would be highly appreciated.
    thanks,
    Swathi.

    Hi Swathi
    In ODs we have option of overwriting and addition however in Cube we have only adition.Thats why you are getting multiple enteries.
    If you are running daily full load on the cube then please delete the earlier requests.
    So at one point of time there should be only one full load request in cube. Hope this will solve your problem.
    Regards,
    Monika

  • AssignedTo showing multiple times on report

    I was tasked with creating some reports from Service Manager using the cubes.  My boss wanted a report that showed all active tickets, showing from high to low the analyst, then the category, then the user.  
    I used the following Fields:
    IncidentStatusValue in the Column Label
    IncidentDimCount in the Values
    AssignedToUserDim.DisplayName, IncidentClassificationValue, and AffectedUserDim.DisplayName in the Row Labels.
    The report looks exactly as I want it to.  
    The problem is that the data is wrong on several levels.
    Issue 1:  It shows multiple entries for the AssignedToUserDim.DisplayName 
    I changed the names, but if I click on the number 1 next to Joe User(Affected User) for either Analyst1 or 2 a tab open with IR48005.  Basically the two analyst both show an active ticket assigned to them, when only one of them should.
    Issue 2: The Grand Total that is calculated by the PivotTable is incorrect.  I copy and paste the same numbers into the cells next to the PivotTable and the total is something completely different. 
    The weird thing about this also is that when I did this 20 minutes ago before writing this post, the Autocalc showed 130.  
    The first issue is more important than the second issue.  It is not just this report and I have tried using many different values only to get the same duplication.  Its almost like the DataWarehouse is not actually deleting the previous AssignedTo
    user.  The history in the actual ticket shows that it should be, but the reports show something different.  
    This then throws off every report I try to make.  I made one for totals tickets per analyst and I noticed that I got credit for closed tickets that I had previously reassigned, as did the person who the ticket was reassigned to.  
    Can anyone offer any suggestions?
    Thanks.
    Matt 

    Unfortunately no. But I think I found a pattern in regards to this: it seems the current assigned to user is always the one listed the last.
    I guess this is because the stored procedure behind the AssignedToUserDim doesn't filter if the relationship is still active. This is quite easy to "reproduce" via PowerShell.
    Lets say you have an IR with ID IR1234 which has been re-assigned multiple times.
    If you run this small query now in PowerShell you'll see that all the AssignedToUser relationships still exists, but only one of them has the property "IsDeleted" set to False.
    Import-Module SMlets
    $IRO = Get-SCSMObject -Class (Get-SCSMClass System.WorkItem.Incident$) -Filter "Id -eq IR1234"
    Get-SCSMRelationshipObject -BySource $IRO | where {$_.RelationshipID -eq "15e577a3-6bf9-6713-4eac-ba5a5b7c4722"}
    So, in the DB those AssignedToUser relationships (actually it applies to all relationships) won't be "overwritten" or the old one deleted as soon as you re-assign an incident for example. Instead, new relationshipobjects will be generated and the old ones
    changes the "IsDeleted" attribute to True.
    Perhaps it would be possible to create a new Dim for the Data Warehouse, re-use the stored procedure for the AssignedToUserDim and modify it slightly to filter only for the active AssignedToUser relationship. Then you could use your newly created dim to
    display the current Assigned To User. I haven't tested this though, probably it's more complex than I assume :)
    Cheers
    Alex

  • How can I get iTunes to not show multiples of the same podcasts in my iPhone?

    Not all, but some have the same episdoe multiple times. Every sync seems to add another one of them. This happens, through iTunes, in my iPhone 5. In iTunes, I show that I have 69 unplayed podcasts. When I sync, I can see it got to 68 for my phone (likely one is in the cloud), but then it flashes and now it shows 113. When I look at the unplayed podcasts, I show that some of them have as many as 17 of the same episode in my phone. When I go to my phone's podcast app, I see it once.
    It doesn't happen to all episodes, and I can't find anything in common between those that it does happen to. The newest update to the podcast app and itunes brought back some features that have been missing for over a year, but this is getting weird.
    iTunes 11.2.1 (1)
    IOS 7.1.1

    After a couple of days, I'm noticing that the repeat(ing) offenders have more than 10 episodes, and seem to keep repeating them every time I sync.
    They only show once in my phone and in the iTunes Podcasts, but through iTunes and looking at what's in my phone is when I see the repeats.
    Even after I've marked a podcast as played, and deleted it from within my phone, as well as telling iTunes to delete the played episodes, it still shows multiples of the played episodes.
    There doesn't seem to be any rhyme or reason to it either. They aren't the newest ones either.

  • How do I show multiple rollover images on a page inserted dynamically (pulled out of a sql database

    How do I show multiple rollover images on a page inserted dynamically (pulled out of a sql database table) using Dreamweaver’s Repeat Region. Example: I have different products each one associated (through their productID) with two images (one that’s showing in the page and one for the rollover effect) that are pulled from a database using Dreamweaver’s Recordset. So I want to end up with a page containing row after row of images(one for every product).When moused over each image will reveal the second (rollover) image for the same product which in turn can be a link(the image itself ) that when clicked leads to a detailed page with more information about the product the image is associated with. To show row after row with images for the different products in the database table I am using Dreamweaver’s Insert Rollover Image command and then the  Repeat Region – I have no problem to complete the steps, to insert the image and the rollover one at once and set the paths so they are pulled dynamically depending on the productID they are associated with .I have also no problem to apply the Repeat Region so not only the first image associated with the first product in the table is shown but all of them-a routine and standard procedure when using the Repeat Region to dynamically generate and display multiple rows of data. However, when I preview the page the rollover effect is lost –the images are shown but when moused over the second  image does not  show. The problem is caused when the Repeat Region is applied-once again I am allowed to apply it but the rollover stops working, a kind of interference. ANY SOLLUTION PLEASE, ANY WORK AROUND.

    I gotta tell you, using multiple images for rollover effects is going to be a big challenge in your dynamic scenario. 
    If this were my product page, I would use thumbnails with a bit of CSS opacity or filters to desaturate and make them full opacity/color on mouse over.  Nice effect with much less bandwidth. Easily done globally with CSS code.
    Two examples:
    http://alt-web.com/GALLERY/GalleryTest.php
    http://alt-web.com/TEMPLATES/CSS-Semi-liq-photo-sheet.shtml
    Nancy O.

  • How to show multiple messages for a single exception

    hi
    Please consider this example application created using JDeveloper 11.1.1.3.0
    at http://www.consideringred.com/files/oracle/2010/MultipleMessagesExceptionApp-v0.01.zip
    It has a class extending DCErrorHandlerImpl configured as ErrorHandlerClass in DataBindings.cpx .
    Running the page and entering a value starting with "err" will result in an exception being thrown and multiple messages shown.
    See the screencast at http://screencast.com/t/zOmEOzP4jmQ
    To get multiple messages for a single exception the MyDCErrorHandler class is implemented like
    public class MyDCErrorHandler
      extends DCErrorHandlerImpl
      public MyDCErrorHandler()
        super(true);
      @Override
      public void reportException(DCBindingContainer pDCBindingContainer,
        Exception pException)
        if (pException instanceof JboException)
          Throwable vCause = pException.getCause();
          if (vCause instanceof MyMultiMessageException)
            reportMyMultiMessageException(pDCBindingContainer,
              (MyMultiMessageException)vCause);
            return;
        super.reportException(pDCBindingContainer, pException);
      public void reportMyMultiMessageException(DCBindingContainer pDCBindingContainer,
        MyMultiMessageException pException)
        String vMessage = pException.getMessage();
        reportException(pDCBindingContainer, new Exception(vMessage));
        List<String> vMessages = pException.getMessages();
        for (String vOneMessage : vMessages)
          reportException(pDCBindingContainer, new Exception(vOneMessage));
    }I wonder if calling reportException() multiple times is really the way to go here?
    question:
    - (q1) What would be the preferred use of the DCErrorHandlerImpl API to show multiple messages for a single exception?
    many thanks
    Jan Vervecken

    fyi
    Looks like using MultipleMessagesExceptionApp-v0.01.zip in JDeveloper 11.1.1.2.0 (11.1.1.2.36.55.36) results in a different behaviour compared to when used in JDeveloper 11.1.1.3.0 (11.1.1.3.37.56.60)
    see http://www.consideringred.com/files/oracle/img/2010/MultipleMessages-111130versus111120.png
    When using JDeveloper 11.1.1.2.0 each exception seems to result in two messages where there is only one message (as intended/expected) per exception when using JDeveloper 11.1.1.3.0 .
    (Could be somehow related to the question in forum thread "multiple callbacks to DCErrorHandlerImpl".)
    But, question (q1) remains and is still about JDeveloper 11.1.1.3.0 .
    regards
    Jan

  • Show Multiple Filter Values in a Web Template

    Hello
    I have a Web Template based on a query. On this Web Template I can set multiple single filter values for one characteristic.
    Now I want to show these filtered values for this characteristic on the web item. This is possible for ONE filter value when you use the XML path (f.e. DATA_PROVIDER:DP1?/BICS_VIEW/SELECTION_STATE/SELECTION/CHARACTERISTICS/CHARACTERISTIC[@name=&apos;CHARNAME&apos;]/SELECTIONS/SELECTION[1]/MEMBER/@text)
    Is there a possibility to show MULTIPLE filter values for one characteristics in a text or input field? I don't want to use a drop down box or the info field.
    Kind Regards,
    Andreas

    HI,
    the best ay to do is create a query with same variable parameters as of the main query and place filter Characters on rows.
    Use this query in one analysis item and use it on top row of the template as Filters information.This will give better look and feel as well solve your requirement

  • How to Handle and show multiple pushpin imgaes on the map based on the requirement at different coordintes?

    How to Handle and show multiple pushpin imgaes on the map based on the requirement at different coordintes?
    I have multiple images in  my App folder. I want to use and show those images dynamically  in windows phone 8 map application

    There are a lot of different ways to do this. One simple method is to use a switch statement when creating your pushpins and based on some property in your data, select the icon you want to use and create your pushpin accordingly.
    http://rbrundritt.wordpress.com

  • Client Hardware inventory showing multiple errors

    We have some client which are not sending the operating system Build No.
    while looking in the inventor logs it show multiple errors.Complete inventory log attached below.
    Can anybody help to understand the issue.
    Inventory: Delta report without a previous Full report; will do a Full report.    InventoryAgent    8/7/2013 3:10:58 PM    7668 (0x1DF4)
    Inventory: Action=Hardware ReportType=Full    InventoryAgent    8/7/2013 3:10:58 PM    7668 (0x1DF4)
    Inventory: Initialization completed in 0.062 seconds    InventoryAgent    8/7/2013 3:10:58 PM    7668 (0x1DF4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ApplicationID, Description, EvaluationEndDate, GracePeriodRemaining, ID, LicenseStatus, MachineURL, Name, OfflineInstallationId, PartialProductKey, ProcessorURL, ProductKeyID,
    ProductKeyURL, UseLicenseURL FROM SoftwareLicensingProduct; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:10:58 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, BinFileVersion, BinProductVersion, Description, FilePropertiesHash, FilePropertiesHashEx, FileSize, FileVersion, Language, ParentName, Product, ProductCode, ProductVersion,
    Publisher, ShortcutKey, ShortcutName, ShortcutType, TargetExecutable FROM SMS_SoftwareShortcut; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:00 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, Version FROM Win32_WindowsUpdateAgentVersion; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:01 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DisplayName, InstallDate, ProdID, Publisher, Version FROM Win32Reg_AddRemovePrograms64; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:01 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\Microsoft\appvirt\client; Query = SELECT __CLASS, __PATH, __RELPATH, CachedLaunchSize, CachedPercentage, CachedSize, LaunchSize, Name, PackageGUID, TotalSize, Version, VersionGUID FROM Package; Timeout = 600 secs.  
     InventoryAgent    8/7/2013 3:11:02 PM    8676 (0x21E4)
    Failed to get IWbemService Ptr for \\localhost\root\Microsoft\appvirt\client Namespace: 8004100E    InventoryAgent    8/7/2013 3:11:02 PM    8676 (0x21E4)
    Failed to enumerate instances of Package: 8004100E    InventoryAgent    8/7/2013 3:11:02 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, DriverName, HardwareVersion, Index, Manufacturer, Name, Status FROM Win32_SCSIController; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:02 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Caption, ClassGuid, ConfigManagerErrorCode, ConfigManagerUserConfig, CreationClassName, Description, DeviceID, Manufacturer, Name, PNPDeviceID, Service, Status, SystemCreationClassName,
    SystemName FROM Win32_USBDevice; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:02 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\Nap; Query = SELECT __CLASS, __PATH, __RELPATH, description, fixupState, friendlyName, id, infoClsid, isBound, percentage, registrationDate, vendorName, version FROM NAP_SystemHealthAgent; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:02 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Description, DeviceID, PrimaryBusType, RevisionNumber, SecondaryBusType, Status, StatusInfo, SystemName FROM Win32_MotherboardDevice; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Description, Manufacturer, Name, Status FROM Win32_NetworkClient; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:03 PM    8676
    (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Access, Bootable, BootPartition, Description, DeviceID, Name, PrimaryPartition, Size, SystemName, Type FROM Win32_DiskPartition; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ConfigManagerErrorCode, DeviceID, ErrorDescription, LastErrorCode, Name, PNPDeviceID FROM Win32_PnpEntity; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, MediaType, Name, Status FROM Win32_TapeDrive; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:03 PM  
     8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ExpirationDate, IssueDate, KeyPackId, LicenseId, LicenseStatus, sHardwareId, sIssuedToComputer, sIssuedToUser FROM Win32_TSIssuedLicense; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Class "Win32_TSIssuedLicense" does not exist out.    InventoryAgent    8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, BinFileVersion, BinProductVersion, CLSID, Description, FileName, FilePropertiesHash, FilePropertiesHashEx, FileVersion, Product, ProductVersion, Publisher, Version FROM SMS_BrowserHelperObject;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, Drive, Manufacturer, MediaType, Name, SCSITargetId, SystemName, VolumeName FROM Win32_CDROMDrive; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:03 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\ccm\SoftwareMeteringAgent; Query = SELECT __CLASS, __PATH, __RELPATH, AdditionalProductCodes, CompanyName, ExplorerFileName, FileDescription, FilePropertiesHash, FileSize, FileVersion, FolderPath, LastUsedTime, LastUserName,
    msiDisplayName, msiPublisher, msiVersion, OriginalFileName, ProductCode, ProductLanguage, ProductName, ProductVersion, SoftwarePropertiesHash FROM CCM_RecentlyUsedApps; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:04
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, ChannelCode, ChannelID, MPC, ProductCode, SoftwareCode FROM SMS_InstalledSoftwareMS; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:04
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, BootDevice, BuildNumber, Caption, CountryCode, CSDVersion, Description, InstallDate, LastBootUpTime, Locale, Manufacturer, Name, Organization, OSLanguage, RegisteredUser, SystemDirectory,
    TotalSwapSpaceSize, TotalVirtualMemorySize, TotalVisibleMemorySize, Version, WindowsDirectory FROM Win32_OperatingSystem; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:18 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DisplayName, Name, PathName, ServiceType, StartMode, StartName, Status FROM Win32_Service; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:18
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, Index, InterfaceType, Manufacturer, MediaType, Model, Name, Partitions, PNPDeviceID, SCSIBus, SCSILogicalUnit, SCSIPort, SCSITargetId, Size,
    SystemName FROM Win32_DiskDrive; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AvailableLicenses, Description, IssuedLicenses, KeyPackId, KeyPackType, ProductType, ProductVersion, TotalLicenses FROM Win32_TSLicenseKeyPack; Timeout = 600 secs.  
     InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Class "Win32_TSLicenseKeyPack" does not exist out.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\CIMv2\Security\MicrosoftTpm; Query = SELECT __CLASS, __PATH, __RELPATH, ManufacturerId, ManufacturerVersionInfo, SpecVersion FROM Win32_Tpm; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DefaultIPGateway, DHCPEnabled, DHCPServer, DNSDomain, DNSHostName, Index, IPAddress, IPEnabled, IPSubnet, MACAddress, ServiceName FROM Win32_NetworkAdapterConfiguration; Timeout
    = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DeviceID, DriveLetter, ProtectionStatus FROM Bitlocker; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Skipping Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, InstanceKey, PhysicalHostName, PhysicalHostNameFullyQualified FROM Win32Reg_SMSGuestVirtualMachine, we're running on wow64 and attempting to force enumerating 32-bit
    data.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = root\ccm; Query = SELECT __CLASS, __PATH, __RELPATH, DisplayName, Name, Version FROM CCM_InstalledComponent; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Description, DeviceID, DisplayType, MonitorManufacturer, MonitorType, Name, PixelsPerXLogicalInch, PixelsPerYLogicalInch, ScreenHeight, ScreenWidth FROM Win32_DesktopMonitor;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\Microsoft\appvirt\client; Query = SELECT __CLASS, __PATH, __RELPATH, LastLaunchOnSystem, Name, PackageGUID, Version FROM Application; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20
    PM    8676 (0x21E4)
    Failed to get IWbemService Ptr for \\localhost\root\Microsoft\appvirt\client Namespace: 8004100E    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Failed to enumerate instances of Application: 8004100E    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\vm\VirtualServer; Query = SELECT __CLASS, __PATH, __RELPATH, Name FROM VirtualMachine; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Failed to get IWbemService Ptr for \\localhost\root\vm\VirtualServer Namespace: 8004100E    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Failed to enumerate instances of VirtualMachine: 8004100E    InventoryAgent    8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, InstallDate, Manufacturer, Name, PNPDeviceID, ProductName, Status FROM Win32_SoundDevice; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:20 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, CompatibleIDs, DeviceID, HardwareIDs, IsPnP, Name FROM CCM_SystemDevices; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:20 PM  
     8676 (0x21E4)
    Collection: Namespace = \\.\root\ccm\VulnerabilityAssessment; Query = SELECT __CLASS, __PATH, __RELPATH, Tool, VulnerabilityID, VulnerabilityScore FROM Win32_Vulnerability; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:21
    PM    8676 (0x21E4)
    Collection: Class "Win32_Vulnerability" does not exist out.    InventoryAgent    8/7/2013 3:11:21 PM    8676 (0x21E4)
    Collection: Namespace = root\SmsDm; Query = SELECT __CLASS, __PATH, __RELPATH, DeviceOEMInfo, DeviceType, InstalledClientID, InstalledClientServer, InstalledClientVersion, LastSyncTime, OS_AdditionalInfo, OS_Build, OS_Major, OS_Minor, OS_Platform, ProcessorArchitecture,
    ProcessorLevel, ProcessorRevision FROM SMS_ActiveSyncConnectedDevice; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:21 PM    8676 (0x21E4)
    Collection: Class "SMS_ActiveSyncConnectedDevice" does not exist out.    InventoryAgent    8/7/2013 3:11:21 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, SecurityLogStartDate, TopConsoleUser, TotalConsoleTime, TotalConsoleUsers, TotalSecurityLogTime FROM SMS_SystemConsoleUsage; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:21 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AdapterCompatibility, AdapterDACType, AdapterRAM, CurrentBitsPerPixel, CurrentHorizontalResolution, CurrentNumberOfColumns, CurrentNumberOfRows, CurrentRefreshRate, CurrentScanMode,
    CurrentVerticalResolution, Description, DeviceID, DriverDate, DriverVersion, InstalledDisplayDrivers, Name, NumberOfColorPlanes, SpecificationVersion, VideoMode, VideoModeDescription, VideoProcessor FROM Win32_VideoController; Timeout = 600 secs.  
     InventoryAgent    8/7/2013 3:11:22 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, Name FROM Win32_USBController; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:22 PM    8676
    (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AdapterType, Description, DeviceID, MACAddress, Manufacturer, Name, ProductName, ServiceName, Status FROM Win32_NetworkAdapter; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:22 PM    8676 (0x21E4)
    Collection: Namespace = root\SmsDm; Query = SELECT __CLASS, __PATH, __RELPATH, LastSyncTime, MajorVersion, MinorVersion FROM SMS_ActiveSyncService; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23 PM    8676
    (0x21E4)
    Collection: Class "SMS_ActiveSyncService" does not exist out.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AuthorizationName, BinPath, DatePosted, DateRevised, ID, InfoPath, Language, LocaleID, Product, QNumbers, RebootType, ScanAgent, Severity, Status, Summary, TimeApplied, TimeAuthorized,
    TimeDetected, Title, Type, UnattendSyntax FROM Win32_PatchState; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Class "Win32_PatchState" does not exist out.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, Manufacturer, Name, Status FROM Win32_IDEController; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23
    PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ChassisTypes, Manufacturer, Model, SerialNumber, SMBIOSAssetTag, Tag FROM Win32_SystemEnclosure; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ID, Language, ProductID, QNumbers, RevisionNumber, Status, TimeDetected, Title, UpdateID FROM Win32_PatchState_Extended; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Class "Win32_PatchState_Extended" does not exist out.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, InstanceKey, PhysicalHostName, PhysicalHostNameFullyQualified FROM Win32Reg_SMSGuestVirtualMachine64; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:23 PM    8676 (0x21E4)
    Update cached IWbemService pointer to namespace: \\.\root\cimv2    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Name, TotalPageFileSpace, TotalPhysicalMemory, TotalVirtualMemory FROM CCM_LogicalMemoryConfiguration; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\Nap; Query = SELECT __CLASS, __PATH, __RELPATH, description, fixupURL, name, napEnabled, napProtocolVersion, systemIsolationState FROM NAP_Client; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, CertificateSelectionCriteria, CertificateStore, ClientAlwaysOnInternet, HttpsStateFlags, InstanceKey, InternetMPHostName, SelectFirstCertificate FROM Win32Reg_SMSAdvancedClientSSLConfiguration;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, AddressWidth, BrandID, CPUHash, CPUKey, DataWidth, DeviceID, Family, Is64Bit, IsMobile, IsMulticore, Manufacturer, MaxClockSpeed, Name, NormSpeed, PCache, ProcessorId, ProcessorType,
    Revision, SocketDesignation, Status, SystemName, Version FROM SMS_Processor; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:23 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, CurrentTimeZone, Description, Domain, DomainRole, Manufacturer, Model, Name, NumberOfProcessors, Roles, Status, SystemType, UserName FROM Win32_ComputerSystem; Timeout = 600
    secs.    InventoryAgent    8/7/2013 3:11:24 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, BinFileVersion, BinProductVersion, Description, FileName, FilePropertiesHash, FilePropertiesHashEx, FileVersion, Location, Product, ProductVersion, Publisher, StartupType,
    StartupValue FROM SMS_AutoStartSoftware; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:24 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, BuildNumber, Description, Manufacturer, Name, ReleaseDate, SerialNumber, SMBIOSBIOSVersion, SoftwareElementID, SoftwareElementState, TargetOperatingSystem, Version FROM Win32_BIOS;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:24 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Capabilities, DeviceID, Name, Status FROM Win32_ParallelPort; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:24 PM  
     8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, BinFileVersion, BinProductVersion, Description, ExecutableName, FilePropertiesHash, FilePropertiesHashEx, FileSize, FileVersion, HasPatchAdded, InstalledFilePath, IsSystemFile,
    IsVitalFile, Language, Product, ProductCode, ProductVersion, Publisher FROM SMS_InstalledExecutable; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:24 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, AnswerMode, DeviceID, DeviceType, Index, MaxBaudRateToPhone, MaxBaudRateToSerialPort, Model, Name, Properties, Status, StringFormat, SystemName, VoiceSwitchFeature FROM Win32_POTSModem;
    Timeout = 600 secs.    InventoryAgent    8/7/2013 3:11:59 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\ccm\VulnerabilityAssessment; Query = SELECT __CLASS, __PATH, __RELPATH, DetailKey, DetailScore, DetailValue1, DetailValue2, DetailValue3, Tool, VulnerabilityID FROM Win32_Vulnerability_Detail; Timeout = 600 secs.  
     InventoryAgent    8/7/2013 3:11:59 PM    8676 (0x21E4)
    Collection: Class "Win32_Vulnerability_Detail" does not exist out.    InventoryAgent    8/7/2013 3:11:59 PM    8676 (0x21E4)
    Collection: Namespace = \\localhost\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DisplayName, InstallDate, ProdID, Publisher, Version FROM Win32Reg_AddRemovePrograms; Timeout = 600 secs.    InventoryAgent    8/7/2013
    3:11:59 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ID, Name, ParentID FROM Win32_ServerComponent; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Class "Win32_ServerComponent" does not exist out.    InventoryAgent    8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, AMT, AMTApps, BiosVersion, BuildNumber, DeviceID, Flash, LegacyMode, Netstack, ProvisionMode, ProvisionState, RecoveryBuildNum, RecoveryVersion, Sku, TLSMode, VendorID, ZTCEnabled
    FROM SMS_AMTObject; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, ClientMachineID, IsKeyManagementServiceMachine, KeyManagementServiceCurrentCount, KeyManagementServiceMachine, KeyManagementServiceProductKeyID, PolicyCacheRefreshRequired, RequiredClientCount,
    Version, VLActivationInterval, VLRenewalInterval FROM SoftwareLicensingService; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, ARPDisplayName, CM_DSLID, EvidenceSource, InstallDate, InstallDirectoryValidation, InstalledLocation, InstallSource, InstallType, Language, LocalPackage, ProductCode, ProductID,
    ProductName, ProductVersion, Publisher, RegisteredUser, ServicePack, SoftwareCode, SoftwarePropertiesHash, SoftwarePropertiesHashEx, UninstallString, UpgradeCode, VersionMajor, VersionMinor FROM SMS_InstalledSoftware; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:12:01 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, LastUpdateTime, PackageID, PackageVer, Type FROM Win32_ScanPackageVersion; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:12 PM  
     8676 (0x21E4)
    Collection: Class "Win32_ScanPackageVersion" does not exist out.    InventoryAgent    8/7/2013 3:12:12 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, LastConsoleUse, NumberOfConsoleLogons, SystemConsoleUser, TotalUserConsoleMinutes FROM SMS_SystemConsoleUser; Timeout = 600 secs.    InventoryAgent  
     8/7/2013 3:12:12 PM    8676 (0x21E4)
    Collection: Namespace = \\.\root\ccm\invagt; Query = SELECT __CLASS, __PATH, __RELPATH, Name, SMSID, Domain, SystemRole, SystemType, LocalDateTime FROM CCM_System; Timeout = 600 secs.    InventoryAgent    8/7/2013 3:12:12 PM  
     8676 (0x21E4)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Compressed, Description, DeviceID, DriveType, FileSystem, FreeSpace, Name, Size, SystemName, VolumeName, VolumeSerialNumber FROM SMS_LogicalDisk; Timeout =
    600 secs.    InventoryAgent    8/7/2013 3:12:12 PM    8676 (0x21E4)
    Collection: 50/64 inventory data items successfully inventoried.    InventoryAgent    8/7/2013 3:12:13 PM    8676 (0x21E4)
    Inventory: Collection Task completed in 74.116 seconds    InventoryAgent    8/7/2013 3:12:13 PM    8676 (0x21E4)
    Inventory: 14 Collection Task(s) failed.    InventoryAgent    8/7/2013 3:12:13 PM    8676 (0x21E4)
    Inventory: Temp report = C:\Windows\SysWOW64\CCM\Inventory\Temp\b10dd5e0-1535-409c-afa0-77a0cd56c8fe.xml    InventoryAgent    8/7/2013 3:12:13 PM    8676 (0x21E4)
    Inventory: Starting reporting task.    InventoryAgent    8/7/2013 3:12:13 PM    10060 (0x274C)
    Reporting: 3777 report entries created.    InventoryAgent    8/7/2013 3:12:14 PM    10060 (0x274C)
    Inventory: Reporting Task completed in 1.170 seconds    InventoryAgent    8/7/2013 3:12:14 PM    10060 (0x274C)
    Inventory: Successfully sent report. Destination:mp:MP_HinvEndpoint, ID: {3593753E-6C4D-47D1-9EAD-048B981804BD}, Timeout: 80640 minutes MsgMode: Signed, Not Encrypted    InventoryAgent    8/7/2013 3:12:14 PM    10060
    (0x274C)
    Inventory: Cycle completed in 134.051 seconds    InventoryAgent    8/7/2013 3:13:12 PM    10060 (0x274C)
    Inventory: Action completed.    InventoryAgent    8/7/2013 3:13:12 PM    10060 (0x274C)
    Inventory: ************************ End of message processing. ************************    InventoryAgent    8/7/2013 3:13:12 PM    10060 (0x274C)
    Thanks

    Lines like this:
    Failed to get IWbemService Ptr for \\localhost\root\Microsoft\appvirt\client
    simply means that for that particular client, that wmi namespace does not exist.  I suspect that namespace does not exist on that particular client because for the specific client, it does not have the APPv client.
    or like this: Failed to get IWbemService Ptr for \\localhost\root\vm\VirtualServer    means that for that particular client, it does not have Microsoft VirtualServer installed (which you MIGHT have on a server, maybe).
    anything like that can be easily ignored and explained.  the only reason to care about those would be if you absolutely 100% KNOW that the namespace root\vm\virtualserver does exist on that client, and it does have instances, and then you are wondering
    why it's not reporting.  then maybe you would be concerned.  Otherwise, your log file looks perfectly fine.
    So; what problem are you trying to solve?
    Standardize. Simplify. Automate.

  • New tab page shows multiple sites from the same domain

    For example in the grid of sites it may show multiple pages from e.g. stackoverflow.com instead of just the single base domain stackoverflow.com (or alternatively the most used of the pages). Is there any way to limit each domain to a single page in the quick links tableau? In my opinion having multiple pages is not at all a navigational aid as sites generally provide their own internal navigation.

    This allows you to group the tabs as well [https://addons.mozilla.org/en-us/firefox/addon/new-tab-plus/ New Tab Plus] however it is preliminary.

  • Show multiple frames in a single SWFLoader

    Hello,
    I am loading a document contained in an .swf file, each page is in a single frame, to an SWFLoader. The SWFLoader shows a single frame at a time.
    I would like to show multiple frames at once and be able to manipulate them together (scaling, positioning).
    I know how to do it with a single frame easily, but is it possible with 2 or more frames?
    Thank you in advance,
    Mr Cartman.

    A SWF can only show one frame at a time.

  • Show multiple copys of file

    My Lumia 620,whenever i copied any file oe download it show multiple copy and if i delete one if it then it,s not runing..
    i refresh my mobile also..
    it ist show multiple file in during laptop connection.only in my Mobile it showing multiple copies
    Solved!
    Go to Solution.

    i had the same issue. just reformated my device.
    somehow my device has some corrupted files and started doing this with my music files, and when i tried to play that music file, it wouldnt play, said incompatible. so then try to delete the file from the device, reboot, re-add it, and then it would just show multiple copies, etc.
    only thing that fixed this for me was to hard format my device and start over from a backup.
    if you decide to do this, then be sure you do a back up of all your data first.

  • How to show multiple records in JDeveloper automatically

    Hi, you guys,
    May I ask you how to show multiple records, say consecutive three records, of a View object in JDeveloper?
    I know that we can just drag and drop a view object as a child (Table) of a scrollPane.
    Are there any other approaches?
    Thanks a lot for your time.
    damon

    Thanks for your reply.
    You are right.
    Table binding is the best solution for that.
    But in my mind, a record in a table is always shown in one row (or one line), am I right?
    If so, it is not convient to show records with multitple columns.
    Let's say, there are 20 columns to show for each record. Then we should display a record in, say 3 lines.
    How can we do that?
    Are there any suggestions?
    I am thinking that maybe I can use secondary row set iterators for that since we can create two or more row set iterators for the same view object.
    Assume I want to show three consecutive records. I can use attribute binding to show the current record in three lines by dragging attributes one by one from Data Control Palette to Design Window as Child | TextField;
    But I do not know how to use a secondary row set iterator for the next record. Where shall I create a secondary row set ietrator such that I can use it to create and synchronize the bindings.
    Thanks a lot
    Damon
    Message was edited by:
    user599641

  • How do I force smart mailbox to only show me mail from one mailbox while also showing multiple senders?

    How do I force smart mailbox to only show me mail from one mailbox while also showing multiple senders?

    It would help to post what you've tried. It does, indeed, appear that -h is the switch, and the man includes several examples, so if you've followed the examples and it's not working then that hints that you should pass it back to Apple.
    You also don't say how you're implementing your change. Are you invoking slapd manually, or are you editing /System/Library/LaunchDaemons/org.openldap.slapd.plist ?
    You should be doing the latter, and I'd expect to see something like this:
    <array>
      <string>/usr/libexec/slapd</string>
      <string>-d</string>
      <string>0</string>
      <string>-h</string>
      <string>ldap://x.x.x.20/ ldap://127.0.0.1/ ldapi://%2Fvar%2Frun%2Fldapi</string>
    </array>
    (note the inclusion of ldap://127.0.0.1/ as an entry - you'll need to run on localhost as well the .20 address since all the local services will look to localhost)
    You might also need an ldaps URL if you're using SSL but let's walk before we try to run

Maybe you are looking for