Possible bug in Forms [32 Bit] Version 6.0.4.10.0 (Beta)

Problem : If a block value is refered in
a LOv - record group query
the form cannot adjust the out put .. and
is not generating.....
Record group query which works :
select security_role, sec_role_desc, database_role
from security_role
where wnd_appln = 'XXXXXXXXX'
order by security_role, database_role
Record group query which is not working :
select security_role, sec_role_desc, database_role
from security_role
where wnd_appln = :APP_ROLES_BK.wnd_appln
order by security_role, database_role
Error Generated :
FRM-30064: Unable to parse statement icrgg/icrggc: hicrg.
Record Group SECURITY_ROLE_LOV
Form: EMPLOYEE
FRM-30085: Unable to adjust form for output.
Table structure :
CREATE TABLE security_role
security_role VARCHAR2(15) NOT NULL,
sec_role_desc VARCHAR2(20) NOT NULL,
open_nsr VARCHAR2(1),
open_pkt VARCHAR2(1),
chg_wk_grp VARCHAR2(10),
asgn_anlst VARCHAR2(10),
updt_oth_wkgp_pkt VARCHAR2(1),
admin_tasks VARCHAR2(1),
create_po VARCHAR2(1),
billing_changes VARCHAR2(1),
invoice_changes VARCHAR2(1),
change_owner VARCHAR2(1),
wnd_appln VARCHAR2(15),
database_role VARCHAR2(20)
PCTFREE 10
PCTUSED 40
INITRANS 1
MAXTRANS 255
TABLESPACE wa0dat0t01
STORAGE (
INITIAL 32768
NEXT 8192
PCTINCREASE 0
MINEXTENTS 1
MAXEXTENTS 121
w@w Lebon Mathew
WellsFargo - Telecom Applications
(415)-477 6445
null

I drilled down the proble further and identified that i can
recreatr the problem in any 7.3.4 database ....
But in 8.0.5 it's working fine .....
Is developer 6.0 is going to support Oracle 7.3.4
it'll be highly appreciated if any one from Oracle development
team can give me a response
Thanks in advance...
Lebon Mathew (guest) wrote:
: Problem : If a block value is refered in
: a LOv - record group query
: the form cannot adjust the out put .. and
: is not generating.....
: Record group query which works :
: select security_role, sec_role_desc, database_role
: from security_role
: where wnd_appln = 'XXXXXXXXX'
: order by security_role, database_role
: Record group query which is not working :
: select security_role, sec_role_desc, database_role
: from security_role
: where wnd_appln = :APP_ROLES_BK.wnd_appln
: order by security_role, database_role
: Error Generated :
: FRM-30064: Unable to parse statement icrgg/icrggc: hicrg.
: Record Group SECURITY_ROLE_LOV
: Form: EMPLOYEE
: FRM-30085: Unable to adjust form for output.
: Table structure :
: CREATE TABLE security_role
: security_role VARCHAR2(15) NOT NULL,
: sec_role_desc VARCHAR2(20) NOT NULL,
: open_nsr VARCHAR2(1),
: open_pkt VARCHAR2(1),
: chg_wk_grp VARCHAR2(10),
: asgn_anlst VARCHAR2(10),
: updt_oth_wkgp_pkt VARCHAR2(1),
: admin_tasks VARCHAR2(1),
: create_po VARCHAR2(1),
: billing_changes VARCHAR2(1),
: invoice_changes VARCHAR2(1),
: change_owner VARCHAR2(1),
: wnd_appln VARCHAR2(15),
: database_role VARCHAR2(20)
: PCTFREE 10
: PCTUSED 40
: INITRANS 1
: MAXTRANS 255
: TABLESPACE wa0dat0t01
: STORAGE (
: INITIAL 32768
: NEXT 8192
: PCTINCREASE 0
: MINEXTENTS 1
: MAXEXTENTS 121
: w@w Lebon Mathew
: WellsFargo - Telecom Applications
: (415)-477 6445
null

Similar Messages

  • Collection type supported in Oracle Forms Forms [32 Bit] Version 6.0.8.11.3

    Hi
    I am trying to call this from forms.
    I am getting error no data found whenever this calles IF condition but from backend if run it from a script it works fine.
    So I was thinking whether Forms PL/SQL version supports collection types.
    I am using Forms [32 Bit] Version 6.0.8.11.3 (Production) for Oracle Application 11.5.10 version.
    IF (p_emp_ids.COUNT > 0) THEN
    FOR r IN v_emp_ids.FIRST..v_pkg_ids.LAST LOOP
    Thanks in Advance

    Is it just a a typo that the IF is on P_emp_ids and the loop is on V_em_ids?
    However: the NO_DATA_FOUND exception suggests that you may be falling down a crack in your collection. If you have a missing element between FIRST and LAST you will get a no_data_found. Suppose these elements are there:
    (1), (2). (3), (5), (6)
    You will start at FIRST (1) and finish at LAST (6). But your loop on R will try to find the element at (4). Which isn't there. Oops...
    To prove that's what's happening, you can wrap the inside of the loop with an exception handler
       BEGIN
          do the access to v_emp_ids(r)
       EXCEPTION
          WHEN NO_DATA_FOUND then (log a message with the value if R in it)
       END;If you want to walk a collection with gaps (a "sparse" collection), this is the way:
      DECLARE
         r pls_integer;
      BEGIN
         r := v_empids.FIRST
         LOOP
             EXIT when r IS NULL;
             do the business on v_empids(r);
             r := v_empids(r).NEXT;
         END LOOP;Now, why didn't this work in Forms, but did on the server? Possible reasons:
    - your back end script was set up differently - so you had a dense collection (no gaps)
    - Client side PL/SQL is different from server side (is it still version 1.x?)
    HTH
    Regards Nigel
    Message was edited by:
    nthomas

  • Forms Crashing  Forms [32 Bit] Version 10.1.2.0.2 On Windows 7

    Dear All,
    Recently we have migrated all our Development PC's to Windows 7, and then after whenever we open any forms which is having more size the system is crashing. Does anybody have any solution for this .Currently we are working with XP MODE and this is also not a full proofed solution.
    OS : Windows 7 Professional 32 bit
    Forms Developer Version : Forms [32 Bit] Version 10.1.2.0.2
    Thanks in advance.

    It is likely that you are either not using a Professional release of Windows (i.e. "Home Edition") or have some other issue on your machine. Assuming you are in fact using one of the Professional releases of Win7 and believe that you have carefully followed the installation instructions which I previously mentioned, I would suggest you completely uninstall (including the manual deletion of any registry entries and directories in the file system) then reinstall. It is very important that you are in the "Administrator" group before attempting to install. The same is true when you attempt to use the Builder. Also, helpful would be to disable or relax Windows UAC before starting the installation.
    As an alternative, consider installing and using Windows XP Mode (Windows Virtual PC)
    http://windows.microsoft.com/en-US/windows7/install-and-use-windows-xp-mode-in-windows-7
    http://www.microsoft.com/windows/virtual-pc/download.aspx

  • .Forms [32 Bit] Version 10.1.2.0.2 (Production) report server.

    hi
    i have a question about Forms [32 Bit] Version 10.1.2.0.2 (Production) so many users are facing the problem in report server and even i faced the problem,
    i started the report server and tried to display the report but it was giving me errors sometimes
    REP-41213 unable to connect to report server and sometimes
    REP-51002: Bind to Reports Server <servername> failed and so on.
    but after using an ip address or MS loopback adaptor then it works perfect.
    in Forms [32 Bit] Version 9.0.4.0.19 (Production) its working with machine name and we do not need ip address and also we can start report server by services.
    But in Forms [32 Bit] Version 10.1.2.0.2 (Production) its not the same and all the time we start report server by command.
    Is there any solution in Forms [32 Bit] Version 10.1.2.0.2 that run report server without ip or loopback but only work with a machine name?.
    sarah

    Hi Sarah,
    my reports-server works all the time, and i did not do any configuration or install any loopback-adapter. I have a reports-server name like rep_<machine> and can use that in forms also as in URL-syntax.

  • I want to install webutil for Forms [32 Bit] Version 10.1.2.0.2 (Production

    hi all
    i want to install webutil for version Forms [32 Bit] Version 10.1.2.0.2 (Production) plz guide me with full of configurations .Already i searched the forum but i am still not able to install.Plz help me out.thanks in advance.
    sarah
    Edited by: SarahSarahSarah on Sep 13, 2009 11:58 AM

    Fully agree with Michael's answer.
    For all things webutil the best place to start is the webutil home page on OTN.
    In appendix A of the webutil pdf there is a handy checklist.

  • Installing Patch 18 on Oracle Forms [32 Bit] Version 6.0.8.11.3

    I have Oracle Forms [32 Bit] Version 6.0.8.11.3 (Production) installed on Windows 7 64bit. It crashes abruptly with message "Oracle Forms Designer has stopped working". Google search showed to install Patch 18 for windows which may or may not solve the problem since its not certified with 64bit OS.
    I tried to install Patch 18 and if I choose existing Forms 6i installation it stops saying "C:\Oracle\Forms6i is already used as an Oracle home for nt(1). It cannot be used as an Oracle home for nt". Installing in a new home didn't upgrade the Forms 6.0.8.11.3 to next level.
    Any help regarding its installation or steps would be highly appreciated. Thanks!

    If you know the patch number, search for the same on Metalink.

  • Forms [32 Bit] Version 10.1.2.0.2 (Production) on Windows 2008

    Hi ,
    Can anyone tell me whether Dev suite 10g , (Forms [32 Bit] Version 10.1.2.0.2 (Production)) is certified with windows 2008 or not.
    Rgds

    Please check here http://www.oracle.com/technetwork/middleware/ias/downloads/as-certification-r2-101202-095871.html
    Cheers,

  • Download link for Forms [32 Bit] Version 6.0.8.12.1

    Hi All,
    please give me the URL to download Forms [32 Bit] Version 6.0.8.12.1.
    Regards
    Manish

    Go to otn.oracle.com/products/forms and click on teh SOFTWARE link on the left.
    Grant Ronald
    Forms Product Management Grant,
    I also urgently need the version 6.0.8.12.1
    BUt the link you mentioned constains 6irel2nt.exe file. When installed it
    is verions 6.0.8.11.3
    What and where can I find a patch to make it 6.0.8.12.1
    OR would i have any problem compiling programs in the 11.3 and run in runtime 12.1?
    Many thanks on you advice!

  • Forms [32 Bit] Version 6.0.8.12.1 Download Link

    Hi All,
    Can i have the link to download Forms [32 Bit] Version 6.0.8.12.1 .
    Regards
    Manish

    Go to otn.oracle.com/products/forms and click on teh SOFTWARE link on the left.
    Grant Ronald
    Forms Product Management Grant,
    I also urgently need the version 6.0.8.12.1
    BUt the link you mentioned constains 6irel2nt.exe file. When installed it
    is verions 6.0.8.11.3
    What and where can I find a patch to make it 6.0.8.12.1
    OR would i have any problem compiling programs in the 11.3 and run in runtime 12.1?
    Many thanks on you advice!

  • Can we use Forms [32 Bit] Version 10.1.2.0.2 (Production).

    Hellow All.
    Can we use Forms 10g [32 Bit] Version 10.1.2.0.2 (Production) Application in Forms[32 Bit] 10g R1?
    Is it Possible?
    Any help would be greatly appreciated.

    I agree with Andreas
    if you are using application server 10g r2 so the forms and reports runtime version is diffirent from oracle 10g 9.0.4 you should have the same developer suit version at your client pc example if you have oracle as 10g 9.0.4 your developer suite at your pc should be 9.0.4

  • Possible Bug in Draw 1-Bit Pixmap(6_1).vi

    I have been observing this bug in Draw 1-Bit Pixmap(6-1).vi (part of picture.llb) in many LabView versions. Every time I install new LabView version or update an existing one, the bug reappears. Please, fix it once and for all. The array "Color Table" is not wired to Draw 1-Bit Pixmap.vi. It should be wired. I have attached the screen snapshot showing the bug and the comments. In your LabView version, you can just open Draw 1-Bit Pixmap(6-1).vi, wire "Color Table" and save this vi back into its library.
    Attachments:
    Bug_Draw_1-Bit_Pixmap(6_1)-vi.jpg ‏239 KB

    You would probably be much better off breaking that VI and replacing it as needed with a non-deprecated version, something like Draw Unflattened Pixmap.

  • Looking for 64 bit version of firefox, pre-release or Beta ok

    I have Win7 Pro 64bit. Was having issues with continuous crashing of flash. I installed Adobe Flash Square version10 64bit with Firefox version4, reduced # of flash crashes.
    When firefox pushed out version 5, I installed it & the browser kept dragging/crashing all over again. looked up Adobe Flash Square to see if any info avail, Adobe had Adobe Flash Square version11 64bit, so I uninstalled version 10 prior to installing version11 per Adobe instructions. Although it has helped, it is not where it was prior to installing Firefox 5.
    I have tested Firefox 5 with the current Adobe Flash 32bit release as well, and what can I say, it's not work the effort on my 64bit system. for some reason this combo maxes out my cpu (2.8 dual core) & memory (4 gb + virtual), causing me to hard boot my system.
    I understand Firefox devs are working on a 64bit version for Windows. I would like to volunteer to test it. I have many years of SW design & QA experience so any bugs I find I will fully document.
    The 64bit version of IE works well with the 64bit Flash, lots better than 32bit version, but I prefer to use Firefox or Chrome (I often utilize both simultaneously, each on own screen).
    Please let me know if a 64bit version of Firefox is available (pre-release/beta ok) & if it is not is there an expected availability date?
    Thank you in advance,
    Verta Tannehill

    Nightly is a pre-release testing version of Firefox: bleeding edge and not necessarily stable. It is Firefox -- a rose by any other name, and all -- but it is buggy, as all testing software is (I'm using it right now). New Firefox versions are born from Nightly, so when a 64-bit version of Firefox is released, it will have come from Nightly development. Use it for general browsing and send feedback (Tools -> Options -> Advanced -> General) and you will be helping to beta test a new baby Firefox.

  • Possible bug in Oracle SQL Developer Version 3.2.20.09 Build MAIN-09.87 - Connection is currently busy. Try Again? Abort...

    Hi,
    Every single time I try and browse data in one of my tables, I get the annoying "Connection is currently busy. Try Again?" pop-up alert message with "Try Again" and "Abort" options.
    This is very annoying and I dont know how to stop it happening.
    Is this a bug or can someone suggest a setting I can try to get around it?
    Cheers,
    Julian

    I don't know if it's worthwhile raising issues with v3 as the developers are now working on v4.  You can download an Early Adopter version available on OTN I think.
    If you're new to SQL Developer, it's worth knowing that a single click on an item in the navigator tends to do what you would expect a double-click to do.  I think a double click can cause the same action to be started twice.

  • Stacked Canvas question in Forms [32 Bit] Version 10.1.2.3.0 (Production)

    Hi Friends, I am not sure if my explanation will suffice for resolution to this easy problem that is causing me so much grief.
    I have a form with one content canvas ROOT_CNV, One tab canvas TAB_CNV with two tab pages and One STACK Canvas Stack_CNV.
    All these canvases are on one Window ROOT_WINDOW.
    The tab canvas (TAB_CNV) is tabular in nature.
    There is a menu button that you can press that switches one record in the tab canvas and place this record in the stack_cnv. All the fields on the stack_cnv are mirror_image of the Tab canvas record that is the items are synchronised.
    NOW THE PROBLEM. When you press the switch button and you are in the stack canvas and you try to query any record, the form will take you back to the tab canvas and the fields will freezes, there are lots of forms here with this functionality that woks, but I cannot figure out while this particular one is behaving lke this.
    I have made the Stack canvas smaller, however, the issue is till the same, I think it has to do with the stacking order and I had already rearrange this to know avail, any suggestion will be appreciated.
    Thank you.
    Tab canvas
    Page 1        Page 2
    *===== ========*
    record     proj              sub         Status
    *1 A 1 ACTIVE*
    *2 B 1 PENDING*
    *3 C 1 ACTIVE*
    *4 C 2 ACTIVE*
    Click on the Menu Icon on record 1, then the stack canvas shows up (Stack_CNV) in a form Format
    **STACK_CNV* Page1 Page2*
    *===== =======*
    Prog:       A                Sub  : 1
    Status :   ACTIVE
    The tab pages still shows up on the stack canvas which is okay, however, when you try to query from the stack canvas, it takes you back to the tab canvas and everything freezes. Both canvas are on Root_cnv content canvas.

    Hi Ade2
    Pls Create a KEY-ENTQRY trigger at the form level add the following code :
    GO_BLOCK('dept');
    CLEAR_BLOCK(no_commit);
    ENTER_QUERY;Hope this helps...
    Regards,
    Amatu Allah

  • FRM-10095 in Oracle Forms Builder Forms [32 Bit] Version 9.0.2.9.0

    Hello,
    I got the error message (in German) "FRM-10095 Ausführung in iewbdc_oracle_to_id, um E:\f021w32\src\ie\iewbdb.c:715 fehlgeschlagen". I got this error, when I tried to create a forms block using the data block wizzard on the Oracle-OE-table "orders". I think the problem is, that in this table is a column with the data type "timestamp(6) with local time zone". Other tables without this datatypes work. Is the only solution to change the data type of this column or is there another solution?
    Thank you
    Ralf Nobes

    Hi Sarah,
    my reports-server works all the time, and i did not do any configuration or install any loopback-adapter. I have a reports-server name like rep_<machine> and can use that in forms also as in URL-syntax.

Maybe you are looking for

  • How do i uninstall programs like picasa on my Macbook pro?

    how do I uninstall a program such as Picasa from my Macbook pro

  • Best way to export to .gif

    I made a banner for my company that I'd like to turn into a .gif file for our marketing strategies portion of our site.  I am new to flash and can't seem to find the right export/publish settings to get the cleanest possible .gif file. Would anyone m

  • How to import/move files from CF card

    I have installed the test version of LR5. First step was to import all my files into the new catalogue. Worked fine. Second step was taking a CF card from my camera and moving all the new pictures to my pictures folder on the HD and import them to th

  • Opening new default browser from java app

    Hi There, I would like to know if there is away to execute the following in a Java app that will open a new browser window.......in other words, I don't want it to take over the already opened window - just open a new window every time. Runtime.getRu

  • How can I remove the "shared" menu in the finder?

    Hey Folks, I hope my question makes sense - have a look at my screenshot: http://i11.tinypic.com/717nkhf.png how can I remove that "shared' menu, I don't know its there and I would like to take it out please. thanks. -Joey