Logical expression OR not working

Hello Experts,
I am using logical expression 'OR' but the current statement does not seems to work.
Is my statement correct ?? Is there something else which I can use in place of 'OR'??
if R1_NO EQ 'X'
    DELETE itab_abapcode from n3 to row_end_event
  or R2_NO EQ 'X'
    delete itab_abapcode from n1 to row_end_perform
  or R3_NO EQ 'X'
    delete itab_abapcode from n2 to row_end_call.
  endif.

Hi
   I think you should learn more about if statement.
   Usually we use
if <condition>
         statement
  elseif <condition>
         statement
   else.
         satement
   endif.
The condition is the whole part, after judge the condition statement, program will process the statement.
so just change your 'OR' statement into if else.
if R1_NO EQ 'X'.
  DELETE itab_abapcode from n3 to row_end_event
elseif R2_NO EQ 'X'
  delete itab_abapcode from n1 to row_end_perform
elseif R3_NO EQ 'X'
  delete itab_abapcode from n2 to row_end_call.
endif.

Similar Messages

  • Hi, The Airport Express does not work with iOS 7.0.4, I appreciate your help to resolve this event. Thank you,

    Hi, The Airport Express does not work with iOS 7.0.4, I appreciate your help to resolve this event. Thank you,

    Please locate the model number of the AirPort Express and post back that information.
    The model number is located on the side of the AirPort Express. It begins with an "A" followed by four numbers.
    We are not sure what you mean by "does not work".  Does this mean that the AirPort Express worked at one time and has just recently stopped working?
    Have you installed a newer operating system on your iOS device recently?
    Or, is this a new AirPort Express that you are trying to configure for the first time?
    If yes, what service will the AirPort Express perform on your network?
    Please remember that we cannot see your network, so we only know as much about your problem as you can tell us.

  • Need Help...my wireless airport express will not work with my update of snow leopard

    after installing snow leopard on my macbook pro my airport express will not work...or will connect only for a minute at a time.

    If you mean by "airport express" the square airport router you plug in and has a usb port then run the Airport Utility located in your Utilities folder to set it up again. If AU doesn't see it you may need to do a re-set of the AE.

  • Aggregation in column expression is not working in 11.1.1.7.1

    Hi Guru's,
    After upgrading the application from 11.1.1.6.8 to 11.1.1.7.1 Aggregations in the column expression is not working. I was using the below formula in the column expression
    100.0* (Sum((CASE WHEN Service Level >= 60 THEN 1 ELSE 0 END)) / COUNT(DISTINCT(HOUR_INTERVAL)))
    I am getting the answer but the values are very high compare. I tried using just Sum((CASE WHEN Service Level >= 60 THEN 1 ELSE 0 END) it also giving very high values.
    Please let me know is there is a bug or something need to setup.
    Regards
    @li

    bug 16616127 has been fixed in 11.1.1.7.1
    make sure you refresh the catalog to upgrade to your version

  • Lookup expression is not working when I am using with in the rectangle box in SSRS

    I have two datasets with common member is ProgramID.
    I have followed the below steps,
    1. Added one table  (2x2) and mapped this table to dataset1. After that I have removed top row.                                               
    That means I am maintaing only  data row.
    2. Added group to the table (ProgramID). Now the programid is sitting at cell#(1,1) and  cell#(1,2) is blank
    3. I have verified the report with preview and able to see the data for my all programs. I have 5 programs
    4. my plan is adding chart and matrix reports to cell# (1,2). If I am adding chart/matrix to the cell#(1,2) then we can't contol the  cell alignments in terms of height x width.
     To resolve that problem, I have added one rectangle control to the cell#(1,2) then I have added my chart and matrix report
    5. After completing the report, I have verified with preview and able to see the reports (chart/matrix) for all my 5 programs by page wise (note: I have provided page break before for my rectangle)
    6. Till this point, I have no issues
    7. Now, I have added one more row under the group. so, we have our main table (2x2). Becuase of programId group we can only see 3 cells in total table  (cell# (1,1) =ProgramId  cell#(1,2)=chart and matix reports under rectangle box; cell#(2,1)=already
    merged with ProgramID group; cell#(2,2)= planned to add one more rectanlge and add two reports (chart and matrix)
    8. Now, i have added rectangle to cell#(2,2) then added chart and matrix reports within the rectangle.
    9. cell#(2,2) reports are needs to extract the data from dataset-2. Here we have common member is ProgramID (ds-1,ds-2)
    10. First I have tested for matrix report by adding lookup expression
          Matrix report (2x2)
         row-1: Cell(1,1)= Gender report heading ; cell(1,2)=Month  (column group)
         Note: month is also common member in both the datasets. 
         row-2: cell(2,1)--  =Lookup(Programid.value, Programid.value,Gender.value,"Dataset2")  (Gender data is Male and Female)
                    Cell(2,2) -- empty for now
     11. I have tried to preview the report and able to see the report without any issues and below are observations
            main Table (2 x2)
             Cell# (1,1)  = ProgramID --Returning all 5 programs properly
             Cell# (1,2)  = Dataset1 related report (chart and matrix reports under rectangle) -- able to see without any issues
             Cell#(2,1)  = We already know this is merged cell. i.e menas ProgramID dispalying
              Cell#(2,2)= Only Male record is dispalying in the matrix report which is under rectanlge (here we have applied Lookup expression.
    Note: male is the first record from the database and Female is the second record
    Also, observed that Cell#(2,2) matrix report is unable to display the gender count information when I have provided count value expression in the cell(2,2) within the matrix and the expression I have uses is
      = sum(Lookup(ProgramId.value,ProgramId.value,GenderCOunt.value,"Dataset2"))
    Please ask me if I am unable to explain or lengthy explain.
    Point : Why the lookup expression is giving the first record only (in case of gender #(male, female) and why it is unable to give the gendercount.  Gendercount cell is totally blank.
    Please help me.
    Kishore.

    Hi Kishore,
    I have tested the issue step by step by following you description, while the first issue works well in my local environment. Based on my research, this can be caused by the lookup expression or it indeed return Male value based on the logic. If you use the
    expression below, it will indeed only return the Male record. So please try to double-check the record in the two datasets and the expression in your environment:
    =lookup(first(Fields!ProgramID.Value,"DataSet1"),Fields!ProgramID.Value,Fields!Gender.Value,"DataSet2")
    As to the second issue, please try to use the following expression:
    =Count(Lookup(fields!ProgramID.value,fields!ProgramID.value,fields!Gender.value,"DataSet2"))
    Besides, if this issue still exist, in order to trouble shoot this issue more efficiently, could you please post both the .rdl  file with all the size properties to us by the following E-mail address?  It is benefit for us to do further analysis.
    E-mail: [email protected]
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • What's With Volume Logic Plug-In Not Working With iTunes V7. and Up

    Hello Folks. I recently updated to iTunes ve 7.0.2 and now my great Volume Logic Plug-in won't work. I downloaded the latest update and then read info on the Plantronics site about the problems with the plug-in with new itunes updates.
    Is anyone here figured out what's going on or a workaround. That plug-in makes such a positive difference in music sound quality, the tunes almost feel "naked" without it
    Steve

    Prior to the 1.3.2 released (beta or the now-available final), Volume Logic did not work at all with iTunes 7. According to Plantronics, Volume Logic does not work with Airtunes and the AIrport Express (it's stated right in their FAQ).

  • Logic Express does not show the waveform of the audio after recording

    This week, Logic stopped showing the waveform in track.
    At the time of recording the wave is usually draws but as soon as I stop is theonly track in a straight line as if no audio recorded, the audio is usually recorded, you can apply effects and plug-ins but it is impossible to edit.
    Sorry for any errors in the text, I am Brazilian and I'm using google translator.
    Thank you!

    after hours of searching I think I found the solution in a post 2010. I do not know for how long, but now it's all working
    credits for Foxboy71
    you won't find the .plist files via spotlight - they are excluded from search,
    go to (user)/library/preferences/
    there you'll find the files named com.apple.Logic Express (xyz whatever).plist
    delete them. Logic will rebuild them from scratch.
    Fox

  • USB/eSata express card not working on stock kernel

    Hello everyone,
    I have a weird problem and I don't seem to find any solution by myself. Let me give you some background info on what I plan to do.
    I purchased an express card to eSata/USB 3.0 adapter and want to make it work on my laptops. Precisely, it is this card: http://www.amazon.de/Notebook-Express-C … B007F8TXZ8
    1: Lenovo X200s (1,6GHz) running Ubuntu 14.04 amd64
    2: Lenovo X200s (1,6GHz) running Debian 7 amd64
    3: Lenovo X200T (1,6GHz) running ArchLinux amd64
    The card does work fine only on the Ubuntu machine. I would like to make it run on the two other ones as well. I thought I might get help here getting it to work on machine 3 and then transfer the results to machine 2. What really matters to me is eSata, btw, I do not even have a USB 3.0 device to test with.
    First of all, here's what happens when I plug the card into machine 1:
    user@1-ubuntu:~$ uname -r
    3.13.0-39-generic
    user@1-ubuntu:~$ dmesg | tail -n 44 # that's where it begins
    [ 1953.576472] pciehp 0000:00:1c.3:pcie04: Card present on Slot(3)
    [ 1953.728077] pci 0000:05:00.0: [1b21:1042] type 00 class 0x0c0330
    [ 1953.728119] pci 0000:05:00.0: reg 0x10: [mem 0x00000000-0x00007fff 64bit]
    [ 1953.728304] pci 0000:05:00.0: PME# supported from D3hot
    [ 1953.736062] pci 0000:05:00.0: BAR 0: assigned [mem 0xf0000000-0xf0007fff 64bit]
    [ 1953.736087] pcieport 0000:00:1c.3: PCI bridge to [bus 05-0c]
    [ 1953.736092] pcieport 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    [ 1953.736098] pcieport 0000:00:1c.3: bridge window [mem 0xf0000000-0xf1ffffff]
    [ 1953.736104] pcieport 0000:00:1c.3: bridge window [mem 0xf2900000-0xf29fffff 64bit pref]
    [ 1953.736133] pci 0000:05:00.0: no hotplug settings from platform
    [ 1953.736143] pci 0000:05:00.0: enabling device (0000 -> 0002)
    [ 1953.736398] xhci_hcd 0000:05:00.0: xHCI Host Controller
    [ 1953.736406] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 9
    [ 1953.743621] xhci_hcd 0000:05:00.0: irq 46 for MSI/MSI-X
    [ 1953.743629] xhci_hcd 0000:05:00.0: irq 49 for MSI/MSI-X
    [ 1953.743635] xhci_hcd 0000:05:00.0: irq 50 for MSI/MSI-X
    [ 1953.743784] usb usb9: New USB device found, idVendor=1d6b, idProduct=0002
    [ 1953.743788] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 1953.743791] usb usb9: Product: xHCI Host Controller
    [ 1953.743794] usb usb9: Manufacturer: Linux 3.13.0-39-generic xhci_hcd
    [ 1953.743796] usb usb9: SerialNumber: 0000:05:00.0
    [ 1953.743973] hub 9-0:1.0: USB hub found
    [ 1953.743990] hub 9-0:1.0: 2 ports detected
    [ 1953.744147] xhci_hcd 0000:05:00.0: xHCI Host Controller
    [ 1953.744153] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 10
    [ 1953.744218] usb usb10: New USB device found, idVendor=1d6b, idProduct=0003
    [ 1953.744221] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 1953.744224] usb usb10: Product: xHCI Host Controller
    [ 1953.744227] usb usb10: Manufacturer: Linux 3.13.0-39-generic xhci_hcd
    [ 1953.744229] usb usb10: SerialNumber: 0000:05:00.0
    [ 1953.744366] hub 10-0:1.0: USB hub found
    [ 1953.744383] hub 10-0:1.0: 2 ports detected
    [ 1954.447851] usb 10-1: new SuperSpeed USB device number 2 using xhci_hcd
    [ 1954.460505] usb 10-1: Parent hub missing LPM exit latency info. Power management will be impacted.
    [ 1954.461215] usb 10-1: New USB device found, idVendor=174c, idProduct=5106
    [ 1954.461219] usb 10-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
    [ 1954.461222] usb 10-1: Product: AS2105
    [ 1954.461225] usb 10-1: Manufacturer: ASMedia
    [ 1954.461228] usb 10-1: SerialNumber: 00000000000000000000
    [ 1954.463146] usb-storage 10-1:1.0: USB Mass Storage device detected
    [ 1954.463279] scsi7 : usb-storage 10-1:1.0
    [ 1955.460385] scsi 7:0:0:0: Direct-Access ASMT 2105 0 PQ: 0 ANSI: 5
    [ 1955.465099] sd 7:0:0:0: Attached scsi generic sg1 type 0
    [ 1955.466483] sd 7:0:0:0: [sdb] Attached SCSI removable disk
    I wouldn't know of any attached disks, and neither does it show up. Note that it is only the card I plugged in, no hard drive attached to it.
    hburg1234@packrehsel:~$ lspci -k
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    Subsystem: Lenovo Device 20e0
    Kernel driver in use: agpgart-intel
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    Subsystem: Lenovo Device 20e4
    Kernel driver in use: i915
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    Subsystem: Lenovo Device 20e4
    00:03.0 Communication controller: Intel Corporation Mobile 4 Series Chipset MEI Controller (rev 07)
    Subsystem: Lenovo Device 20e6
    Kernel driver in use: mei_me
    00:03.3 Serial controller: Intel Corporation Mobile 4 Series Chipset AMT SOL Redirection (rev 07)
    Subsystem: Lenovo Device 20ec
    Kernel driver in use: serial
    00:19.0 Ethernet controller: Intel Corporation 82567LM Gigabit Network Connection (rev 03)
    Subsystem: Lenovo Device 20ee
    Kernel driver in use: e1000e
    00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    Subsystem: Lenovo Device 20f0
    Kernel driver in use: uhci_hcd
    00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    Subsystem: Lenovo Device 20f0
    Kernel driver in use: uhci_hcd
    00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    Subsystem: Lenovo Device 20f0
    Kernel driver in use: uhci_hcd
    00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    Subsystem: Lenovo Device 20f1
    Kernel driver in use: ehci-pci
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    Subsystem: Lenovo Device 20f2
    Kernel driver in use: snd_hda_intel
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    Kernel driver in use: pcieport
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    Kernel driver in use: pcieport
    00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 (rev 03)
    Kernel driver in use: pcieport
    00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    Subsystem: Lenovo Device 20f0
    Kernel driver in use: uhci_hcd
    00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    Subsystem: Lenovo Device 20f0
    Kernel driver in use: uhci_hcd
    00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    Subsystem: Lenovo Device 20f0
    Kernel driver in use: uhci_hcd
    00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    Subsystem: Lenovo Device 20f1
    Kernel driver in use: ehci-pci
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
    Subsystem: Lenovo Device 20f5
    Kernel driver in use: lpc_ich
    00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03)
    Subsystem: Lenovo Device 20f8
    Kernel driver in use: ahci
    00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
    Subsystem: Lenovo Device 20f9
    03:00.0 Network controller: Intel Corporation PRO/Wireless 5100 AGN [Shiloh] Network Connection
    Subsystem: Intel Corporation WiFi Link 5100 AGN
    Kernel driver in use: iwlwifi
    05:00.0 USB controller: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller
    Subsystem: Device 174c:2104
    Kernel driver in use: xhci_hcd
    The last one seems to be important to me, so here's a verbose output on that one.
    user@1-ubuntu:~$ lspci -v | tail -n 8
    05:00.0 USB controller: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller (prog-if 30 [XHCI])
    Subsystem: Device 174c:2104
    Physical Slot: 3
    Flags: bus master, fast devsel, latency 0, IRQ 19
    Memory at f0000000 (64-bit, non-prefetchable) [size=32K]
    Capabilities: <access denied>
    Kernel driver in use: xhci_hcd
    user@1-ubuntu:~$ sudo udevadm monitor -k
    monitor will print the received events for:
    KERNEL - the kernel uevent
    KERNEL[2585.956558] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0 (pci)
    KERNEL[2585.972086] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb9 (usb)
    KERNEL[2585.972116] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb9/9-0:1.0 (usb)
    KERNEL[2585.975736] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10 (usb)
    KERNEL[2585.975763] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-0:1.0 (usb)
    KERNEL[2586.689218] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1 (usb)
    KERNEL[2586.690935] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0 (usb)
    KERNEL[2586.695723] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9 (scsi)
    KERNEL[2586.695757] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/scsi_host/host9 (scsi_host)
    KERNEL[2587.692633] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/target9:0:0 (scsi)
    KERNEL[2587.692667] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/target9:0:0/9:0:0:0 (scsi)
    KERNEL[2587.692691] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/target9:0:0/9:0:0:0/scsi_disk/9:0:0:0 (scsi_disk)
    KERNEL[2587.692708] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/target9:0:0/9:0:0:0/scsi_device/9:0:0:0 (scsi_device)
    KERNEL[2587.692824] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/target9:0:0/9:0:0:0/scsi_generic/sg1 (scsi_generic)
    KERNEL[2587.692898] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/target9:0:0/9:0:0:0/bsg/9:0:0:0 (bsg)
    KERNEL[2587.699636] add /devices/virtual/bdi/8:16 (bdi)
    KERNEL[2587.699771] add /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/target9:0:0/9:0:0:0/block/sdb (block)
    KERNEL[2587.703694] change /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/target9:0:0/9:0:0:0/block/sdb (block)
    KERNEL[2587.709178] change /devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb10/10-1/10-1:1.0/host9/target9:0:0/9:0:0:0/block/sdb (block)
    Apart from the supposedly found block device (can't judge) I am not sure if there is anything that is really eSata specific and not USB 3.0 related.
    So far what I think I can tell from the output is that the modules
    pciehp pci pcieport
    seem to be dealing with the express card as such whereas
    xhci_hcd
    takes care of USB 3.0. I cannot see any clear reference to the eSata connector, which might not be surprising if the bus is just passed through (again: not sure).
    For completeness' sake here comes the output of
    user@1-ubuntu:~$ lsmod | tee before
    Module Size Used by
    ctr 13049 1
    ccm 17773 1
    pci_stub 12622 1
    vboxpci 23194 0
    vboxnetadp 25670 0
    vboxnetflt 27613 0
    vboxdrv 339502 3 vboxnetadp,vboxnetflt,vboxpci
    cuse 13445 3
    dm_crypt 23177 1
    btusb 32412 0
    cdc_ether 14351 0
    usbnet 43913 1 cdc_ether
    cdc_acm 28803 0
    mii 13934 1 usbnet
    cdc_wdm 19053 0
    rfcomm 69160 8
    bnep 19624 2
    bluetooth 391136 22 bnep,btusb,rfcomm
    binfmt_misc 17468 1
    coretemp 13435 0
    kvm_intel 143148 0
    kvm 451729 1 kvm_intel
    thinkpad_acpi 81013 0
    nvram 14411 1 thinkpad_acpi
    serio_raw 13462 0
    arc4 12608 2
    snd_seq_midi 13324 0
    snd_seq_midi_event 14899 1 snd_seq_midi
    snd_hda_codec_conexant 57441 1
    iwldvm 232285 0
    snd_hda_intel 56451 3
    mac80211 630653 1 iwldvm
    snd_hda_codec 192906 2 snd_hda_codec_conexant,snd_hda_intel
    snd_hwdep 13602 1 snd_hda_codec
    snd_rawmidi 30144 1 snd_seq_midi
    lpc_ich 21080 0
    iwlwifi 169932 1 iwldvm
    snd_seq 61560 2 snd_seq_midi_event,snd_seq_midi
    snd_pcm 102099 2 snd_hda_codec,snd_hda_intel
    mei_me 18627 0
    cfg80211 484040 3 iwlwifi,mac80211,iwldvm
    snd_page_alloc 18710 2 snd_pcm,snd_hda_intel
    mei 82276 1 mei_me
    snd_seq_device 14497 3 snd_seq,snd_rawmidi,snd_seq_midi
    snd_timer 29482 2 snd_pcm,snd_seq
    snd 69322 17 snd_hwdep,snd_timer,snd_hda_codec_conexant,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,thinkpad_acpi,snd_seq_device,snd_seq_midi
    soundcore 12680 1 snd
    parport_pc 32701 0
    ppdev 17671 0
    mac_hid 13205 0
    tp_smapi 28367 0
    thinkpad_ec 14449 1 tp_smapi
    lp 17759 0
    parport 42348 3 lp,ppdev,parport_pc
    i915 783961 2
    psmouse 106714 0
    ahci 25819 3
    libahci 32716 1 ahci
    i2c_algo_bit 13413 1 i915
    e1000e 254433 0
    drm_kms_helper 55071 1 i915
    drm 303102 3 i915,drm_kms_helper
    ptp 18933 1 e1000e
    pps_core 19382 1 ptp
    video 19476 1 i915
    wmi 19177 0
    and a list of the newly loaded modules:
    user@1-ubuntu:~$ diff before <(lsmod)
    1a2
    > usb_storage 62209 0
    Now, on my Arch machine the situation is as follows when the card is plugged in:
    user@3-arch:~$ uname -r
    3.17.2-1-ARCH
    user@3-arch:~$ sudo udevadm monitor -k
    monitor will print the received events for:
    KERNEL - the kernel uevent
    user@3-arch:~$ lsmod
    Module Size Used by
    sr_mod 21903 0
    cdrom 47479 1 sr_mod
    hid_generic 12393 0
    usbhid 48603 0
    hid 102220 2 hid_generic,usbhid
    cdc_ether 12564 0
    usbnet 34978 1 cdc_ether
    cdc_acm 30362 0
    cdc_wdm 17427 0
    mii 12675 1 usbnet
    ctr 12927 0
    ccm 17534 0
    fuse 87410 3
    joydev 17063 0
    wacom_w8001 12706 0
    serport 12842 1
    mousedev 17272 0
    iTCO_wdt 12831 0
    iTCO_vendor_support 12649 1 iTCO_wdt
    coretemp 12820 0
    kvm 417429 0
    pcspkr 12595 0
    psmouse 107214 0
    evdev 21544 20
    mac_hid 12633 0
    serio_raw 12849 0
    i2c_i801 16965 0
    snd_hda_codec_conexant 21835 1
    snd_hda_codec_generic 63126 1 snd_hda_codec_conexant
    arc4 12536 2
    iwldvm 184847 0
    mac80211 604456 1 iwldvm
    i915 905750 2
    lpc_ich 20768 0
    iwlwifi 156837 1 iwldvm
    snd_hda_intel 26387 0
    snd_hda_controller 26938 1 snd_hda_intel
    cfg80211 445286 3 iwlwifi,mac80211,iwldvm
    thinkpad_acpi 69074 0
    e1000e 215686 0
    snd_hda_codec 108536 4 snd_hda_codec_conexant,snd_hda_codec_generic,snd_hda_intel,snd_hda_controller
    drm_kms_helper 80934 1 i915
    shpchp 35210 0
    snd_hwdep 17244 1 snd_hda_codec
    snd_pcm 88487 3 snd_hda_codec,snd_hda_intel,snd_hda_controller
    ptp 17692 1 e1000e
    pps_core 17225 1 ptp
    snd_timer 26614 1 snd_pcm
    wmi 17339 0
    drm 259106 4 i915,drm_kms_helper
    nvram 13034 1 thinkpad_acpi
    thermal 17559 0
    snd 73436 8 snd_hwdep,snd_timer,snd_hda_codec_conexant,snd_pcm,snd_hda_codec_generic,snd_hda_codec,snd_hda_intel,thinkpad_acpi
    soundcore 13031 2 snd,snd_hda_codec
    led_class 12859 2 iwldvm,thinkpad_acpi
    rfkill 18867 3 cfg80211,thinkpad_acpi
    ac 12715 0
    hwmon 12930 2 coretemp,thinkpad_acpi
    acpi_cpufreq 17218 1
    battery 17452 0
    i2c_algo_bit 12744 1 i915
    mei_me 17900 0
    tpm_tis 17182 0
    i2c_core 50152 5 drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit
    tpm 31467 1 tpm_tis
    mei 75079 1 mei_me
    intel_agp 17432 0
    intel_gtt 17848 3 i915,intel_agp
    video 18043 1 i915
    processor 27777 3 acpi_cpufreq
    button 12953 1 i915
    sch_fq_codel 17343 6
    tp_smapi 27621 0
    thinkpad_ec 12813 1 tp_smapi
    ext4 497696 3
    crc16 12343 1 ext4
    mbcache 17171 1 ext4
    jbd2 86417 1 ext4
    sha256_ssse3 25692 2
    sha256_generic 16804 1 sha256_ssse3
    ecb 12737 0
    cbc 12696 1
    algif_skcipher 17051 0
    af_alg 12988 1 algif_skcipher
    dm_crypt 22551 1
    dm_mod 93490 15 dm_crypt
    sd_mod 44398 3
    crct10dif_generic 12581 1
    crc_t10dif 12431 1 sd_mod
    crct10dif_common 12356 2 crct10dif_generic,crc_t10dif
    atkbd 22254 0
    libps2 12739 2 atkbd,psmouse
    ata_generic 12490 0
    ahci 33291 2
    libahci 27158 1 ahci
    pata_acpi 12771 0
    uhci_hcd 43507 0
    ehci_pci 12512 0
    ehci_hcd 69939 1 ehci_pci
    libata 181518 4 ahci,pata_acpi,libahci,ata_generic
    usbcore 199381 9 uhci_hcd,ehci_hcd,ehci_pci,usbhid,usbnet,cdc_acm,cdc_wdm,cdc_ether
    usb_common 12440 1 usbcore
    scsi_mod 147543 3 libata,sd_mod,sr_mod
    i8042 18002 1 libps2
    serio 18282 9 serio_raw,atkbd,i8042,serport,wacom_w8001,psmouse
    Sticking to my suspicion that this might just be a USB related issue and eSata might still work due to some sort of passthrough, I attached the very eSata drive that I could mount on Ubuntu. It did not work.
    I then researched and found this blog post: http://okomestudio.net/biboroku/?p=1360
    So I downloaded the pkgbuild for the arch linux core kernel and checked the config. It matched the recommendations.
    Another hint I found was to unload acpiphp and force-reload it. However, this tip does not seem to apply to the arch kernel:
    [user@3-arch:~$ sudo rmmod acpiphp
    rmmod: ERROR: Module acpiphp is builtin.
    Anyone any idea on how to make the card work?
    Thank you!
    Last edited by archery1234 (2014-11-15 10:46:35)

    For anyone else seeking help on that: Card slot was deactivated in 2/3 Bioses.

  • Logical Standby Does not work

    Hi,
    I'm not sure if anyone is using the logical standby database because it appears to me to be complete rubbish. The apply of redo data just does not appear to work. for example I have this table:
    create table test29(
    BP_ID NUMBER(10) NOT NULL,
    BP_K_ID NUMBER(10) NOT NULL,
    BP_TYP CHAR(2) NOT NULL,
    BP_U_ID NUMBER(10),
    BP_ACTIVE DATE NOT NULL,
    BP_USED NUMBER(6) NOT NULL,
    BP_STATUS CHAR(1) NOT NULL,
    BP_LASTUPDATE DATE NOT NULL
    and insert this data:
    insert into test29
    select 10643,291904,'O ',1,TO_DATE('01/05/2003 00:44:18', 'MM/DD/YYYY HH24:MI:SS'),0,'A',TO_DATE('01/06/2004 20:13:08', 'MM/DD/YYYY HH24:MI:SS') from dual     
    When this information is transfered to the logical standby and it attempts to read it i get a ORA-26689: column datatype mismatch in LCR. But wait! If I change the name of column 6 (BP_PUNKTE) to say (BP_AAAAA) and try again it works!!! The logical standby fails on many tables just because of the name (updates, inserts anything)...did anyone at oracle test this? Is anyone using the logical standby have any ideas how and if I could ever get this working.
    Using Oracle 9.2.0.4. on Redhat 2.1.
    Thanks!
    Steve.     

    unfortunately not. the oracle licence was purchased before i arrived and when I attempted to get a support contact they want the money since we purchased the licence 3 years ago. 3 years of cash for free! why should I pay for their bugs anyway, when we buy this expensive software it should work. when I buy a new car from ford and radio does not work I don't have to pay ford to fix it. rip-off!

  • Need some help getting my logic express 7 to work!

    alright so....i bought logic express 7 about 3 years ago and i HAVE NEVER USED IT! the reason being is because i could never get it to work and gave up 3 yrs ago. i just recently came across again while cleaning out my closet...i tried again but it still wont work...i think it says i need logic express 6 in order to get it work. is this true???? if so, where can i get logic express 6? i've searched everywhere and i can't seem to find it!
    can someone please help me out?? i don't want it to go to waste! please?
    thanx.
    -smitty

    sorry disregard...i just saw the sticker that says upgrade for express...idiot!

  • Regular expression does not work in IE

    Hi,
    I'm having a regular expression which should check the content of an inputText field: it should contain a number, a character and the size should be at least 6. It's working when I test it in FireFox but it always fails to succeed in IE:
              <af:inputText>
                <af:validateRegExp pattern="^(?=.*[a-zA-Z])(?=.*[0-9])[a-zA-Z0-9]{6,24}$"
                                   noMatchMessageDetail="Does not match."/>
              </af:inputText>How comes it does not work in IE (6.0)?
    JDeveloper 10.1.3.3
    Thanks in advance,
    Koen Verhulst

    hi Koen
    The web page you refer to ...
    http://www.fileformat.info/tool/regex.htm
    ... seems to be doing server side Java regular expressions (and as such will behave the same in both FF and IE).
    The af:validateRegExp component you want to use does client side evaluation of the regular expression, using scripting, hence the apparent difference between FF and IE.
    There is also this web page ...
    http://www.regular-expressions.info/javascriptexample.html
    ... that seems to behave similar to the markup and scripting resulting from the af:validateRegExp component.
    Besides the value "2abcdef" there seem to be others that are accepted by IE for the regular expression "^(?=.*[a-zA-Z])(?=.*[0-9])[a-zA-Z0-9]{6,24}$", values like these:
    "a2abcdef", "a2abcde", "abcdef2abcde", "2a3cdef", "2a34567"
    Although these values are not accepted by IE (but are accepted in FF):
    "2abcde", "23bcdef"
    success
    Jan

  • Will logic express 6 install/work on an intel machine?

    don't need it to work, just install, so I can then install the Logic Pro 7.2 upgrade overtop of it. Any thoughts or ideas?

    Hi,
    The Logic Pro 7.2 update will only install on an existing Logic Pro 7 program.
    You will have to first upgrade from Logic 6 to Logic 7, and THEN update to 7.2
    Cheers
    PS Logic 6 will not run properly on an Intel Machine.

  • Airport Express A1088 Not Working With iTunes 10 AirPlay but works with iPad & iPhone

    Hi,
    I'm really hoping someone can help me. I have just got an ADSL connection at home and have started using my Airport Express I've had for years but haven't used, model number A1088. I can use the Airport Express to use AirPlay from my iPhone, iPod and iPad. iTunes 10 on my 2010 13" MacBook Pro recognises the Airport Express as an AirPlay device, however when I attempt to play music through remote speakers using the Airport Express as the AirPlay device I receive the error message "An error occurred while connecting to AirPlay device "emptyk86 Airport Express". The network connection failed". I have performed numerous hard resets and resets within the Airport Utility, to no avail. I could accept that as the Aiport Express is quite old now, that it could be broken, but as it works for all iPhones, iPods, and iPads I don't understand what I'm doing wrong!
    Thanks for your time.

    The same thing started happening to me this morning.  I have an old Airport Express, New MacBook Pro, recently updated to Lion, have the latest version of iTunes.  Everything worked fine until this morning.  I was playing music, stopped it, and when I tried to resume, got the error message. I turned evertying off and on and reset everything.  The problem persisted.  However, I had no problem playng music from my iPad library through the system using the iPad. 
    I have a remote app on the iPad and, oddly enough, found that I could play anything (playlists, songs, etc.) from the MacBook Pro iTunes library through the system using the iPad remorte app.  Once I had that running, I went back to the MacBook Pro and found I had full functionality with iTunes on the MacBook Pro.  I closed and reopened iTunes a couple of times on the MacBook Pro to test it, and found that sometimes it would work fine and sometimes I would get the error message.  When I got the error message, I went through the procedure with the iPad to get it going, and that worked most of the time.  When it did not work the first time, I found that playing a song from the iPad library first and then going to the remote app seemed to help. 
    For sure, this is more a workaround than a solution, but maybe someone who understands how these things work might recognize the problem and propose a solution.

  • Logical mapping seems not working

    Logical mapping in CF server admin seem not working.. I just
    created a logical mapping \images with a valid path in the server
    c:\images.
    If I try to access
    http://localhost:8500/images/test.gif..
    it shows the image..
    But if the same URL is embedded in the codlfusion page for a
    image. It does not show the image..
    ie.. I get a 'x' symbol for the image.. If I right click on
    the image and see the properties, it shows a URL.. Same URL, if I
    copy paste into IE browser, it shows the image.. Is there a
    problem??

    In the Coldfusion Administrator, put
    logical path = /images
    directory path = C:\CFusionMX7\wwwroot\images
    Then, this should show the picture
    <img src="/images/test.gif">
    as would
    <img src="
    http://127.0.0.1:8500/images/test.gif"
    >

  • Copy expression only not working

    I'm working on AE CC 2014.
    Copy expression only is not working, I'm not sure if it's not copying anything or not pasting what it copied. But no expression is being applied to the other layers as it used to be the case before.

    Hey Tim,
    I filed a bug report with Adobe as you asked.
    When you said the problem went away are you positive the only thing you did was switch applications? What's happening now is that I select Copy expression only and then try and paste and nothing happens, but then the entire menu is grayed out (see attached) until I purge everything, at what point the issue starts all over.
    I also tried switching to other applications and copying something random there to see if I can unclog the clipboard, but nothing seems to work.
    I haven't been able to make the problem go away.
    Best,
    David.

Maybe you are looking for

  • Iphone 4 slow laggy on IOS7

    Hi, First post (never had to complain about updates before until now ) so if i'm wrong on topic move it please. I have a Iphone 4 (waiting on the iphone5s but my son going to get this one). I updated to IOS7 and i'm disappointed about the speed! is t

  • Oracle 9i Bug Or Compatability issue with Forms 5

    I create this function in Ora 8 and using it in Forms 5. It working fine in forms trigger When-Create-Record. But when I migrate to Ora 9, it working in SQLs but in forms 5 it genrates an error: ORA-03113 end-of-file on communication channel CREATE O

  • PSE9 and Windows Live Mail - Help

    I am trying to send photos via "Share" email attachement and Windows Live Mail.  I get to the part where you are supposed to be sent to WLM, and then it comes up with the error message "Elements Organizer could not finish creating your e-mail message

  • Load-Balancers strange behaviour.

    Hi Gurus, I have a kind of a strange behaviour of our our CSS11150 Load-Balancers configured in Active-Standby mode. These LBs monitor the servers and the latters report UP and Down state from the Standby unit while they are always UP from teh Active

  • Cannot create eprint account

    Each time I try to create an eprint account, I get the message "Ajax submit failed: error = 403, Forbidden"  What am I doing wrong?