TABLE_FROM_BLOCK is not working in forms 10g ??????

Hi all,
How to use TABLE_FROM_BLOCK in forms 10g. its working in forms 6i .
the same form is not working in 10g . i got this error.
frm-40933 Cannot populate table because datatype is incorrect.
pls help me
Regards
Gopinath M

According to Metalink's Developer 2.1 Release Notes (Doc ID #90090.1), section 4.2.1, "TABLE_FROM_BLOCK Built-In":
DO NOT use the TABLE_FROM_BLOCK built-in described in the
documentation. It is reserved for internal use only. No support
for this built-in will be provided under any circumstances.
If you used this built-in, you will need to recode your from(s) for 10g.
Message was edited by:
Mark Roberts

Similar Messages

  • Ole2 commands not working in forms 10g

    OLE2.set_property(Application, 'Visible', true);
    above statement not working in forms 10g;

    Try to use the OLE2 fuction from WEBUTIL library. There is function in webutil CLIENT_OLE2.
    -Ammad

  • F7 & F8 key is not working in forms 10g

    Dear all,
    I am working with oracle application version 10.1.2.3.0, installed on windows server 2003 and database 10gR2 on windows server 2008. When i open any form and tries F8 / F7 to executed & enter
    query, its not working. But its owrking with with F11 and shitp + F11. I want to use F7 & F8 for enter/execute the query. I have same another same environment with same configuration, there F7
    & F8 is working fine. To enable these keys i rename fmrpcweb.res to fmrweb.res. But guide me with your sincere suggessions & experience.
    Regards,
    Ahmed.

    According to Metalink's Developer 2.1 Release Notes (Doc ID #90090.1), section 4.2.1, "TABLE_FROM_BLOCK Built-In":
    DO NOT use the TABLE_FROM_BLOCK built-in described in the
    documentation. It is reserved for internal use only. No support
    for this built-in will be provided under any circumstances.
    If you used this built-in, you will need to recode your from(s) for 10g.
    Message was edited by:
    Mark Roberts

  • Enter key not working in forms 10g

    Hi guys,
    Enter key to select a form is not working
    on my application.
    I have to double click the form to open it using the mouse.
    Then if we try to exit we have to press exit that many number of times as we have pressed enter key.
    So it seems to be storing the key processes.
    We are using forms 10g.
    Please help.
    Thanks and Regards,
    Rohan

    Fixed.
    Changed KB.
    However, this is still strange as the old KB was working fine in other applications.

  • RP2RRO.RP2RRO_RUN_PRODUCT not working in forms 10G

    Hi,
    Recently I convert my small application from forms 6i to forms 10g, All forms are working fine but all reports which I call through menu are not running, Whe I checked the code I found run_product is replaced by RP2RRO_RUN_PRODUCT, the code is like this
    declare
    complist paramlist;
    begin
    complist:=get_parameter_list('tmp');
    if not id_null(complist) then
    destroy_parameter_list('tmp');
    end if;
    complist:=create_parameter_list('tmp');
    add_parameter(complist,'P_COMPANY_NAME',
    text_parameter,:global.p_company_name);
    RP2RRO.RP2RRO_RUN_PRODUCT(reports,'LDN_MCWISEVehicleDetail',asynchronous,runtime,
    filesystem,complist,null);
    end;
    When I click the menu , nothing happened , my question is How i can my reports work
    Regards,
    Ahmad

    http://10.33.67.202:8889/reports/rwservlet?server=detasad&report=Veh_Summary.rdf&desformat=pdf&destype=file&userid=gsav/pgsav@macc&param=nodestype=file generates the report to a file and therefore only says "Run Successfully" after it finished. It you want to see the output directly in the browser, use destype=cache

  • DB link is not working in forms 10g

    Hi,
    I have to different machines with DB Oracle 10g and Oracle 9i. I have created dblink to access data from Oracle 9i from Oracle 10g. This DB link is working perfectly from sql. but when i am using this dblink in form 10g. it is giving following errors.
    Here it is compiling post-query trigger.
    my query is select count(*) into var1 from CL_PASS_MASTER@ICLC2CISF .
    Compiling POST-QUERY trigger on form...
    Compilation error on POST-QUERY trigger on form:
    PL/SQL ERROR 0 at line 0, column 0
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-06544: PL/SQL: internal error, arguments: [55916], [], [], [], [], [], [], []
    ORA-06553: PLS-801: internal error [55916]
    ORA-02063: preceding 2 lines from ICLC2CISF
    the same query is working from sql prompt.
    Please help me..

    +"How about if you create a synonym in the back-end using db link?+
    +create synonym syn_CL_PASS_MASTER for CL_PASS_MASTER@ICLC2CISF;+
    +and use the synonym in post-query. "+
    + 1
    Francois

  • "connect_by_isleaf"  is not working in Forms 10g

    Hi gurus,
    I have a tree control in my application,I use a query to rollup some amounts
    according to certain criteria,I used the pseudo-column 'connect_by_isleaf' which is a wonderful new feature in 10g and it worked fine in SQLPlus,when I used it in Forms 10g ,it didn't recognise it and gave an error while compiling : identifier "CONNECT_BY_ISLEAF" must be declared.
    Why? what is wrong?
    Thanks

    Thanks Rajesh,
    I have made a work around,I created a function on the database (with 'connect_by_isleaf' in it) and called it from Forms 10g,
    Bingo....worked fine.
    Hope this helps others.
    Mohammad

  • HOST command not working in forms 10g

    Hi,
    I have migrated forms 6i to forms 10g, and having a requirement to open sqlplus prompt using a form menu. I have used the below command: -
    "host('sqlplus '||user_name||'/'||pass||'@'||sid, no_screen);"
    But I am not able to get the sqlplus window, and the main form is still in process for long time, till i bounce the server.
    The forms are deployed on Oracle Applications Server 10g and i want to run it on server side.
    Please help me with the problem.
    Thanks,
    Ankit

    The deployment architecture is different between forms 10g and forms 6i.
    In Forms 6i HOST built-in command will run on the client machine since you are running as client/server, but in WebForms (Forms10g) the HOST built-in command will run on the middle tier which is your application server machine.
    In order to run hosts commands in WebForms you need to use webutil and use CLIENT_HOST in the webutil.
    check the [Forms 10g R2 Demo|http://download.oracle.com/otndocs/demos/Forms_Demos_10gr2.zip] for sample codes of webutil.
    You are using NO_SCREEN in your example, this will hide the window.
    Tony
    Edited by: Tony Garabedian on Nov 26, 2009 2:43 PM

  • Table_From_Block Build-in Package is not working in Oracle 10G

    Hi
    Table_From_Block Build-in Package is not working in Oracle 10G
    Kindly advice..

    user648759 wrote:
    Hi
    Table_From_Block Build-in Package is not working in Oracle 10G
    Kindly advice..Provide a little more information. Forms version OS version, more information about your problem and question.
    --and explain what on earth Table_From_Block* mean's--
    Tony
    PS: TABLE_FORM_BLOCK is a built-in for internal use, usually auto generated by forms. For a moment I didn't get what that meant, need more coffee.
    Edited by: Tony Garabedian on Aug 29, 2008 12:39 PM

  • SQL Code not working in Forms Developer?

    Hi all,
    I'm using Oracle 10g and I have th following code running on iSQL+ but not working on Forms and I got the following erro
    The SQL code:
         select returningreason
            from (
                     select returningreason,
                     dense_rank() over (partition by 1 order by count(*) desc) as drnk
                     from returned_goods
                     group by returningreason)
           where drnk = 1;And the error happens near the word over to the right and the error statement is:
    Error 103 at line 18, column 19
       Encountered the symbol "(" when expecting one of the following:
             , formThanks in advance :)

    Triggers are compiled in forms so need to use only the features available to forms, which doesn't include all the new stuff in the database.
    select over partition
    NVL2They don't work in forms and reports too.
    Also if you use them in record Group
    Forms/SQL Compiler was not lined up to the database(10G).
    Meanwhile,for example. Pipelined TABLE and relative Select work in Reports AND Forms.

  • What will you do if any SQL is not working.in oracle 10g...apps 11.5.10.2

    What will you do if any SQL is not working. in oracle 10g....apps 11.5.10.2

    928714 wrote:
    yes sir.If you help me in answering my questions i wll be very thankful to you sir.
    tnx,I haven't a clue.
    As you have been advised in many of your posts, go study the documentation for whichever specific topic you are interested in.
    For me to answer your questions, I would need to go get that documentation.
    Then I would need to read that documentation.
    Then I would need to write a forum post that interprets what I think I learned from that documentation.
    It is so very much faster if YOU go do that instead of posting to a forum and expecting others to do it. You will remember what you study for a lot longer time if you teach yourself.

  • Select * from tab is not working in oracle 10g

    select * from tab is not working in oracle 10g. But at the same time,
    select * from <<table>> is working.
    Please advise me.

    This works for me in 10.2.0.2
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select * from tab;
    TNAME                          TABTYPE            CLUSTERID
    LOAN_DETAIL                    TABLE
    PLAN_TABLE                     TABLE
    ...

  • Some Calculations are not working in Discoverer 10g after upgrade from 4.1

    Hi Gurus,
    We are recently upgraded Oracle Discovere 10g from 4.1, some calculations are not working in Discoverer 10g. I appreciate if you could fix below calculation(s) in 10g.
    CASE WHEN TRUNC("Expenditure Item Month") = '31-JAN2007' THEN SUM(Wtd Qty A) WHEN TRUNC("Expenditure Item Month") = '28-FEB-2007' THEN SUM(Wtd Qty A) WHEN TRUNC("Expenditure Item Month") = '31-MAR-2007' THEN SUM(Wtd Qty A) END
    Thanks & Regards
    Vikram

    Sabra,
    Not sure exactly what this might be... there could be an issue there.
    Please make sure that you review the upgrade.log. Are there any errors / warnings?
    Also, you might wanna peek the Metalink Note:262623.1 - Master Note for OracleAS Portal Upgrade Issues, where you'll find some nice things where to start looking at.
    Later you may wanna open a Service Request into the Oracle Support.
    I hope it helps...
    Cheers,
    Pedro.

  • Ctrl+Z fuctianlity is not working in oracle 10g Form

    Hi
    I am using oracle 10g form and using
    Edit_TextItem to invoke Text Editor
    When i using CTRL+Z to undo things in editor it is not working but it works when i used Form6i.
    Please help me to solve this issue. i need to this functinality to be work.
    BR,
    SPS

    This works for me in 10.2.0.2
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select * from tab;
    TNAME                          TABTYPE            CLUSTERID
    LOAN_DETAIL                    TABLE
    PLAN_TABLE                     TABLE
    ...

  • Jpeg images not displayed in forms 10G

    We have images (of different formats) stored in our Oracle 9i database. When we retrieve the images through a form, they display just fine using Forms 6i (client server) but the jpeg images (file extension .jpg originally) do not always display in our Forms 10G front end. What is most disconcerting is that the first image we display does display in the form, but trying to display multiple images at once does not work. The subsequent images display only as a dot in the middle of the space. Note that we also display thumbnails in the same form and this works. And if we retrieve the image from the database and "send" it to a third party product such as Image Pro or MS Photo Editor, it also displays fine. Any suggestions?

    Hi,
    can you re-create teh images. I remember having similar issues once, which then went away after I recreated the images. If you don't have other images soures than the gif, convert them from gif to jpeg and back. At least it is worth a try.
    If you open the icon jar file with winzip, does it show a path with the three icons? Sometimes when creating the jar, it happens that a path gets added with the icons.
    Frank

Maybe you are looking for

  • Connect two VGA monitors to 13" macbook pro

    I have been tasked with pulling out our Director of Finances Lenovo laptop and replacing it with a 13" Macbook Pro with Retina. Currently the Lenovo has a docking station with dual digital monitors and an external keyboard and mouse.  The Director wi

  • Printing Chinese Characters in Smart Forms

    Hi, Iu2019m trying to print Chinese characters via smart forms. However during print preview or print, all Chinese characters are showing as # symbols. I have researched and implemented for some possible solutions posted in the forum like: a.) Settin

  • Internal and external speakers

    so i bought some a set of 2 logitch speakers and a sub... the only spot to really plug it into is the headphone jack... i was wondering if it was possible to set up my sound to come out of the head phone jack and the built in internal speakers iMac G

  • How imrove the peformance of VBFA table in select statements.

    Hi, whenever execute program in production, program execution will taking long time due to below select statement. Please help me how we imrove performance? SELECT vbelv vbeln posnn vbtyp_v FROM vbfa INTO TABLE l_i_vbfa FOR ALL ENTRIES IN l_i_bill_cs

  • Need to reinstall OS X and says its not avaliable

    I First Started With A Blank Screen And Then Followed Some Steps But Now My OS X wont install :/ What Should I Do??