Transportation Zone doesn`t exist?

Hi guys,
     I have in our project the following error message when I use the transaction BBPGETVD. 
     Message:  "The transportation zone XXX is not defined for country ZZZ"
     I found within the SPRO the point where I can put the transportation zone, but it`s impossible to do manually for the entire records.
     *I would need a way where those data will be transported together with vendor data or then to ignore those data during replication. Is there a adpater object for this R3AC3, R3AC4, R3AC5? *
     I`m seeing the erros in SLG1.
     SRM 7
     Again, I need help from you, consultants. Please.
     Thanks a lot

We did a BADI for this case.

Similar Messages

  • Transportation zone does not exists

    hi,
    its urgent
    plz resolve this
    i have to create the bdc program so before
    there is a problem in transportation zone fields in xd01 , i am give the data for particular fields but it does not exists
    while am press the f4 key, it should ask the project, i dont understand further. plz tell the solutions clearly.
    regards
    surender
    early responsers should be rewarded

    As per SAP documentation,
    Sales and distribution
    the system automatically proposes a suitable route by using the transportation zone of the goods recipient in combination with other information about the delivery, such as the
    Countries of origin and destination
    Shipping conditions
    Transportation group
    Example
    In the USA, for example, you can define regional zones to correspond to the US postal zip codes.
    You can see the values for Transportation zones in TZONE table. The zones are defined at a country level.
    Hope this helps. Reward points if the answer is useful.
    Thanks,
    Balaji

  • Transportation zone can't be change in Customer Master

    Hi Guys,
    I have a question regarding changing the Transportation zone in Customer Master. This area is being greyed out as I cannot change it. Even if I extend the Customer,  the field for Transportation zone is greyed out. My question is, how can I change the transportation zone for an existing customer?
    Best Regards,
    Saravanand

    Hi
    Transportation zone of the customer master is copied from the genenral data - address tab to the sales area data - shipping tab.
    in OBD2 if you maintain general data - address as required or optional you can change in the customer master of general data - address tab, if you changed here it will copied to sales area - shipping tab
    regards
    vardhan

  • ORDERS: transportation zone of partner

    Hi,
    Given that on IDoc field exists for transportation zone at E1EDKA1, I tried to enhance the function module IDOC_INPUT_ORDERS. Fields XVBADR-LZONE and XVBPA-LZONE can be populated with transportation zone values with the enhancement. However, that value is not actually saved to sales order partner information. I also tried enhancement under such user exits as EXIT_SAPLVEDA_001. However, it still doesn't work. How can I fill "Transportation Zone" in IDoc?
    Best regards,
    ts

    yes, the validity is ok.
    The error message for FB00 is:
    ACCESS NOT MADE (INITIALIZED FIELD)
    Field in condition table  -   Field in document  -  Value in document
    Service agent                   Service agent             1058
    Dest.zone                        Dest zone                 !(exclamation pnt)
    The problem is that system doesn't find dest zone in document.
    Why?
    I have defined it in customer master.

  • "Transport zone is not defined for country US"  error during sourcing

    Hi Friends,
        I have an issue that is happening when I transfer purchase reqs from ECC to SRM sourcing. We are on ECC 6.0 and SRM 5.5.
    when there is a transport zone defined for a storage location for a certain plant, then transfer of that purchase req does transfer to SRM SOCO. I get a error "Transport zone MXXXXXX is not defined for country US".
    DNL_CUST_BASIS3, Prod0, Prod1 have been replicated from ECC to SRM. It works if there is no Transport zone defined for a storage location.
    SRM Org structure has Location and Storage locations defined that has Transport Zone and exists in ECC.
    This is stopping me from moving forward with proper testing. Please advise or suggest anyresolution.
    Thanks all
    Viktor P

    Dear Muthu,
       Thanks for the reply. There is another Address spro setting in SRM - Address Management where Transport zones can be nmaintained. I have not tried this Tcode as I do not have authorization.
    Thanks
    Viktor

  • Enhancing existing Abap code: using values that doesn't exist in table

    Hi,<br><br>
    I would like to enhance this code . My requirement is as follows.<br><br>
    I have two tables  customer and product<br><br>
    <pre>KNVP  customer master data table
    Customer                            PF                Person
    700008          YF     45555
    700008          YQ     46666
    700008          ZF     46666
    700008          YM     49999
    700008          ZQ     44444
    700008          ZM     43333
    T179 product hierarchy table*
    product hier                     PF
    1000014000          ZM     
    1000015000          ZF     
    1000033000          ZQ     
    The current extractor is showing YM for all YPF values
    Customer         Zperson          ZPF        YPF    YPerson
    700008            46666              ZF          YM        49999
    700008            43333              ZQ         YM        49999
    700008            44444              ZM         YM        49999</pre>
    <br><br>
    Case 1:IF customer doesn't have Partner function value YQ in master data then partner function YF person and partner function should be use.
    <br><br>
    case 2: IF customer doesn't have Partner function value YF in master data then partner function YQ person and partner function should be use.
    <br><br>
    case3:IF customer doesn't have Partner function value YQ and YF in master data then partner function YM person and partner function should be use.
    <br><br>
    The tricky part is that YQ doesn't exist in T179 table
    <br><br>
    <pre>
    LOOP AT T_DATA.
          ZIDX = SY-TABIX.
          CLEAR T179.
       Select partner function, assigned to current
       product hierarchy level 2
          SELECT * FROM T179
                   WHERE  STUFE = '2'
                   AND    PRODH = T_DATA-PRODH.
          ENDSELECT.
       Replace value with new partner function.
       by replacing first letter to 'Y'
          CONCATENATE 'Y' T179-ZZPARVW+1(1) INTO NEWPF.
       Try to find new sales employee with this new partner function
          CLEAR KNVP.
          SELECT * FROM  KNVP UP TO 1 ROWS
            WHERE  KUNNR  = T_DATA-KUNNR
            AND    VKORG  = T_DATA-VKORG
            AND    PARVW  = NEWPF.
          ENDSELECT.
          IF SY-SUBRC EQ 0.
       New partner found with this partner function
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
      ELSE.
                NEWPF = 'YM'.
       Try to find new sales employee with partner function 'YM'
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = NEWPF.
            ENDSELECT.
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
          ENDIF.
          MODIFY T_DATA INDEX ZIDX TRANSPORTING ZPARVW ZPERNR.
    </pre>
    <br><br>Edited by: Matt on Aug 24, 2010 9:31 AM - fixed formatting

    Hi,
    thanks for your input, I have written it like this and it is working well for YQ and YF partner functions but YM is not showing when both are missing.
    LOOP AT T_DATA.
          ZIDX = SY-TABIX.
          CLEAR T179.
    *    Select partner function, assigned to current
    *    product hierarchy level 2
          SELECT * FROM T179
                   WHERE  STUFE = '2'
                   AND    PRODH = T_DATA-PRODH.
          ENDSELECT.
    *    Replace value with new partner function.
    *    by replacing first letter to 'Y'
          CONCATENATE 'Y' T179-ZZPARVW+1(1) INTO NEWPF.
    IF SY-SUBRC EQ 0.
    IF NEWPF EQ 'YF'.
          READ TABLE T_KNVP WITH KEY PARVW = 'YF'.
            IF SY-SUBRC EQ 0.  "YF exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YF'.
            ENDSELECT.
              T_DATA-ZPARVW = 'YF'.
              T_DATA-ZPERNR = KNVP-PERNR.
            ELSE.
            READ TABLE T_KNVP WITH KEY PARVW = 'YQ'.
            IF SY-SUBRC EQ 0. "YQ exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YQ'.
            ENDSELECT.
               T_DATA-ZPARVW = 'YQ'.
               T_DATA-ZPERNR = KNVP-PERNR.
    ENDIF.
    ENDIF.
    ENDIF.
    IF NEWPF EQ 'YQ'.
          READ TABLE T_KNVP WITH KEY PARVW = 'YQ'.
            IF SY-SUBRC EQ 0.  "YQ exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YQ'.
            ENDSELECT.
              T_DATA-ZPARVW = 'YQ'.
              T_DATA-ZPERNR = KNVP-PERNR.
            ELSE.
            READ TABLE T_KNVP WITH KEY PARVW = 'YF'.
            IF SY-SUBRC EQ 0. "YF exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YF'.
            ENDSELECT.
               T_DATA-ZPARVW = 'YF'.
               T_DATA-ZPERNR = KNVP-PERNR.
    ENDIF.
    ENDIF.
    ENDIF.
          ELSE.
            NEWPF = 'YM'.
    *    Try to find new sales employee with partner function 'YM'
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = NEWPF.
            ENDSELECT.
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
          ENDIF.
          MODIFY T_DATA INDEX ZIDX TRANSPORTING ZPARVW ZPERNR.
        ENDLOOP.
    thanks
    Edited by: Bhat Vaidya on Aug 30, 2010 1:31 PM

  • SRM_WF doesn't exist in BRF

    Hi,
    The object SRM_WF doesn't exist in 1 of our system.
    I run the program BRF_TRANSPORT_SIMPLE in the sandbox and choose the option Transport.
    And a transport request is created and it has been imported into the new system.
    However, when I go to transaction BRF, this SRM_WF object does not exist.
    Am I missing anything?
    Thanks
    Jack

    Hi,
    Please try "copy" option from client 000.
    Regards,
    Masa

  • /dev/sda1 doesn't exist

    Hello,
    Whenever I try to mount my flash drive I use this command:
    #mount /dev/sda1 /mnt/usb
    For some reason, it says now that /dev/sda1 doesn't exist.
    I think my flash drive itself is dead but it's not inserted when the computer starts so I don't know why the device isn't in /dev.
    I'm currently at school so I can't give the exact error. Tell me if you need the output of any command.

    I do have other things in the usb ports. They're a brother printer and a wireless mouse piece. Here is the output of dmesg:
    [ameen@manghi ~]$ dmesg
    Linux version 2.6.19-ARCH (root@Laptop) (gcc version 4.1.2 20061215 (prerelease)) #1 SMP PREEMPT Thu Jan 11 20:08:17 CET 2007
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000001fff0000 (usable)
    BIOS-e820: 000000001fff0000 - 000000001fff8000 (ACPI data)
    BIOS-e820: 000000001fff8000 - 0000000020000000 (ACPI NVS)
    BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    BIOS-e820: 00000000ffee0000 - 00000000fff00000 (reserved)
    BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
    0MB HIGHMEM available.
    511MB LOWMEM available.
    Entering add_active_range(0, 0, 131056) 0 entries of 256 used
    Zone PFN ranges:
    DMA 0 -> 4096
    Normal 4096 -> 131056
    HighMem 131056 -> 131056
    early_node_map[1] active PFN ranges
    0: 0 -> 131056
    On node 0 totalpages: 131056
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 4064 pages, LIFO batch:0
    Normal zone: 991 pages used for memmap
    Normal zone: 125969 pages, LIFO batch:31
    HighMem zone: 0 pages used for memmap
    DMI 2.3 present.
    ACPI: RSDP (v000 AMI ) @ 0x000fa2c0
    ACPI: RSDT (v001 AMIINT SiS735XX 0x00001000 MSFT 0x0100000b) @ 0x1fff0000
    ACPI: FADT (v001 AMIINT SiS735XX 0x00001000 MSFT 0x0100000b) @ 0x1fff0030
    ACPI: DSDT (v001 SiS 735 0x00000100 MSFT 0x0100000d) @ 0x00000000
    ACPI: PM-Timer IO Port: 0x808
    Allocating PCI resources starting at 30000000 (gap: 20000000:dec00000)
    Detected 1095.404 MHz processor.
    Built 1 zonelists. Total pages: 130033
    Kernel command line: root=/dev/hdb2 ro
    Local APIC disabled by BIOS -- you can enable it with "lapic"
    mapped APIC to ffffd000 (0140b000)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 2048 (order: 11, 8192 bytes)
    Console: colour VGA+ 80x25
    Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    Memory: 515000k/524224k available (2330k kernel code, 8704k reserved, 735k data, 260k init, 0k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff83000 - 0xfffff000 ( 496 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xe0800000 - 0xff7fe000 ( 495 MB)
    lowmem : 0xc0000000 - 0xdfff0000 ( 511 MB)
    .init : 0xc0405000 - 0xc0446000 ( 260 kB)
    .data : 0xc0346806 - 0xc03fe64c ( 735 kB)
    .text : 0xc0100000 - 0xc0346806 (2330 kB)
    Checking if this processor honours the WP bit even in supervisor mode... Ok.
    Calibrating delay using timer specific routine.. 2192.10 BogoMIPS (lpj=4384211)
    Security Framework v1.0.0 initialized
    Mount-cache hash table entries: 512
    CPU: After generic identify, caps: 0383f9ff c1c3f9ff 00000000 00000000 00000000 00000000 00000000
    CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    CPU: L2 Cache: 256K (64 bytes/line)
    CPU: After all inits, caps: 0383f9ff c1c3f9ff 00000000 00000420 00000000 00000000 00000000
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    Compat vDSO mapped to ffffe000.
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Freeing SMP alternatives: 12k freed
    checking if image is initramfs... it is
    Freeing initrd memory: 501k freed
    ACPI: Core revision 20060707
    ACPI: Looking for DSDT in initramfs... error, file /DSDT.aml not found.
    ACPI: setting ELCR to 0200 (from 0c20)
    CPU0: AMD Athlon(tm) Processor stepping 00
    SMP motherboard not detected.
    Local APIC not detected. Using dummy APIC emulation.
    Brought up 1 CPUs
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: PCI BIOS revision 2.10 entry at 0xfdb01, last bus=1
    PCI: Using configuration type 1
    Setting up standard PCI resources
    ACPI: Interpreter enabled
    ACPI: Using PIC for interrupt routing
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    PCI: Probing PCI hardware (bus 00)
    Uncovering SIS18 that hid as a SIS503 (compatible=1)
    Enabling SiS 96x SMBus.
    Boot video device is 0000:01:00.0
    ACPI: PCI Interrupt Routing Table [_SB_.PCI0._PRT]
    ACPI: Power Resource [URP1] (off)
    ACPI: Power Resource [URP2] (off)
    ACPI: Power Resource [FDDP] (off)
    ACPI: Power Resource [LPTP] (off)
    ACPI: PCI Interrupt Link [LNKA] (IRQs *11)
    ACPI: PCI Interrupt Link [LNKB] (IRQs *11)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 *10 12 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 *10 12 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 *10 12 14 15)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 7 10 12 14 15)
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    pnp: PnP ACPI: found 11 devices
    SCSI subsystem initialized
    PCI: Using ACPI for IRQ routing
    PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    PCI: Bridge: 0000:00:01.0
    IO window: disabled.
    MEM window: cde00000-cfefffff
    PREFETCH window: bdc00000-cdcfffff
    NET: Registered protocol family 2
    IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
    TCP established hash table entries: 16384 (order: 5, 196608 bytes)
    TCP bind hash table entries: 8192 (order: 4, 98304 bytes)
    TCP: Hash tables configured (established 16384 bind 8192)
    TCP reno registered
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: overridden by ACPI.
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Installing knfsd (copyright (C) 1996 [email protected]).
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    ACPI: Power Button (FF) [PWRF]
    ACPI: Sleep Button (CM) [SLPB]
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
    serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 10
    PCI: setting IRQ 10 as level-triggered
    ACPI: PCI Interrupt 0000:00:0f.0[A] -> Link [LNKD] -> GSI 10 (level, low) -> IRQ 10
    0000:00:0f.0: ttyS2 at I/O 0xd000 (irq = 10) is a 16550A
    RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize
    loop: loaded (max 8 devices)
    PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    TCP cubic registered
    NET: Registered protocol family 1
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    ACPI: (supports S0 S1 S4 S5)
    Time: tsc clocksource has been installed.
    Freeing unused kernel memory: 260k freed
    input: AT Translated Set 2 keyboard as /class/input/input0
    Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    SIS5513: IDE controller at PCI slot 0000:00:02.5
    SIS5513: chipset revision 208
    SIS5513: not 100% native mode: will probe irqs later
    SIS5513: SiS735 ATA 100 (2nd gen) controller
    ide0: BM-DMA at 0xff00-0xff07, BIOS settings: hda:DMA, hdb:DMA
    ide1: BM-DMA at 0xff08-0xff0f, BIOS settings: hdc:DMA, hdd:DMA
    Probing IDE interface ide0...
    hda: ST380013A, ATA DISK drive
    hdb: SAMSUNG SP8004H, ATA DISK drive
    ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
    Probing IDE interface ide1...
    hdc: ATAPI CD-RW CW5205, ATAPI CD/DVD-ROM drive
    hdd: SONY CD-RW CRX160E, ATAPI CD/DVD-ROM drive
    ide1 at 0x170-0x177,0x376 on irq 15
    hda: max request size: 512KiB
    hda: 156301488 sectors (80026 MB) w/8192KiB Cache, CHS=16383/255/63, UDMA(100)
    hda: cache flushes supported
    hda: hda1 hda2 <hda5>
    hdb: max request size: 128KiB
    hdb: 156368016 sectors (80060 MB) w/2048KiB Cache, CHS=65535/16/63, UDMA(100)
    hdb: cache flushes supported
    hdb: hdb1 hdb2
    hdc: ATAPI 52X CD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
    Uniform CD-ROM driver Revision: 3.20
    hdd: ATAPI 32X CD-ROM CD-R/RW drive, 4096kB Cache, UDMA(33)
    kjournald starting. Commit interval 5 seconds
    EXT3-fs: mounted filesystem with ordered data mode.
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ath_hal: module license 'Proprietary' taints kernel.
    ath_hal: 0.9.17.2 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413)
    wlan: 0.8.4.2 (0.9.2.1)
    ath_rate_sample: 1.2 (0.9.2.1)
    ath_pci: 0.9.4.5 (0.9.2.1)
    ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
    PCI: setting IRQ 11 as level-triggered
    ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ 11
    wifi0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
    wifi0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
    wifi0: H/W encryption support: WEP AES AES_CCM TKIP
    wifi0: mac 7.8 phy 4.5 radio 5.6
    wifi0: Use hw queue 1 for WME_AC_BE traffic
    wifi0: Use hw queue 0 for WME_AC_BK traffic
    wifi0: Use hw queue 2 for WME_AC_VI traffic
    wifi0: Use hw queue 3 for WME_AC_VO traffic
    wifi0: Use hw queue 8 for CAB traffic
    wifi0: Use hw queue 9 for beacons
    wifi0: Atheros 5212: mem=0xcffe0000, irq=11
    Linux agpgart interface v0.101 (c) Dave Jones
    ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    NVRM: loading NVIDIA Linux x86 Kernel Module 1.0-9631 Thu Nov 9 17:38:10 PST 2006
    agpgart: Detected SiS 735 chipset
    agpgart: AGP aperture is 64M @ 0xd0000000
    sis630_smbus 0000:00:02.0: SIS630 comp. bus not detected, module not inserted.
    ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
    ACPI: PCI Interrupt 0000:00:02.2[D] -> Link [LNKD] -> GSI 10 (level, low) -> IRQ 10
    ohci_hcd 0000:00:02.2: OHCI Host Controller
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    ohci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 1
    ohci_hcd 0000:00:02.2: irq 10, io mem 0xcfffe000
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 3 ports detected
    USB Universal Host Controller Interface driver v3.0
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    ACPI: PCI Interrupt 0000:00:13.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    uhci_hcd 0000:00:13.0: UHCI Host Controller
    uhci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:13.0: irq 11, io base 0x0000c800
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:13.1[B] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ 11
    uhci_hcd 0000:00:13.1: UHCI Host Controller
    uhci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:13.1: irq 11, io base 0x0000cc00
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 5
    PCI: setting IRQ 5 as level-triggered
    ACPI: PCI Interrupt 0000:00:02.3[A] -> Link [LNKH] -> GSI 5 (level, low) -> IRQ 5
    ohci_hcd 0000:00:02.3: OHCI Host Controller
    ohci_hcd 0000:00:02.3: new USB bus registered, assigned bus number 4
    ohci_hcd 0000:00:02.3: irq 5, io mem 0xcffff000
    sis900.c: v1.08.10 Apr. 2 2006
    usb usb4: configuration #1 chosen from 1 choice
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 3 ports detected
    usb 2-1: new full speed USB device using uhci_hcd and address 2
    input: PC Speaker as /class/input/input1
    ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 10
    ACPI: PCI Interrupt 0000:00:03.0[A] -> Link [LNKG] -> GSI 10 (level, low) -> IRQ 10
    0000:00:03.0: Realtek RTL8201 PHY transceiver found at address 1.
    0000:00:03.0: Using transceiver found at address 1 as default
    eth0: SiS 900 PCI Fast Ethernet at 0xd400, IRQ 10, 00:0a:e6:95:b8:e5.
    sis96x_smbus 0000:00:02.1: SiS96x SMBus base address: 0x0c00
    usb 2-1: configuration #1 chosen from 1 choice
    usb 3-2: new low speed USB device using uhci_hcd and address 2
    usb 3-2: configuration #1 chosen from 1 choice
    parport: PnPBIOS parport detected.
    parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
    ACPI: PCI Interrupt 0000:00:13.2[C] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    ehci_hcd 0000:00:13.2: EHCI Host Controller
    ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 5
    ehci_hcd 0000:00:13.2: irq 10, io mem 0xcfffdf00
    ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 0.95, driver 10 Dec 2004
    usb usb5: configuration #1 chosen from 1 choice
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 4 ports detected
    PPP generic driver version 2.4.2
    ACPI: PCI Interrupt 0000:00:02.7[C] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    usb 3-2: USB disconnect, address 2
    usb 3-2: new low speed USB device using uhci_hcd and address 3
    intel8x0_measure_ac97_clock: measured 53955 usecs
    intel8x0: clocking to 48000
    usb 3-2: configuration #1 chosen from 1 choice
    usb 2-1: USB disconnect, address 2
    lp0: using parport0 (interrupt-driven).
    Real Time Clock Driver v1.12ac
    input: ImExPS/2 Generic Explorer Mouse as /class/input/input2
    usb 2-1: new full speed USB device using uhci_hcd and address 3
    ppdev: user-space parallel port driver
    usb 2-1: configuration #1 chosen from 1 choice
    drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 3 if 0 alt 0 proto 2 vid 0x04F9 pid 0x0028
    usbcore: registered new interface driver usblp
    drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver
    usbcore: registered new interface driver hiddev
    input: Logitech USB RECEIVER as /class/input/input3
    input: USB HID v1.11 Mouse [Logitech USB RECEIVER] on usb-0000:00:13.1-2
    usbcore: registered new interface driver usbhid
    drivers/usb/input/hid-core.c: v2.6:USB HID core driver
    EXT3 FS on hdb2, internal journal
    ext3: No journal on filesystem on hda1
    fuse init (API version 7.8)
    Adding 1510068k swap on /dev/hda5. Priority:-1 extents:1 across:1510068k
    agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0.
    agpgart: Putting AGP V2 device at 0000:00:00.0 into 4x mode
    agpgart: Putting AGP V2 device at 0000:01:00.0 into 4x mode
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    Mobile IPv6
    ath0: no IPv6 routers present
    EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended
    ADDRCONF(NETDEV_UP): ath0: link is not ready
    ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready
    ath0: no IPv6 routers present

  • BP Role CBih10 doesn't exist for transaction CBHR11

    Hi All,
    I'm temporarily looking after EHS modules and I'm getting an error message saying "BP role CBiH10 doesn't exist" when using transaction CBHR11 or CBiHt1
    I look at the config and the CBIH10 does exits in the Business partner role table.
    Any ideas what I should look for?
    Regards,
    Francois

    Hi All,
    We found the problem.  Some transports were put through in our Treasury area and it wasn't communicated with the rest of the department which overwritten the other config.
    Regards,
    Francois

  • Transportation zones

    Hi,
    i create my new Transporter Zone e.g : 1.    Z00000IN01 u2013 Indiana Southeast
    2.    Z00000MI01 u2013 Michigan South
    but my my client require  for e.g : Copy all US based routes going to (already configured)Z0000000IN to new zone Z00000IN01
    so how to configure this things.
    Edited by: Roki Patel on Sep 22, 2011 10:17 PM

    hi
    May be you can delete the existing and create the new one.
    Else you can define the new ones and assign the newly created Transportation Zone
    regards
    Prashanth

  • Transport zone in xd01

    hai,
    what is meant by transport zone?
    i dont know the data for transport zone field  in xd01? plz tell
    am given the data 0000000001 in the transport zone field but it does not exist in transport zone.

    You have two options;
    1. Put some data in the field.
    2. Change the customising. In SPRO go to Financial accounting -> Accounts Receivable and Accounts payable -> Customer accounts -> Master data -> Prepartions for creating customer master data -> Define account groups with screen layout. This transaction groups the fields and defines whether they're mandatory or optional. Check with your functional team.
    The Account Groups is the one which maintains the field status for the customer master. In case you want to change the field status (i.e. changage the mandatory field to optional field) you need to maintain the same (i.e. changage the mandatory field to optional field) by navigating to the field status screen and then to the general data tab. Here you can change the status of the your field by selecting the 'OPTIONAL' radio button for the respective field and then save the transaction.
    Reward Points if useful.

  • Hi when i open my application folder, all the application is shown in trash folder. when i click the application it says this app is in trash first move it out. and when i try to open through finder go it says this file doesn't exist. can some1 plz help?

    hi when i open my application folder, all the application is shown in trash folder. when i click the application it says this app is in trash first move it out. and when i try to open through finder> go it says this file doesn't exist. can some1 plz help? how can i put all my application through application folder?

    Something really odd is going on. In your first screen shot, I noticed that the Applications folder does not have the proper icon displayed in the side bar. Also, in the title bar it lists it as Applications 08-59-29-909.
    Not sure where it's picking up that odd name, unless it's because it's still truly within the Trash folder.
    Try this. In the Finder > Preferences > General > turn on "Always open folders in a new window". (I have a feeling you have the default setting with this off).
    Now, in Finder > Go > move down and open the Applications Folder from there. Now open the folder where you see all your applications that you show in your screen shot, select all, and move them to this true appliactions folder.
    This is what you should properly seeing (but with different apps listed):
    See how the Applications folder has the icon of the letter A shaped with a pencil, ruler & pen.

  • Adding T-code to Role Area Menu which doesn't exist in box

    Hello,
    We are using a SAP system called QIM which has "jumplink" functionality, which is a web based linked (NWBC) which will launch you into a ERP system transaction when clicked. For example, in QIM we will display a outbound delivery, and if we click on the link it launches VL03N from the ERP system and displays as  web UI.
    In PFCG under area menu, this transaction code appears under the menu, but VL03N doesn't actually existing in the system... The issue is we created a custom object for inbound delivery and we need ot add it under this area, but when we attempt to add a transaction code under the Role Area, the system says the t-code doesn't exist... Even when we try this with an existing t-code showing in the menu (Vl03N) it says it doesnt exist. Same if we look at the authorization object S_TCODE. These t-codes exist in here, but when you try to readd them they system says it doesn't exist.
    Please find the attachments with some screen shots... Any idea how we can do this?

    You can create a role menu as remote enabled remote menu.
    The authority checks will happen on the remote side, also against objects which don't exist in the calling system as the music is on the other side.
    On the RFC client system side, you only need the parameter transaction to start the remote transaction in the remote system.
    See the documentation on SYST function module ABAP4_CALL_TRANSACTION.
    This is however a rather antiquated technology... it is more popular to use a SAP Portal or webdynpro applications for this sort of thing (the user does not notice the difference) or later versions of such integration such as Fiori UIs or imbedded links within the Business Client.
    I don't want to lean out the window too far, but the buggy phase of these new things is approaching an end and they are usable if you are on newer releases. Then you can pool the menu and use APIs for navigation and no more irritating S_TCODE checks.
    Cheers,
    Julius

  • How to deauthorize a computer , that doesn't exist anymore?

    I unisnstalled windows , and for some reason when i inserted my ipod to the freshly installed windows+itunes , and logged on my account , iTunes said , that its a new computer and asked me to authorize it , and so i did.
    My question is: how can i deauthorize my old version of windows , that doesn't exist anymore?
    I also have another question in this topic : When i want to buy items from itunes from a new device , it asks for my bank card number , and takes 1-2 dollars from it. Is this ok?

    Take a look at this Apple support article; it may help:
    One computer using multiple iTunes Store authorizations
    When i want to buy items from itunes from a new device , it asks for my bank card number , and takes 1-2 dollars from it. Is this ok?
    I'm not sure what you mean by this. What "items"? If you are referring to music, videos or movies, you get only one download per purchase, so if you buy the items again, whether from another device or the same one, yes, you will be charged again. Only apps allow redownloading without additional charge.
    Regards.

  • Error trying to relate tables "...either doesn't exist or doesn't have a relationship to any table available in the current context"

    I have two tables;
    The first is my Order table which has a single row for each unique order - there are no duplicate order numbers.The order id column here is called
    OrderID.
    The second is my Submissions table which is similar to a transactions table, there are multiple submissions for every order. This table also contains an
    OrderID column that contains the relevant OrderID.
    The submission table also contains a calculated field called Date and a calculated field called
    MaxDate field which is the date of the most recent submission that relates to any particular order in cases where there are multipple.
    My goal is to add a column to the Order table this MaxDate column. The reason for duplicating the information rather than linking the tables is because I need to create more calculated columns in the
    Orders table based on this value.
    I have created a relationship between the two tables however when I use:
    =RELATED(Submissions[MaxDate]
    I get this error:
    "...either doesn't exist or doesn't have a relationship to any table available in the current context"
    I don't really understand why this would be, because MaxDate definitely exists and contains only numerical values. What is more strange is that if I try and combine the data through a pivot table it actually works! I can create a pivot with OrderID in the first
    column and then associate it with MaxDate from the Submissions
    table as the value. 
    Can anyone help me understand what is the problem here?
    P.S. if it is useful the formula I'm using to calculate the MaxDate is:
    =MAXX(FILTER(Submissions,Submissions[OrderID] = EARLIER(Submissions[OrderID])),[Date])
    Thanks.

    Maracles, is this still an issue?
    Thanks!
    Ed Price, SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

Maybe you are looking for

  • A database error occured. The database error text is: ORA-29275: partial multibyte character . (WIS 10901)

    Hi, My Webi report is geeting failed with the error "A database error occured. The database error text is: ORA-29275: partial multibyte character . (WIS 10901)" may i know the root cause of the above error and how to resolve it. I am using BO 3.1. It

  • Why is my video fuzzy in Youtube?

    I have now created and uploaded three new videos using my ipad 3 and imovie. However, the video quality is not great at all and seems rather fuzzy.  In fact, I have uploaded to youtube the 'large' version and the 'HD' version and they both appear the

  • Collation issue with Japanese characters in Oracle8i

    Hi, I have japanese data in a varchar2 column in an Oracle8i instance which contains both single byte and multibyte Japanese characters. The encoding type of the instance is UTF-8. I want to sort them in such a way that equivalent single byte and mul

  • Sharing imovie clips with pc users

    Hi there - I am trying to send movie clips to my pc using family using 'share', but they cannot open them. Is it possible to do this? Many thanks!

  • Missing files while installing Developer2k 6i Release 2

    I'm trying to install various products from this including Forms, Reports etc. After the installation process gets through all the verifications and starts the actual file copying part, it gives me "File Not Found" errors. It trys to copy something f