Error 1401

REP-1401: 'cf_2formula': Fatal PL/SQL error occurred.
ORA-06503: PL/SQL: Function returned without value
runs the first page of report when i click next page then it returns error in some reports not in all using parameters

Hi,
look in your Function cf_2. Looks like there's the return statement missing (or not reached in the code).
Regards
Rainer

Similar Messages

  • Error 1401 when installing cs4 on windows 8

    I'm getting this error when installing Adobe Creative Suite 4
    Error 1603. Error 1401.Could not create key \SOFTWARE\Microsoft\Windows\CurrentVersion\Run.   Verify that you have sufficient access to that key, or contact your support personnel.

    thank you for sending the links, but I already tried all of the solutions in the posted article, before reaching out in this forum.  Does anybody  have any other suggestions?  I'm out of ideas.

  • Error -1401 while synchronising photos from PC to iPad2

    I get error -1401 (unknown) while synchronising photos from a PC to the iPad2. The photo album on the iPad is then empty except the photo tooken from the iPad2
    - I do exactly the same thing from the same PC, same iTunes, same USB, same cable but to a 3G iPhone with its latest iOS (4.2.1)
    I have no problem to sync lets say 20 photos from the PC to the said iPhone
    Again, exactly the same procedure does not work for the iPad2 (the iPad and iPhone are just one above the other within iTunes, I can switch cables).
    iPad2 has been just completly restored with the newes iOS 5.0.1
    I work with iTunes 10.5.2.11
    on a PC XP SP 3
    Any hint, experience with that?
    thanks

    Are you selecting all of the folders to sync?
    Note that if you deselect a folder it will be removed.

  • Install error 1401 - Could not create key

    I'm trying to install BlackBerry Desktop Software 4.5 in Windows XP. I'm installing it in my daughters WinXP user account. Durring the install process I said to make the software available only to her account, not to all users. (I run ActiveSync for my Pocket PC in my account. I don't know if there are conflicts between these programs but I didn't want to risk it.)
    When the installation program said its status was "Registering class servers", the following message popped up:
    Error 1401.Could not create key
    HKEY_USERS\S-1-5-21-1123561945-1647877149-682003330-1009\Software\Classes.  Verify that you have sufficient access to that key, or contact your support personnel.
    When I clicked OK, the installation was rolled back and a message informed me that the InstallShield wizard was interrupted.
    I have no idea how to verify access to that key, and I don't have any support personnel. I'm a home user and this error gives me no information about what to do.
    Can anyone help?

    Hi,
    From the microsoft knowledgebase:
    http://support.microsoft.com/kb/232143
    Please let me know if this resolves your problem!
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Error 1401 while installing of Adobe Reader 8.1.2

    Error code 1401 while installing of Adobe Reader 8.1.2 to my vista home.
    The pop-up menu said that @@ Error.1401 could not create key\.rmf\acroexch.rmffile\shell.new, verify that you have sufficient access to the key @@
    Any of you have idea of this???
    Thks

    Or even search this forum for 1401. It's discussed in numerous threads.

  • PLS-00801: internal error [1401] while compiling Package body

    I am getting the error PLS-00801: internal error [1401] while compiling the package.
    recently upgraded to version 11.1.0.7 database .
    Any pointer to this ..

    935026 wrote:
    I am also getting the same error while compiling a procedure which use a remote object over db_link.
    Let me know if this needs to be run on source db or destination db
    1. RUN as SYS
    $ORACLE_HOME/rdbms/admin/utlirp.sql
    $ORACLE_HOME/rdbms/admin/utlrp.sql
    RegardsYES
    post results from SQL below from both DBs
    SELECT * FROM V$VERSION;

  • Error -1401 when Updating iPod

    First of all, I've been having the same problem that a lot of others have been having where iTunes crashes when it's trying to update the iPod.
    I've figured out that mine will not hold any more than 2gb of music at a time, so the first 400 or so songs go on fine, and then I get the spinning beach ball until I disconnect the iPod.
    Today though, I got error -1401 for the first time when I disconnected my iPod after it had stopped updating the rest of my music.
    Does anyone know what this error is or how to fix the updating problem yet?
    Thanks!

    What ipod do you have ?
    If you try to add more to the ipod than you have available space on it, itunes should let you know and offer you options such as not loading your photo's, what it should not do is go ahead and try a sync anyway. What you are experiencing is rather strange.
    Are you certain about the error number, I can't find any listing for that error in the Mac OS system error codes

  • Internal Error 1401.

    Hi,
    I have a function in the backend in a package, which has the spec like this and it is perfectly compiled.
    PACKAGE SPEC
    TYPE t_db_bus_unit_tab IS TABLE OF rms_vendor_transfer_control_id.business_unit_id%TYPE INDEX BY BINARY_INTEGER;
    TYPE t_db_trans_set_tab IS TABLE OF rms_vendor_transfer_control_id.transaction_set%TYPE INDEX BY BINARY_INTEGER;
    TYPE t_db_vend_id_tab IS TABLE OF rms_vendor_transfer_control_id.rms_vendor%TYPE INDEX BY BINARY_INTEGER;
    TYPE t_db_trans_id_tab IS TABLE OF rms_vendor_transfer_control_id.transfer_ctl_id%TYPE INDEX BY BINARY_INTEGER;
    TYPE t_db_edi_vend_tab IS TABLE OF rms_vendor_transfer_control_id.edi_vendor_id%TYPE INDEX BY BINARY_INTEGER;
    TYPE t_db_trans_set_act_tab IS TABLE OF rms_vendor_transfer_control_id.transaction_set_active%TYPE INDEX BY BINARY_INTEGER;
    TYPE t_db_trans_ind_tab IS TABLE OF VARCHAR2(1) INDEX BY BINARY_INTEGER;
    FUNCTION auto_setup (t_db_bus_unit IN t_db_bus_unit_tab
    ,t_db_trans_set IN t_db_trans_set_tab
    ,t_db_vend_id IN t_db_vend_id_tab
    ,t_db_trans_id IN t_db_trans_id_tab
    ,t_db_edi_vend IN t_db_edi_vend_tab
    ,t_db_trans_set_act IN t_db_trans_set_act_tab
    ,t_db_trans_ind IN t_db_trans_ind_tab
    ,O_error_message OUT VARCHAR2
    RETURN VARCHAR2;
    I am calling this function From Forms
    DECLARE
    TYPE t_bus_unit_tab IS TABLE OF rms_vendor_transfer_control_id.business_unit_id%TYPE INDEX BY BINARY_INTEGER;
         t_bus_unit t_bus_unit_tab;
    TYPE t_trans_set_tab IS TABLE OF rms_vendor_transfer_control_id.transaction_set%TYPE INDEX BY BINARY_INTEGER;
         t_trans_set t_trans_set_tab;
         TYPE t_vend_id_tab IS TABLE OF rms_vendor_transfer_control_id.rms_vendor%TYPE INDEX BY BINARY_INTEGER;
         t_vend_id t_vend_id_tab;
         TYPE t_trans_id_tab IS TABLE OF rms_vendor_transfer_control_id.transfer_ctl_id%TYPE INDEX BY BINARY_INTEGER;
         t_trans_id t_trans_id_tab;
         TYPE t_edi_vend_tab IS TABLE OF rms_vendor_transfer_control_id.edi_vendor_id%TYPE INDEX BY BINARY_INTEGER;
         t_edi_vend t_edi_vend_tab;
         TYPE t_trans_set_act_tab IS TABLE OF rms_vendor_transfer_control_id.transaction_set_active%TYPE INDEX BY BINARY_INTEGER;
         t_trans_set_act t_trans_set_act_tab;
         TYPE t_trans_ind_tab IS TABLE OF VARCHAR2(1) INDEX BY BINARY_INTEGER;
         t_trans_ind t_trans_ind_tab;
    BEGIN
    some processing
         IF FLIN0050.auto_setup(t_bus_unit,t_trans_set,t_vend_id,t_trans_id,t_edi_vend,t_trans_set_act,t_trans_ind,Lv_error)='FALSE'
         THEN
              message(Lv_error);
              RAISE Form_Trigger_Failure;
         END IF;     
    If I comment the function call , Form is compiling properly otherwise gives me Internal Error 1401. Can anybody help me on this regard?
    Message was edited by:
    Forms

    First of all, why don't you get a new handle. "Forms" is almost worse than leaving it a number. It may be just me, but I tend to ignore posts from people with numeric handles or nonsense names. That brings "Sysdate" to mind.
    Now... You cannot access package procedures and functions with types defined in the package that way. Your problem is caused by your attempt to use duplicate TYPE declarations in the form -- that just does not work. It is too bad the Forms compiler gives you the internal error code, when it should just say what I have above.
    Instead, remove all your type declarations from the form. Then in the variable declarations, reference the types declared in the package. For example:
      t_bus_unit     Pkg_xyz.t_db_bus_unit_tab;
      t_trans_set    Pkg_xyz.t_db_trans_set_tab;That ought to get you going again.

  • Finder throwing error -1401 when attempting to open files on mounted volume

    Alright, this is driving me nuts. At random, Finder will refuse to open files on a mounted volume on my server. It throws the error "The application can't be opened. -1401" and then "The operation can’t be completed. An unexpected error occurred (error code -1401)." back to back. It doesn't matter what the file type is, as far as I can tell (.jpg, .xlsx and .pdf are on there).
    From that point on, I can navigate those volumes to the point that I have navigated them since the volume was mounted at start up, but can't go any deeper into the directories or open anything. Finder also won't eject the volume. I can't open files from within applications, either.
    I have to reboot for it to work again.
    However, if I jump into Parallels I can open anything on the server. Even Acrobat files, which open in the Mac environment and not within the virtual machine.
    Does anyone have any insight to what might be causing this? I searched and can't find anything.
    Thanks,
    Brian

    Restart your computer with the Shift key held down,
    and then open the Startup Items folder inside the
    System Folder. Throw away all of the aliases you find
    in this folder and then empty the trash.
    To quit AppleWorks or another application when it
    won't respond, hold down the Option, Command, and Esc
    keys, and then click the Force Quit button. You
    should also use the Disk First Aid application in the
    Applications (Mac OS 9):Utilities folder to verify
    your hard disk, as something may have been damaged
    when you shut the machine down using that method.
    (11882)

  • Error 1401 deploying Template in SCVMM 2012 R2 RU2

    I got the following error when i deploy a new created template with App Controller and VMM 2012 R2 RU2.
    1401–SelfServiceActionNotAllowed
    The template is a converted vhd from wim with Powershell. It is located on an library server in VMM. I can choose the template in App Controller and after 3 to 10 Seconds the job fails.
    If i deploy an template that was imported long time ago (before install of 2012 R2 RU1) i´m able to complete deployment.
    Can someone help with some information?!

    I found the Solution by my self in the following link: TechNet Library
    When you create templates for self-service users, be aware of the following changes in VMM:
    ◦ In VMM, the concept of a "self-service owner" for a template no longer exists. A template that is to be shared by members of a self-service user role should have no owner assigned. When a template with no owner is assigned to a self-service user role that has the Author, Deploy, or Deploy (Template Only) action assigned to it, all members can use the template. However, when an owner is assigned to the template, only the owner can use the template
    With an Update of VMM they changed the behavior. I Changed the Owner to a Global AD-Group and now i can sucessfull deploy templates.

  • Error 1401 when installing Acrobat 9 Std on Windows 8.1 on MacMini running Parallels

    I am running Windows 8.1 using Parallels version 10.1.3 on a MacMini running OS X 10.10.1. Partway through the install when the status is "Writing system registry values" I get this error:
    "Error 1404. Could not create key \Software\Microsoft\Internet Explorer\MenuExt\Convert to Adobe PDF. Verify that you have sufficient access to that key, or contact your support personnel."
    FYI: I have installed and and uninstalled this very product several times before on my previous machine, but that was running Windows Pro in a bootcamp situation, not through Parallels.
    Thank you for any help at all.
    Sandi

    Moving this discussion to the Acrobat Installation & Update Issues forum.

  • Samba Connection Error -1401

    After a few days of usage, my machine suddenly cannot display or copy many files from my Samba share (running on linux). It worked fine before the 10.5.7 update, but ever since I'm only good for 3 or 4 days of access. If I reboot, everything works fine for a few more days, and then one day I'll get the error message (see link for screenshot).
    Any ideas?
    Thanks In Advance,
    Andy
    http://img.skitch.com/20090528-jgcus629e75s2a3k2ugd9wr327.jpg

    I would suggest checking your console logs. Something like a cache or some similar thing is filling up or getting corrupted. I don't think it's the update, but rather some kind of overflow. The logs should show what it is.

  • I can't delete from secondary hd. error 1401.

    I can't delete from my secondary drive. No "ignore ownership" shows up on its info window.

    Yes but that had no effect.So I used a program I had downloaded a while agao called Batch mod. It offered the option to change ownership on selected volumes etc. It solved the problem Immediately. BTW Last year, after two months of getting suggestions from apple on how to fix permissions problems with no results, I downloaded this program and it worked instantly. Please check it out for yourself. And if you are permitted,please reccommend it to others.

  • Error message = - 1401

    Upgraded from Panther to Tiger. Previously using Silverkeeper to backup to LaCie ext HD. After upgrade to OS 10.4.11, SK gives Err Message 'err=-1401'. SK support says it's "not SK - contact Apple." Help??
    Joan

    Hi Joan, and a warm welcome to the forums!
    errFSBadFSRef = -1401, /* FSRef parameter is bad
    Likely error -1401 means a nonexistent file in this case.
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.

  • Adobe photoshop elements 6. Error setup 1402

    I cannot reinstall Adobe photoshop Elements 6 (CD) in my system OS Windows 7. The setup displays the following message;
    error 1402 Could not open key UNKNOW\component\DA42BC*************************\*************834F
    verify that you have suficient acces to that key, or contact you support personnel.
    Appreciate your help.

    Read through this help guide for creative suite which may help:
    http://helpx.adobe.com/creative-suite/kb/error-1401-1402-1404-or.html

Maybe you are looking for

  • Itunes wont open! help help help!

    i just upgraded my itunes to 7.3.1. it wont open at all! i've uninstalled and reinstalled and nothing happens! it just does not open at all and i'm getting really really frustrated. what versions of itunes work with the 30gb iPod video with color (al

  • Multiple Value Based hierarchies per MOLAP dimension

    Hi, a) Is it possible to have multiple value based heirarchies in a single MOLAP dimension in OWB and deployed to analytical workspace ? Are there any pitfalls, that we need to be aware of... b) Can we have a mix of Value and level based heirarchies

  • Using Escape character for Multi character delimiter for flat files in IKM

    Hi I have an IKM using Jython, it is working fine for single character delimiter. But as per requirement I have to use multicharacter delimiter ;" (semi colon and double quotes). I am taking this into variable using filesep = "<%=snpRef.getSrcTablesL

  • How can you sign in to itunes without putting in credit card information

    the ipod is for a 16yr old who doesn't have a credit card but it won't let her sign into itunes to download free stuff without entering credit card info...however i was able to signup a few months ago without putting in credit card info...now i can't

  • Need help with preserving quality, please!

    I am new to this, but learning. I have old 8mm footage that I paid to have converted to DVD. First I copied the .vob files from the disk to my hard drive then converted to DV with mpeg streamclip. I then chose the Deinterlace option to remove artifac