Multiple matches issue

Strange issue with voice dialing finds a specific multiple match. I have an entry for "Mom" and one for "Mom - France". When I say "Call Mom" it says there are multiple entries and lists the above. When it beeps for me to speak again and I say "Mom" it always says "Calling Mom - France".
I never mention "France", I speak clearly, and for all other numbers it recognises me fine. If there are multiple numbers for one person (home, mobile etc) it recognises my choice with no problems. So why mis-hear this one with an extra word?

Not a direct answer but a workaround. I presume these are for the same people just different geographical locations.
Combine "Mom - France" into the Mom contact by adding the France number after the first number. Label it "France" so when you say "Call Mom" it will say something like, "Mobile or France?". Or you could just say "Call Mom Mobile" or "Call Mom France".
-SM

Similar Messages

  • Issues with Multiple Match Records

    Hi,
    We have scenario like RFC<--->XI<---->SOAP, we are able to send the request and get the response from webservice.
    Auctully this scenario works based on Match records . If we send the exact match record to SOAP, webservice would give only one result with exact details, otherwise Webservice would return multiple match records.  We need to catch all these results and send it to SAP via RFC.
    it should be like : Request Map is 1:1 and Response Map N:M.
    Currently we are struggling for send the Multiple records to RFC. How RFC could take this?
    So please let us know:
    1. How we are going to handle MessageType for receiver side?
    2. Does it required Multimap in Response ? How we are going to handle this multimap?
    3. Does it required any BPM for this?How  do I make BPM design?
    4. How do I make receiver determination?
    Please put your design ideas on this and give me brief steps for handle this situvation.
    Thanks for your time .
    - Ravi
    Edited by: Ravi on Jun 5, 2008 12:50 AM

    Thanks Vijaya laxmi..
    We have similar sync scenarios are working fine, except this one.
    We are able to see messages payload in Moni..thing is the response contains another strings which are coming from webservice. There XI couldn't understand how to map response fields to RFC.respone!
    We need to hide extra strings which we got from Webservice , then we could able to map WS resonse to RFC response.
    Currently we are getting this resonse from WS on moni:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Request Message Mapping
      -->
    - <AddressValidatorResponse xmlns="http://tempuri.org/geostan3/AddressValidator" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    - <AddressValidatorResult>
    - <xs:schema id="AddressCheck" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    - <xs:element name="AddressCheck" msdata:IsDataSet="true">
    - <xs:complexType>
    - <xs:choice maxOccurs="unbounded">
    - <xs:element name="Address">
    - <xs:complexType>
    - <xs:sequence>
      <xs:element name="Addline1" type="xs:string" minOccurs="0" />
      <xs:element name="Addline2" type="xs:string" minOccurs="0" />
      <xs:element name="URB" type="xs:string" minOccurs="0" />
      <xs:element name="Lastline" type="xs:string" minOccurs="0" />
      <xs:element name="Location" type="xs:string" minOccurs="0" />
      <xs:element name="OutBlock" type="xs:string" minOccurs="0" />
      <xs:element name="OutCBSA" type="xs:string" minOccurs="0" />
      <xs:element name="MatchCode" type="xs:string" minOccurs="0" />
      <xs:element name="LocationCode" type="xs:string" minOccurs="0" />
      <xs:element name="DPVConfirm" type="xs:string" minOccurs="0" />
      <xs:element name="DPVFalse" type="xs:string" minOccurs="0" />
      <xs:element name="FootNote1" type="xs:string" minOccurs="0" />
      <xs:element name="FootNote2" type="xs:string" minOccurs="0" />
      <xs:element name="FootNote3" type="xs:string" minOccurs="0" />
      <xs:element name="Msg" type="xs:string" minOccurs="0" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      </xs:choice>
      </xs:complexType>
      </xs:element>
      </xs:schema>
    - <diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
    - <AddressCheck xmlns="">
    - <Address diffgr:id="Address1" msdata:rowOrder="0" diffgr:hasChanges="inserted">
      <Addline1>220 W MAIN ST</Addline1>
      <Addline2 />
      <URB />
      <Lastline>LOUISVILLE, KY 40202-1395</Lastline>
      <Location>-85754010, 38256144</Location>
      <OutBlock>211110049001067</OutBlock>
      <OutCBSA>31140</OutCBSA>
      <MatchCode>SE1</MatchCode>
      <LocationCode>AS0</LocationCode>
      <DPVConfirm />
      <FootNote1 />
      <FootNote2 />
      <FootNote3 />
      <Msg>OK</Msg>
      </Address>
      </AddressCheck>
      </diffgr:diffgram>
      </AddressValidatorResult>
      </AddressValidatorResponse>
    But Auctully this response required for response mapping(example for you, I have modified according to our scenario from above auctual payload):
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Inbound Message
      -->
    - <AddressValidatorResponse xmlns="http://tempuri.org/geostan3/AddressValidator" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <AddressValidatorResult>
    <Addline1>220 W MAIN ST</Addline1>
      <Addline2 />
      <URB />
      <Lastline>LOUISVILLE, KY 40202-1395</Lastline>
      <Location>-85754010, 38256144</Location>
      <OutBlock>211110049001067</OutBlock>
      <OutCBSA>31140</OutCBSA>
      <MatchCode>SE1</MatchCode>
      <LocationCode>AS0</LocationCode>
      <DPVConfirm />
      <FootNote1 />
      <FootNote2 />
      <FootNote3 />
      <Msg>OK</Msg>
    </AddressValidatorResult>
      </AddressValidatorResponse>
    let me know how to  hide extra strings in respone form WS?
    - Ravi
    Edited by: Ravi on Jun 9, 2008 7:07 PM

  • Multiple matches found for CD

    I just started using my iTunes on my MacBook Pro. I began by downloading my new box set of remastered Beatles albums. Some have been no issue. But on others I receive a popup box saying, "Multiple matches found online for this CD. Please choose the correct one." And then it will have 2 or 3 listings of the album title below, some the same, some slightly different- with no way to check to see what you're choosing. On the 1st one I choose the match I thought to be correct and now when I insert that CD all the song names are in Chinese. And no apparent way to change it, the computer recognizes it that way every time now. INFURIATING. Obviously I didn't download it into my iTunes. I even tried other CD's and it happened with some of those, too. I've been using iTunes for a couple of years now and have downloaded dozens of CD's into my library, this is a new issue.
    How do I fix the CD from recognized incorrectly and how do I get this to stop? Thank you.

    If more than one entry is found for the CD (that can occur if more than one person submitted information for the same CD to the Gracenote service), select one of the entries. If it isn’t correct, choose Advanced > Get CD Track Names again and choose the other entry. If it’s still not correct, you can edit the information yourself.

  • Multiple OS issues with Email set up; "People" ; Synching phone not working as advertised

    Nokia Lumia 822
    Purchased yesterday (2/10/13)
    So far I have spent 14 hours attempting to resolve what feel like endless errors and bugs. If I can;t get these resolved in the next 48 hours the phone goes back. I am so disappointed  I waited especially for this phone - heard great stuff. My experience is it sucks. Worst phone ever.
    1) POP3 email accounts are non functional. I have attempted to set up and delete and re-set up now multiple times. Each time presents a fresh new nightmare.
    Issue 1 - Email account  receives email but will not send. Error message goes something like  <" Problem sending message. Message failed to send. Problem with Files or Data on your device." >
    Issue 2 - Tapping email + accounts sends me back to start screen cannot even set up account
    Issue 3 - I  get to add email account I enter my information but no account is created
    Issue 4 - I set up an account and I get an error message stating my information cannot be found.
    Issue 5 - trying to open email from start screen just resets to start screen  over and over and over NEVER opens the account.
    These are deal breaker issues. I have multiple email accounts on different platforms. If I cannot access my various emails AND send from those accounts this is NOT the phone for me.
    2) PEOPLE does not function. ALSO multiple various issues and never the same one twice.
    Issue 1 - I tap on a contact and get sent to the start screen over and over and over  and over again.
    Issue 2 I tap on a contact and the phone freezes and wont respond unless I pull the battery
    Issue 3 I open a contact and make an edit, save the contact but the change is never reflected in the list
    Issue 4 I try and search for a contact and the search freezes - only option is to return to start screen
    3) Scrolling thru any APP randomly takes me back to start screen.
    I dread attempting to synch Outlook calendar and contacts on my PC to hotmail - especially if I can't even set up email. And it seems like even holding it will jettison me out of anything I'm doing and back to start screen.
    If I can't get these issues resolved.  look like I'll be going  back to my 3 year old Blackberry Bold which performed flawlessly. It may not be the most impressive phone out there but it did what I needed it to do with out any issues.

    Interesting Twitter conversation VZWSupport on Twitter.  It was suggested to try a HARD reset - and if that doesn't work take the phone back.
    Since I don;t have anything set up yet  that's my solution.
    I see a BlackBerry Z10 in my future

  • Cisco ISE - What does "Multiple Matched Rule Applies" mean?

    Hi,
    In Cisco ISE authroiztion policy configuration, what does the option "multiple matched rule applies" mean? I can understand the "first matched rule", but in "multiple matched rule" how is the "permissions picked if multiple rules match? Or, what is the logic involved in picking up the permissions, if multiple rules are matched in authorization policy.
    No where in cisco document I see any explaination for this.
    Would appreciate if any one can point me to  a document or explain me the login in selecting the persmissions if multiple rules are matched. Also, what would the use-case for this?
    Thanks and Regards,
    Mohan

    I agree with tarik & also this might be helpful for you:
    An authorization policy can  consist of a single rule or a set of rules that are user-defined. These  rules act to create a specific policy. For example, a standard policy  can include the rule name using an If-Then convention that links a value  entered for identity groups with specific condition(s) or attributes to  produce a specific set of permissions that create a unique  authorization profile. There are two authorization policy options you  can set:
    •First Matched Rules Apply
    •Multiple Matched Rule Applies
    These two options direct Cisco ISE  to use either the first matched or the multiple matched rule type  listed in the standard policy table when it matches the user's set of  permissions. These are the two types of authorization policies that you  can configure:
    •Standard
    •Exception
    Standard policies are policies  created to remain in effect for long periods of time, to apply to a  larger group of users or devices or groups, and allow access to specific  or all network endpoints. Standard policies are intended to be stable  and apply to a large groups of users, devices, and groups that share a  common set of privileges.
    Standard policies can be used as  templates in which you modify the original values to serve the needs of a  specific identity group, using specific conditions or permissions to  create another type of standard policy to meet the needs of new  divisions, or groups of users, devices, or groups in your network.
    By contrast, exception policies  are appropriately named because this type of policy acts as an exception  to the standard policies. Exception polices are intended for  authorizing limited access that is based on a variety of factors  (short-term policy duration, specific types of network devices, network  endpoints or groups, or the need to meet special conditions or  permissions or an immediate requirement).
    Exception policies are created to  meet an immediate or short-term need such as authorizing a limited  number of users, devices, or groups to access network resources. An  exception policy lets you create a specific set of customized values for  an identity group, condition, or permission that are tailored for one  user or a subset of users. This allows you to create different or  customized policies to meet your corporate, group, or network needs.
    http://www.cisco.com/en/US/docs/security/ise/1.0/user_guide/ise10_authz_polprfls.html

  • Java.lang.Exception: Multiple Matches Found

    Hi,
    I have written scheduler task to connect people soft DataBase get the users list and disable user accounts in IDM . Below is the peace of code.
    =============================
    ResultSet results = stmt.executeQuery(selectQuery);
    tcReconciliationOperationsIntf reconUtil = (tcReconciliationOperationsIntf)getUtility("Thor.API.Operations.tcReconciliationOperationsIntf");
    HashMap[] userValues = null;
    userValues = createDeleteHashMap(results);
    if (userValues.length < 1)
    return;
    Set deletedAcc = reconUtil.provideDeletionDetectionData(this.resourceObject, userValues);
    ============================================================
    In the Set deletedAcc = reconUtil.provideDeletionDetectionData(this.resourceObject, userValues); i am getting the following exception . please help me
    Regarding this.
    [XELLERATE.APIS],Class/Method: tcReconciliationOperationsBean/provideDeletionDetectionData encounter some problems: Multiple Matches Found
    java.lang.Exception: Multiple Matches Found
    Edited by: user11084273 on Sep 26, 2012 12:36 AM

    I believe this API expects only to match no more than one user on each of the criteria set in the paoAccountDataList (userValues) in your case, i.e. each entry in the map must give a unique identifier of one resource. This map is not a map of attributes of one account, which together identify one resource, as any one ambiguous value in the map will give this error. It appears at least one entry in you userValues map is ambiguous and matches multiple resources. I guess this all depends on what your initial select query was.

  • Multiple Goods Issue documents for single delivery?

    Hi
    I am getting multiple goods issue documents for single delivery.
    In a order there are 3 line items, and one delivery is created and 3 goods issue documents.
    What is the probable reasons for this.
    The requirement is for one order with n items there should be one delivery document and one goods issue document.
    Inputs requested.

    Since you havent put the issue in details, I have listed my guessses.
    This may be happening due to mainly these three reasons. Please answer them and get back to me.
    1) The three Good issue may be happeneing due to split delivery active for the item. If yes then correction should be in the Material master.
    2) the availability check scheduled is set in that way. If yes please configure the availability and transfer of requirement.
    3) Scheduling of the goods throught that particular shipping point. If yes then please conficgure the shipping tab in Logistic Execution.
    Please let me know if the problem persists and award points if solved.
    Thanks
    Adi

  • PO default invoice matching issue

    Hi All,
    I'm facing a PO default invoice matching issue. As we know, we can use the PO default invoice type to copy the invoice detail information from PO e.g. PO distribution. The following is the problem details:
    Oracle Application Version: 11.5.10.2
    1. PO distribution (PO Charge Account) 01-110-1570-0000-000
    2. Receiving Option (Expense AP Accrual Account) 01-000-2225-0000-000
    3. Item destination type is Expense.
    When I create the PO default invoice, give the po number and click the match button, Match to Purchase Order form comes out. And then I give the Qty invoiced and click the match button. Ideally, the invoice distribution account should be same as the PO distribution account e.g 01-110-1570-0000-000. But the invoice distribution account is 01-000-2225-0000-000. Could you please explain my doubt on this?
    Thanks & Best Regards,
    Jerome
    Edited by: Jerome.Yin on Aug 21, 2009 8:25 PM
    Duplicate Thread, Please look into the another one. Sorry for inconvenience

    Hi All,
    I'm facing a PO default invoice matching issue. As we know, we can use the PO default invoice type to copy the invoice detail information from PO e.g. PO distribution. The following is the problem details:
    Oracle Application Version: 11.5.10.2
    1. PO distribution (PO Charge Account) 01-110-1570-0000-000
    2. Purchasing Option (Expense AP Accrual Account) 01-000-2225-0000-000
    3. Item destination type is Expense.
    When I create the PO default invoice, give the po number and click the match button, Match to Purchase Order form comes out. And then I give the Qty invoiced and click the match button. Ideally, the invoice distribution account should be same as the PO distribution account e.g 01-110-1570-0000-000. But the invoice distribution account is 01-000-2225-0000-000. Could you please explain my doubt on this?hi
    this is a general rules. invoice distribution shows the Debit entries. and AP Expense Accrual A/C is debited in Invoice while it is credit in Receiving.
    Thanks
    Lisan

  • Multiple Matches in Join Rule

    Hi,
     What's the default behaviour for join rules with multiple matches? I'm looking at implementing a match on a payrollID number between Oracle payroll users and AD users - both objects imported into FIM. I'm updating my AD user attributes with payroll
    data such as employee manager. AD users have portal and SSPR access.
    Due to my data sources being less than 100% reliable some payrollIDs overlap - what is the default action during an import if multiple objects from the data source match? Presumably it's just a matter of various attributes being incorrectly updated for the
    wrong user or with the wrong values.
    Thanks
    IT Support/Everything

    Dominik is correct the first join regardless wins.  Could you use additional attributes such as last name as an additional match criteria when the payrollID=999.  The specific connector routine is MapAttribute for join and Carol Wapshere has a
    good write up on advanced join scenarios which might help you.
    http://www.wapshere.com/missmiis/advanced-joining
    Good luck!

  • My dv5 laptop has an internal "typing" noise/multiple security issues

    I'm not sure if this is a problem, but since I've had all kinds of issues with this particular model (the first Pavilion we were sent by HP had to be returned because the engineers finally deemed it unfixable), I thought I'd ask.  I'm a little nervous about a sound that makes me think of little gremlins inside the unit typing away.  It's not constant, but I'm wondering if that's normal and what the noise is. 
    Another problem is that periodically I'll get a message about the computer having "multiple security issues".  I then do a virus scan, which turns out fine, so I don't know what it means. 

    The Intel chipset issue is not at all related for your Notebook. Its quite unfortunate you are facing this problem as I would say its a coincidence that even your second hard drive went bad so soon.
    Time for you to RMA the new hard drive. 
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Multiple CS6 issues

    Hi -
    At work we recently got upgraded to CS 6 and I've encountered multiple functional issues which have slowed our workflow down considerably. 
    1) Drag and dropping from either the color or line swatches on the bottom of the tool bar (at right) no longer works.  Dragging and dropping from the color pallet (fill or line) does not work either. In order to change color of an object we either have to create a NEW object with the new line or fill color and eye dropper it, or select the object- go to the CMYK (or RGB) sliders and enter the numerical version of the colors we want. VERY tedious.
    2) for the reasons listed in #1, the gradient tool has become nearly unusable.  You simply can not drag new colors into the gradient to edit it at all.  The gradient tool has always been somewhat difficult to use- with CS6 it has become useless.
    3) there are numerous glitchy interface issues that have cropped in- just one is the PMS swatch libraries- trying to get the library to list by name does not work periodically and the search swatch by number option randomly disappears and reappears.  Recently the option to search field has disappeared completely and scrolling through the PMS swatch book constantly jumps back to the top (PMS 100 yellow) when trying to select colors.  This effectively makes using the PMS swatches useless.  We've had to do a work around by importing shapes filled with certain PMS colors and eye dropper them as needed. Not a great way to work as you can imagine.
    Has anyone else encountered these issues and are there work arounds?  We've done re-installs and that has not helped so far.  Please note they are not letting us upgrade to CS Cloud version so no help there either. yay.
    Thanks in advance for any help!
    David

    David,
    Did you reinstall using the full three step way?
    Uninstall, run the Cleaner Tool, and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Multiple iPhone Issues

    Hello,
    I have been having multiple iPhone issues after updating my phone to iOS 6.1 and restoring it my phone number is grayed out on Facetime and iMessage in Settings and sometimes when I go to the app store the old app store design loads that was in iOS 5  and the search and updates and buttons below get reaaranged
    It looks like that in messages and Facetime
    NOTICE THAT THE EMAILS AND NUMBER ARED EDITED!
    Please help me fix this issue

    have you tried turning off imessage in settings and then turning it back on again to re-activate? have you tried resetting the phone by holding the sleep/wake button and the home button until the phone restarts?

  • Multiple freeze issues on my laptop

    Hello.
    I'm experiencing multiple freeze issues lately. Inspecting all logs available but found nothing.
    1. sometimes gdm freezes while switching users in Gnome 3. I share my laptop with my wife, separate accounts. While switching from one user to another, somethimes gdm (screen with account names) hangs, in situations when both users are logged or one is not. Only thing that helps is to switch to console, log in and restart gdm.
    2. I had issues with suspend, so I turned off suspend based on inactivity. Now sometimes when laptop has some idle time and is inactive, screen turns off. Then it hands, all leds are on, unable to wake (turn on display), nothing works, switching to console, nothing.
    3. Total freeze while logging into Gnome 3 session of my wife. Black screen, all leds on, only hard turn off (long press power button).
    I inspected all logs in /var/log, also .xsession-errors in both home folders of both users. Can't find anything .... I'm desperate. Please post some tips, how to log more. I can't even submit or search for some bugs as I can't determine even what is the cause.
    My laptop is ASUS X50Z.
    lspci:
    00:00.0 Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge
    00:01.0 PCI bridge: Advanced Micro Devices [AMD] RS780/RS880 PCI to PCI bridge (int gfx)
    00:04.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 0)
    00:05.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 1)
    00:06.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 2)
    00:11.0 SATA controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 SATA Controller [IDE mode]
    00:12.0 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:12.1 USB controller: ATI Technologies Inc SB7x0 USB OHCI1 Controller
    00:12.2 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:13.0 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:13.1 USB controller: ATI Technologies Inc SB7x0 USB OHCI1 Controller
    00:13.2 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 3a)
    00:14.1 IDE interface: ATI Technologies Inc SB7x0/SB8x0/SB9x0 IDE Controller
    00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
    00:14.3 ISA bridge: ATI Technologies Inc SB7x0/SB8x0/SB9x0 LPC host controller
    00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
    00:14.5 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI2 Controller
    00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 11h Processor HyperTransport Configuration (rev 40)
    00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 11h Processor Address Map
    00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 11h Processor DRAM Controller
    00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 11h Processor Miscellaneous Control
    00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 11h Processor Link Control
    01:05.0 VGA compatible controller: ATI Technologies Inc RS780M/RS780MN [Radeon HD 3200 Graphics]
    02:00.0 Network controller: Atheros Communications Inc. AR928X Wireless Network Adapter (PCI-Express) (rev 01)
    03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
    Packages installed -> http://pastebin.com/efUsSdr4
    I will gladly post more info.

    lsmod:
    Module Size Used by
    fuse 66858 2
    ipv6 288122 24
    ext3 191948 1
    jbd 63179 1 ext3
    uvcvideo 64995 0
    videodev 85100 1 uvcvideo
    media 10565 2 uvcvideo,videodev
    v4l2_compat_ioctl32 8644 1 videodev
    cryptd 8309 0
    aes_x86_64 7508 2
    aes_generic 26138 1 aes_x86_64
    ecb 2073 1
    btusb 11385 0
    joydev 9895 0
    bluetooth 150884 1 btusb
    arc4 1410 2
    ath9k 86553 0
    radeon 994864 3
    mac80211 221931 1 ath9k
    ttm 54872 1 radeon
    drm_kms_helper 25721 1 radeon
    serio_raw 4294 0
    i2c_piix4 8224 0
    psmouse 55501 0
    snd_hda_codec_realtek 282216 1
    ath9k_common 1858 1 ath9k
    drm 185736 5 radeon,ttm,drm_kms_helper
    i2c_algo_bit 5199 1 radeon
    i2c_core 20460 6 videodev,radeon,drm_kms_helper,i2c_piix4,drm,i2c_algo_bit
    pcspkr 1819 0
    asus_laptop 14098 0
    sr_mod 14951 0
    ath9k_hw 304895 2 ath9k,ath9k_common
    ath 14770 2 ath9k,ath9k_hw
    cdrom 36553 1 sr_mod
    r8169 45411 0
    evdev 9530 10
    cfg80211 165636 3 ath9k,mac80211,ath
    sparse_keymap 3120 1 asus_laptop
    k10temp 2883 0
    processor 24224 0
    thermal 7799 0
    button 4470 0
    ac 2344 0
    video 11164 0
    battery 6453 0
    snd_hda_intel 22410 2
    snd_hda_codec 80889 2 snd_hda_codec_realtek,snd_hda_intel
    sp5100_tco 4568 0
    shpchp 26281 0
    mii 4059 1 r8169
    pci_hotplug 25454 1 shpchp
    snd_hwdep 6357 1 snd_hda_codec
    snd_pcm 74368 2 snd_hda_intel,snd_hda_codec
    rfkill 15498 4 bluetooth,asus_laptop,cfg80211
    snd_timer 19544 1 snd_pcm
    snd 58362 10 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
    soundcore 6210 1 snd
    snd_page_alloc 7153 2 snd_hda_intel,snd_pcm
    vboxdrv 1790690 0
    ext4 375413 2
    mbcache 5881 2 ext3,ext4
    jbd2 70667 1 ext4
    crc16 1359 2 bluetooth,ext4
    sd_mod 28275 3
    usbhid 35352 0
    pata_acpi 3376 0
    hid 82435 1 usbhid
    ohci_hcd 21714 0
    pata_atiixp 3928 0
    ahci 20005 2
    libahci 19559 1 ahci
    libata 166724 4 pata_acpi,pata_atiixp,ahci,libahci
    ehci_hcd 40794 0
    usbcore 144144 6 uvcvideo,btusb,usbhid,ohci_hcd,ehci_hcd
    scsi_mod 132794 3 sr_mod,sd_mod,libata
    dm_mod 69692 12
    /etc/rc.conf:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
    # startup and during the boot process. If set to 'no', the C locale is used.
    # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # Note: Using "localtime" is discouraged, using "" makes hwclock fall back
    # to the value in /var/lib/hwclock/adjfile
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # Note: if unset, the value in /etc/localtime is used unchanged
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="UTC"
    TIMEZONE="Europe/Bratislava"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
    # Replace every !module by an entry as on the following line in a file in
    # /etc/modprobe.d:
    # blacklist module
    # See "man modprobe.conf" for details.
    MODULES=(dm-mod vboxdrv)
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for BTRFS volumes at startup
    USEBTRFS="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="yes"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="gorgoroth"
    # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
    # Wired network setup
    # - interface: name of device (required)
    # - address: IP address (leave blank for DHCP)
    # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
    # - broadcast: broadcast address (ignored for DHCP) (optional)
    # - gateway: default route (ignored for DHCP)
    # Static IP example
    # interface=eth0
    # address=192.168.0.2
    # netmask=255.255.255.0
    # broadcast=192.168.0.255
    # gateway=192.168.0.1
    # DHCP example
    # interface=eth0
    # address=
    # netmask=
    # gateway=
    interface=eth0
    address=
    netmask=
    broadcast=
    gateway=
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these netcfg profiles at boot-up. These are useful if you happen to
    # need more advanced network features than the simple network service
    # supports, such as multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    # If something other takes care of your hardware clock (ntpd, dual-boot...)
    # you should disable 'hwclock' here.
    DAEMONS=(hwclock syslog-ng netfs crond dbus gdm networkmanager @dropboxd sshd cupsd)

  • Multiple Version Issue. data not matching

    Dear all,
    pleas help me in this issue..
    we have the Apo (DP) Cube.  we are running the reports on this cube..
    when we run the query we are giving the Verion ( means week)  in the selections.. data is coming but.not matching with Apo..data..
    we  assumed that data is coming more. beacuse it might taking the data of previous year also.
    so we included the Calyear and aksed user to selct both, vesrion as well as year.. because their req is for multiple version with historical data.
    They want to see the data for multiple versions with historical data...  even though data  is not matching..
    what we had done is again deleting all the data from Cube and dso an datasource , again loading... this time we asked user to run the report and match it    the data is matching.. with vesrion
    But when we go for historical data with mutiple version. its not matching ,
    pleas help me out where to find out this probelm , what could be the cause ,.
    how to chek
    Awaiting your valuble fedback. its an uregnt issue.
    if any thing else required pls let me know

    Txs for your valuble reply..
    We had checked that .
    but when we unload and again loaded  data this time it is matching on giving the version...
    Where as in case of Multiplr versions . data is coming more.. donno wheather it is mixing up the duplicate data . or what not able to underand.
    can you pls tell me steps how to analyse with your patiency...
    Where and all we need to chek ....
    Awaiting Your reply.

  • ITunes Match issues syncing multiple accounts

    I recently signed up for iTunes Match to sync my MacBook Pro with my iPhone 4s and iPad.  The problem is that it will only correctly sync my .me account.  I have missing album art and songs depending on which account I am signed into at the time of a sync.  I am at the point of leaving both iCloud and iTunes Match.

    Why do you think you had to create a new .me account to enable iTunes Match? All you had to do was enable it on your existing iTunes Store account ID.
    Be that as it may, iTunes Match does not transfer across iTunes store accounts; it is associated with only one account. However, your use of the word "sync" in this context is confusing and unclear. When you use it do you mean you are physically connecting your iDevice via USB? Because iTM does not "sync" in the traditional sense. So what, precisely, are you trying to do? Set up iTunes Match or sync your iDevice? The two are mutually exclusive.

Maybe you are looking for

  • Has anyone had an error message pop up about their i/o settings?

    I tried recording a mixtape in GB and when I would get past a few minutes I would get an I/O error message.  Has this happened to anyone else , and if so would you know why? Thanks

  • How can I configure MA to display "speaking" OpCode and Task names

    If you have a custom ETW Eventsource definition: PerfView reads and Displays from the etl files the OpCode and Task values not as integer but as defined in EventSource inner classe for Task and in the System.Diagnostics.Tracing.EventOpCode. My questi

  • Can't edit hyperlink

    I have a picture I assigned a hyperlink to and I need to change the link, but I can't get the "link to" to allow a change. I've tried checking and unchecking the boxes, but it stays greyed out.

  • What tips of account do I need?

    If I have an account with Skype in USA, can I call from South America to USA land lines and mobile phones? And what kind of account do I need to have with Skype? Thanks

  • How to download facebook for itouch 2g

    i have itouch 2g and now it can not to be upgraded so anyone pls inform me how to download facebook version 4.2.1 for itouch 2g . .  .