Dynamic report region loading Message

GDay,

I got a loading message display works thanks to the

Please wait message...

With the help of Andy. But what I need to do so is
display the loading message in a tabular presentation where the data
If poster, but all first, show that the processing of a message, then
Replace with data is something like this possible?
Can I use a timer to tell viewing the message in the data section
and replace it with the data once loaded?

See you soon

We are not displaying the "tabular region" by default. To do this, we are surrounding the 'tabular form' using the tags div, and we set attribute style accordingly. style = "" display: none; " "

// Show the '..please wait..' message
$x_Show("AjaxLoading");

// schedule 'f_hide' function (hides the ..please wait.. message) to run after 2000msec.
setTimeout("f_hide()",2000);

// schedule 'f_show_tab' function (displays the tabular form) to run after 2000msec
setTimeout("f_show_tab()",2000);

Then the moment '... Please wait... "message disappears, a table appears.

Hope that explains :-)

See you soon,.
Hari

Published by: Hari_639 on October 31, 2009 12:09

Tags: Database

Similar Questions

  • Dynamic load Message selection (Clause Where) in the application process!

    Problem with a choice of loading Message.

    I kept VO where the condition but I add WhereClause when loading the page. !!

    I guess this isn't my WhereClause given as it is not called when it has been initialized.

    Is that there is no way out?

    Published by: 942767 on 10 July 2012 23:25

    Hello

    Instead of putting the definition of VO, VO instance use and define the place where the duration clause.

    Kind regards
    GYAN

  • Report regions - use of the Ref Cursor?

    APEX 4.2

    See http://mikesmithers.wordpress.com/2012/02/22/getting-apex-to-play-with-ref-cursors

    The above article is older than 2 years. The techniques shown in the link above still valid today if we want to create a report region in the APEX are based on a function that returns a Ref Cursor? Are there improvements in this area for the next APEX 5.0 and/or database Oracle 12 c?

    Thank you

    HELEN wrote:

    APEX 4.2

    See http://mikesmithers.wordpress.com/2012/02/22/getting-apex-to-play-with-ref-cursors

    The above article is older than 2 years. The techniques shown in the link above still valid today if we want to create a report region in the APEX are based on a function that returns a Ref Cursor?

    If the function returns the ref cursor is the only point of access that you have data then Yes, it probably is. If you have direct access to the underlying database objects and the function does not have something very complicated, then you are probably better off creating your own body of the function returning SQL query data source.

    Everything about the dynamics of ref Cursor now I divided in 2 layers, with a function for generating the dynamic SQL and another for bind parameters open the ref cursor. APEX apps can then reuse the functions of SQL query in function body return SQL query data sources (if you take a bit of care to keep the bind variable names vaguely APEX-point-friendly).

    Are there improvements in this area for the next APEX 5.0 and/or database Oracle 12 c?

    See this for the technical background on why APEX is not yet support ref Cursor and this for more information of the Oracle team on the possibility of future support. Obviously, he did not he in 4.1. I suspect that data REF CURSOR region sources depended on a minimum requirement of DB of the 11.1.0.6 (where was introduced support for the conversion of the REF CURSOR in the cursors DBMS_SQL). As minimum DB for APEX 5.0 version is 11.1.0.7, it would be a possible feature for 5.0, but it is not classified as one.

  • Application crashes show "Loading" message... »

    Jdev 11.1.1.4

    I have a small request for a merger.

    If I run it on the local (in Jdeveloper) server with chrome it works ok. With firefox and internet explorer it works as well.

    When I deploy the application on the development server, it runs just fine with chrome. In firefox and internet explore, the application displays the table, but it does not have this content. Instead, the "Loading" message... "is displayed.

    I'm runnging enforcement with chrome 29.0.1547.66 m, 24.0 firefox and internet explore 8.0.7600.16385.

    I know that some versions of internet explore are not compatible with the ADF, but firefox I think that it is compatible. In addition, both browsers work well in LOCAL (Windows 7), but not with the development server.

    Any idea?

    User, I still have not seen info on the jrf servers version. Have you deployed the web service and the server being tested?

    What version did you find on the server?

    The next thing is that you must check the region itself and not the page that is located in the region. Together they produce the error. We never saw anything on the content of the region.

    What you can try is to surround the area in your page with for example an extensible layout of the Panel where you put the region in the facet of the Center.

    Timo

  • Dynamic report with LOV SelectLists

    I like to create a dynamic report with Select-Lists(LOV based).

    My Source (according to PL/SQL returning SQL query) region:
    declare
      q varchar2(4000);
    begin
     
      q := 'SELECT R_ID, R_TSO_NO';
    
      For i in (SELECT * FROM USER_TAB_COLUMNS
      WHERE table_name = 'TAB_REPORTS'
      AND column_name like '2%')
      loop
        q := q || ', ';
        q := q || 'HTMLDB_ITEM.SELECT_LIST(1, ';
        q := q || i.column_name;
        q := q || ', ';
        q := q || chr(39);
        q := q || 'LOV_QER';
        q := q || chr(39);
        q := q || ', null, ';
        q := q || chr(39);
        q := q || 'Y';
        q := q || chr(39);
        q := q || ') "';
        q := q || i.column_name;
        q := q || '"';
      end loop;
       
      q := q || ' FROM TAB_REPORTS ';
    
      return q;
    
    END;
    This is the return value, which seems to be OK:
    SELECT R_ID, 
    R_TSO_NO, 
    HTMLDB_ITEM.SELECT_LIST(1, 2008_05, 'LOV_QER', null, 'Y') "2008_05", 
    HTMLDB_ITEM.SELECT_LIST(1, 2008_03, 'LOV_QER', null, 'Y') "2008_03", 
    HTMLDB_ITEM.SELECT_LIST(1, 2008_08, 'LOV_QER', null, 'Y') "2008_08", 
    HTMLDB_ITEM.SELECT_LIST(1, 2008_11, 'LOV_QER', null, 'Y') "2008_11", 
    HTMLDB_ITEM.SELECT_LIST(1, 2009_02, 'LOV_QER', null, 'Y') "2009_02", 
    HTMLDB_ITEM.SELECT_LIST(1, 2009_05, 'LOV_QER', null, 'Y') "2009_05", 
    HTMLDB_ITEM.SELECT_LIST(1, 2009_08, 'LOV_QER', null, 'Y') "2009_08", 
    HTMLDB_ITEM.SELECT_LIST(1, 2009_11, 'LOV_QER', null, 'Y') "2009_11", 
    HTMLDB_ITEM.SELECT_LIST(1, 2010_02, 'LOV_QER', null, 'Y') "2010_02", 
    HTMLDB_ITEM.SELECT_LIST(1, 2010_05, 'LOV_QER', null, 'Y') "2010_05", 
    HTMLDB_ITEM.SELECT_LIST(1, 2010_08, 'LOV_QER', null, 'Y') "2010_08", 
    HTMLDB_ITEM.SELECT_LIST(1, 2010_11, 'LOV_QER', null, 'Y') "2010_11" 
    FROM TAB_REPORTS
    And this is my error msg, I do not understand:

    * Failed to parse the SQL query:
    ORA-00911: invalid character *.

    Where is this invalid character, please?

    THX 4 help,
    Chris

    Hello

    As part of HTMLDB_ITEM. This is a parameter of function - it should be a tank. In addition, if you use a recent version of the APEX, you should use the synonym APEX_ITEM reference HTMLDB_ITEM.

    Here is the statement of HTMLDB_ITEM parameter. SELECT_LIST...

        p_idx         in number,
        p_value       in varchar2 default null,
        p_list_values in varchar2 default null,
        p_attributes  in varchar2 default null,
        p_show_null   in varchar2 default 'NO',
        p_null_value  in varchar2 default '%null%',
        p_null_text   in varchar2 default '%',
        p_item_id     in varchar2 default null,
        p_item_label  in varchar2 default null,
        p_show_extra  in varchar2 default 'YES'
    

    You will see that it is a VARCHAR2 parameter.

    See you soon

    Ben

  • Question of dynamic report

    Dear, I'm back

    I and my dynamic report:
    My source:

    DECLARE
    vTABLE VARCHAR2 (100);
    vCOLUMN VARCHAR2 (100);
    vVALUE varchar2 (100);
    vSQL VARCHAR2 (1000);
    BEGIN
    vTABLE: =: P46_TABLELIST;
    vCOLUMN: =: P46_COLUMNLIST;
    vVALUE: =: P46_COLVALUE;

    vSQL: = 'SELECT'. vCOLUMN | 'FROM ' | vTABLE. 'WHERE' | vCOLUMN | » ='|| vVALUE | ;

    VSQL RETURN;
    END;

    And it does not work very well.
    When I run it in SQL workshop, I have this error:

    ORA-06550: line 11, column 88:
    PLS-00103: encountered the symbol ";" when expecting one of the following values:

    (- + case null new mod)
    AVG
    count current prior min max sql stddev sum variance run
    ForAll time timestamp interval date fusion

    pipe



    1 DECLARE
    2 vTABLE VARCHAR2 (100);
    3 vCOLUMN VARCHAR2 (100);


    HX for your help

    Celio

    Celio, you must first create the feature on the database

    FUNCTION to CREATE or REPLACE your_function
    RETURN VARCHAR2
    IS

    vSQL varchar2 (4000);

    BEGIN

    vSQL: = 'SELECT'. v ('P46_COLUMNLIST'). 'FROM ' | v ('P46_TABLELIST'). 'WHERE' | v ('P46_COLUMNLIST'). » ='|| v ('P46_COLVALUE');

    VSQL RETURN;
    end;

    Second

    You must perform the function in the SQL region

    RETURN your_function;

    And the last

    You have to check "Use generic name column (analyze the query when executing only)" radio and set the number of column for example 1.

    Edited by: AndyPol 2009-09-16 22:28

    Edited by: AndyPol 2009-09-16 22:29

    Edited by: AndyPol 2009-09-16 22:46

  • Problems loading messages.

    I don't know what is happening. My Skype has completely worked on my iPhone 5 so far. It is as if it does not load messages (I confirm my PC), so I thought it must be a system update or reinstall Skype who can fix this. I WAS WRONG. Now, he can not load even 90% of my friends profile pictures and a friend, I've talked about 4 days ago... Ye, it is basically said the last message I received from my friend is 2 months ago.

    So all in all. Anyone who experiences a problem with their Skype does not not not messages?

    and if there is a solution I would love to have a link or something thrown at me xD

    Many people. I have been in contact with the help of Skype. After 40 minutes of troubleshooting, I think I got an answer to why it does not work!

    Skype support told me this: "as we can see, the reason why there are a few bugs on Skype for IOS is because from now on, the version of Skype available for IOS is compatible with the old version of the IOS. This is why there are some questions that happens on. Don't worry, we are aware of what we receive it this last days and Skype working on it. »

    So global people, all we can do is wait.

  • E531 loading Message

    When I hover over the battery icon in the status bar, I get a message:

    "98% available (plugged in, does not support)."

    Is this normal?

    I thought I would take a few minutes and help out others who may be affected by the same problem with their laptop.

    There was actually nothing wrong with the charging circuit, because my guess is probably the case for many positions here. It's the way it works by design:

    If the loading message indicates your battery is charged to 95% or more, then the charging circuit will turn on any.

    If the loading message indicates your battery is less than 95%, the charging circuit lights and continue to charge your battery is charged to 100%.

    Also, if you have 10 Windows installed, and you need to update your BIOS, the BIOS download for Windows 8 works fine.

  • A blue screen (Stop error) has been reported. The message contains the error details.

    Hello Hello.
    can someone help me why this error is coming.
    I use a laptop lenovo.
    Error details:
    product-windows stytem, operating
    ID-1003,
    source-system error,
    version - 5.2.
    sysmbolicname-ER_KRNLCRASH_LOG,
    error code %1, %2 parameter %3, parameter3 %4 parameter 4 %5 2 parameter1

    A blue screen (Stop error) has been reported. The message contains the error details. An event with event ID 1001 might also appear in the event log. This matching event displays information about the specific error that occurred.

    Concerning

    Chandra Murali

    .net developer,

    HYD.

    Hi Murali,

    ·         What is the random question?

    Try the following.

    Method 1: Check for memory questions

    Microsoft Online Crash Analysis - windiag

    Method 2: Updated with the latest chipset and other computer device driver updates. Log in the Web site of the manufacturer to do the same thing.

  • How to implement reports region 100% to the universal theme?

    Theme 26 a model "reports 100% region. We use this model to the traditional reports. During the passage of our application to universal theme, we lose the horizontal (width 100%) portion of the classic reporting regions. How can we restore the classic reports area to the full stretch at the universal theme?

    user12045295 wrote:

    Please update your forum profile with a recognizable username instead of "user12045295": Video tutorial how to change username available

    Theme 26 a model "reports 100% region. We use this model to the traditional reports. During the passage of our application to universal theme, we lose the horizontal (width 100%) portion of the classic reporting regions. How can we restore the classic reports area to the full stretch at the universal theme?

    Select the report of stretching in the model of Report Options.

  • ORA-20987: APEX - interactive report region does not exist in the application

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query (nPage_id number)

    return varchar2

    as

    l_report apex_ir.t_report;

    l_query varchar2 (32767).

    l_list varchar2 (32767).

    number of nRegion_id;

    number of nIR_id;

    OWA.vc_arr nm;

    VL owa.vc_arr;

    BEGIN

    SELECT region_id

    IN nRegion_id

    Of apex_application_page_regions

    WHERE application_name = "E-BRIL.

    AND page_id = nPage_id

    AND source_type = "interactive report";

    nIR_id: =.

    apex_ir.get_last_viewed_report_id (p_page_id = > nPage_id,)

    p_region_id = > nRegion_id);

    NM (1): = "DUMMY_JUST_TO_SET_UP_OWA_UTIL";

    VL (1): = 'WHATEVER ';

    OWA.init_cgi_env (nm.count, nm, vl);

    l_report: = APEX_IR. () GET_REPORT

    p_page_id = > nPage_id,

    p_region_id = > nRegion_id,

    p_report_id = > 0);

    l_query: = l_report.sql_query;

    because me in 1.l_report.binds.count

    loop

    l_list: = l_list | i||'. '|| l_report. Binds (i) .name | » ='|| l_report. Binds (i) .value;

    end loop;

    Return l_query;

    end;

    /

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    Thanks in advance.

    Reg,

    Chris

    1717220 wrote:

    Please update your forum profile with a recognizable username instead of "1717220": Video tutorial how to change username available

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query(nPage_id IN number)
    return varchar2
    as
    l_report  apex_ir.t_report;
    l_query  varchar2(32767);
    l_list  varchar2(32767);
    nRegion_id number;
    nIR_id number;
    nm  owa.vc_arr;
    vl  owa.vc_arr;
    BEGIN 
    
        SELECT region_id
        INTO nRegion_id
        FROM apex_application_page_regions
        WHERE application_name = 'E-BRIL'
          AND page_id = nPage_id
          AND source_type = 'Interactive Report';
    
        nIR_id :=
          apex_ir.get_last_viewed_report_id (p_page_id        => nPage_id,
                                            p_region_id      => nRegion_id);
    
        nm(1) := 'DUMMY_JUST_TO_SET_UP_OWA_UTIL';
        vl(1) := 'WHATEVER';
        owa.init_cgi_env( nm.count, nm, vl );
    
        l_report := APEX_IR.GET_REPORT (
                        p_page_id  => nPage_id,
                        p_region_id => nRegion_id,
                        p_report_id => 0); 
    
        l_query := l_report.sql_query;
        for i in 1..l_report.binds.count
        loop
            l_list := l_list||i||'. '||l_report.binds(i).name||'='||l_report.binds(i).value;
        end loop;
    
    return l_query;
    end;
    

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    The '0' in line 31 should be "nIR_id".

    What is the purpose of the lines 24-26?

  • static and dynamic reports

    Hello

    I'm new to HFR. Can someone tell me what is static and dynamic statement and when we go to static and when we go for dynamic with scenarios in real time?

    Thanks in advance

    Static report is usually fixed, so that the reports do not change when the time and hierarchies are updated. For example, a static report can be useful for regulatory deposits etc. You do not want to change statutory reports according to the when they were run ;-)

    Dynamic reports has several levels:

    -Dynamics updated due to changes in current month/quarter/year;

    -Dynamic reports that automatically updated based on changes made to the hierarchy: contour moves, new members, etc.

    In an ideal world, you have to build relationships are dynamic as possible, that you do not have what to have to change them every month, quarter, year, based on the changes of the period.
    Or do you need to update when managers change their minds about what needs to be told (less maintenance and future audit)

    Building reports are dynamic as possible has some limitations, however, in this by establishing the report, it would be not as fast to run (you may have several rows/columns more) to make the reports 'dynamic '.

    HOEP this helps, Iain

  • Flash Slide Show - how the 'image loading' message to delete

    Thanks for looking-

    I created a simple slide show 2-image created in MX2004.

    I would prefer a white rather than this brief loading message.

    Is there a setting in the code to achieve this?

    Page is here: http://www.workandpartners.com/WAP/indexnewnav3.html

    TIA

    It is not any parameter in the code that appears to control the activity of preloader, so if this could be added, it would probably be a selection of whatever DW interface as for the creation of the show.

    It is of no use to you, I took a few minutes and created a simplified swf file by using the two images.  It is a static piece, which means that you cannot add/edit images for her as the slide show is displayed in support and it does not preload, but it has to go for now... If the quick effort does not kill, my weekend plans.

    The zip linked here contains a html page that you can use to copy/paste the embed code in your file, the swf file and a javascript file that must also be in the folder.  In the head section of html, there are two script tags that must also be added to the head section of html to your file.

    http://www.nedwebs.com/Flash/indexFlash.zip

  • Model of User Interface for interactive report region

    3.2 where we establish the model of user interface for interactive reports region?

    No matter what on the theme of the box I go to, the region of interactive reports shows the same. What and where do I change the model so that alternate lines use two different colors?

    There is no model for interactive reports as for a 'normal' report You need to edit the CSS and provide your own for this purpose.

    I think that most of the things are marked with the #apexir - firebug with combustion chamber is priceless. This thread may help:

    Re: changing the appearance of the interactive report.

  • Refreshing a page from a link in a dynamic report column

    Hello

    I have a dynamic relationship with a column of link. I am trying to update another page with the values of the selected line. I have created a process that is called when the user clicks on the link in the column, but it does not work.
    The page called by this link is not updated. So my question is how can I refresh the values on a column of dynamic report of a page link?

    Thank you

    NP - you're welcome!

    Andy

Maybe you are looking for

  • Toshiba Satellite: loop continuous Boot for windows 10 upgrade

    Hello I have a Toshiba Satellite and update of windows 10 a few weeks ago. laptop froze power so turned off the coast and now I am in a continuous boot loop.  I made a bootable USB key.  I leave the laptop to drain and was able to do ino the "toshiba

  • Satellite C660 - installation VAP displays error 0x80C70220

    Toshiba Satellite C660 - 162 (PSCSE), Windows 7 Professional 32 bit, Value Added Package 1.3.19 Well, I just my laptop format and not the function piece works for me. I tried to install PVAT but I get this "error 0x80C70220". Advice please!

  • Cannot lock the screen saver (zip)

    I bought an Ideapad y460p and I don't know how to unlock the screen saver. The screen saver is that a horizontal zip (from left to right) shows that the screen is locked and a few bubbles go from the bottom of the page top of page. When I press any k

  • I can generate a list of addresses of a polygon shape in the streets & trips?

    I've built a number of forms of polygon closed in Microsoft streets & trips 2011. Is there a way to generate a list of addresses contained in these forms? Thank you.

  • Upgrade to Vista 2 K problems

    About 2 years ago I did the upgrade and no problem.  Had to replace Mo and o/s.  Now the wall is built.  I installed 2K, my upgrade to vista is not bootable.  upgrade of 1 wall says I need SP4 before the installation can be made.  I did, and then it