Non scrollable headers for multiple report regions on a page. Please help!!

Hi everyone,
I am having two report regions on my page and am trying to have the static/non scrollable headers for both the report regions. I followed on of the threads in the forum and was able get the static headers for one region, but am not able to for second region. I put my app on apex :
http://apex.oracle.com/pls/otn/f?p=38724:1:1083512384327081:::::
workspace:sk
username : guestdev
password :guestdev
Can anyone please help me? Appreciate your help.
regards,
Suma.

Hello Suma,
The first parameter of the MakeStaticHeader() function is your table id, and it defines the "playground" of the function. If you want to apply static headers to two reports, you need to define two unique IDs, one for each report.
Change your SKstandard… report template, and define the table ID to be "table_grab1". Duplicate this template, and change the ID to be "table_grab2". Applied the templates to your reports, and use the correlated IDs as parameters to the MakeStaticHeader() function.
Regards,
Arie.

Similar Messages

  • Can we have one submit button for mutliple report regions querying same tbl

    Hello,
    I have a normal multiple report regions in a page with some editable in those regions, these report regions are querying the same table. Now, Is it possible to have one submit button for all the report regions to update the underlying table data?
    Can anyone please help me out with this one.
    thanks,
    Orton

    First you'll almost certainly need to roll your own - the built-in stuff is fairly basic and more than likely won't help.
    It sounds like your process flow should be something like:
    1) Person clicks button.
    2) You do a select for update in the process to get the loan id and put it in the person's queue. At this point you may want to flag that column as having been assigned so it can't be assigned again.
    3) You then forward them to the form to enter data. Personally I would create my own items and processses and forgo the built-in form stuff but you may be able to use the Automated Row Fetch. If you do your own, you just reference the objects like:
    insert into table
    values(:P1_1, :P1_2, :P1_3)Edit - Another way would be to use a regular form and insert Stop/Start Tables - so it can look like a different section, but it really is just a label. Thats another option.

  • Can we use the built-in Row fetch for Multiple reports in a page?

    I need to create a page with multiple report regions. Each of it is based on a table. Those tables are different. I somewhat remembered that we can NOT use the built in automatic row fetch process if there are multiple report regions, neither the built in DML process. You have to make your own fetch and insert/update/delete process if you intend to.
    Also if I write my own row fetch and update processes, do I have to consider lock mechnism? or just simply write select and insert/update?
    Any input is appreciated.

    I think I found the answer. Would Scott or other gurus take a look at the thread and confirm it, in case the limitation is not in 2.0?
    Re: automatic row fetch
    What I am concered about is that the locking mechanism. If I have to write my own process to fetch and insert/update, other than the regular select and insert/update statements, do I have to put commit by myself, or htmldb can handle it automatically? Is there an example for this?
    Thanks in advance.

  • Dynamically hide/display multiple report regions.

    Hi,
    I need to build a dashboard like homepage for users with multiple report regions. Users should be able to pick the regions they want and the display point for those regions.
    Is this possible?
    Thanks in advance

    Hello Asha,
    I think the "where" part would have to come from CSS. If you visit http://apex.oracle.com/pls/otn/f?p=49882:3653 you can see a couple of HTML type regions which I placed using div tags and putting something like<div class="rpt_query" id="rpt_query">in the region Header and </div> in the region footer. You can accomplish the same with Report type regions and maybe any type of region.
    As for whether or not a region is shown, that can be done in the Conditional Display attributes. I do this by selecting "Value of Item in Expression 1 = Expression 2" as the Condition Type, a hidden page item as Expression 1, and a number (perhaps corresponding to check box as mentioned previously) as Expression 2. I'm actually using pseudo tabs and when a user clicks one of the tabs it changes the value of the hidden page item and submits the page to get the new region to show up.
    Hope this helps,
    Gregory

  • User Interface Template for Interactive Report Region

    In 3.2, where do we set the user interface template for Interactive Reports region?
    No matter what out of the box theme I switch to, the Interactive Reports region shows the same. What and where do I change the template so that alternating rows use two different colors?

    There is no template for Interactive Reports like for a "normal" report. You need to modify the CSS and supply your own for this to happen.
    I believe most things are tagged with #apexir - firebug with Firebox is invaluable. This thread may help:
    Re: changing the look and feel of interactive report.

  • Capture current query for a report region

    Apologies if this is answered elsewhere, but I could not find it.
    I have a reporting application where several different reports that have a list of customers. I would like to develop a means to generate a mailing list for the customers that is generic and can be used on any report. I envision getting the list of customer by executing a query like:
    select person_id from
    ( <report region query> );
    Is there a way to get the current query (or query result) for a report region and process it in a PL/SQL procedure? This would need to work for regions that have an SQL query and a PL/SQL function returning a query.
    Thanks,
    Bill

    sorry for the double post, browser trouble...

  • Prompt used as view selector for multiple reports

    Hi All,
    Can a dashboard prompt be used as View Selector for multiple reports? If yes, please let me know how?
    Thanks
    Sumita

    Hi Sumita,
    You can do this with Dashboard prompts, but it's a little tricky. I'll highlight the process below. Keep In mind I assume you have three reports already created and have three views: View 1, View 2 and View 3.
    Phase I: The Dashboard Prompt
    1. Create a new dashboard prompt.
    2. Add any single column to your prompt. It doesn't really matter which one (just make sure nothing is prompted on it to be safe).
    3. For the sake of this example, I'll assume we added column: "Test Folder"."Test Field"
    4. Make sure your Operator is "is equal to/is in"
    5. Make sure the control is "Drop-down List"
    6. Change the Show to "SQL Results"
    7. Write a SQL statement similar to the following (TEST =<your subject area>, "Test Folder"."Test Field" = <your column>):
    SELECT CASE WHEN 1=2 THEN "Test Folder"."Test Field" ELSE 'View 1' END
    FROM TEST
    UNION
    SELECT CASE WHEN 1=2 THEN "Test Folder"."Test Field" ELSE 'View 2' END
    FROM TEST
    UNION
    SELECT CASE WHEN 1=2 THEN "Test Folder"."Test Field" ELSE 'View 3' END
    FROM TEST
    **Note: The reason why we need to do the CASE statement is because every logical query needs at least 1 presentation column. The case statement is a way to include the presentation column, but since the statement 1=2 is never true, we always use the ELSE condition.
    8. Set a presentation variable. Call it VIEW_PVAR
    9. Have the Prompt default to Specific Value: View 1
    10. Save the Dashboard Prompt and put it into the Dashboard with your reports.
    Phase II: Filter Reports
    1. Create a new Answer request
    2. Bring in your test column twice
    3. Change the formula (fx) on the second column to be: '@{VIEW_PVAR}{View 1}'
    4. Now add a filter to the presentation variable column
    5. Set the operator to "is equal to/is in' and set the value to: View 1
    6. Save the Request as "View 1 Filter"
    7. Change the value in the filter to: View 2
    8. Save the Request as "View 2 Filter"
    9. Change the value in the filter to: View 3
    10. Save the Request as "View 3 Filter"
    Phase III: Guided Navigation
    1. Create three sections in your dashboard
    2. Rename each section to: View 1, View 2 and View 3 respectively
    3. For each of the sections, do the following:
    3a. Click on properties
    3b. Click on Guided navigation
    3c. Set the Guided Navigation to the appropriate Filter report
    4. For each of the three sections, do the following:
    4a. Add in all three requests
    4b. Click on the request properties and select Show and the appropriate view for that section
    5. Save your changes to your Dashboard
    Good luck and if you found this post useful, please award points!
    Best regards,
    -Joe

  • Variant for multiple reports

    Hi Experts,
    Does anyone know if it's possible to create variants that serve for multiple reports?  If so, how?
    I have 10 very similar reports which use the same selection screen defined in an include for all of them.
    Regards,
    Simon

    Hi,
    It is not possible to create variant for multiple reports as it is said as
    you must create a separate variant for each report and then save it with the report where the values will be used.
    refer this line in the link
    http://web.mit.edu/SAPR3/docs/webdocs/reports/rpRFvariant.html

  • ClariFit Report Instant Search [Plug-in] for 2 Report Regions

    Hi,
    can we apply ClariFit Report Instant Search [Plug-in] for two report regions at a time?,
    can we one search field for two different report regions?
    Thanks in advance.
    Chandran

    thank u so much VC guru, it really workd   now action is happening wen i click on right click options. but again i hav an issue
    i used 2 right click options like PAGE2, GOOGLE., which redirects to the respective pages. and i used JS function as
    function myMenuAction2() {
    if (Menu='page2')
      window.location="http://apex.oracle.com/pls/apex/f?p=71510:2:132217491108949:::::";
    if(Menu='google')
    window.location="http://www.google.com";
    but if i click on both the right click options individually, its get redirected to the 2nd page only... and not to the google page at all. i jus wanted to know how to do it guru... and the credentials are http://apex.oracle.com/pls/apex/f?p=71510:1:16973655787072:::::  (username-test; paswrd: apex14gm) ... pls help me out....
    thanks in advance

  • I own a MacBook Pro 2.4 ghz non unibody. I turn on my laptop for ten seconds and it freezes. It boots perfectly and runs for ten seconds until everything freezes. Please help!

    I own a MacBook Pro 2.4 ghz non unibody. I turn on my laptop for ten seconds and it freezes. It boots perfectly and runs for ten seconds until everything freezes. Please help!

    See if you can boot into single user mode with Command S.

  • TS1814 This is not working for me. I tried the Windows 7 Resolution steps multiple times to no avail. Please help. I am obviously connected to the internet (as is iTunes Store).

    This is not working for me. I tried the Windows 7 Resolution steps multiple times to no avail. Please help. I am obviously connected to the internet (as is iTunes Store).
    I am connected to the internet through a Verizon Wireless card, that is my regular internet connection.

    I did all that HT1925 recommended and it was no help.  My computer still won't recognize my iPhone.  Often trying to start Apple Mobile Device Service fails with an error message that it starts and then stops immediately.

  • HT201412 My cousin bought iPod touch 5th gen. Then it doesn't turned on. He charge it a charge icon appeared but after 30 mins still off . Is that normal for a brand new iPod touch? Please help me..

    My cousin bought iPod touch 5th gen. Then it doesn't turned on. He charge it a charge icon appeared but after 30 mins still off . Is that normal for a brand new iPod touch? Please help me..

    Not Charge
    - See:    
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - If a 5G iPod      
    Iphone 5 lightning port charging problem - SOLUTION!
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar
    and
    try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

  • My iPhone 4 keeps asking me to enter the apple ID for an account which no longer exists-.please help

    my iPhone 4 keeps asking me to enter the apple ID for an account which no longer exists….please help

    I should have also said that the only reason this is causing me an issue is because I have bought a new phone and I want to sell this one.  But I cannot erase all data because I cannot turn off find my phone because it keeps asking for the password for an account which no longer exists…. have tried so many suggestions but nothing is working...

  • I am using a friend's iPod, whose account i signed out of, and signed in through my own. But whenever I'm trying to download an update or an app, it's still asking for the other account's password. Please help!!

    I am using a friend's iPod, whose account i signed out of, and signed in through my own. But whenever I'm trying to download an update or an app, it's still asking for the other account's password. Please help!!

    That Apple ID is stored inside those applications. Leave them as is and ask your friend to do the updating.
    (106675)

  • How do i set a default time of 2.0 seconds for all transitions in iMovie 10.  Please help.,

    how do i set a default time of 2.0 seconds for all transitions in iMovie 10.  Please help.,

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    If you do not keep changes after a restart then see:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.org/kb/Preferences+are+not+saved

Maybe you are looking for