Require distinct results, but consolidating other details by comma

I have an SQL script which produces distinct results.
The results I get are:
Date_Received Description       Source  Rma
01/02/2006    WIDGET1           Comp1   100000
01/02/2006    WIDGET2           Comp1   100000
01/02/2006    WIDGET3           Comp1   100000
01/02/2006    WIDGET1           Comp1   100001
01/02/2006    WIDGET3           Comp1   100002
01/02/2006    WIDGET8           Comp1   100002
01/02/2006    WIDGET8           Comp2   100003But I want:
Date_Received Description                         Source  Rma
01/02/2006    WIDGET1, WIDGET2, WIDGET3           Comp1   100000
01/02/2006    WIDGET1                             Comp1   100001
01/02/2006    WIDGET3, WIDGET8                    Comp1   100002
01/02/2006    WIDGET8                             Comp2   100003Is this simple to do?
My query, as it is:
select distinct
da Date_Received,
de Description,
so Source,
RMA
from
(select
to_char(rmh.date_entered,'DD/MM/YYYY') Da,
IFSAPP.SALES_PART_API.Get_Catalog_Desc(rml.contract,rml.CATALOG_NO) De,
IFSAPP.CUST_ORD_CUSTOMER_API.Get_Name(rm.CUSTOMER_NO) So,
rml.rma_no rma
from
ifsapp.return_material_line rml,
ifsapp.return_material rm,
(select rmh.rma_no,
         substr(rmh.message_text, 6,instr(rmh.message_text,',')-6) rma_line_no,
         rmh.date_entered
  from   ifsapp.return_material_history rmh
  where  rmh.message_text like 'Line%' and
         rmh.message_text like '%received.'
) rmh
where
rml.rma_no=rmh.rma_no and rml.rma_line_no=rmh.rma_line_no
and
rml.rma_no=rm.rma_no
and
rml.contract='OKMMN'
and
rml.inspection_info='PROGRESS'
order by
rmh.date_entered) My initial wish was to go a step further, but I realised I was well out of my league!
There is a quantity per line, so the "real" results would be:
Date_Received Description       Source  Rma     Qty
01/02/2006    WIDGET1           Comp1   100000    1
01/02/2006    WIDGET2           Comp1   100000    2
01/02/2006    WIDGET3           Comp1   100000    1
01/02/2006    WIDGET1           Comp1   100001    3
01/02/2006    WIDGET3           Comp1   100002    1
01/02/2006    WIDGET8           Comp1   100002    1
01/02/2006    WIDGET8           Comp2   100003    2and I managed to get:
Date_Received Description       Source  Rma    
01/02/2006    WIDGET1           Comp1   100000 
01/02/2006    2 x WIDGET2       Comp1   100000 
01/02/2006    WIDGET3           Comp1   100000  
01/02/2006    3 x WIDGET1       Comp1   100001  
01/02/2006    WIDGET3           Comp1   100002 
01/02/2006    WIDGET8           Comp1   100002
01/02/2006    2 x WIDGET8       Comp2   100003by using
decode(rml.qty_received,1,'',to_char(rml.qty_received) || ' x ')
|| IFSAPP.SALES_PART_API.Get_Catalog_Desc(rml.contract,rml.CATALOG_NO) De,So it would show the qty in the description, where it was not 1.
Then I realised there are instances where the same description can appear multiple times, with various quantities, giving this scenario:
Date_Received Description       Source  Rma     Qty
01/02/2006    WIDGET1           Comp1   100000    1
01/02/2006    WIDGET2           Comp1   100000    2
01/02/2006    WIDGET1           Comp1   100000    1
01/02/2006    WIDGET3           Comp1   100002    1
01/02/2006    WIDGET3           Comp1   100002    2which should give:
Date_Received Description                Source  Rma    
01/02/2006    2 x WIDGET1, 2 x WIDGET2   Comp1   100000
01/02/2006    3 x WIDGET3                Comp1   100002 ...but this all has to be possible in a single SQL statement!
I would appreciate, if possible answers to both requirements, if anyone can see a way forward.
Thanks

Many thanks for your suggestion. I managed to apply it, probably not very efficiently, but hey, it works!
SELECT     MAX (da) date_received,
           LTRIM
              (MAX (SYS_CONNECT_BY_PATH (de, ', '))KEEP (DENSE_RANK LAST ORDER BY curr),
              ) AS description,
           so SOURCE, rma
      FROM (SELECT DISTINCT da, de, so, rma,
                            ROW_NUMBER () OVER (PARTITION BY rma, so, da ORDER BY de)
                                                                      AS curr,
                              ROW_NUMBER () OVER (PARTITION BY rma, so, da ORDER BY de)
                            - 1 AS prev
                       FROM (SELECT   TO_CHAR (rmh.date_entered,
                                               'DD/MM/YYYY'
                                              ) da,
                                      ifsapp.sales_part_api.get_catalog_desc
                                                           (rml.contract,
                                                            rml.catalog_no
                                                           ) de,
                                      ifsapp.cust_ord_customer_api.get_name
                                                           (rm.customer_no)
                                                                           so,
                                      rml.rma_no rma
                                 FROM ifsapp.return_material_line rml,
                                      ifsapp.return_material rm,
                                      (SELECT rmh.rma_no,
                                              SUBSTR
                                                 (rmh.MESSAGE_TEXT,
                                                  6,
                                                    INSTR (rmh.MESSAGE_TEXT,
                                                  - 6
                                                 ) rma_line_no,
                                              rmh.date_entered
                                         FROM ifsapp.return_material_history rmh
                                        WHERE rmh.MESSAGE_TEXT LIKE 'Line%'
                                          AND rmh.MESSAGE_TEXT LIKE
                                                                  '%received.') rmh
                                WHERE rml.rma_no = rmh.rma_no
                                  AND rml.rma_line_no = rmh.rma_line_no
                                  AND rml.rma_no = rm.rma_no
                                  AND rml.contract = 'OKMMN'
                                  AND rml.inspection_info = 'PROGRESS'
                             ORDER BY rmh.date_entered))
  GROUP BY rma, so
CONNECT BY prev = PRIOR curr AND rma = PRIOR rma AND so = PRIOR so
           AND da = PRIOR da
START WITH curr = 1

Similar Messages

  • I have 2 iMacs with Maverick. One shows DVD's requiring Adobe Flash fine the other plays for a while then I get parts of the DVD presentation that freezes cursor movement but the video

    I have two iMacs both with Maverick. When working with Training DVD's requiring Adobe Flash there is no trouble with one iMac but the other will have problems. The DVD will run fine and then there will be a break (5-10 seconds) in the audio but not the video. When the audio comes back on the presentors movement of the curson will be frozen. Have I disabled something on the one computers but not the other to cause this problem?

    I have two iMacs both with Maverick. When working with Training DVD's requiring Adobe Flash there is no trouble with one iMac but the other will have problems. The DVD will run fine and then there will be a break (5-10 seconds) in the audio but not the video. When the audio comes back on the presentors movement of the curson will be frozen. Have I disabled something on the one computers but not the other to cause this problem?

  • SharePoint 2013 On-Premises - Search not crawling Korean content, but all other languages

    We are facing an issue in a SharePoint 2013 site where I have lots of PPT files with different languages and also managed metadata tags tagged with them.
    We are facing issue with Korean content PPT files where We are not able to search these files by their managed properties. Somehow SharePoint search is not able to crawl these Korean content PPT files with managed properties.
    if we remove content from these files and do a crawl and search the file with managed property we get the result but if I put a small paragraph of Korean language and do the crawl it doesn't appear in search results with same query after the crawl.
    Following are the server and site configuration details we are using:
    Windows Server 2012 standard with SharePoint 2013 Enterprise Server installation
    All our tags and managed properties are in English language only.
    We are using SharePoint search API where I am passing query to SharePoint to fetch the result for example below is the query we are sending:
       Ex.
    ( parentlink:"site URL*”)AND ( owstaxIdLanguage:"Korean"))
    Following is the search result with different scenarios
    Content   in PPT file
    Search   using
    Result
    English
    File name in search box
    Worked
    English
    Using managed property
    Worked
    Korean
    File name in search box
    Sometimes works
    Korean
    Using managed property
    No result
    Following are the list of scenarios we tried to fix the Korean content issue:
    Did a full crawl on all libraries multiple times
    Did a full crawl on individual libraries
    Changed library level settings to allow items to appear in search result, followed  by a full crawl on individual library
    Tried changing font for Korean content to generic font (Arial Unicode MS) per suggested by our PPT expert and crawled the content.
    Installed Korean language pack on CM2 server and did a full crawl after uploading Korean content PPTs on UAT site

    http://social.technet.microsoft.com/Forums/exchange/en-US/ec9febf7-8d69-42e9-b2dc-b6e5b0b46a89/sharepoint-2013-search-crawl-not-working-properly-with-korean-content?forum=sharepointsearch
    Enabled "Always index all Web Parts on this site" in site settings > site visibility
    Do we see some error in crawl logs in search
    Is it a variation site? If yes, was the managed property data manually updated or it was done by system
    What if you create a new list\column and check if crawl works on that column
    If this helped you resolve your issue, please mark it Answered

  • Need to show total of condition result only not the detail

    Hi,
    I've created a query to report the number of shopping carts with a value over $1000 for a given period of time.  I included the shopping cart and its value in the query but do not display them.  Then I created a condition to keep only those > $1000.  I get the correct result but too many rows, basically one for each shopping cart that meets the condition - I want to report only the result line (total) only per period.
    Any ideas?
    Thanks
    Suzanne

    Often when using Conditions, you need to change the Results properties to Summation, so that it sums and displays just the rows that have satisfied the condition(s).  Without the Summation option, the Result row totals are for all the detail rows, including the rows that are not displayed because they meet the conditions(s).
    Sounds like in this case you would need to add VB code to the workbook to suppress the detail rows and just display the Result rows.  Don't have an alternative if you are trying to do this on the web.

  • Add hyperlink on the field txt in Search Result List to access Detail View

    Hi, SDN fellows.
    I have a PCUI requirement stated the following:
    1) In the line item of the Search Result List (table), there is one hyperlink in field 1.
    2) When click on the hyperlink, it will trigger the action to open up Detail View (Object Data Pattern 1 - ODP1) of the line item.
    3) Problem: When the value of the field is null, there will be no hyperlink to open up the Detail View.
    4) For work around, my requirement is to make the other fields (i.e. field 2) to have a hyperlink to trigger the action for opening the Detail View of the line item.
    I am not strong in PCUI. Please advise how to do so, while I am exploring the guide in the PCUI Book.
    Thanks,
    Kent

    Hello Kent,
    check out the settings of the Field Group element where the link is already active. Copy that settings to the Field which you want to be linked too.
    Regards
    Gregor

  • I have an app in my app store that is requiring an update but I never purchased the app and when I click update, another apple ID pops up that is not mine.  Now i keep getting reminders to update the app and I cant get rid of it from the app store.  Help.

    I have an app in my app store that is requiring an update but I never purchased the app and when I click update, another apple ID pops up that is not mine.  Now i keep getting reminders to update the app and I cant get rid of it from the app store.  Help.

    You installed a hacked app, originally from the Mac App Store. It contains the receipt for a different app, downloaded using an account that you don't control. You need to identify and remove the hacked app.
    Important: The app you need to remove is not necessarily the one named in the App Store notice. For example, if the App Store says you need to update "Twitter," the hacked app may be "Angry Birds" or something else entirely. Don't make any assumptions about which app you're looking for. To find it, you have to carry out a systematic search.
    Triple-click anywhere in the line of text below on this page to select it:
    kMDItemAppStoreHasReceipt=1
    Copy the selected text to the Clipboard (command-C).
    In the Finder, press the key combination command-F to open a search window, or select
    File ▹ Find
    from the menu bar. In the search window, select
    Search: This Mac
    from the row of tokens below the toolbar. Below that is a popup menu initially showing Kind. From that menu, select  Other...
    A sheet will drop down. In that sheet, select Raw Query and click OK or press return.
    Now there will be a text box to the right of popup menu. Click in that box and paste (command-V).
    The search window will show all the App Store products you've installed. Compare those search results with the list of your purchases from the App Store. To see the complete list, you may need to unhide hidden purchases. If any apps were download from the App Store using other Apple ID accounts that you control, sign in to the store under each of those ID's and check the purchases.
    At least one of the items listed in the search window is not among your purchases in the App Store. Move each such item to the Trash. You may be prompted for your administrator password. Empty the Trash.
    Log out and log back in. Test.

  • A Query with LOB's requires OCI8 mode, but OCI7 mode is used

    Hello all,
    I am using Oracle 10g. We have two tables and in that, in one table i have a Long Raw Column and in the other table i have a BLOB field. When i use the select query to fetch the details from the table with Long Raw field it is working fine and at the same time if i use the select query on the table with the BLOB field it is giving me an error
    'A query with LOB's requires OCI8 mode, but OCI7 mode is used.'
    Please help.
    Thanks.
    Vinodh. S

    Hi Oleg,
    I think your client machine is not setup to connect to the Database. Run the Oracle Net8 Assistant or the Net8 Easy Config to connect to the Database.
    This should work.
    Samuel.
    PS: I need someone to answer my question, please

  • Barcode scanning and displaying other details on the screen

    Hi All,
    I have a requirement to replace the existing leagacy which has a POS functionality screen with SAP Screen.
    Currently the leagcy does the following function.
    When the user scan the Barcode of the product, other details of that are reflected and displayed.
    The same requriement has to be developed in ABAP.
    When the user scan the barcode, the details of the product should be displayed on the screen.
    This functionality is same as in POS.
    Kindly let me know how to proceed ...as I am unable to find any event where in after just scanning the barcode the detials of barcode are captured on screen field but how and which code/event triggers the other details to be displayed on the screen without any action from the user except scanning the barcode.
    Thanks in advance for any clarification and suggetion.
    Regards..
    Shakeel.

    Hi,
    the barcode scanner should be set up to trigger an Enter key after scanning a barcode.
    This will trigger your PAI right after scanning a barcode, so you can easily handle the input and process it as necessary.
    There is really no difference between entering the input through keyboard and pressing Enter, and entering it using a barcode scanner.
    You won't need anything else apart from the standard PAI/PBO processing.

  • Calculate Results As Average of Detailed Values That Are Not Zero... with hiearchies doesn't work

    Hi all,
    For the key figures, the option of "Calculate Results As Average of Detailed Values That Are Not Zero, Null, or Error" works fine for characteristics drilldown without hierarchies, but with hierarchies it simply doesn't work; instead of calculate the overall result as average, the system calculates it as SUM. It works like the option "Nothing Defined" where the results provided by the analytic engine are displayed. No local calculation takes place.
    How can I do to display the overall result of hierarchical drilldown of a characteristic as an average?
    Many thanks in advance!
    Abraham

    It is usually best to just keep it as simple as possible.  What do you think the code in the OR Array Elements does?  I imagine it is just a simple FOR loop with a variable to keep the latest OR.  So I would do what GerdW just showed with the FOR loop.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Sharepoint Foundation - search working for some users (or computers), but not others

    Hi all,
    We have doozy of a search problem with SharePoint Foundation 2010 that I'm hoping someone can help with.
    We have an application that is listening on port 14197 and search is working just fine, but only for one or two users.
    If I do a search while logged in using the account we set the application up with then the search works fine and it returns records as expected.
    If I use a different account - one that has full control over the app, then the exact same search fails with the following message:
    We did not find any results for 06BSL.
    Suggestions:
    Ensure words are spelled correctly.
    Try using synonyms or related searches.
    Try broadening your search by searching from a different site.
    Additional resources:
    Get additional search tips by visiting Search Help
    If you cannot find a page that you know exists, contact your administrator.
    We've done everything we can think of, including several procedures to create new search accounts, replace databases, etc.
    Nothing has helped and all of the info we can find online is in relation to getting search working when it doesn't work at all.  In our case it is working, but only for some users.  We thought it might have been a permissions issue, but not matter
    what permissions we seem to give to test accounts they still don't work.  We've set up a test account, for example, that is a member of the 'application owners' group, but cannot produce any search results with it.
    The SharePoint Foundation server is running on Windows 2008 Server Foundation, with a separate SBS 2003 DC.  
    Any help most appreciated.

    Hi Alex, thanks for your response and apologies about the late reply - didn't realise someone had responded until now!
    Agreed that this looks like a permissions issue, but we're stumped as to what it could be.  The 'test' account displays this problem - if we try and search on 06BSL
    we get no results, but it does appear that this account has full control over this document (see below).
    Note that the 'Manage Permissions' page presents a comment 'This list item inherits permissions from its parent. (Customer QA & Product Management)' which is what we're
    expecting.
    The indexing schedule is set to 5 minutes. 
    Appreciate your help with this, as we've spent a huge amount of time on this problem but don't seem to be any closer to a resolution.
    Cheers,
    Damian
    Check permissions result (this result is the same for the list or for the document itself):
    Permission levels given to test (DOMAIN\test)
    Full Control
    Given through the "QA Application Owners" group.
    Design, Contribute, Read
    Given through the "QA Application Members" group. 

  • When I attempt to log on to I tunes I get the following message  "The registry settings used by the I tunes drivers for importing and burning CDs and DVDs are missing  This can happen as a result of installing other CD burning software  Please reinstall

    When I attempt to log on to I tunes I get the following message:
    "The registry settings used by the I Tunes drivers for importing and burning CDs and DVDs are missing.
      This can happen as a result of installing other CD burning software. Please re-install I Tunes."
    To my knowledge no new software has been installed.  I have tried un-installing and re-installing I Tunes but I still
    get the same message.
    Can anyone offer any suggestions?  Do I need to download a new driver?
    Bill Martin

    I can get down as far as step 11 but it shows nothing about upper filters and when I type on "If the Upper Filters entry is missing follow these instructions" nothing happens
    Do you mean you can't see the instructions on what to do if there is no UpperFilters entry?
    If so, here's the relevant instructions for that step:
    On the right side of the Registry Editor window, right-click the UpperFilters entry and choose Modify from the shortcut menu.
    Right-click the empty white space within the right-hand portion of the Registry Editor window. From the shortcut menu, choose New > Multi-String Value.
    Name this new value "UpperFilters" (without the quotes). Then, right-click the newly created UpperFilters entry and choose Modify from the shortcut menu.

  • Citrix XenApp 7.6 & VDI Plugin works for some users but not others

    I have a customer with XenApp 7.6 and Lync 2013 SE. They have two users homed to the same pool, both with the same VDI client policy however on one account the VDI pairing works fine over Citrix XenApp, but the other the pairing fails. On both accounts I
    get prompted for the credentials, however the second account will not authenticate. I have tried domain\username, domain.local\username and [email protected] but all fail then I get the red cross through the VDI icon.
    This is all from the same Windows 7 machine, all user accounts are within the same AD domain.
    If anyone has seen similar before any assistance would be greatly appreciated as I am banging my head against the wall!
    Lync Tips Blog - [email protected] - If this post has been useful please click the green arrow to the left or click 'Propose as answer'

    Here is some further info:
    360admin - can sign in to Lync and pair correctly
    msltest - can sign into Lync but the credentials are not accepted for pairing
    Identity                : CN=360 Admin,CN=Users,DC=localdomain,DC=co,DC=uk
    VoicePolicy             :
    VoiceRoutingPolicy      :
    ConferencingPolicy      :
    PresencePolicy          :
    DialPlan                :
    LocationPolicy          :
    ClientPolicy            : HEADSET_USER
    ClientVersionPolicy     :
    ArchivingPolicy         :
    ExchangeArchivingPolicy : Uninitialized
    PinPolicy               :
    ExternalAccessPolicy    :
    MobilityPolicy          :
    PersistentChatPolicy    :
    UserServicesPolicy      :
    HostedVoiceMail         :
    HostedVoicemailPolicy   :
    HostingProvider         : SRV:
    RegistrarPool           : LyncFEG.localdomain.co.uk
    Enabled                 : True
    SipAddress              : sip:[email protected]
    LineURI                 : tel:+44**
    EnterpriseVoiceEnabled  : True
    ExUmEnabled             : False
    HomeServer              : CN=Lc Services,CN=Microsoft,CN=1:3,CN=Pools,CN=RTC Se
                              rvice,CN=Services,CN=Configuration,DC=localdomain,DC=co,D
                              C=uk
    DisplayName             : 360 Admin
    SamAccountName          : 360Admin
    PS C:\Users\360admin> Get-CsUser -Identity "msl test"
    Identity                : CN=MSL Test,DC=localdomain,DC=co,DC=uk
    VoicePolicy             :
    VoiceRoutingPolicy      :
    ConferencingPolicy      :
    PresencePolicy          :
    DialPlan                :
    LocationPolicy          :
    ClientPolicy            : HEADSET_USER
    ClientVersionPolicy     :
    ArchivingPolicy         :
    ExchangeArchivingPolicy : Uninitialized
    PinPolicy               :
    ExternalAccessPolicy    :
    MobilityPolicy          :
    PersistentChatPolicy    :
    UserServicesPolicy      :
    HostedVoiceMail         :
    HostedVoicemailPolicy   :
    HostingProvider         : SRV:
    RegistrarPool           : LyncFEG.localdomain.co.uk
    Enabled                 : True
    SipAddress              : sip:[email protected]
    LineURI                 : tel:+44******
    EnterpriseVoiceEnabled  : True
    ExUmEnabled             : False
    HomeServer              : CN=Lc Services,CN=Microsoft,CN=1:3,CN=Pools,CN=RTC Se
                              rvice,CN=Services,CN=Configuration,DC=localdomain,DC=co,D
                              C=uk
    DisplayName             : MSL Test
    SamAccountName          : MSLTest
    PS C:\Users\360admin> Get-CsClientPolicy
    Identity                                    : Tag:HEADSET_USER
    PolicyEntry                                 : {}
    Description                                 :
    AddressBookAvailability                     : WebSearchOnly
    AttendantSafeTransfer                       :
    AutoDiscoveryRetryInterval                  :
    BlockConversationFromFederatedContacts      :
    CalendarStatePublicationInterval            :
    ConferenceIMIdleTimeout                     :
    CustomizedHelpUrl                           :
    CustomLinkInErrorMessages                   :
    CustomStateUrl                              :
    DGRefreshInterval                           :
    DisableCalendarPresence                     :
    DisableContactCardOrganizationTab           :
    DisableEmailComparisonCheck                 :
    DisableEmoticons                            :
    DisableFeedsTab                             :
    DisableFederatedPromptDisplayName           :
    DisableFreeBusyInfo                         :
    DisableHandsetOnLockedMachine               :
    DisableMeetingSubjectAndLocation            :
    DisableHtmlIm                               :
    DisableInkIM                                :
    DisableOneNote12Integration                 :
    DisableOnlineContextualSearch               :
    DisablePhonePresence                        :
    DisablePICPromptDisplayName                 :
    DisablePoorDeviceWarnings                   :
    DisablePoorNetworkWarnings                  :
    DisablePresenceNote                         :
    DisableRTFIM                                :
    DisableSavingIM                             :
    DisplayPhoto                                : PhotosFromADOnly
    EnableAppearOffline                         :
    EnableCallLogAutoArchiving                  : True
    EnableClientMusicOnHold                     : False
    EnableConversationWindowTabs                :
    EnableEnterpriseCustomizedHelp              :
    EnableEventLogging                          :
    EnableExchangeContactSync                   : True
    EnableExchangeDelegateSync                  :
    EnableFullScreenVideo                       :
    EnableHighPerformanceConferencingAppSharing : False
    EnableHotdesking                            :
    EnableIMAutoArchiving                       : True
    EnableMediaRedirection                      : True
    EnableNotificationForNewSubscribers         :
    EnableSkypeUI                               :
    EnableSQMData                               : False
    EnableTracing                               :
    EnableURL                                   :
    EnableUnencryptedFileTransfer               :
    EnableVOIPCallDefault                       : False
    ExcludedContactFolders                      :
    HotdeskingTimeout                           : 00:05:00
    IMWarning                                   :
    MAPIPollInterval                            :
    MaximumDGsAllowedInContactList              : 10
    MaximumNumberOfContacts                     :
    MaxPhotoSizeKB                              : 30
    MusicOnHoldAudioFile                        :
    P2PAppSharingEncryption                     : Supported
    EnableHighPerformanceP2PAppSharing          : False
    PlayAbbreviatedDialTone                     :
    SearchPrefixFlags                           :
    ShowRecentContacts                          : True
    ShowManagePrivacyRelationships              : False
    ShowSharepointPhotoEditLink                 : False
    SPSearchInternalURL                         :
    SPSearchExternalURL                         :
    SPSearchCenterInternalURL                   :
    SPSearchCenterExternalURL                   :
    TabURL                                      :
    TracingLevel                                : Light
    WebServicePollInterval                      : 00:01:00
    HelpEnvironment                             :
    MSL Test Login
    TL_ERROR(TF_SECURITY) [3]21A4.17E8::03/25/2015-22:39:21.107.00005d39 (SIPStack,SIPAdminLog::WriteSecurityEvent:SIPAdminLog.cpp(319))[1363057693] $$begin_record
    Text: Failed to validate user credentials
    Result-Code: 0x8009030c SEC_E_LOGON_DENIED
    Source: LyncEdgeG.localdomain.co.uk:49201
    SIP-Start-Line: REGISTER sip:domain.com SIP/2.0
    SIP-Call-ID: 2cab650cdf3e4d62aea1cb0c2166c07e
    SIP-CSeq: 3 REGISTER
    Lync Tips Blog - [email protected] - If this post has been useful please click the green arrow to the left or click 'Propose as answer'

  • Requirement of  General Ledger Trial Balance Detail Report Date wise

    Thanks for your reply
    We have to requirement of General Ledger Trial Balance Detail Report Date wise.
    Please help for that.
    Thanks.

    Take sum(Accounted_dr) - Sum(Accounted_Cr) till the Accounting Date..... from GL_BALANCES
    Edited by: 924750 on Sep 16, 2012 3:42 AM

  • I received the following message when iTunes launches: "The registry settings used by the iTunes drivers for importing and burning CD's or DVD's are missing.  This can happen as a result of installing other CD burning softwarre.  Please reinstall iTunes"

    Everytime I connect my iPod Touch (4th Gen) to my laptop, running Win 7 (64 bit) I get the message "The registry settings used by the iTunes drivers for importing and burning CDs and DVDs are missing.  This can happen as a result of installing other CD burning software.  Please reinstall iTunes"  I have reinstalled iTunes several times and it has not fixed the issue.  I am running ver 10.2.2.12 of iTunes.  I HAVE NOT installed any other burning software to my laptop either.  I haven't tried uninstalling iTunes and then re-installing it yet.  Would that perhaps fix the problem?  I've read that many users have had issues with the new version of the software and I was wondering if that might be causing my issue.  I'd like to point out that iTunes seems to work after getting rid of the message, but I haven't tried to burn any CDs or put music from a CD to my laptop.  Any ideas on how to get rid of the annoying message?
    I also am having trouble hooking up with our other computers using  Homegroup.  I noticed quite a lot of people are having the same issue and hopefully they come up with a fix for that soon.
    Thanks in advance.

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes
    If you're still getting the error message (especially when you plug in the Touch), I'd check for a device filter confusion on the PC. (They can affect the connection of USB devices to a PC, as well as burning and importing CDs.) For that one, see:
    iTunes for Windows: Troubleshooting CD issues caused by device filters

  • When syncing iPod the PC lost power. once power restored synced iPod but the sleeve detail has been blanked. Also when syncing a 'miss-match' message is reported on iTunes. how do I get the sleeve detail back onto iPod?

    When syncing iPod the PC lost power. once power restored synced iPod but the sleeve detail has been blanked. Also when syncing a 'miss-match' message is reported on iTunes. how do I get the sleeve detail back onto iPod?

    http://ww2.cs.fsu.edu/~rosentha/linux/2.6.26.5/docs/DocBook/libata/ch07.html#excatATAbusErr wrote:
    ATA bus error means that data corruption occurred during transmission over ATA bus (SATA or PATA). This type of errors can be indicated by
    ICRC or ABRT error as described in the section called “ATA/ATAPI device error (non-NCQ / non-CHECK CONDITION)”.
    Controller-specific error completion with error information indicating transmission error.
    On some controllers, command timeout. In this case, there may be a mechanism to determine that the timeout is due to transmission error.
    Unknown/random errors, timeouts and all sorts of weirdities.
    As described above, transmission errors can cause wide variety of symptoms ranging from device ICRC error to random device lockup, and, for many cases, there is no way to tell if an error condition is due to transmission error or not; therefore, it's necessary to employ some kind of heuristic when dealing with errors and timeouts. For example, encountering repetitive ABRT errors for known supported command is likely to indicate ATA bus error.
    Once it's determined that ATA bus errors have possibly occurred, lowering ATA bus transmission speed is one of actions which may alleviate the problem.
    I'd also add; make sure you have good backups when ATA errors are frequent

Maybe you are looking for