Insert in Pre-Update...please help...

hii all...
i have master/detail block form....
Table - T_MAST (MASTER)
M_CODE
M_NO
M_DATE
M_PARTY
M_DISC_AMT
M_CHRGS
Table - T_DET (DETAIL)
D_MCODE
D_MNO
D_ITEM
D_QTY
D_PRICE
D_AMT (Non-DB Formula item, calculates D_QTY * D_PRICE)
D_TOT_AMT (Non-DB Summary item, sums D_AMT)
D_NET_AMT (Non-DB Formula item, D_TOT_AMT-M_DISC_AMT+M_CHRGS)
on saving, in pre-insert i want to save some columns from T_MAST & T_DET blocks
into another table T_ACNT;
Table - T_ACNT
ACNT_CODE
ACNT_NO
ACNT_DATE
ACNT_PARTY
ACNT_DC
ACNT_AMT
I gave the follwing 2 inserts...in
PRE-INSERT (Header Block)
INSERT INTO T_ACNT VALUES (:M_CODE,
:M_NO,
:M_DATE,
:M_PARTY,
'C',:D_NET_AMT);
INSERT INTO T_ACNT VALUES (:M_CODE,
:M_NO,
:M_DATE,
:GLOBAL.M_CASH_CODE,
'D',:D_NET_AMT);
Pre-Insert have no issues...
but the problem i am facing is, when i update record after any change..
in PRE-UPDATE, first i am Deleting the record already existing in T_ACNT table,
matching with the current header record and then Insert record with new values..
PRE-UPDATE (Detail Block)
DELETE FROM ACNT_TXN
WHERE ACNT_CODE = :M_CODE
AND ACNT_NO = :M_NO
INSERT INTO T_ACNT VALUES (:M_CODE,
:M_NO,
:M_DATE,
:M_PARTY,
'C',:D_NET_AMT);
INSERT INTO T_ACNT VALUES (:M_CODE,
:M_NO,
:M_DATE,
:GLOBAL.M_CASH_CODE,
'D',:D_NET_AMT);
Modifying 1 record at a time, either master,detail or both has no problem,
but if i update more than 1 header records or updating combination of both header-detail records.
doesn't insert new records in ACNT_TXN correctly....
for example, with the followinf data;
M_CODE       M_NO M_DATE    M_PART M_DISC_AMT    M_CHRGS
SAL            24 15-JUN-10 C1006                      1
SAL            25 23-JUN-10 C1003           2
D_MCOD      D_MNO D_ITEM               D_QTY    D_PRICE
SAL            24 987654321                2          2
SAL            25 P0140000014              2          4
Initially PRE-INSERT result goes well.. in ACNT_TXN...no issues
ACN    ACNT_NO ACNT_DATE ACNT_C A   ACNT_AMT
SAL         24 15-JUN-10 C1006  D          5
SAL         24 15-JUN-10 5500   C          5
SAL         25 23-JUN-10 5500   C          6
SAL         25 23-JUN-10 C1003  D          6lets assume that i change header field of record with M_No. 24 and 25
and remaining on record no. 25 i press save button...
what i notice is, Form start to commit the changes from the first changed record,,
which in my case from header record No. 24...and thats fine...
since the record is changed, so pre-update gets fired.
First, it deletes the record from ACNT_TXN with matching header record no.24 but...
when re-Inserting in ACNT_TXN, it is replacing values of record no.24 with the values current record no 25...!
i put a message trapping the value of D_NET_AMT before Delete and found this...
kindly if any one help me correct my logic n approach...
TY..

hello,
No need to delete the record from the table ACNT_TXN.
Just check it if record is exist then update it.
Do you have any contraints in your detail table?
i assumed you have this contrainst field :
as primary or unique :-
ACNT_CODE
ACNT_NO
ACNT_DC
if no constraint then just make function to check if exist then update the record.
since you have the code on your forms then i will suggest this code if it suite to your need.
Ok. can you just try it again by pre-update under dtl_blk.
begin
INSERT INTO T_ACNT VALUES (:M_CODE,
:M_NO,
:M_DATE,
:M_PARTY,
'C',
:D_NET_AMT);
exception when duP_val_on_index then
begin
update T_ACNT
set ACNT_AMT = nvl(:D_NET_AMT,0)
where ACNT_CODE = :M_CODE
     ACNT_NO = :M_NO
ACNT_DC = 'C';
end;
end;
OR-
begin
update T_ACNT
set ACNT_AMT = nvl(:D_NET_AMT,0)
where ACNT_CODE = :M_CODE
     ACNT_NO = :M_NO
ACNT_DC = 'C';
IF SQL%NOTFOUND THEN
begin
INSERT INTO T_ACNT VALUES (:M_CODE,
          :M_NO,
          :M_DATE,
          :M_PARTY,
          'C',
          :D_NET_AMT);
end;
end if;
end;
begin
INSERT INTO T_ACNT VALUES (:M_CODE,
:M_NO,
:M_DATE,
:GLOBAL.M_CASH_CODE,
'D',:D_NET_AMT);
exception when duP_val_on_index then
begin
update T_ACNT
set ACNT_AMT = nvl(:D_NET_AMT,0)
where ACNT_CODE = :M_CODE
     ACNT_NO = :M_NO
ACNT_DC = 'D';
end;
end;
OR-
begin
update T_ACNT
set ACNT_AMT = nvl(:D_NET_AMT,0)
where ACNT_CODE = :M_CODE
     ACNT_NO = :M_NO
ACNT_DC = 'D';
IF SQL%NOTFOUND THEN
begin
INSERT INTO T_ACNT VALUES (:M_CODE,
          :M_NO,
          :M_DATE,
          :M_PARTY,
          'D',
          :D_NET_AMT);
end;
end if;
end;
hope will help you...
Note: this code i didnt try it, maybe you need some review but i give the idea.
charles

Similar Messages

  • TS1814 I have windows vista and this did not work for my ipod it still will not update PLEASE HELP!

    I have windows vista and this did not work for my ipod it still will not update PLEASE HELP!
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server

    Try this:
    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 n above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • My App Store won't allow me to download any apps. It says such and such app is unable to download try again later  every time. I have enough storage all my devices are up to date on all updates  please help

    My App Store won't allow me to download any apps. It says such and such app is unable to download try again later  every time. I have enough storage all my devices are up to date on all updates  please help

    I am a librarian at a 1:1 iPad school and we are having this problem with all ~3000 student iPads as well at ~300 teacher iPads.  This is extremely frustrating.  I have tried suggested fixes found on other discussion boards but none have worked.

  • Using Firefox, I am unable to do my microsoft windows updates, please help!

    I just downloaded Firefox, and I am unable to do my Microsoft updates, please help!
    == This happened ==
    Every time Firefox opened
    == I downloaded Firefox today

    Use IE for Microsoft updates. MS updates use AciveX, which Firefox doesn't support.

  • Using iweb 11 I can no longer publish site updates, please help.

    I am using iweb 11 and Lion and I can no longer publish site updates, please help.

    What a brilliant solution, Roddy.  Never would have thought of that.

  • My iPhone 4S is not preforming any network related operations after 5.0.1 update - please help!

    My iPhone 4S is not preforming any network related (Calls, Messages) operations after 5.0.1 update - please help!

    5.0.2 has not been released, thus you can not upgrade.
    Stedman

  • Hi there.candy crush not loading on my mac.been playing with it via facebook.flash player is updated.please help thank you

    hi there.candy crush not loading on my mac.been playing with it via facebook.flash player is updated.please help thank you

    Have you tried uninstalling . rebooting the computer and then reinstalling?

  • HP DVD RAM UJ8DB Driver Issue, not updating, please help

    Hi, I am trying to insert cd/ dvd but it does not detect any cd or dvd i found this issue today. It never showed this issue in the past. I checked on forums, opened device mangager and also tried to uninstall, restart and update or install driver for HP UJ8DB, but it doesn't fix it says windows has determined the driver software is up to date. Please help me fast i want to install antivirus software. I have windows 8.1 PC

    It is not a driver issue:
    http://support.microsoft.com/kb/314060
    The above Microsoft article will take you through the possible issues. Does the drive show up in device manager? The BIOS?
    Can you boot from it? It is likely either a corruption of the registry which the linked article shows how to fix, or the drive itself is bad and needs to be replaced. Post back to answer the questions so we can help.
    If this is "the Answer" please click "Accept as Solution" to help others find it.

  • EFI Firmware update Please Help

    I am not sure if this realy belongs to this forum, but I am desperate. Two days ago I did my firmware update EFI 1.2. I did everything according to the manual, followed all the (simple steps) thoroughly. I was told that everything went well.
    As it turned out it didn't. EFI 1.2 messed up everything.
    1.The startup process takes about five minutes.
    2.Dashboard doesn't function at all.
    3.I had some kernel panics.
    4.iPhoto and iMovie don't function properly.
    5.Help viewer doesn't function at all
    6.The computer is overall very slow and beachball appears when I want to run any program.
    7.I could go on forever.
    I did my research and found that it is possible to burn a firmware restoration CD. I tried it, but despite inserting a blank CD or DVD, the choice to burn is still grey.
    Please help, because this looks bad and my computer is literally unusable. I backed up most of my data and am thinking of reinstalling my OS. Another question is, if my data stays on the harddrive or whether I should back up everything when reinstaling the OS.
    Thank you for any helpfull advice.

    Well..
    Personally, I would follow those instructions to the tee. If in doubt print a hard copy out.. read it a few times, just to make sure you really know what your doing, before actually performing the tasks yourself.
    If that still doesn't work, take the faulty system to a Authorise Apple Repair Centre, the engineers there should have an alternative method to recover the system.
    http://docs.info.apple.com/article.html?artnum=303364
    "Important: Do not unplug, shutdown, or restart your computer while the update is taking place. Interrupting a firmware update can render your computer unusable. If this happens, take your machine to an Apple store or authorized service provider or perform the recovery yourself using another Macintosh computer to download the Firmware Restoration CD disk image from http://www.apple.com/support/downloads/. This software allows you to create a CD which you can use to restore your machine to working order."

  • Q10 stuck at reboot after software update - PLEASE HELP

    Hello
    I was checking for software updates for my Q10 yesterday and was informed that there is a new update
    I clicked on download and install, and it asked me to reboot when it was done. After that it loaded very slowly until it reached 99% 6 hours later and it remained like that for 12 hours
    What I did this morning was remove the battery and sim card and I reinserted the battery, the same thing happened again and it is moving very very slowly
    Can you please help?? I would rather find away in which I do not loose my BBM contacts since I have not backed up my phone...are the contacts stored on my blackberry ID or will I loose them if I reset the phone?
    Thank you very much

    It finally powered on after 3 battery pulls, but now it does not make or receive calls (((
    Everytime I connect it to blackberry link it says software update available, so I clicked on install, it said downloading update and then nothing happens, the download bar becomes full then nothing changes
    I also tried to reload device software, i got a message saying checking repair software and it stayed like that for 3 hours then the device rebooted but nothing happened at all
    I even tried redoing the software update from the phone itself 3 times, everytime it would say update successful but the phone would still not make or receive calls
    Please help I dont know what to do....could the problem with blackberry link be that im using it on a mac??
    I appreciate your help

  • Songs cannot be updated please help!

    I am receiving an error message every time I plug in my iPod. It says...Songs on the ipod "The Pod" cannot be updated because all of the playlists selected for syncing no longer exist. I only started getting problems once my itunes library surpassed the capacity of my 30 GB video iPod. All of the music is still in my itunes library and I simply wished to only copy the checked items to the ipod. However, itunes automaticaly created some type of a master playlist that I immediately deleted only due to the fact that I don't use playlists at all.
    Now I cannot copy any music to my iPod and everything has been deleted from it...I cannot use the restore setting in itunes nor change any of the main preferences for the actual iPod. Please Help.

    Hudgie, "iPod cannot sync because one or more playlist", 11:33pm Oct 9, 2004 CDT

  • Usb port not working after yosemite update please help

    ive got an early 2011 macbook pro i5. and one of my usb stopped working. if i reset my  computer it works for a while and then stops again. all these after yosemite update please i really need help on this.. and also when ever im in the middle of something it keeps crashing and saying these things below after i booting back up. ive tried several things, didnt work, tried repairing disk permissions. please anybody with any idea help me!
    Anonymous UUID: 
    CCC4DCA9-48E9-4692-250B-488588FCC69E
    Sun Nov  9 17:58:17 2014
    *** Panic Report ***
    panic(cpu 0 caller 0xffffff802a005eb2): "Possible memory corruption: pmap_pv_remove(0xffffff803b8db998,0x7fff7360f000,0x6d654, 0x6d654d64, 0xffffff8031663cc4, 0xfffffeb38ae0f078): null pv_list!"@/SourceCache/xnu/xnu-2782.1.97/osfmk/i386/pmap_internal.h:768
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8031663b80 : 0xffffff8029f3a811
    0xffffff8031663c00 : 0xffffff802a005eb2
    0xffffff8031663cf0 : 0xffffff802a0065e5
    0xffffff8031663d50 : 0xffffff8029fb6b4a
    0xffffff8031663e60 : 0xffffff8029facd2c
    0xffffff8031663e90 : 0xffffff8029f5c747
    0xffffff8031663ed0 : 0xffffff802a3c45ff
    0xffffff8031663f40 : 0xffffff802a3c425c
    0xffffff8031663f50 : 0xffffff802a44dcb2
    0xffffff8031663fb0 : 0xffffff802a03ac46
    BSD process name corresponding to current thread: suhelperd
    Mac OS version:
    14A389
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide:
    0x0000000029c00000
    Kernel text base: 0xffffff8029e00000
    __HIB  text base: 0xffffff8029d00000
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 7052072843826
    last loaded kext at 6483411185500: com.huawei.driver.HuaweiDataCardActivateDriver    1.0.12 (addr 0xffffff7fac6ba000, size 16384)
    last unloaded kext at 6604174049015: com.apple.driver.AppleUSBCDC    4.2.2b5 (addr 0xffffff7fac717000, size 16384)
    loaded kexts:
    com.huawei.driver.cdc_ncm    2.7.2f16
    com.huawei.driver.dc_net    1.0.2
    com.huawei.driver.cdc_acm    2.6.2f17
    com.huawei.driver.cdc_usb_bus    1.0.3
    com.huawei.driver.HuaweiDataCardDriver    4.25.45
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.driver.AudioAUUC    1.70
    com.apple.driver.AGPM    100.14.37
    com.apple.filesystems.autofs    3.0
    com.apple.iokit.IOBluetoothSerialManager    4.3.0f10
    com.apple.driver.AppleOSXWatchdog    1
    com.apple.driver.AppleMikeyHIDDriver    124
    com.apple.driver.AppleHDA    266.5
    com.apple.driver.AppleMikeyDriver    266.5
    com.apple.driver.AppleSMCLMU    2.0.4d1
    com.apple.driver.ApplePolicyControl    3.7.21
    com.apple.driver.AppleLPC    1.7.3
    com.apple.driver.AppleUpstreamUserClient    3.6.1
    com.apple.iokit.IOUserEthernet    1.0.1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleHWAccess    1
    com.apple.driver.AppleHV    1
    com.apple.driver.ACPI_SMC_PlatformPlugin    1.0.0
    com.apple.driver.AppleIntelHD3000Graphics    10.0.0
    com.apple.driver.AppleIntelSNBGraphicsFB    10.0.0
    com.apple.driver.AppleBacklight    170.4.12
    com.apple.driver.AppleMCCSControl    1.2.10
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport    4.3.0f10
    com.apple.driver.AppleSMCPDRC    1.0.0
    com.apple.driver.AppleThunderboltIP    2.0.2
    com.apple.driver.SMCMotionSensor    3.0.4d1
    com.apple.driver.AppleUSBTCButtons    240.2
    com.apple.driver.AppleUSBTCKeyboard    240.2
    com.apple.driver.AppleIRController    327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    35
    com.apple.iokit.SCSITaskUserClient    3.7.0
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.6.5
    com.apple.driver.AppleUSBHub    705.4.1
    com.apple.iokit.AppleBCM5701Ethernet    10.1.2b3
    com.apple.driver.AppleFWOHCI    5.5.2
    com.apple.driver.AppleSDXC    1.6.5
    com.apple.driver.AirPort.Brcm4331    800.20.24
    com.apple.driver.AppleAHCIPort    3.0.7
    com.apple.driver.AppleUSBEHCI    705.4.14
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleRTC    2.0
    com.apple.driver.AppleACPIButtons    3.1
    com.apple.driver.AppleHPET    1.8
    com.apple.driver.AppleSMBIOS    2.1
    com.apple.driver.AppleACPIEC    3.1
    com.apple.driver.AppleAPIC    1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient    218.0.0
    com.apple.nke.applicationfirewall    161
    com.apple.security.quarantine    3
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    218.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.7.0
    com.apple.iokit.IOUSBMassStorageClass    3.7.0
    com.apple.AppleGraphicsDeviceControl    3.7.21
    com.apple.kext.triggers    1.0
    com.apple.iokit.IOSerialFamily    11
    com.apple.driver.DspFuncLib    266.5
    com.apple.kext.OSvKernDSPLib    1.15
    com.apple.iokit.IOAudioFamily    200.6
    com.apple.vecLib.kext    1.2.0
    com.apple.driver.AppleHDAController    266.5
    com.apple.iokit.IOHDAFamily    266.5
    com.apple.iokit.IOFireWireIP    2.2.6
    com.apple.driver.AppleSMBusPCI    1.0.12d1
    com.apple.iokit.IOSurface    97
    com.apple.driver.IOPlatformPluginLegacy    1.0.0
    com.apple.driver.AppleGraphicsControl    3.7.21
    com.apple.driver.AppleBacklightExpert    1.1.0
    com.apple.iokit.IONDRVSupport    2.4.1
    com.apple.driver.AppleSMBusController    1.0.13d1
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport    4.3.0f10
    com.apple.iokit.IOBluetoothFamily    4.3.0f10
    com.apple.driver.IOPlatformPluginFamily    5.8.0d49
    com.apple.iokit.IOUSBUserClient    705.4.0
    com.apple.driver.AppleSMC    3.1.9
    com.apple.driver.AppleUSBMultitouch    245.2
    com.apple.iokit.IOUSBHIDDriver    705.4.0
    com.apple.driver.AppleUSBMergeNub    705.4.0
    com.apple.driver.AppleUSBComposite    705.4.9
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.7.0
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOAHCISerialATAPI    2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.7.0
    com.apple.driver.AppleThunderboltNHI    3.1.7
    com.apple.iokit.IOThunderboltFamily    4.2.1
    com.apple.iokit.IOEthernetAVBController    1.0.3b3
    com.apple.iokit.IOFireWireFamily    4.5.6
    com.apple.iokit.IO80211Family    700.52
    com.apple.driver.mDNSOffloadUserClient    1.0.1b8
    com.apple.iokit.IONetworkingFamily    3.2
    com.apple.iokit.IOAHCIFamily    2.7.0
    com.apple.iokit.IOUSBFamily    705.4.14
    com.apple.driver.AppleEFINVRAM    2.0
    com.apple.driver.AppleEFIRuntime    2.0
    com.apple.iokit.IOHIDFamily    2.0.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    300.0
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.AppleKeyStore    2
    com.apple.driver.AppleMobileFileIntegrity    1.0.5
    com.apple.driver.AppleCredentialManager    1.0
    com.apple.driver.DiskImages    389.1
    com.apple.iokit.IOStorageFamily    2.0
    com.apple.iokit.IOReportFamily    31
    com.apple.driver.AppleFDEKeyStore    28.30
    com.apple.driver.AppleACPIPlatform    3.1
    com.apple.iokit.IOPCIFamily    2.9
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    com.apple.kec.Libm    1
    com.apple.kec.pthread    1
    Model: MacBookPro8,1, BootROM MBP81.0047.B04, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f96
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.24)
    Bluetooth: Version 4.3.0f10 14890, 3 services, 19 devices, 2 incoming serial ports
    Serial ATA Device: ST9320325ASG, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: Hub
    USB Device: HUAWEI Mobile
    USB Device: IR Receiver
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus: MacBook Pro, 20080d.0

    I have the same problem when I updated to OS X 10.10 I lost both my USB ports as far as they will not recognize anything that I plug into them.  The power part of the USB seams to work since it will recharge my Striiv Touch but nothing shows up when you connect anything to the ports.
    I have tried a number of things from rebooting, trying other usb devices that work on other systems with no problems but will not work on my Macbook Pro.
    Any Help out there?
    Hardware Information: ℹ️
    MacBook Pro (Retina, 15-inch, Late 2013) (Verified)
    MacBook Pro - model: MacBookPro11,3
    1 2.3 GHz Intel Core i7 CPU: 4-core
    16 GB RAM Not upgradeable
    BANK 0/DIMM0
    8 GB DDR3 1600 MHz ok
    BANK 1/DIMM0
    8 GB DDR3 1600 MHz ok
    Bluetooth: Good - Handoff/Airdrop2 supported
    Wireless:  en0: 802.11 a/b/g/n/ac
    System Software: ℹ️
    OS X 10.10.1 (14B25) - Uptime: 1:43:41
    USB Information: ℹ️
    Apple Internal Memory Card Reader
    Apple Inc. BRCM20702 Hub
    Apple Inc. Bluetooth USB Host Controller
    Apple Inc. Apple Internal Keyboard / Trackpad

  • Itunes store: We could not complete your iTunes Store Request. An unkown error occured (0x800B0109). There was an error in the itunes store. Please try again later. This always comes up when i try to either purchase items or get updates, please help

    When i go into the iTunes store and try to update apps or buy apps/songs a window pops up stating:
    "We could not complete your iTunes Store request. An unkown error has occured (0x800B0109)"
    "There was an error in the iTunes Store. Please try again later."
    I try later but then it keeps coming up. Please help!!!

    Perhaps try the "Error 3001," "-42110," or "5103" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • Software update error I can't update my I phone because it keeps saying error and It won't let me connect to I tunes until the phone is updated please help!c

    My I phone 5s keeps starting the update but failing and I cant connect to I tunes because it says the phone needs updating! Please help!

    What is the exact error you are getting?
    What computer OS are you using?
    What version of iTunes are you using?
    What troubleshooting have you tried?

  • ITunes says I need to update my ipod but it is updated please help

    Ok when i plug in my iPod a popup says some of the items in the iTunes library were not copied to the ipod because your ipod software is too old. Go to summery tab in iPod preferences and click update to get the latest ipod software. But i do have the latest software and on itunes where it says update it is grayed out so what do i do please help me thanks, Hayley

    hmmmm. while the ipod is plugged in, in itunes go "help > check for updates". after it says you're up to date with your itunes, do you get another message asking you to update your firmware?

Maybe you are looking for

  • QuickGPS on Treo Pro - Updates?

    Hi there  I am using QuickGPS provided with my Treo Pro for some time now, and was asking if there was a newer version, than that one is preinstalled. I couldnt find any on the web, just this here: http://www.freewarepocketpc.net/ppc-tag-quickgps.htm

  • No connectivity - ports up and down?

    I have a 2950 switch which we use to for connectivity to VOIP phones and terminals/pcs on the floors. At random times during the day maybe twice 2-3 hour span, we lose connectivity between two of the terminals and our server which is connected to the

  • "Edit in Photoshop Elements" does not appear as option in Lightroom 4.3

    After viewing this artical: http://helpx.adobe.com/x-productkb/multi/edit-photoshop-command-missing-photoshop.html  and completing all options related to the Mac, the "Edit in Photoshop..." still does not appear as a clckable option in my Lightroom 4

  • Exception handling in outbound ABAP proxy

    Hi All, i need to catch exception in outbound abap proxy in two cases: 1. if RFC dest in R3 which is pinging to XI goes down. 2. IF xi server is down. in both the cases i need to catch the exceptions. now i written the code in this way: DATA: v_excep

  • Empty Row in Advanced Table

    Hi, I have an Advanced Table "DelegatedRN" in which the where clause is set pragmatically in the processRequest by OAAdvancedTableBean table = *(OAAdvancedTableBean)webBean.findChildRecursive("DelegatedRN");* table.queryData(pageContext, false); , an