What is the "Error! Check Authorization" message and why does my Digital Editions crash right after that pops up?

I have authorized the Adobe Digital Editions with both my PC and my eReader. I try to download a library book and I get the "Error! Check Authorization" message. My Digital Editions will then crash.

Hello,
Please download the latest ADE 4.0.3.114137
http://www.adobe.com/solutions/ebook/digital-editions/download.html
Some of the crashes have been fixed in this release.
Thanks for being the part of product improvement.

Similar Messages

  • What's the difference between deleted messages and trash?

    what's the difference between deleted messages and trash?

    A Time Capsule is hardware. It's basically an Apple AirPort Extreme wireless router with a built-in hard drive. For more info on this product:
    http://www.apple.com/timecapsule/
    Time Machine is a software application that allows your Mac to backup its data automatically to the hard drive on the Time Capsule. For more info on this software, which is included with the Leopard, Snow Leopard and Lion operating systems:
    http://www.apple.com/findouthow/mac/#timemachinebasics

  • What is the error code mean? And how to solve it ?Please give your answer. Thanks

    What is the error code  mean? And how to solve it ?Please give your answer. Thanks
    Attachments:
    QQ截图20140403134626.png ‏59 KB

    duplicate post
    LabVIEW Champion . Do more with less code and in less time .

  • Quickly!Quickly!Quickly!What is the error code mean? And how to solve it ?Please give your answer. Thanks

    What is the error code mean? Why is there an error?And how to solve it ?Please give your answer. Thanks!                                               
    ——1110340026
    Attachments:
    QQ图片20140403140655.jpg ‏108 KB

    Sannieboyyyy wrote:
    Could be me, but your VI is not working properly on the english version of LV. Can I suggest you to try programming in English in the future?
    Yes, it's you. The VI is working just fine, except for some cosmetic issues with the labeling. I don't think is is a valid suggestion to force somebody to program in a specific language, especially since LabVIEW supports all these languages.
    Here are the problems with the VI:
    If you don't want an amplitude of zero, you need to set the amplitude control to a nonzero value before running. Simple as that!. (You could also set the input range for the amplitude control to exclude zero or use a case structure to skip certain code if the amplitude is zero).
    You could also wire the error output to an indicator so it simply displays the errors, but keeps running.
    Your while loop is currently useless. You can delete it and the program function will not change. Use a stop button at the loop condition.
    Your while loop needs some timing so it runs at a reasonable rate. Either add a small wait or configure the signal generation to "simulate acquisition timing" instead of "run as fast as possible".
    LabVIEW Champion . Do more with less code and in less time .

  • What happened to the youtube app and why does my ipod keep crashing?

    I updated my ipod touch 4g to iOS 6.0 and what happened to the youtube app? And why does my ipod keep on crashing when ever I go to the app store? Now i can never buy anything!!! or watch youtube videos and I'm always on youtube!!!!!!!!

    As has been very well publicized in the news and all over the internet and forums, youtube is not part of ios 6.  Google it.
    You can get the app from the app store if you like.
    Have you tried the basics from the manual to stop the crashing?
    Restart, reset, restore.

  • I'm having problems with my authorization. I get an error. check activation message and then when I try to erase authorization it tells me to try again at another time

    I have a PC with windows 7.

    If due to some reason, you are unable to deauthorize ADE, follow the below steps:
    Windows:
    Choose Start > Run.
    In the Open text box, type regedit and then press Enter. The Registry Editor opens.
    In the left pane of the Registry Editor, locate the following registry key:
    HKEY_CURRENT_USER\Software\Adobe\Adept
    Right-click the Adept key and choose Delete.
    In the Confirm Key Delete dialog, click OK.
    Your authorization will be deleted.
    ADE will be deauthorized now.
    Now Authorize ADE again.
    Reference:
    Error "E_AUTH_NOT_READY" | Digital Editions
    Hope this works !!

  • What do you think of my Bash Script? What about the error checking?

    Well what do you think of this Bash script
    It works
    I gave it some problems (i.e. unpluged the ethernet, messed up the URL's, uninstaled some programs...) to see if would report errors and stop or just keep going... But it did
    I just kind of thought up a way to do some error checking with the commands that I know.....
    What is a better way to do error checking?
    What do you think I should add/Do to this script?
    #!/bin/bash
    # Shell script to make a USB Tumb Drive for Flashing BIOS on a Lenovo Ideapad Y510.
    # This script needs to be owned and run as ROOT with the "sudo command"
    # i.e. sudo usbbiosflasher
    # If you have anyideas send me a PM on ubuntufourms.org my user name is HunterThomson
    # Name/Rename this script usbbiosflasher and save it to the ~/home directory.
    # Then run the command- chown root:root usbbiosflasher
    # Then run the command- chmod 755 usbbiosflasher
    # Then copy the script to the directory /usr/bin.
    # Run this comand to do that- sudo cp ~/usbbiosflasher /usr/bin
    # You also must have the program "mbr" installed
    # You can install the mbr program by running this comand in the shell on Ubuntu
    # sudo apt-get install mbr
    # In Arch Linux you have to get it from Aur
    # First you will need to know a few things...
    # You will also need to know the Mount Point i.e. /media/disk and the /dev path i.e. /dev/sdb1.
    # You can find these by using the df -T comand.
    # Run df -T in the shell. Then plug in the USB Thumb Drive and run the df -T comand agin.
    # The new listing is the USB Thumb Dirve.
    # Also check to make sure the File System tipe is vFAT or FAT16 or FAT32.
    # If it is not use gparted to format it to FAT32.
    # I am farly certen that all USB Thumb drives come formated with FAT file system out of the BOX.
    # You may want to fromat it anyway just to make sure.
    echo "Interactive Shell Script to Make a USB Thumb Drive \for Flashing BIOS On a Lenovo Ideapad Y510"
    echo ""
    echo "You will need to have the program mbr installed"
    echo "If you are on Ubuntu Linux you can retreve it form the repositories"
    echo "If you are on Arch Linux you will need to get it from the Aur repository"
    echo "Open anuther shell and \do that now..."
    echo ""
    verify="n"
    while [ "$verify" != y ]
    do
    printf "Do you have mbr installed... yes or no?"
    read AN1
    echo ""
    printf "You answered... $AN1 I have installed mbr. Is this correct... y or n?"
    read verify
    done
    echo ""
    if [ "$AN1" == "no" ]
    then
    echo "Install mbr now. Then run this script agin"
    exit
    else
    echo "contunuing script"
    fi
    echo ""
    # The next comand will make a directory to put needed files into. Note this file and everything init will be owned by root.
    mkdir ~/usbbiosfiles && check1="yes"
    if [ "$check1" = "yes" ]
    then
    echo "Made directory usbbiosfiles... OK"
    else
    echo "Could not \make directory usbbiosfiles"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    exit
    fi
    # The next two comands will get the FreeDOS file and the .ROM file.
    cd ~/usbbiosfiles && checka="yes"
    if [ "$checka" = "yes" ]
    then
    echo "Changing to the usbbiosfiles directory... OK"
    else
    echo "Could not Change to the usbbiosfiles directory"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    wget "http://www.fdos.org/bootdisks/autogen/FDOEM.144.gz" && check2="yes"
    if [ "$check2" = "yes" ]
    then
    echo "Download of FreeDOS... OK"
    else
    echo "Could not Download FreeDOS"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    wget "http://ubuntuforums.org/attachment.php?attachmentid=78460&d=1216648756" && check3="yes"
    if [ "$check3" = "yes" ]
    then
    echo "Download of the BIOS.ROM \file... OK"
    else
    echo "Could not Downlad the BIOS.ROM \file"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    # The next comand will name the .ROM file to the right name.
    mv ~/usbbiosfiles/attachment.php?attachmentid=78460\&d=1216648756 ~/usbbiosfiles/06CN29WW.bios.update.tar.bz2 && check4="yes"
    if [ "$check4" = "yes" ]
    then
    echo "Renameing of the BIOS.ROM \file... OK"
    else
    echo "Could not rename the BIOS.ROM \file"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    echo ""
    # The next two comands set the variables. DEVX for the path i.e. /dev/xxx and MOUNTX for the mount point i.e. /media/xxx
    verify="n"
    while [ "$verify" != y ]
    do
    echo "You will need to know the Mount Point and the dev Path. You will also need to \make sure the File System \type is vFAT, FAT16 or FAT32."
    echo ""
    echo "With the USB Thumb Drive unpluged, Open another shell and run the comand df -T Then plug \in the USB Thumb Drive and run the comand df -T one \more time. The new device listed is the USB Thumb Drive. Note the Mount Point and The dev Path and the File system Type i.e. vFAT... If the File System \type is not vFAT, FAT16 or FAT32 you will need to fromat it with gparted. You may want to format the USB Thumb Drive anyway just to \make sure. In any \case delete all files and directorys on the USB drive before you go any ferther with this program."
    echo ""
    printf "Enter the dev path the USB Thumb Drive is at?"
    read DEVX
    echo ""
    echo "Are you sure $DEVX is the dev path of the USB Thumb Drive... y or n?"
    read verify
    done
    echo ""
    verify="n"
    while [ "$verify" != y ]
    do
    printf "What is the Mount Point of the USB Thumb Drive?"
    read MOUNTX
    echo ""
    echo "Are you sure $MOUNTX is the Mount Point of the USB Drive... y or n?"
    read verify
    done
    echo ""
    install-mbr --enable A1 --partition 1 --force --timeout 0 $DEVX && check5="yes"
    if [ "$check5" = "yes" ]
    then
    echo "Installing MBR on USB Thumb Dirve... OK"
    else
    echo "Could not install MBR on USB Thumb Drive"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    tar xjf ~/usbbiosfiles/*.tar.bz2 && check7="yes"
    if [ "$check7" = "yes" ]
    then
    echo "Unpacking BIOS.ROM file... OK"
    else
    echo "Could not unpack BIOS.ROM file"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    gunzip ~/usbbiosfiles/FDOEM.144.gz && check8="yes"
    if [ "$check8" = "yes" ]
    then
    echo "Unpacking FreeDOS files... OK"
    else
    echo "Could not unpack FreeDOS files"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    mkdir ~/usbbiosfiles/fdoem144 && check9="yes"
    if [ "$check9" = "yes" ]
    then
    echo "Made directory fdoem144 in direcoty usbbiosfiles... OK"
    echo ""
    echo "Going to \sleep \for 5secs"
    else
    echo "Could not make directory fdoem144 in usbbiosfiles directory"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    modprobe loop && sleep 5 && check0="yes"
    if [ "$check0" = "yes" ]
    then
    echo "Modprobeing loop... OK"
    else
    echo "Could not \modprobe loop"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    mount -o loop ~/usbbiosfiles/FDOEM.144 ~/usbbiosfiles/fdoem144 && check10="yes"
    if [ "$check10" = "yes" ]
    then
    echo "Mounting FreeDOS on the fdoem144 directory... OK"
    else
    echo "Could not \mount FreeDOS on the fdoem144 directory"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    cp ~/usbbiosfiles/fdoem144/* $MOUNTX && check11="yes"
    if [ "$check11" = "yes" ]
    then
    echo "Copying FreeDOS files to $MOUNTX... OK"
    else
    echo "Could not copy FreeDOS files to $MOUNTX"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    cp ~/usbbiosfiles/*.ROM $MOUNTX && check12="yes"
    if [ "$check12" = "yes" ]
    then
    echo "Copying BIOS.ROM files to $MOUNTX... OK"
    else
    echo "Could not copy BIOS.ROM files to $MOUNTX"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    sync && check13="yes"
    if [ "$check13" = "yes" ]
    then
    echo "Runing the syncing command... OK"
    else
    echo "Could not run the syncing command"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    umount ~/usbbiosfiles/fdoem144 && check14="yes"
    if [ "$check14" = "yes" ]
    then
    echo "Unmounting of FreeDOS... OK"
    else
    echo "Could not unmount FreeDOS"
    echo "Look above for errors or problems reported and fix the problem"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this script agin"
    rm -r ~/usbbiosfiles
    exit
    fi
    verify="n"
    while [ "$verify" != y ]
    do
    printf "Do you see any errors... yes or no?"
    read AN2
    echo ""
    printf "You answered... $AN2 to errors. Is this correct... y or n?"
    read verify
    done
    echo ""
    if [ "$AN2" == "yes" ]
    then
    echo "User Repoted... Error"
    echo "Look above for errors or problems reported and fix the problem"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this script agin"
    rm -r ~/usbbiosfiles
    exit
    else
    echo "Success"
    echo "I did a lot of error checking too and didnt find anything"
    echo ""
    echo "Go get a pen and paper to write down these instructions"
    printf "Then hit the Enter to continue"
    read WAIT
    echo ""
    echo "Now leave the USB Thumb Drive pluged into your computer and Reboot. When the Lenovo Logo POST screen appears hit F2 to enter the CMOS setup utility. Go over to BOOT tab and go down to HardDrive \(Not Boot Order) \then \select the USB Thumb Drive as the 1st hard drve. Then F10 and yes to save changes. Your compter will reboot agin. Then when the Lenovo Logo POST Screen appers on reboot hit F4 to enter the BIOS FLASHING program. The USB Thumb Drive will be seen as the C drive \in the list on the Left, Select it. Then \select the .ROM \file \in the list on the Right and start the BIOS FLASH. \(NOTE Your hart may stop beating... This is normal) Pray to any God you know of and your computer should restart just like normal. Hit F2 and the BIOS will now stay it is 06CN29WW. You will need to \set the boot order to the way you like it and other things \if you need to because they have been changed to the default."
    fi
    echo ""
    echo "End of script"
    Last edited by hunterthomson (2008-08-10 11:17:47)

    Personally.....  (this is just how I would have written it - if it works, then it's good enough for me though )
    I would change this whole block:
    verify="n"
    while [ "$verify" != y ]
    do
    printf "Do you have mbr installed... yes or no?"
    read AN1
    echo ""
    printf "You answered... $AN1 I have installed mbr. Is this correct... y or n?"
    read verify
    done
    echo ""
    if [ "$AN1" == "no" ]
    then
    echo "Install mbr now. Then run this script agin"
    exit
    else
    echo "contunuing script"
    fi
    To this much shorter code:
    MBR='/usr/bin/install-mbr' # Or where ever you expect it to be
    if [ ! -x $MBR ] ; then
    echo "mbr doesn't appear to be installed."
    echo "If it is installed, check it's location, make sure it's executable and then make sure the MBR variable in this script is correct"
    exit 1
    fi
    I wouldn't have used the checkXX variables for each stage:
    mkdir ~/usbbiosfiles
    if [ $? != 0 ] ; then
    #failed
    echo "Could not \make directory usbbiosfiles"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    exit 1
    else
    echo "Made directory usbbiosfiles... OK"
    fi
    There is an issue with the way you do your verifications - the user can never get out unless they answer 'y' or hit CTRL+C. Something like this gives them options:
    verify="n"
    while [ "$verify" != "y" && "$verify" != "n" ]; do
    echo "You need to answer 'y'es or 'n'o"
    read verify
    echo $verify | tr "[:upper:]" "[:lower:]" # This converts the answer to lowercase so replies entered in upper case will still work
    done
    if [ $verify != 'y' ] ; then
    exit 1
    fi
    One last thing I try to do in scripts... Declare all your binaries as variables at the start of the program, then execute the binary program by using the variable. For example:
    # Binaries
    TAR='/bin/tar'
    CP='/bin/cp'
    CHMOD='/bin/chmod'
    # Execute tar and chmod the created file
    $TAR cvzf /tmp/tarfile.tar.gz /etc/*.conf
    $CHMOD 400 /etc/*.conf
    This way, it's easy to change the path in future without having to hunt through the script if the paths change, and it also ensures you're calling the programs using the full paths to make sure you're not executing some strange variant or alias that someone has setup. If I use `chmod` 30 times in a script, and the path changes in the future or on a different system (`chmod` is a bad example cause it's highly unlikely to change, but you know what I mean), then all you need to do is update the variable at the start of the script, and it all works again without having to script-hunt and change it 30 times.

  • What does "The operation could not be completed because an error occurred when creating frame 0 (error -1)." mean, and why does it keep happening?

    So I've been trying to export a video file from Motion 5 (and FCPX), and I keep recieving the message "The operation could not be completed because an error occurred when creating frame 0 (error -1)". I've found the problem has something to do with a video file in the project, Ive tried multiple versions of said file, in multiple formats (.mov, h264, etc.), and I keep getting the same result.  The file was originaly a 640x480 wmv file. Any suggestions?

    I ended up figuring out a solution, but I'll get to that in a sec.
    To answer your question, I converted the .wmv file in a program called Media Converter (available in the App store), and converted it to an h.264 file (then later to a .mov file, and then to an .mpg). I could view the file, and work with it in projects, but any project I tried to output with any version of said file, would result in the afor mentioned message, with the same results in FCPX (and Compressor 4 as well).  I tried multiple frame rates, resolutions, files types, re-converting the file, all with no luck.  My impression from said experiments, and reading other discussions was that it was a corrupt file. 
    Then I got frisky...and a little desperate. I brought the converted file (the .wmv to .mov) into Motion 4... and an export worked first try.  So I exported a pro-res file from Motion 4, and used that file in the already built Motion 5 project, and voila! 
    So, who knows what that means in real terms, as for the whats and whys.

  • I receive the error, "No Internet Connection" and my Adobe Creative applications are crashing on a regular basis.

    I keep getting the same errors with the damn Creative Cloud application on my Windows 7 machine, which IS connected to a LAN and IS actively connected to the internet at the time the error routinely appears in the midst of tasks.  I have checked root certificates, manually checked my hosts file and run the tests outlined above to both Adobe addresses.
    In fact, the error kept occuring while I was on an over 3-1/2 hour call with a very through and nice representative from Adobe who had remote screen access at the time (through Adobe connect) and could see the error repeatedly occuring!
    Her comment, "This just happens sometimes with this application and there's not a patch for it yet",  The problem I was having with Photoshop CS6 and Photoshop CC was so severe that I had to do a SYSTEM RESTORE which then started  affecting other Adobe applications because Windows had erased part of the programs (or all of some programs) but Adobe's software saw them as still installed, that she had me uninstall ALL Adobe Creative Cloud applications using the Adobe Cleaner Tool and reinstall everyting from SCRATCH. She and I had tried numerous other ways to repair the problems I was having with updates not installing correctly AND constant program freezing, etc. before this taking this extreme step. 
    I'm a professional programmer / software / web designer, so I had tried for hours correct the issues the previous night and had tried once overnight to reach someone in Adobe support only to be told of over an hour wait time by the automation and not offered a callback. 
    Anyway, despite her best assistance this afternoon (and double confirmation that everything tested correctly), it has taken, so far, well over six hours to reinstall only a portion of what I need for my work and on a deadline because the application keeps reporting "No Internet Connection" and I have programs cued to install unattended.  I am now way behind schedule on some design projects which MUST BE COMPLETED by deadline and require Adobe's software to be installed and function correctly.
    Adding to this, Windows Explorer has repeatedly crashed after installing the damn Creative Cloud application and works normally when it's removed and "cleaned" ... and I've seen so many problems with the install system, etc. that I have to wonder what in the hell the company was thinking when this approach was launched?
    I generally have liked -- and indeed loved -- some of Adobe's products in the past, but the recent experience has certainly been costly in time and disappointing. 
    Many other software manufacters integrate suites, perform updates and confirm licenses without such a buggy, time intensive and unreliable process -- including my own company. 
    Aside from complaining at this point, I wish somebody from Adobe would provide alternative install methods and / or a fullproof fix for this bug and some of the other installation bugs many of us experience.  Any thoughts, advice, knowing that not only I -- but also the Adobe Support Staff Person accessing my computer LIVE -- tried the various "fixes"?

    Branching this to a new discussion as the previous discussion was related to the inability to connect and download the installation software.
    Rob it does sound like you are facing some connection and stability difficulties.  Do you manage your network youself?  I am a bit concerned by the fact that you have stated that you periodically loose Internet connection while completing certain tasks.  Does this affect your ability to utilize the already installed Adobe Creative software?
    I would also recommend reviewing your installation logs to determine if any errors occured during the installation process.  Please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html for information on how to locate and interpret your installation log files.  Please feel free to post any specific errors you discover to this discussion thread.

  • What's the difference??? and WHY

    The below select query returns a row ....
    SELECT
    vdd.disp_desc vcInsStatusDesc,
    'W' vcCustomerType,
    NULL vcInsOwnerFullname,
    cpd.cpd_no vcValidationPostCode,
    cpd.cpd_options_selection vcOptionsSelection,
    cpd.cpd_complexity vcComplexity,
    cpd.cpd_fl_main_line vcFlMainline,
    DECODE(wip.wip_wil_id,NULL,'N','Y') vcFlag,
    wol.wol_order_ref vcWolCwOrderRef,
    wol.wol_order_status vcOrderStatus,
    wol.wol_order_status vcOrderStatusDesc
    wol.wol_prod_type_code vcProdTypeCode,
    wol.wol_proc_type_code vcProcTypeCode
    FROM
    wol_order_lines wol,
    wol_ins_products wip,
    v_db_domains vdd,
    cpd_details cpd,
    *{color:#ff0000}(*
    SELECT
    *'A4829E6' ins_id,*
    *'028' ins_std_code,*
    *'66344000' ins_tel*
    FROM
    DUAL
    *) ip{color}*
    WHERE
    wol.wol_std_code(+) = ip.ins_std_code
    AND wol.wol_ins_tel(+) = ip.ins_tel
    AND wip.wip_ins_id(+) = ip.ins_id
    AND vdd.column_name = 'INS_STATUS'
    AND vdd.domain_value = 'S'
    AND cpd.cpd_ins_id(+) = ip.ins_id;
    But the following one doesnt return any row.....
    SELECT
    vdd.disp_desc vcInsStatusDesc,
    'W' vcCustomerType,
    NULL vcInsOwnerFullname,
    cpd.cpd_no vcValidationPostCode,
    cpd.cpd_options_selection vcOptionsSelection,
    cpd.cpd_complexity vcComplexity,
    cpd.cpd_fl_main_line vcFlMainline,
    DECODE(wip.wip_wil_id,NULL,'N','Y') vcFlag,
    wol.wol_order_ref vcWolCwOrderRef,
    wol.wol_order_status vcOrderStatus,
    wol.wol_order_status vcOrderStatusDesc
    wol.wol_prod_type_code vcProdTypeCode,
    wol.wol_proc_type_code vcProcTypeCode
    FROM
    wol_order_lines wol,
    wol_ins_products wip,
    v_db_domains vdd,
    cpd_details cpd
    WHERE
    wol.wol_std_code(+) = '028'
    AND wol.wol_ins_tel(+) = '66344000'
    AND wip.wip_ins_id(+) = 'A4829E6'
    AND vdd.column_name = 'INS_STATUS'
    AND vdd.domain_value = 'S'
    AND cpd.cpd_ins_id(+) = 'A4829E6';
    (I have removed the select statement from the "FROM" and have supplied the values directly here)
    Can anyone tell me what's the difference???
    Edited by: user580340 on Sep 12, 2008 11:50 AM

    SQL> SELECT
    2 vdd.disp_desc vcInsStatusDesc,
    3 'W' vcCustomerType,
    4 NULL vcInsOwnerFullname,
    5 DECODE(wip.wip_wil_id,NULL,'N','Y') vcWlrFlag
    6 FROM
    7 wlr_order_lines_pos wol,
    8 wlr_ins_products wip,
    9 v_db_domains vdd,
    10 cps_details cpd,
    11 (
    12 SELECT
    13 'A4829E6' ins_id,
    14 '028' ins_std_code,
    15 '66344000' ins_tel
    16 FROM
    17 DUAL
    18 ) ip
    19 WHERE
    20 wol.wol_std_code(+) = ip.ins_std_code
    21 AND wol.wol_ins_tel(+) = ip.ins_tel
    22 AND wip.wip_ins_id(+) = ip.ins_id
    23 AND vdd.column_name = 'INS_STATUS'
    24 AND vdd.domain_value = 'S'
    25 AND cpd.cpd_ins_id(+) = ip.ins_id;
    VCINSSTATU V V V
    In service W N
    SQL> SELECT
    2 vdd.disp_desc vcInsStatusDesc,
    3 'W' vcCustomerType,
    4 NULL vcInsOwnerFullname,
    5 DECODE(wip.wip_wil_id,NULL,'N','Y') vcWlrFlag
    6 FROM
    7 wlr_order_lines_pos wol,
    8 wlr_ins_products wip,
    9 v_db_domains vdd,
    10 cps_details cpd
    11 WHERE
    12 wol.wol_std_code(+) = '028'
    13 AND wol.wol_ins_tel(+) = '66344000'
    14 AND wip.wip_ins_id(+) = 'A4829E6'
    15 AND vdd.column_name = 'INS_STATUS'
    16 AND vdd.domain_value = 'S'
    17 AND cpd.cpd_ins_id(+) = '2439714';
    no rows selected
    SQL>

  • What is the filenameing convention for DVD and why?

    Is there any reason to use a button name like "My_Button" rather than "My Button" in DVDSP? I have a book on the subject but haven't run across the rationale for the naming convention using underlines rather than spaces, for instance. It looks like a DOS file name but I just don't know what it is and why such format is used in DVDSP.
    I'm using DVDSP 4.

    Is there any reason to use a button name like "My_Button" rather than "My Button" in DVDSP?
    No, this is not required. In fact Apple use names for buttons in their templates like "Button 1" , "Button 2" et c.
    The only reason to name things "Button_1" with an underscore, or "Button1" without a space, is if you like following Unix naming conventions - where spaces aren't possible. This is (quite) useful for files and folders, so that the actual underlying Unix filename is the same as the name that mac OS X displays.
    I have a book on the subject ...
    The author of your book probably likes to use traditional computer naming conventions for everything, so won't use spaces. Personally I think there's no harm in not using spaces when naming elements "Menu1", "Track1", "Button1" et c. But it is a matter of personal preference.

  • What's with the 3Mbps limitation on DSL, and why does Verizon refuse to offer higher?

    Verizon's High-speed Internet website states they have two services offered above my 3Mbps plan. I've spoken to a few people at Verizon's customer service center (including a supervisor), and all are adamant on their stance that they cannot offer a higher service for my area (southwestern PA).
    It was stated that the max speed is determined based on the distance from the central office. The thing is, the central office is located in my town, and I'm just under a mile away from it.
    According to ADSL2+ specifications, the highest download speed advertised is 24Mbps. The modem I have currently claims it can reach an attainable rate of 17Mbps. All ADSL standards (aside from two oldest ones that are irrelevant since my current 3Mbps is higher than them and Verizon isn't using them) go above 3Mbps. The supervisor I spoke to had no idea what a ADSL2+ standard was, and was unable to tell me what standard Verizon is actually offering; but I could probably find out from the modem diagnostics page or something.
    So with all that in-mind, Verizon offers DSL packages that are higher than my current tier (the highest being 7.1 to 15 Mbps), the max ADSL2+ speed being 24Mbps, and the max attainable rate for my modem is 17Mbps with me being less than a mile away from the central office. And even after all that, Verizon is intent on stating they don't offer higher speeds than 3Mbps, and are adamant in stating they cannot provide higher speeds than that.
    I'm also on Verizon's Double-play bundle with DirecTV. The speed restriction is even more insulting considering you can't even use DirecTV's On-demand service without the internet speed crawling to a halt. And if the internet is being used prior-to using On-demand; On-demand becomes unusable.
    So.. does anyone know what is up with this? I'm paying for "High Speed Internet Enhanced", and I'm getting speeds not even respectable of that (compared to today's standard), paying $44/month for it, and even though all technical aspects say they can bump the speeds up higher; they refuse to.
    I can use public WiFi that offers faster speeds for free. I can connect to any xfinitywifi hotspot and get pretty close to double the speeds I'm paying for. Can even tether to my slow cell phone with barely-supported-in-my-area 3G and get better speeds. There's zero reason why a paid landline connection can't go faster than those...
    I find the situation pretty ridiculous, and have even filed a FCC complaint about it.
    reddit Discussion: https://www.reddit.com/r/verizon/comments/2u46yc/whats_with_the_3mbps_limitation_on_dsl_and_why/
    Some quick modem statistics:
    Mode: ADSL2+
    Traffic Type: ATM
    Status: Up
    Link Power State: L0
    Copper Loop(kft): 0.0
    (Downstream/Upstream)
    Line Coding(Trellis): On On
    SNR Margin (0.1 dB): 239 195 (23dB 19dB)
    Attenuation (0.1 dB): 280 145 (28dB 14dB)
    Output Power (0.1 dBm): 61 122
    Attainable Rate (Kbps): 17928 1251 (17.93Mbps/1.25Mbps)
    Path 0
    Rate (Kbps): 3360 863 (3.36Mbps/0.86Mbps)

    It's possible that you are coming out of a remote terminal or remote DSLAM, rather than a full blown central office. Verizon seems to have an unspoken rule or habit of only provisioning 3Mbps and below to customers on the remotes. To augment that, it's been seen in some cases that they are running Fiber to the remotes, but only supply the equivalent of several T1 circuits rather than OC-3 Fiber or better.
    To find out why the speeds are being limited, we would need to know what kind of DSLAM is in use, and how far you are from the nearest Verizon CO. The attenuation you have suggests you're one mile of wire length away from the source of DSL, which is either an RT or a CO. From that point, we would also need to find out what kind of connectiivty Verizon has running to your DSLAM.
    If you're coming out of a CO instead, it's also been seen that Verizon has a habit of selling only 3Mbps out of congested COs or those with lesser connectivity running to the CO.
    The thing you can do, is pressure Verizon into giving you at least 7Mbps. With those stats you should have no problems at all. It's going to take weeks of pushing to get the job done, but it is possible. I'd start off by calling Techincal Support, who would be able to assist with this. Emphasize to ignore the availability database - this is just a bunch of records controlled by what Verizon wants to input in.
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • Where did the insert page go? and why does my documents have a text block?

    I have a document that I continually add to in Pages and is now 38 pages long. The problem is that recently the text has gone from being on the page to now being inside a text box?? I did not do anything to the document besides open it and start typing. Why would this have changed? Also I've noticed that the page break button which used to be in the tool bar, then moved to the copy/paste touch screen button, has now officially dissapeared all together from my Pages!!!! WHAT IS GOING ON!?!? there are no updates for Pages and I'm not really sure what to do. It won't let me add another page to this document? Someone please help me

    I will have your post moved " to iwork for ios "

  • What are the Manual check Deposit Tables and  Fields(FF68)

    Hi Gurus,
    I have reqirement to get get Details about  SlipNO,Cheque NO,Cheque Date,Posting Date,
    Party code,Bank key,Currency ,Amount,Bank Account,Value Date,Entry Date,Banker's name.
    could u help me
    Thanks in Advance
    Sivakumar.

    Hi,
    Yes it doesn't.  Where do you store this information when you are posting in FF68, can you tell me the field names or where exactly do you see these fields.
    For check deposit, you can design your own layout and field text in the layout will not be exactly what you will see in the table.  I think that must be the case in your scenario. 
    Suggest look at the layout configuration from Transaction code OT45, open the variant you use (you can find that from the FF68 screen, menu option Settings --> specifications).
    Also, pick one already posted check deposit in FF68 and look for the values you are interested in for that statement in tables FEBKO and FEBEP.
    There are other tables in Banking but I do not think they would be of much use like FEBCL, FEBRE and FEBVW.  FEBVW will give you the bank name where you are depositing the slip.
    Cheers.

  • After clicking "close" X, a message appears then disappears too quickly to read. It begins "Firefox will close now..." The word "security" appears in the next line. What is the rest of this message and should I be concerned about "security"?

    none further

    The full message that was almost impossible for me to read was: “'''Firefox will close now. Please standby while BetterPrivacy checks your hard disk for LSO cookies…'''”
    To see if your message is the same or different:
    1. Open Firefox
    2. Press and hold the Shift key with your left hand
    3. Close Firefox
    4. Then, as soon as the message appears, press the Print Screen key with your right hand
    5. Open the Microsoft Paint program, go to the Edit Menu and press Paste
    6. A box with the full message should appear. If not, continue to open and close Firefox and hit Shift/Print Screen until you time it just right and the message will appear when you paste it into Paint
    There would not appear to be any security concerns with the message posted above
    There may be security concerns if your message is different.

Maybe you are looking for

  • Why is Illustrator CC making a mess of my SVG files?

    Hello, My experience with Illustrator CC's SVG support has been pretty mixed.  However, now I have a file (created by Illustrator) where if I even just open it and save it, it ruins the file. Here's a screenshot before: Then I open the file and save

  • Video and audio not in sync v 7 itunes

    since downloading this version when attempting to play previews of tv/movies on itunes the video is slow to play back sort like frame by frame (as well if i buy a tv show). of course the audio is all out of sync as well. the sound is perfect and the

  • After Effects: Out Of Memory

    Okay I'm trying to render out a minute long comp. I have it set to render to a 1280x720 .mov using the Photo-Jpeg codec. However, everytime I try to render it'll get part way through then say "After Effects: Out Of Memory". I've tried purging the cac

  • ATV and Photo App: Event based sorting disappeared

    With the new update to the new Photo app, I can no longer view my photos from my TV (via my Apple TV) sorted by "events."  Everything is sorted only by the actual folders the pictures are in, and since most of my photos are in the iPhotos Library "fi

  • Could not complete this operation, an assertion has failed

    The massage appears, when I click Save for Web command. I have Photoshop CS3 Extended, Windows Vista. The same command in Illustrator works perfectly. I would appreciate any assistance on how to fix this headache. Reinstalling, pressing alt-ctr, goin