Issue with Repeat Delta

Hi,
R/3 system was down and delta failed for delivery scl lines. This event happened five days back. We have deleted the red request with zero records in the DSO and then tried to re-load..we got a pop up saying last delta was incorrect so we did a repeat delta. Now we noticed, the repeat delta brought the successful records of the previous day. (DUPLICATE records)
Ex: Day1 - 10 delta records
      Day2 - 15 delta records - Loads Failed/Repeat Delta - In these 15 records 10 of them are from Day 1.
The key figures are addition in the DSO. Currently the quantities have doubled for day 1 deliveries. Has any body encountered this situation if so how was it handled without re-init. If i'm not clear please don't hesitate to ask.
Thanks,
Varma.

HI RVarma,
As suggested in above post you will be require to do the selective deletion for the duplicate records that come result in wrong value for keyfigure. Now for selective deletion  DSO-> manage>Content tab> Selective-> Deletion selection -> give the selction value for keyfield->start---> copy the job ---> sm37 monitor itand wait it to finish.
once finsih, check the contemt of a dso  by running the query or display data make sure the data deletes. Now for getting the data
Double click on infopackage --->Scheduler -
> repir full request ---> select .
This will solve your problem
Thanks,
Deepak

Similar Messages

  • Pl help me with repeat delta for text info object

    Hello during the delta loads delta got failed for some text object, I know how to repeat the request for transction data but not sure how to request the repeat delta for text object like 0material_text.
    I mean i am not sure is there way i can go and change the QM status of request to red and then request repeat delta again, so do we follow same procedure for text objects or something else pl suggest.
    Pl suggest the steps
    due point will be assigned.
    Krish

    Hi Krish,
    With master data delta repeats sometimes you have problems, and you may get a message that Update Mode R is not supported. The only way out of this situation is to do a reinit and load the data again so that you are not missing records. Since this is just master data, the data volume is not going to be too high, and it overwrites so no issues with data either.
    See here for reference... Re: Update mode R is not supported by the extraction API
    Hope this helps...

  • Issue with Repeat Contact Info in Edit Screen

    Hello! 
    I recently had to get a replacement for my Droid because the home keys stopped working.    My replacement Droid was acting buggy and the screen would black out anytime I'd check voicemails and sometimes after placing a phone call.  I called customer service today and the tech support guy had me do a factory data reset on the phone.  Before I did it, I was instructed to export my contacts to my SD card, which I did.   The screen issue seems to be resolved, but I have an issue with my contacts now.  If I go into a contact and hit "edit contact", it will display three to four Google contacts for one person!  Also, if I try to make a shortcut to direct dial a contact, it has the same contact and phone number listed 3-4 times for every phone number listed.  (For example, my parents home phone is listed three times and so is their cell phone number.)  Anyone know how to get rid of the repeat contact info?  I have tried resetting the phone again, as well as separating contacts individually to no avail.  Any help or advice is appreciated!

    Here are the steps for deleting duplicate contacts.  HTH!
    From the home screen, touch the applications tab (located on the bottom of the screen).
    Touch Contacts.
    Touch the Contacts tab.
    Touch Menu.
    Touch the desired contact.
    Touch Menu.
    Touch Delete contact.
    Touch OK.

  • Calendar Sync Issue With repeating entry deletions Notes 8.5 to BB

    I have an issue where when synchronizing may calendar with Lotus Notes version 8.5, the Blackberry will delete repeating entries. Specifically, if I load the Blackberry with all my calendar entries from Notes and then in one entry in my Notes calendar a "single" occurance of a meeting gets canceled .. the next time I sync with the Blackberry it deletes "all" occurances of that meeting from the BB. The entries remain correct on Lotus Notes. The only way I can seem to fix that is to reset sync setting and reload the calendar to the BB all over again, and then this occurs again .... this happens with both V5 and V6 of the BB Desktop Software. Has anyone seen this and is there a fix ?

    I have an issue where when synchronizing may calendar with Lotus Notes version 8.5, the Blackberry will delete repeating entries. Specifically, if I load the Blackberry with all my calendar entries from Notes and then in one entry in my Notes calendar a "single" occurance of a meeting gets canceled .. the next time I sync with the Blackberry it deletes "all" occurances of that meeting from the BB. The entries remain correct on Lotus Notes. The only way I can seem to fix that is to reset sync setting and reload the calendar to the BB all over again, and then this occurs again .... this happens with both V5 and V6 of the BB Desktop Software. Has anyone seen this and is there a fix ?

  • Issues with 0PP_C03 delta loads

    Hi,
    I loaded the data from 2LIS_04_P_ARBPL & 0PP_WCCP to 0PP_C03. Initialization of the data load went fine. Did the delta loads to BI and observed that I am not getting any of the Key figure data in the cube. All the values are showing as Zero.
    When I observed the in the PSA table and in the RSA3 , I observed that for every order 2 entries got created, One is with +ve values and another with u2013ve. So at the end while updating to cube its nullifying the values. Because of this reason I am not able to view the latest data which is updated as Deltas.
    I am not sure what settings I missed. Could some one please help me to fix this issue.
    Thanks & Regards,
    Shanthi.

    Thanks Francisco Milan and Shilpa for the links. Itu2019s very useful. But still I didnu2019t able to find the cause of the issue.
    My data source 2LIS_04_P_ARBPL is of ABR type and the update mode for KF is Summation. In the data source level, I am getting the values with before & after image (same entries one with +ve & another with u2013ve) and as I am using the u201CSummation as my update type for KF its getting nullified.
    Because of this reason I could not able to get the values in my report. Could any one pls help me on this as I am reaching the go-live date. I need to address this issue immediately. Thanks for all your inputs.
    Regards,
    Shanthi.

  • Dynamic population issue with repeated sub form

    I have a subform that populates a dropdown from another subform on a prior page. In the Enter event on the subform I have the following script:
    Drop Down 1
    this.clearItems();
    this.rawValue = null;
    this.fontColor = "0,0,0";
    var nCount = Subform3.Subform2.Subform1.instanceManager.count;
    console.println("nCount: " + nCount);
    for (var i=0; i<=nCount; i++)
    var vFld = xfa.resolveNode("Subform3.Subform2.Subform1[" + i + "]");
    var vItem = vFld.RiskNo.rawValue;
    this.addItem(vItem.toString());
    A second drop down is also populated in the PostOpen event on the subform with the following script:
    Drop Down 2
    this.clearItems();
    this.rawValue = null;
    this.fontColor = "0,0,0";
    var sf1 = Subform3.Subform2.resolveNodes ("Subform1[*]");
    for ( var i = 0; i < sf1.length; i++)
    if (CTPData.RiskRow.Risk.rawValue == sf1.item(i).RiskNo.rawValue)
      var controlsf = sf1.item(i).resolveNodes ("Controls.Control[*]");
      for ( var j = 0; j < controlsf.length; j++)
       var wInput = controlsf.item(j).ContNo.rawValue;
       this.addItem(wInput.toString());
    I then populate a text field with values based on drop down selections with the following Exit Event scripts:
    Exit Event Drop Down 1 to populate text field 1
    var sf1 = Subform3.Subform2.resolveNodes ("Subform1[*]");
    for (var i = 0; i < sf1.length; i++)
    if (CTPData.RiskRow.Risk.rawValue == sf1.item(i).RiskNo.rawValue)
       var wInput = sf1.item(i).RiskInput.rawValue;
       CTPData.RiskRow.RiskTxt.rawValue =(wInput);
       CTPData.ControlsRow.ControlTxt.rawValue = "";
    Exit Event Drop Down 2 to populate text field 2
    var sf1 = Subform3.Subform2.resolveNodes ("Subform1[*]");
    for ( var i = 0; i < sf1.length; i++)
    if (CTPData.RiskRow.Risk.rawValue == sf1.item(i).RiskNo.rawValue)
      var controlsf = sf1.item(i).resolveNodes ("Controls.Control[*]");
      for ( var j = 0; j < controlsf.length; j++)
    if (CTPData.ControlsRow.Control.rawValue == controlsf.item(j).ContNo.rawValue)
       var wInput = controlsf.item(j).ControlInput.rawValue;
       CTPData.ControlsRow.ControlTxt.rawValue =(wInput);
    These scripts work absolutely perfect for the first instance of the subform they are on.  On added instances of the subform however, the drop downs work but the populate text fields from the selected values do not.
    I am sure I am missing something simple but I can’t find it.
    I would greatly appreciate any pointers I could get.
    Thanks,
    Eagle

    I actually tried that with the same results.  It seems to me that the issue is that
    var wInput = controlsf.item(j).ControlInput.rawValue;
    CTPData.ControlsRow.ControlTxt.rawValue =(wInput);
    on the repeated subform has a different CTPData.ControlsRow.ControlTxt.  something like CTPData.ControlsRow.ControlTxt(0). but I don't understand enpough about repeated subform values to figure it out.
    Thanks,
    Eagle

  • HELP!  Need txt ouput, but issues with repeating frames...

    In my data model, I have one main query, and three data linked queries. It IS a complex report, but I need to make it so that the user can output it to a delimited text file. I know how to do this, but when the report is printed, the rows are all mangled. If I PDF it, it's nice and pretty... one row per record. In my paper layout I have one parent repeating frame, which holds all columns, including 3 columns from the three data linked queries. Please help. Although I've written here before, I've never received a response, so I'm hoping this time will be different. Thanks.

    I've read this document and that didn't solve my issue. I'm sure it has to be something others have done in building reports. A little more detail perhaps to help you help me:
    Queries: 4
    Main to get list of all students
    3 other for attendance details (excused, unexcused and lates)
    Paper Layout View:
    1st layer: Frame
    2nd layer: Repeating frame that holds all student info +
    3rd layer: 3 more repeating frames for the 3 data linked queries that tells me if a student has missed any days.
    PDF works great as an output, but it's needed an a delimited export or spreadsheet, both of which scrambles my 3rd layer numbers on different rows. I'm stumped. Again, any help would be great here.

  • USB 2.0 Issues with KT6 Delta LSR

    Well you people must hear this song and dance all the time about usb 2.0 not working, well i've done everything in the book, use the back brackets, fiddle with windows xp, etc etc, but after my friend booted linux onto the system we've determined that there is no usb 2.0 ports.. although there is a controller, and suggestions on what else can be wrong?
    the Linux output from DMESG
     from 10 to 5
    PCI: Via IRQ fixup for 0000:00:10.2, from 10 to 5
    PCI: Via IRQ fixup for 0000:00:10.1, from 11 to 5
    PCI: Via IRQ fixup for 0000:00:10.0, from 11 to 5
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    mice: PS/2 mouse device common for all mice
    serio: i8042 AUX port at 0x60,0x64 irq 12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    input: AT Translated Set 2 keyboard on isa0060/serio0
    bootsplash: scanning last 2MB of initrd for signature
    bootsplash 3.1.4-2004/02/19-spock-0.1: looking for picture..... silentjpeg size 92986 bytes, found (1024x768, 19792 bytes, v3).
    Console: switching to colour frame buffer device 122x43
    Serial: 8250/16550 driver $Revision: 1.90 $ 54 ports, IRQ sharing enabled
    ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    pnp: the driver 'serial' has been registered
    pnp: match found with the PnP device '00:09' and the driver 'serial'
    pnp: match found with the PnP device '00:0a' and the driver 'serial'
    RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
    loop: loaded (max 8 devices)
    Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    pnp: the driver 'ide' has been registered
    hda: QUANTUM FIREBALLP AS40.0, ATA DISK drive
    hdc: HL-DT-ST GCE-8520B, ATAPI CD/DVD-ROM drive
    hdd: Pioneer DVD-ROM ATAPIModel DVD-105S 013, ATAPI CD/DVD-ROM drive
    Using anticipatory io scheduler
    ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
    ide1 at 0x170-0x177,0x376 on irq 15
    hda: max request size: 128KiB
    hda: 78177792 sectors (40027 MB) w/1902KiB Cache, CHS=65535/16/63
     /dev/ide/host0/bus0/target0/lun0: p1 p2
    hdc: ATAPI 40X CD-ROM CD-R/RW CD-MRW drive, 2048kB Cache
    Uniform CD-ROM driver Revision: 3.20
    hdd: ATAPI 40X DVD-ROM drive, 512kB Cache
    usbcore: registered new driver hiddev
    usbcore: registered new driver usbhid
    drivers/usb/input/hid-core.c: v2.0:USB HID core driver
    CAPI Subsystem Rev 1.1.2.8
    EISA: Probing bus 0 at eisa0
    EISA: Detected 0 cards.
    oprofile: using NMI interrupt.
    NET: Registered protocol family 2
    IP: routing cache hash table of 4096 buckets, 32Kbytes
    TCP: Hash tables configured (established 32768 bind 32768)
    NET: Registered protocol family 1
    NET: Registered protocol family 17
    RAMDISK: Compressed image found at block 0
    VFS: Mounted root (ext2 filesystem) readonly.
    Mounted devfs on /dev
    Freeing unused kernel memory: 252k freed
    ehci_hcd 0000:00:10.4: VIA Technologies, Inc. USB 2.0
    ehci_hcd 0000:00:10.4: irq 21, pci mem e0ca0e00
    ehci_hcd 0000:00:10.4: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:10.4: USB 2.0 enabled, EHCI 1.00, driver 2004-May-10
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 8 ports detected
    Initializing USB Mass Storage driver...
    usbcore: registered new driver usb-storage
    USB Mass Storage support registered.
    ieee1394: Initialized config rom entry `ip1394'
    sbp2: $Rev: 1219 $ Ben Collins
    ISO 9660 Extensions: Microsoft Joliet Level 3
    Unable to load NLS charset iso8859-1
    Unable to load NLS charset iso8859-1
    ISO 9660 Extensions: RRIP_1991A
    Real Time Clock Driver v1.12
    pnp: the driver 'parport_pc' has been registered
    pnp: match found with the PnP device '00:0b' and the driver 'parport_pc'
    parport: PnPBIOS parport detected.
    parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE,EPP]
    b44.c:v0.94 (May 4, 2004)
    eth0: Broadcom 4400 10/100BaseT Ethernet 00:0c:76:2b:16:65
    gameport: pci0000:00:08.1 speed 1242 kHz
    Linux agpgart interface v0.100 (c) Dave Jones
    agpgart: Detected VIA CLE266 chipset
    agpgart: Maximum main memory to use for agp memory: 439M
    agpgart: AGP aperture is 128M @ 0xe0000000
    VP_IDE: IDE controller at PCI slot 0000:00:0f.0
    VP_IDE: chipset revision 6
    VP_IDE: not 100% native mode: will probe irqs later
    VP_IDE: VIA vt8237 (rev 00) IDE UDMA133 controller on pci0000:00:0f.0
    VP_IDE: port 0x01f0 already claimed by ide0
    VP_IDE: port 0x0170 already claimed by ide1
    VP_IDE: neither IDE port enabled (BIOS)
    USB Universal Host Controller Interface driver v2.2
    uhci_hcd 0000:00:10.0: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller
    uhci_hcd 0000:00:10.0: irq 21, io base 0000d400
    uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    uhci_hcd 0000:00:10.1: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#2)
    uhci_hcd 0000:00:10.1: irq 21, io base 0000d800
    uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    uhci_hcd 0000:00:10.2: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#3)
    uhci_hcd 0000:00:10.2: irq 21, io base 0000dc00
    uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 4
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    uhci_hcd 0000:00:10.3: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#4)
    uhci_hcd 0000:00:10.3: irq 21, io base 0000e000
    uhci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 5
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    usb 3-2: new low speed USB device using address 2
    input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:10.1-2
    ts: Compaq touchscreen protocol output
    ohci_hcd: 2004 Feb 02 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
    ohci_hcd: block sizes: ed 64 td 64
    b44: eth0: Link is down.
    b44: eth0: Link is up at 100 Mbps, full duplex.
    b44: eth0: Flow control is on for TX and on for RX.
    bootsplash 3.1.4-2004/02/19-spock-0.1: looking for picture.... found (1024x768, 19792 bytes, v3).
    bootsplash: status on console 0 changed to on
    bootsplash 3.1.4-2004/02/19-spock-0.1: looking for picture.... found (1024x768, 19792 bytes, v3).
    bootsplash: status on console 1 changed to on
    bootsplash 3.1.4-2004/02/19-spock-0.1: looking for picture.... found (1024x768, 19792 bytes, v3).
    bootsplash: status on console 2 changed to on
    bootsplash 3.1.4-2004/02/19-spock-0.1: looking for picture.... found (1024x768, 19792 bytes, v3).
    bootsplash: status on console 3 changed to on
    bootsplash 3.1.4-2004/02/19-spock-0.1: looking for picture.... found (1024x768, 19792 bytes, v3).
    bootsplash: status on console 4 changed to on
    bootsplash 3.1.4-2004/02/19-spock-0.1: looking for picture.... found (1024x768, 19792 bytes, v3).
    bootsplash: status on console 5 changed to on
    NET: Registered protocol family 10
    Disabled Privacy Extensions on device c045af80(lo)
    IPv6 over IPv4 tunneling driver
    eth0: no IPv6 routers present
    usb 3-2: usbfs: process 3147 (lsusb) did not claim interface 0 before use
    usb 4-1: new full speed USB device using address 2
    usb 4-1: not running at top speed; connect to a high speed hub
    scsi0 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    USB Mass Storage device found at 2
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host0/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi0, channel 0, id 0, lun 0
    usb 4-1: USB disconnect, address 2
    usb 4-2: new full speed USB device using address 3
    usb 4-2: not running at top speed; connect to a high speed hub
    scsi1 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host1/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi1, channel 0, id 0, lun 0
    USB Mass Storage device found at 3
    usb 4-2: USB disconnect, address 3
    usb 2-2: new full speed USB device using address 2
    usb 2-2: not running at top speed; connect to a high speed hub
    scsi2 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host2/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi2, channel 0, id 0, lun 0
    USB Mass Storage device found at 2
    usb 2-2: USB disconnect, address 2
    usb 2-1: new full speed USB device using address 3
    usb 2-1: not running at top speed; connect to a high speed hub
    scsi3 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host3/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi3, channel 0, id 0, lun 0
    USB Mass Storage device found at 3
    usb 2-1: USB disconnect, address 3
    usb 3-1: new full speed USB device using address 3
    usb 3-1: not running at top speed; connect to a high speed hub
    scsi4 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host4/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi4, channel 0, id 0, lun 0
    USB Mass Storage device found at 3
    usb 3-1: USB disconnect, address 3
    hub 1-0:1.0: connect-debounce failed, port 8 disabled
    usb 5-2: new full speed USB device using address 2
    usb 5-2: not running at top speed; connect to a high speed hub
    scsi5 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host5/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi5, channel 0, id 0, lun 0
    USB Mass Storage device found at 2
    usb 5-2: USB disconnect, address 2
    usb 5-1: new full speed USB device using address 3
    usb 5-1: not running at top speed; connect to a high speed hub
    scsi6 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host6/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi6, channel 0, id 0, lun 0
    USB Mass Storage device found at 3
    usb 5-1: USB disconnect, address 3
    usb 3-2: USB disconnect, address 2
    uhci_hcd 0000:00:10.0: remove, state 1
    usb usb2: USB disconnect, address 1
    uhci_hcd 0000:00:10.0: USB bus 2 deregistered
    uhci_hcd 0000:00:10.1: remove, state 1
    usb usb3: USB disconnect, address 1
    uhci_hcd 0000:00:10.1: USB bus 3 deregistered
    uhci_hcd 0000:00:10.2: remove, state 1
    usb usb4: USB disconnect, address 1
    uhci_hcd 0000:00:10.2: USB bus 4 deregistered
    uhci_hcd 0000:00:10.3: remove, state 1
    usb usb5: USB disconnect, address 1
    uhci_hcd 0000:00:10.3: USB bus 5 deregistered
    USB Universal Host Controller Interface driver v2.2
    uhci_hcd 0000:00:10.0: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller
    uhci_hcd 0000:00:10.0: irq 21, io base 0000d400
    uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    uhci_hcd 0000:00:10.1: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#2)
    uhci_hcd 0000:00:10.1: irq 21, io base 0000d800
    uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    uhci_hcd 0000:00:10.2: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#3)
    uhci_hcd 0000:00:10.2: irq 21, io base 0000dc00
    uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 4
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    uhci_hcd 0000:00:10.3: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#4)
    uhci_hcd 0000:00:10.3: irq 21, io base 0000e000
    uhci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 5
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    usb 3-2: new low speed USB device using address 2
    input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:10.1-2
    usb 5-2: new full speed USB device using
     address 2
    usb 5-2: not running at top speed; connect to a high speed hub
    scsi7 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host7/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi7, channel 0, id 0, lun 0
    USB Mass Storage device found at 2
    usb 3-2: USB disconnect, address 2
    usb 5-2: USB disconnect, address 2
    usb 5-1: new full speed USB device using address 3
    usb 5-1: not running at top speed; connect to a high speed hub
    scsi8 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host8/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi8, channel 0, id 0, lun 0
    USB Mass Storage device found at 3
    usb 5-1: USB disconnect, address 3
    usb 3-2: new full speed USB device using address 3
    usb 3-2: not running at top speed; connect to a high speed hub
    scsi9 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host9/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi9, channel 0, id 0, lun 0
    USB Mass Storage device found at 3
    usb 3-2: USB disconnect, address 3
    usb 2-2: new full speed USB device using address 2
    usb 2-2: not running at top speed; connect to a high speed hub
    scsi10 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host10/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi10, channel 0, id 0, lun 0
    USB Mass Storage device found at 2
    usb 2-2: USB disconnect, address 2
    usb 4-1: new full speed USB device using address 2
    usb 4-1: not running at top speed; connect to a high speed hub
    scsi11 : SCSI emulation for USB Mass Storage devices
      Vendor: Thomson   Model: Lyra_MPR2351_US   Rev: 0100
      Type:   Direct-Access                      ANSI SCSI revision: 02
    SCSI device sda: 255232 512-byte hdwr sectors (131 MB)
    sda: assuming Write Enabled
    sda: assuming drive cache: write through
     /dev/scsi/host11/bus0/target0/lun0: p1
    Attached scsi removable disk sda at scsi11, channel 0, id 0, lun 0
    USB Mass Storage device found at 2
    usb 4-1: USB disconnect, address 2
    Linux - Device Listing
    Bus 005 Device 001: ID 0000:0000  
    Device Descriptor:
      bLength                18
      bDescriptorType         1
      bcdUSB               1.10
      bDeviceClass            9 Hub
      bDeviceSubClass         0
      bDeviceProtocol         0
      bMaxPacketSize0         8
      idVendor           0x0000
      idProduct          0x0000
      bcdDevice            2.06
      iManufacturer           3 Linux 2.6.7-gentoo-r11-livecd uhci_hcd
      iProduct                2 VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#4)
      iSerial                 1 0000:00:10.3
      bNumConfigurations      1
      Configuration Descriptor:
        bLength                 9
        bDescriptorType         2
        wTotalLength           25
        bNumInterfaces          1
        bConfigurationValue     1
        iConfiguration          0
        bmAttributes         0xc0
          Self Powered
        MaxPower                0mA
        Interface Descriptor:
          bLength                 9
          bDescriptorType         4
          bInterfaceNumber        0
          bAlternateSetting       0
          bNumEndpoints           1
          bInterfaceClass         9 Hub
          bInterfaceSubClass      0
          bInterfaceProtocol      0
          iInterface              0
          Endpoint Descriptor:
            bLength                 7
            bDescriptorType         5
            bEndpointAddress     0x81  EP 1 IN
            bmAttributes            3
              Transfer Type            Interrupt
              Synch Type               none
            wMaxPacketSize          2
            bInterval             255
      Language IDs: (length=4)
         0409 English(US)
    Bus 004 Device 001: ID 0000:0000  
    Device Descriptor:
      bLength                18
      bDescriptorType         1
      bcdUSB               1.10
      bDeviceClass            9 Hub
      bDeviceSubClass         0
      bDeviceProtocol         0
      bMaxPacketSize0         8
      idVendor           0x0000
      idProduct          0x0000
      bcdDevice            2.06
      iManufacturer           3 Linux 2.6.7-gentoo-r11-livecd uhci_hcd
      iProduct                2 VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#3)
      iSerial                 1 0000:00:10.2
      bNumConfigurations      1
      Configuration Descriptor:
        bLength                 9
        bDescriptorType         2
        wTotalLength           25
        bNumInterfaces          1
        bConfigurationValue     1
        iConfiguration          0
        bmAttributes         0xc0
          Self Powered
        MaxPower                0mA
        Interface Descriptor:
          bLength                 9
          bDescriptorType         4
          bInterfaceNumber        0
          bAlternateSetting       0
          bNumEndpoints           1
          bInterfaceClass         9 Hub
          bInterfaceSubClass      0
          bInterfaceProtocol      0
          iInterface              0
          Endpoint Descriptor:
            bLength                 7
            bDescriptorType         5
            bEndpointAddress     0x81  EP 1 IN
            bmAttributes            3
              Transfer Type            Interrupt
              Synch Type               none
            wMaxPacketSize          2
            bInterval             255
      Language IDs: (length=4)
         0409 English(US)
    Bus 003 Device 001: ID 0000:0000  
    Device Descriptor:
      bLength                18
      bDescriptorType         1
      bcdUSB               1.10
      bDeviceClass            9 Hub
      bDeviceSubClass         0
      bDeviceProtocol         0
      bMaxPacketSize0         8
      idVendor           0x0000
      idProduct          0x0000
      bcdDevice            2.06
      iManufacturer           3 Linux 2.6.7-gentoo-r11-livecd uhci_hcd
      iProduct                2 VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#2)
      iSerial                 1 0000:00:10.1
      bNumConfigurations      1
      Configuration Descriptor:
        bLength                 9
        bDescriptorType         2
        wTotalLength           25
        bNumInterfaces          1
        bConfigurationValue     1
        iConfiguration          0
        bmAttributes         0xc0
          Self Powered
        MaxPower                0mA
        Interface Descriptor:
          bLength                 9
          bDescriptorType         4
          bInterfaceNumber        0
          bAlternateSetting       0
          bNumEndpoints           1
          bInterfaceClass         9 Hub
          bInterfaceSubClass      0
          bInterfaceProtocol      0
          iInterface              0
          Endpoint Descriptor:
            bLength                 7
            bDescriptorType         5
            bEndpointAddress     0x81  EP 1 IN
            bmAttributes            3
              Transfer Type            Interrupt
              Synch Type               none
            wMaxPacketSize          2
            bInterval             255
      Language IDs: (length=4)
         0409 English(US)
    Bus 002 Device 001: ID 0000:0000  
    Device Descriptor:
      bLength                18
      bDescriptorType         1
      bcdUSB               1.10
      bDeviceClass            9 Hub
      bDeviceSubClass         0
      bDeviceProtocol         0
      bMaxPacketSize0         8
      idVendor           0x0000
      idProduct          0x0000
      bcdDevice            2.06
      iManufacturer           3 Linux 2.6.7-gentoo-r11-livecd uhci_hcd
      iProduct                2 VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller
      iSerial                 1 0000:00:10.0
      bNumConfigurations      1
      Configuration Descriptor:
        bLength                 9
        bDescriptorType         2
        wTotalLength           25
        bNumInterfaces          1
        bConfigurationValue     1
        iConfiguration          0
        bmAttributes         0xc0
          Self Powered
        MaxPower                0mA
        Interface Descriptor:
          bLength                 9
          bDescriptorType         4
          bInterfaceNumber        0
          bAlternateSetting       0
          bNumEndpoints           1
          bInterfaceClass         9 Hub
          bInterfaceSubClass      0
          bInterfaceProtocol      0
          iInterface              0
          Endpoint Descriptor:
            bLength                 7
            bDescriptorType         5
            bEndpointAddress     0x81  EP 1 IN
            bmAttributes            3
              Transfer Type            Interrupt
              Synch Type               none
            wMaxPacketSize          2
            bInterval             255
      Language IDs: (length=4)
         0409 English(US)
    Bus 001 Device 001: ID 0000:0000  
    Device Descriptor:
      bLength                18
      bDescriptorType         1
      bcdUSB               2.00
      bDeviceClass            9 Hub
      bDeviceSubClass         0
      bDeviceProtocol         1
      bMaxPacketSize0         8
      idVendor           0x0000
      idProduct          0x0000
      bcdDevice            2.06
      iManufacturer           3 Linux 2.6.7-gentoo-r11-livecd ehci_hcd
      iProduct                2 VIA Technologies, Inc. USB 2.0
      iSerial                 1 0000:00:10.4
      bNumConfigurations      1
      Configuration Descriptor:
        bLength                 9
        bDescriptorType         2
        wTotalLength           25
        bNumInterfaces          1
        bConfigurationValue     1
        iConfiguration          0
        bmAttributes         0xe0
          Self Powered
          Remote Wakeup
        MaxPower                0mA
        Interface Descriptor:
          bLength                 9
          bDescriptorType         4
          bInterfaceNumber        0
          bAlternateSetting       0
          bNumEndpoints           1
          bInterfaceClass         9 Hub
          bInterfaceSubClass      0
          bInterfaceProtocol      0
          iInterface              0
          Endpoint Descriptor:
            bLength                 7
            bDescriptorType         5
            bEndpointAddress     0x81  EP 1 IN
            bmAttributes            3
              Transfer Type            Interrupt
              Synch Type               none
            wMaxPacketSize          2
            bInterval              12
      Language IDs: (length=4)
         0409 English(US)

    Thank you!
    Looks a bit like one of my own systems, so it is thus near perfection. However, I don't have a SoundBlaster any longer, and I don't have two floppy drives. Is the IDE configuration working flawlessly?
    While waiting for the PSU figures I'd like to take half a step in a funny direction. Perhaps it can do some good to someone sometime, though I'm not sure it will be so for you.
    What device do you put in the USB port? Is it flash drive, card reader or some other storage unit? Then you could try this I read in PCPro:
    How to force a drive letter onto the device (WindowsXP I believe)
    Go to Start | All programs | Administrative tools and select Computer managment. Then select Disk managment, found in Storage area. Right click the drive and 'Choose drive letters...' from the pop-up menu. Of course you need to select an ununsed drive letter.
    In same way works a BIOS trick to choose 'Assign IRQ for USB' in BIOS. But I'm not sure it works with our AMI versions.

  • Mapping issue with repeating segments

    Hi,
    Our system creates EDI messages and have a date part which looks like below:
    <DTM>
    <DTM01>
    <DTM0101>2</DTM0101>
    <DTM0102>201409241200</DTM0102>
    <DTM0103>203</DTM0103>
    </DTM01>
    <DTM01>
    <DTM0101>137</DTM0101>
    <DTM0102>201409221200</DTM0102>
    <DTM0103>203</DTM0103>
    </DTM01>
    </DTM>
    So we have the DTM segment and under the DTM segment we have several DTM01 segments for every date.
    Now we want to change it to show a DTM segment for every date, so it should be like below:
    <DTM>
    <DTM01>
    <DTM0101>2</DTM0101>
    <DTM0102>201409241200</DTM0102>
    <DTM0103>203</DTM0103>
    </DTM01>
    </DTM>
    <DTM>
    <DTM01>
    <DTM0101>137</DTM0101>
    <DTM0102>201409221200</DTM0102>
    <DTM0103>203</DTM0103>
    </DTM01>
    </DTM>
    How can i achieve this in this mapping?

    Hi Ronald,
    Use Looping functiod to achieve this. Connect <DTM01> in your source schema with looping functiod and then connect <DTM> of you destination schema with Looping functiod. Basically you are telling the mapper to create an
    instance of <DTM> for each <DTM01> record.
    Please indicate "Mark as Answer" or "Mark as Helpful" if this post has answered the question
    Regards,
    Rahul Madaan
    biztalkvillage.blogspot.com

  • SRM issue with Invoice delta loads

    I am loading data into DSO - 0SRIV_D3 (Invoices) from SRM where I am getting duplicate data records updated into the DSO.  The extractor for this DSO is 0SRM_TD_IV is AIMD which should deliver only after image delta records on changes.
    Can someone advise what needs to be done to avoid data record duplication ? 
    In the Data source setting, the 'Delivery of Duplicate Data Records is set to "Undefined" ' mode.  I have tried to change the data source setting to "None" but this is greyed out and cannot change in BI.  Any help?
    Thanks.
    Ramesh

    I have been wondering about the same thing. Some information would be greatly appreciated. Anyone?
    Thanks and best regards
    debru

  • Issue with generic extraction (Generic Delta)

    I have one more issue with Generic Delta Extraction. Here I selected the field related to my requirement but when I am trying to save I am getting error Still OLTP have errors.
    I need some help when we select generic delta wht are the settings. Like now I am working on Inventory Management.
    Please Some one help me as soon as possible.
    Thanks In advance.....
    Regds
    SDR.

    Hi ,
    I think there are some of the Keyfigure fields which needs 0Unit or 0Currency field to be present in the Extract Structure but they are not present . Check All unit of measure and Currency unit fields are not hidden .
    Regards,
    Vijay.

  • Repeat delta data issue

    Hello guys,
    I have a strange issue here. I load say ODS2 from ODS1. When trying to load ODS2 one day, i find and issue and the load is turned red. When i executed the delta IP again, it asked for the repeat of the delta, for which i said yes. I did not delete any datamart status from ODS1. This repeat got me double records than the original request, and now i have doubled records in ODS2. Since ODS2 is on addition, the doubling data issue. Does anyone had this problem? Why the repeat of delta updated double the number of records than what it shud be? will be great if anyone can come up with a clarification.
    Regards
    Sriram

    Hi Sriram,
    At First you need to Delete the Request from ODS2,
    Question is which request should be deleted. answered below.
    In ODS1 --> Note the Request where Repeat of delta has occured. Check the datamart Request  of that Repeat Request. This datamark request clearly shows that At what request in ODS2 its updated.
    Now your job step by step as below:-
    1. Delete request in ODS2 (Please note :request which you had taken in the datamart of ODS1).
    2. Delete the Datamart of the ODS1 at the Repeat delta request.
    3. Delete Request of ODS1(till where you had removed the datamart for this ODS)
    4. Go to reconstruction tab and reconstruct the request which are correct (eliminate failed request)
    Please note:- please reconstruct one(1) request and then datamart. Once you do this you will come to know the logic behind.
    5. Then Datamart to ODS2.
    If its complicated to understand, please call call me
    Thanks
    Regards
    Hari

  • Issue with Delta in Function Module

    Hi Team,
    I have an issue with delta in Genric extraction using function module.Full load is working fine and i have taken post_date as delta field.plz chk the code if any delta related statements are missing.
    FUNCTION ZRSAX_BIW_MANGEMENT_RAT .
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(I_REQUNR) TYPE  SRSC_S_IF_SIMPLE-REQUNR
    *"     VALUE(I_DSOURCE) TYPE  SRSC_S_IF_SIMPLE-DSOURCE OPTIONAL
    *"     VALUE(I_MAXSIZE) TYPE  SRSC_S_IF_SIMPLE-MAXSIZE OPTIONAL
    *"     VALUE(I_INITFLAG) TYPE  SRSC_S_IF_SIMPLE-INITFLAG OPTIONAL
    *"     VALUE(I_READ_ONLY) TYPE  SRSC_S_IF_SIMPLE-READONLY OPTIONAL
    *"  TABLES
    *"      I_T_SELECT TYPE  SRSC_S_IF_SIMPLE-T_SELECT OPTIONAL
    *"      I_T_FIELDS TYPE  SRSC_S_IF_SIMPLE-T_FIELDS OPTIONAL
    *"      E_T_DATA STRUCTURE  ZQMBW_FUJ_MANAGEMENT OPTIONAL
    *"  EXCEPTIONS
    *"      NO_MORE_DATA
    *"      ERROR_PASSED_TO_MESS_HANDLER
    Example: DataSource for table MANAGEMENT RATING
      TABLES: ZQMBW_MANAGEMENT.
    Auxiliary Selection criteria structure
      DATA: L_S_SELECT TYPE SRSC_S_SELECT.
    Maximum number of lines for DB table
      STATICS: S_S_IF TYPE SRSC_S_IF_SIMPLE,
    counter
              S_COUNTER_DATAPAKID LIKE SY-TABIX,
    cursor
              S_CURSOR TYPE CURSOR.
      RANGES: POST_DATE FOR ZMMTVEND_RATING-POST_DATE,
              VENDOR FOR ZMMTVEND_RATING-VENDOR.
    Initialization mode (first call by SAPI) or data transfer mode
    (following calls) ?
      IF I_INITFLAG = SBIWA_C_FLAG_ON.
    Initialization: check input parameters
                    buffer input parameters
                    prepare data selection
    Check DataSource validity
        CASE I_DSOURCE.
          WHEN 'ZQMMANAGEMENT_DS'.
          WHEN OTHERS.
            IF 1 = 2. MESSAGE E009(R3). ENDIF.
    this is a typical log call. Please write every error message like this
            LOG_WRITE 'E'                  "message type
                      'R3'                 "message class
                      '009'                "message number
                      I_DSOURCE   "message variable 1
                      ' '.                 "message variable 2
            RAISE ERROR_PASSED_TO_MESS_HANDLER.
        ENDCASE.
        APPEND LINES OF I_T_SELECT TO S_S_IF-T_SELECT.
    Fill parameter buffer for data extraction calls
        S_S_IF-REQUNR    = I_REQUNR.
        S_S_IF-DSOURCE = I_DSOURCE.
        S_S_IF-MAXSIZE   = I_MAXSIZE.
    Fill field list table for an optimized select statement
    (in case that there is no 1:1 relation between InfoSource fields
    and database table fields this may be far from beeing trivial)
        APPEND LINES OF I_T_FIELDS TO S_S_IF-T_FIELDS.
      ELSE.                 "Initialization mode or data extraction ?
        IF S_COUNTER_DATAPAKID = 0.
    Fill range tables BW will only pass down simple selection criteria
    of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
          LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'VENDOR'.
            MOVE-CORRESPONDING L_S_SELECT TO VENDOR.
            CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
              EXPORTING
                INPUT  = VENDOR-LOW
              IMPORTING
                OUTPUT = VENDOR-LOW.
            CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
              EXPORTING
                INPUT  = VENDOR-HIGH
              IMPORTING
                OUTPUT = VENDOR-HIGH.
            APPEND VENDOR.
          ENDLOOP.
          LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'POST_DATE'.
            MOVE-CORRESPONDING L_S_SELECT TO POST_DATE.
            CONCATENATE L_S_SELECT-LOW6(4)  L_S_SELECT-LOW3(2) L_S_SELECT-LOW+0(2) INTO POST_DATE-LOW.
            CONCATENATE L_S_SELECT-HIGH6(4)  L_S_SELECT-HIGH3(2) L_S_SELECT-HIGH+0(2) INTO POST_DATE-HIGH.
            APPEND POST_DATE.
          ENDLOOP.
    **Get Management rating details
          OPEN CURSOR WITH HOLD S_CURSOR FOR
          SELECT VENDOR POST_DATE OVERALL_MNGT_RAT OVERALL_DEV_RAT FROM ZMMTVEND_RATING WHERE VENDOR IN VENDOR AND POST_DATE IN POST_DATE .
        ENDIF.
    Fetch records into interface table.
        FETCH NEXT CURSOR S_CURSOR
                   APPENDING CORRESPONDING FIELDS
                   OF TABLE E_T_DATA
                   PACKAGE SIZE S_S_IF-MAXSIZE.
        S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
        IF SY-SUBRC <> 0.
          CLOSE CURSOR S_CURSOR.
          RAISE NO_MORE_DATA.
        ENDIF.
      ENDIF.              "Initialization mode or data extraction ?
    ENDFUNCTION.

    Hi
    Check URLs:
    How to populate the ranges using FM for the SELECTs
    Re: Generic Delta Function Module

  • I am still having issues with the TOC. I finally got several chapters and sections to show different pictures in the TOC, but have spent hours trying to figure out how to repeat it. This should be so simple. Is there an update? Please help us Apple.

    I am still having issues with the TOC pictures. I got several chapter/section photos to show up, but can't seem to repeat this success. It is some mystery that happened during a time that I had practically given up. This should be such a simple thing. Drag and place a picture into the placeholder and it shows up in the TOC....right? Help, help help! want to get this thing done and it's taken two days of work just get some of the photos to show up. I am going to have to publish this ibook with no photos in several sections.....why can't this be simple? I have even had someone else spend hours trying to figure this out. This software is such a GREAT idea....come on...help with this little part of it.

    I had the same problem myself. I got to the point where I couldn't replace the photo, of a new chapter, in the TOC. What I did was to duplicate an existing chapter that was working and was able to replace it's TOC's photo. I also found that if you try different areas of the photo you can sometimes get it to replace correctly. For example, instead of dragging the new photo to the middle of an existing photo, try dragging it to the right top corner.

  • Issue with Delta Request

    Hi Friends,
    I have an issue with loading.
    1. From source 2lis_13_VDITM, data loads to 2 targets.
    ZIC_SEG, 0SD_C03.and from 0sd_C03 it again loads to ZSD_C03W and ZSD_C03M through DTP.
    I have done a repair full load on 08.08.2011 to PSA and loaded this request manually to cube ZIC_seg.
    I forgoted to delete this request in PSA as i dont want to load this to other targets.
    Before i notice ,already delta requests got loaded and has pulled my repair full request also to other targets.
    As i have not done any selective deltions on other cubes there may be double entries.
    I am planning to do the below steps inorder to rectify the issue.
    1. Do a selective deletion of the delta request in all 3 targets which got loaded on 8th along with repair full.
    2. Delete the repair full request from PSA.
    So now delta request which got loaded after repair full request, is left in PSA.
    My question is if my PC runs today will this delta request in PSA also pulls again to cube through DTP?
    Kindly share any other ideas please urgent...
    Regards,
    Banu

    Hi Banu,
    If the data in the CUBE's is not compressed, then follow the below steps
    1)Delete the latest request in CUBE ZIC_SEG
    2)Delete the latest request from cubes  ZSD_C03W and ZSD_C03M and then from 0SD_C03.
    3)load the delta request manually using DTP from your cubes(in DTP you can load by giving request number). to cubes ZIC_SEG and 0SD_C03.
    3)now run the delta DTP to load the delta request from 0SD_C03 to ZSD_C03W and ZSD_C03M.
    Next when your PC runs it will load only that particular day delta request.
    It will work
    Regards,
    Venkatesh

Maybe you are looking for

  • HT5953 some of my books do not show up on my phone

    some i books do not show up on my phone

  • SWFLoader Memory - At my wits end! Ugh!

    I am pulling my hair out trying to make sense of why SWFLoader controls consume so much memory? I'm trying to load SWF's that are pages of a document.  Each page is about 100k in size.  In this example, I'm loading 100 pages (the same page actually).

  • Layered menu buttons

    So I've been using DVD Studio Pro for a while and I'm just now dealing with a problem I don't know how to solve. I'm using a layered menu with 10 buttons. I create a button by dragging on the menu. I set the target to the correct track and the remote

  • How to install flash player with safari 7 and OSX Mavericks

    flash 13 refuses to install on brand new imac with Mavericks and Safari. Any ideas on how to get Flash installed would be much appreciated

  • VLAN to ACs mapping

    I would like to know if it is possible to do the following: Let users in VLAN A authenticate to ACS A and users in VLAN B authenticate to ACS B. Any comments welcome. Regards Dean