Interactive report in background

Hi,
  How to run a interactive report in background.I have used job_open,submit and job_close.Here a spool is getting genereated which displays the first o/p but after that in that report based on user selection further processing should happen.How to do it?

There is no code behind the spool data that could be executed.
You would have to write additional logic to retrieve the spool data, present it online and implement interactive processing.
Ask Martin, he did it successfully
Background job
Thomas

Similar Messages

  • User Interactive reports in background

    Hi all,
    There is report in CMS which prints collateral sheet, when i run the report in foreground(/ncms_cs) it ask for some input fields like Business partner id , smartform name and output device, after furnishing these details it give a pop saying BP belongs to Borrowing Entity and ask whether to continue or not and when you say yes it generates smart form else it quits.
    Can any one tell me is it possible to run this report in background since its generating a pop-up while executing and if we run this in background we are unable to see the pop up and provide the input(Yes/No) and i am getting an error mesg as provide input parameters. So is there any way to run this kind of report in background
    regards,
    Suhail

    You cannot have an interactive report in the background
    what you need to do is to remove any popups or messages to allow the program to run in bg properly
    you can pass the required parameters to your program whilst calling it before it starts execution

  • How to Schedule an Interactive report in Background?

    Hi Experts,
    The existing program  generates Pay-in-slip,in the selection screen i am giving
    company code(Parameter) and Dates(select-option) as input,this gives me a list of records(ALV)
    with check boxe's if i select the records and click on 'post' button in the basic list then the program prompts with dialouge box to set print parameters for samrt form.
    The requiremnt is, in the basic list when we select the check box and click on 'Post' icon the rest of the program should sechdule the job in background and a spool  & log has to be generated in SM37.
    Would be thankful to one who can guide me regarding this.
    Edited by: Prince on Jul 1, 2010 12:48 PM

    What I once did was set sy-batch = 'X' at the appropriate point in the code....not suggesting that as the best solution, but it worked for me at the time...
    What I do today is present an SALV, when the user presses a particular function, I do (write statements in my program automatically create a spool for the userid specified in user):
    call function 'JOB_OPEN'
    exporting
          jobname          = lc_name  "my job name
        importing
          jobcount         = lv_number "hold this value.
        exceptions
      lv_sav_subrc = sy-subrc .  "i use this value elsewhere...
    if lv_sav_subrc eq 0.
         submit <your program name>
          using selection-set lv_variant  "background only variant I created for the program
            with <your parameter> eq somevalue 
            with <your_parameter2> eq somevalue
            user <batchuserid> "use this to be sure background job can be executed
          via job lc_name number lv_number
          and return.
        call function 'JOB_CLOSE'
          exporting
            jobcount             = lv_number
            jobname              = lc_name
            strtimmed            = gc_x
          importing
            job_was_released     = lv_job_released
          exceptions
            cant_start_immediate = 1
            invalid_startdate    = 2
            jobname_missing      = 3
            job_close_failed     = 4
            job_nosteps          = 5
            job_notex            = 6
            lock_failed          = 7
            others               = 8.

  • Background image on Interactive report column

    Hi,
    I have had a request from a customer with regards to displaying a background image behind a column on an interactive report.
    The interactive report is used to show notes added for an individual in the application.
    They want to display a note image behind the text to make the note stand out better.
    Is it possible to add a background image to the each cell in the interactive report
    Thanks
    Kevin
    Edited by: Cod'ead on Nov 30, 2009 3:43 PM

    Take a look at this list of threads (You may find something that helps..) : Oracle Application Express (APEX)
    Thank you,
    Tony Miller
    Webster, TX

  • Dynamically Colour Cells in an Interactive Report

    My application requires an interactive report where cells are colour coded and the cell may, or may not have a value, but the value doesn't relate to the colour.
    The report is based on a view which returns a result set as follows:
    rn col1_value col1_colour col2_value col2_colour col3_value col3_colour col4_value col4_colour
    1        null        grey          3        null       null        null        null        red
    2        null        null          3        grey       null        null           4        red
    3        null        grey       null        null          3        null        null        redIn the results, each cell to be displayed has two columns per row, one with the colour and one with the value to display where null is the default colour (white)/no value.
    In Apex 4.1 I can set the colour based on the values using the dynamic actions on the report display, but I can't work out how to set the colour of col1_value based on the results of col1_colour. I am hoping there is a way to set the colour of the cell col1_value and hide col1_colour from the report.
    If you know of any posts providing an example of how this may work, or if you are able to explain it to me I would really appreciate your time.
    I appreciate it may not be simple to see what I am aiming for given the text restriction and no images/tables available on the forum, hopefully you get the idea, but if not, ask and I will try and explain further.
    I have seen Blog posts about 3-4 years old on how you do this in Apex 3.0 or older, but can't work out how to get this to work in Apex 4.0 or Apex 4.1.

    I have solved this using Javascript in a Dynamic Action, javascript something like:
    $("td[headers='COL1_COLOUR']").each(function(){
       switch($(this).text())
          case "grey":
               $(this).parent().children("td[headers='COL1_VALUE']").css({"background-color":"#999"});
               break;
          case "green":
               $(this).parent().children("td[headers='COL1_VALUE']").css({"background-color":"green"});
               break;
          case "blue":
               $(this).parent().children("td[headers='COL1_VALUE']").css({"background-color":"blue"});
               break;
          case "orange":
               $(this).parent().children("td[headers='COL1_VALUE']").css({"background-color":"orange"});
               break;
          case "yellow":
               $(this).parent().children("td[headers='COL1_VALUE']").css({"background-color":"yellow"});
               break;
          default:
               break;
        $(this).css({"visibility":"hidden"});
        $("th[id='COL1_COLOUR']").css({"visibility":"hidden"});
    });

  • Dynamically set maximum row count in Interactive Report

    Hi,
    Has anyone worked out a way of dynamically setting (e.g. via select list) the maximum row count value for an Interactive Report, taking into account issues with order by when the report is filtered. I'm aware of solutions like this: http://www.talkapex.com/2010/10/apex-reports-no-limit-downloads.html but as far as I can tell this doesn't work when the report is filtered and the IR is rewritten in the background. Data sets then become unreliable because they are reordered.
    Thanks,
    Mike

    Hi Mike,
    You can do that with javascript
    gReport.search('SEARCH',100)the 100 you can replace for any number you like.I have a report with filter,sorting and groups and it is gives no problem there.
    any number means any number but not higher than the number you set at Maximum Rows Per Page.
    You probably can mix the solution from Martin and the above code.
    Regards,
    Kees Vlek
    <tt>Company: http://www.orcado.nl
    Blog: http://www.orcado.nl/blog/blogger/listings/69-kvlek
    Twitter: http://www.twitter.com/skier66</tt>
    If the question is answered please change it to answered and mark the appropriate post as correct/helpfull.
    Edited by: kvlek on 24-apr-2013 12:29
    Edited by: kvlek on 24-apr-2013 12:35

  • Interactive Report (IR) column heading: filtered items number & flashlight

    Hello everyone
    several hours of searching through the forum did not provide me with leads or answers to 2 questions. Both are related to the IR column heading menu and options. Let's start with a copy of the relevant portion of the interactive report help screen:
    Column Heading Menu
    Clicking on any column heading exposes a column heading menu.
    [snip]
    Text Area is used to enter case insensitive search criteria (no need for wild cards). Entering a value will reduce the list of values at the bottom of the menu. You can then select a value from the bottom and the selected value will be created as a filter using '=' (e.g. column = 'ABC'). Alternatively, you can click the flashlight icon and the entered value will be created as a filter with the 'LIKE' modifier (e.g. column LIKE '%ABC%').
    List of Unique Values contains the first 500 unique values that meet your filters. If the column is a date, a list of date ranges is displayed instead. If you select a value, a filter will be created using '=' (e.g. column = 'ABC').
    Q1: Why do I not see a flashlight icon? I looked everywhere in the report definition to "enable" it, to no avail.
    Q2: Although we've found IRs to be incredibly useful and embraced by end users, we are having issues when dealing with large datasets. Let's look at searching for people's first/last name in our CONTACTS table. The table is ~28,000 names long. If one attempts to use Column Heading menu to "filter" for any name outside the first 500 unique values, the search does not work. Yes, I know that a workaround is to use Actions Menu icon filter... but, it sure is misleading to have a search which does not go beyond letter B in the list of last names. Furthermore, I do not see a way to DISABLE Column Heading Text Area, and avoid user confusion.
    I suspect that "List of Unique Values contains the first 500 unique values" was set for the performance purposes. Is there a way to set that number anywhere? Have it customized for each column? (columns county and state could be <100, for example)
    Thanks an advance to any advice.
    Vojin

    @Prabodh: what you say is only changing the default image for the column selector at the search bar level. What i think is being looked for is an icon on the popup when a column header is clicked in an IR. Don't bother: there is none.
    @Vojin, Tonibony:
    I also ran into this problem with IRs and the useless column header box. If you want to hide the unique values list, it is a bother. First of all, you can't disable the finding of values, this is embedded in the widget ajax code. Then if you want to just hide the list, there is no real event you can hook up to. The poping up of the box is an ajax callback, and is part of the IR javascript, but this callback does not trigger any event (no apexafterrefresh for example, which is understandable). I've worked around this by overriding/extending the method which is called when ajax is done loading within the IR code. Here is a piece of code which does this (call it on page load):
       // _Finished_Loading is called when the IR is done with a GET action
       // because the posts are synchronous in this report, and no events
       // or hooks are available, the best way to preserve functionality
       // yet extending it is to override the original function, yet
       // keep the base code
       // apexafterrefresh cant be used since it is not triggered after
       // the widget ajax
       var or_Finished_Loading = gReport._Finished_Loading;
       gReport._Finished_Loading = function(){
           //overriden, but still have to call orinigal!
          or_Finished_Loading();
          //SORT_WIDGET is the widget containing all the header elements
          if(gReport.current_control=='SORT_WIDGET'){
             // hide the original dropdown box
             $("#apexir_rollover_content").hide();
       };If you're interested, i've recently developed a plugin for use in my interactive reports which works around some of these limitations. For me, the headers are much more userfriendly than the actions > filter menu. So what i've done is: hide the orignal dropdown, and turn the searchfield into an autocompletion field, which will progressively search through the distinct column values in the IR with ajax. I've even made an option to have the searching behave like a "contains" or a "like". I'm working on a post about it, with background, documentation and source code. I'll add a post here when i finish it up, you can see if that helps you.
    I also would like to add a button later on which will simply add the entered value as a "like %value%" filter. I know how to do this and what to do, i'm just a bit short on time at the moment. I actually think that adding the button in the layout may be the hardest part... :')

  • Display BLOB (image) column in (interactive) report

    Hi,
    I have a field called "picture" in my table "details" which is of type BLOB. i also have a field for "MIMETYPE" and "filename"
    i additionally have a "name" and "description" columns which i need to display along with the picture as columns in a report (preferably interactive).
    i have also modified the BLOB display format as per
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r31/apex31nf/apex31blob.htm
    what i am missing is the correct query. if possible, i would like to control the size of the picture rendered within the report like say 40*50.
    I have also referred to the thread
    APEX 3.1 Display BLOB Image
    But i don't know how to place the
    dbms_lob.getlength("BLOB_CONTENT") as "BLOB_CONTENT"
    in my query.
    The above also makes the report column as of type "number". is this expected?
    Any help would be much appreciated.
    Regards,
    Ramakrishnan

    You haven't actually said what the problem is?
    >
    I have a field called "picture" in my table "details" which is of type BLOB. i also have a field for "MIMETYPE" and "filename"
    i additionally have a "name" and "description" columns which i need to display along with the picture as columns in a report (preferably interactive).
    i have also modified the BLOB display format as per
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r31/apex31nf/apex31blob.htm
    what i am missing is the correct query.
    I have also referred to the thread
    APEX 3.1 Display BLOB Image
    But i don't know how to place the
    dbms_lob.getlength("BLOB_CONTENT") as "BLOB_CONTENT"
    >
    Something like:
    select
              name
            , description
            , dbms_lob.getlength(picture) picture
    from
              details
    if possible, i would like to control the size of the picture rendered within the report like say 40*50.For images close to this size it's easy to do this for declarative BLOB images in interactive reports using CSS. Add a style sheet with:
    .apexir_WORKSHEET_DATA td[headers="PICTURE"] img {
      display: block;
      width: 40px;
      border: 1px solid #999;
      padding: 4px;
      background: #f6f6f6;
    }where the <tt>PICTURE</tt> value in the attribute selector is the table header ID of the image column. Setting only one dimension (in this case the width) scales the image with the correct aspect ratio. (The border, padding and background properties are just eye candy...)
    However, scaling large images in the browser this way is a huge waste of bandwidth and produces poorer quality images than creating proper scaled down versions using image tools. For improved performance and image quality, and where you require image-specific scaling you can use the database ORDImage object to produce thumbnail and preview versions automatically, as described in this blog post.

  • Interactive Report's Column Definition - Single Row View Label Bug?

    Hello,
    I have an Interactive report that I've added a Blue background to certain column headings (done by giving Column Heading a background color), this works fine except for the Single Row view - it displays the &lt;....&gt; code I used to get the background color and the column heading. I've tried to change the Single Row View Label by unchecking the 'Use Same Text for Single Row View' on the Column Definition and giving a different label, it just ignores whatever I put in and shows the Column Heading with the &lt; .... &gt; code. Is this a Bug or am I doing something wrong?
    Thanks,
    Anna

    Hi Anna,
    I believe that it is a bug.
    If the 'Use Same Text for Single Row View' checkbox is unticked and some text is entered in the 'Single Row View Label' field it gets ignored completely when viewed in the single row view and the existing value in 'Column Heading' is used.
    I wanted to do something similar to you, colouring some of the Interactive Report column headers, and it works fine in the IR report itself but shows the code (span style:color etc) in the single row query. I am using Apex 3.1.1 and the Sand Theme.
    I created a simple application on apex.oracle.com using the red theme and in single row view it still ignores the 'Single Row View Label' but interestingly shows the Column Heading text without the code. This indicates that there could be a work-around by altering the theme.
    Regards,
    Chris

  • How to generate interactive report in alv

    hi,
      how to generate interactive report in alv,for this what are the requirements,
    give me one sample report.
                                                 thankyou.

    Hi,
    Chk these helpful links..
    ALV
    http://www.geocities.com/mpioud/Abap_programs.html
    http://www.sapdevelopment.co.uk/reporting/reportinghome.htm
    Simple ALV report
    http://www.sapgenie.com/abap/controls/alvgrid.htm
    http://wiki.ittoolbox.com/index.php/Code:Ultimate_ALV_table_toolbox
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Go thru these programs they may help u to try on some hands on
    ALV Demo program
    BCALV_DEMO_HTML
    BCALV_FULLSCREEN_DEMO ALV Demo: Fullscreen Mode
    BCALV_FULLSCREEN_DEMO_CLASSIC ALV demo: Fullscreen mode
    BCALV_GRID_DEMO Simple ALV Control Call Demo Program
    BCALV_TREE_DEMO Demo for ALV tree control
    BCALV_TREE_SIMPLE_DEMO
    BC_ALV_DEMO_HTML_D0100
    Regards
    Anversha

  • How to create a fixed-width column within an APEX 4 interactive report?

    This thread is a follow-up to {message:id=9191195}. Thanks fac586.
    Partial success: The following code provided by fac586 limits the column width of the Apex 4 interactive report column as long as the column data contains whitespace within a Firefox 3.6 browser:
    <pre class="jive-pre">
    <style type="text/css">
    th#T_DESCRIPTION {
    width: 300px;
    td[headers="T_DESCRIPTION"] {
    width: 300px;
    word-wrap: break-word;
    </style>
    </pre>
    Notes:
    1. The code above is put into the HTML header section for the page.
    2. T_DESCRIPTION is defined as VARCHAR2(2000).
    3. The code above works within the Firefox 3.6.12 browser but does not work within the Internet Explorer 7.0.5730.13 browser.
    I tried adding "float: left;":
    <pre class="jive-pre">
    <style type="text/css">
    th#T_DESCRIPTION {
    width: 300px;
    td[headers="T_DESCRIPTION"] {
    width: 300px;
    word-wrap: break-word;
    <font color="red"> float: left;</font>
    </style>
    </pre>
    Notes:
    1. "float: left;" does not require whitespace and successfully splits the column between characters in lieu of whitespace.
    2. "float: left;" shrinks the cell height and allows the page background to show through... couldn't determine how to fix this.
    3. The code above works within the Firefox 3.6.12 browser but does not work within the Internet Explorer 7.0.5730.13 browser.
    I've done some more research, but I still haven't discovered how to create a fixed-width column within an APEX 4 interactive report that displays properly within an Internet Explorer 7 browser.
    Any ideas and help will be appreciated.

    Thanks for your help with this!
    <pre class="jive-pre">
    what theme are you using?
    </pre>
    A customized version of theme 15.
    <pre class="jive-pre">
    Floating a table cell makes no sense (to me anyway).
    </pre>
    You are correct. I was just trying a different approach ... trying to think out of the box.
    <pre class="jive-pre">
    Think you'll need to create an example on apex.oracle.com with sample data
    if there are any further problems.
    </pre>
    Great suggestion! The code your provided works in the Firefox 3.6.12 browser, but still doesn't work within my Internet Explorer 7.0.5730.13 browser.
    UPDATE:
    I have recreated the problem at apex.oracle.com, you can use the following information to check it out:
    URL: http://apex.oracle.com/pls/apex/f?p=43543:100::::::
    Workspace: IR_FIXED_WIDTH_COLS
    Username: GUEST
    Password: Thx4help
    Application: 43543 - CM_RANDY_SD
    Note: Table name is TEST_DATA
    The following code provided by fac586 works in both Firefox 3.6 and IE7 using default theme "21. Scarlet" at apex.oracle.com; however, it doesn't work when I use a copy of our customized theme "101. Light Blue":
    <pre class="jive-pre">
    <style type="text/css">
    .apexir_WORKSHEET_DATA {
    th#T_DESCRIPTION {
    width: 300px;
    max-width: 300px;
    td[headers="T_DESCRIPTION"] {
    max-width: 300px;
    word-wrap: break-word;
    </style>
    <!--[if lt IE 8]>
    <style type="text/css">
    /* IE is broken */
    th#T_DESCRIPTION,
    td[headers="T_DESCRIPTION"] {
    width: 300px;
    </style>
    <![endif]-->
    </pre>
    Any idea what in the theme could be causing the fixed width column to be ignored in IE 7?
    Edited by: CM Randy SD on Dec 7, 2010 11:22 AM

  • How to load only first set of rows only in pagination of interactive report

    Hi all,
    Iam using 3.2 x and database 10g.
    I have created interactive report and it contains 500000 records. and iam using pagination x to y but background it loads complete rows from database.
    To load complete 500000 records page taking 10 minutes.So My reqiurement is I need to load first set of rows like 500 rows and Once i click next button then only it should load next set of rows like 501 to 1000.
    Please tell any idea to resolve the above problem.
    thanks
    balu

    Balu,
    try to trace your page to see how your statement can be tuned. To do that add &p_trace=YES to the URL.
    This creates a standard Database Trace file which can be analyzed with TKPROF or SQL Developer or similiar tools.
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at

  • Interactive Reports in Firefox 3.0.5

    Hi!
    When running an interactive report in Firefox 3.0.5, the pull-down menu next to the cog icon does not display right over the icon as it does in IE. Rather, the menu displays at the bottom of the page below the report area.
    Anyone knows why is this and how it can be fixed?
    Thx!
    Marc

    ...and FWIW, here's the whole page code...
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>W-9 File Upload &amp; Search</title>
    <link rel="stylesheet" href="/apex_images/themes/theme_15/theme_V3.css" type="text/css" />
    <style type="text/css">
    <!--
    body {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 12px;
         margin: 0px;
         padding: 0px;
         line-height: 16px;
         width: 100%;
    #header {
         overflow: hidden;
         border-bottom-width: 2px;
         border-bottom-style: solid;
         border-bottom-color: #0099CC;
    #wrap {
         overflow: hidden;
         margin: 0px;
    #primary {
         float: left;
         width: 100%;
         border-top-width: 10px;
         border-top-style: solid;
         border-top-color: #D7EDFE;
         margin: 0px;
         padding: 0px;
    #secondary {
         width: 25%;
         float: left;
         border-top-width: 10px;
         border-top-style: solid;
         border-top-color: #D7EDFE;
         display: none;
    #footer {
         clear: both;
    #header #column-1 {
         float: left;
         width: 25%;
    #header #column-2 {
         float: left;
         width: 50%;
    #header #column-3 {
         float: right;
         width: 25%;
         text-align: right;
    table.standardLook tr:hover {
         background-color: #DDE9FE;
    #tabs {
    clear:both;
    width:100%;
    #tabs ul {
         float:right;
         list-style-type:none;
         margin:0px;
         padding:0px;
    #tabs ul li {
         float: left;
         margin-right:0px;
         background-image: url(https://dev-navcentral.navigators.org/apex_images/themes/theme_15/tab_open.gif);
         background-repeat: no-repeat;
    #tabs ul li.current {
        background-image: url(https://dev-navcentral.navigators.org/apex_images/themes/theme_15/tab_open_c.gif);
    #tabs ul li a {
         float:left;
         padding-left:0px;
         padding-right:9px;
         font:12px Arial;
         text-decoration:none;
         font-weight:bold;
         color:#336699;
         line-height:19px;
         height: 19px;
         margin-left: 10px;
         background-image: url(/apex_images/themes/theme_15/tab_center.gif);
    #tabs ul li.current a {
         background-image: url(/apex_images/themes/theme_15/tab_center_c.gif);
         margin-left: 12px;
         color: #CEDFF0;
    #tabs ul li a:hover {
         color: #003366;
    #tabs ul li.current a:hover {
         color: #ffffff;
    -->
    </style>
    <script src="/apex_images/javascript/apex_ns_3_1.js" type="text/javascript"></script>
    <script src="/apex_images/javascript/apex_3_1.js" type="text/javascript"></script>
    <script src="/apex_images/javascript/apex_get_3_1.js" type="text/javascript"></script>
    <script src="/apex_images/javascript/apex_builder.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    /*Global JS Variables*/
    var htmldb_Img_Dir = "/apex_images/";
    //-->
    </script>
    <link rel="stylesheet" href="/apex_images/css/apex_3_1.css" type="text/css" />
    <!--[if IE]><link rel="stylesheet" href="/apex_images/css/apex_ie_3_1.css" type="text/css" /><![endif]-->
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    </head>
    <body >
    <div id="wrap">
      <form action="wwv_flow.accept" method="post" name="wwv_flow" id="wwvFlowForm" >
      <input type="hidden" name="p_flow_id" value="275" id="pFlowId" />  <input type="hidden" name="p_flow_step_id" value="1" id="pFlowStepId" />  <input type="hidden" name="p_instance" value="1054298689687563" id="pInstance" />  <input type="hidden" name="p_page_submission_id" value="4137293142420641" id="pPageSubmissionId" />  <input type="hidden" name="p_request" value="" id="pRequest" />    <div id="header">
        <div id="column-1">
          <br />
        </div>
        <div id="column-2">
        </div>
        <div id="column-3">
          <br />
        </div>
        <div id="tabs">
          <ul>
            <li class="current"><a href="javascript:doSubmit('T_PAGE_1');">W-9 File Upload</a></li><li><a href="javascript:doSubmit('T_UPLOAD EXCEPTIONS');">Upload Exceptions</a></li><li><a href="javascript:doSubmit('T_USERS');">Users</a></li>
          </ul> 
        </div>
        <div style="clear:both;"></div>
      </div>
      <div id="primary">
        <div id="primary-header">
          <div id="R1102609521283413" class="t15breadcrumb"><ul></ul></div>
        </div>
        <div id="notification">
        </div>
        <table summary="" cellspacing="0" cellpadding="0" border="0" width="100%"><tr><td align="right"><table class="t15Button" cellspacing="0" cellpadding="0" border="0"  summary=""><tr>
    <td class="t15L"><img src="/apex_images/themes/theme_15/button-l.gif" alt="" /></td>
    <td class="t15C"><a href="javascript:doSubmit('UPLOAD_FILES')">Upload Files</a></td>
    <td class="t15R"><img src="/apex_images/themes/theme_15/button-r.gif" alt="" /></td>
    </tr></table></td></tr></table><table width="100%" border="0" cellspacing="0" cellpadding="0" id="R1118932641117463" class="t15ReportsRegion" summary="">
    <tr>
    <td valign="bottom" class="t15RegionHeader">W-9 Uploaded Files</td>
    <td align="right" class="t15ButtonHolder">   </td></tr>
    <tr>
    <td colspan="2" valign="top" class="t15Body"><div id="apexir_WORKSHEET_REGION" class="apex_worksheet"><div id="apexir_DETAIL" class="apex_detail"></div><div id="apexir_REPORT" class="apex_report"><div id="apexir_TOOLBAR" class="apex_toolbar"><table border="0" cellpadding="0" cellspacing="0"><tr><td valign="top"><table class="apex_finderbar" cellpadding="0" cellspacing="0" border="0"><tbody><tr><td valign="top" class="apex_finderbar_left_top"><img src="/apex_images/1px_trans.gif" class="spacer" width="10" height="8" alt="" /></td><td rowspan="3" class="apex_finderbar_middle" valign="middle"><img src="/apex_images/htmldb/builder/finder_w_dropdown.gif" id="apexir_SEARCH_ICON" onclick="gReport.controls.search_column();" /><input type="hidden" id="apexir_CURRENT_SEARCH_COLUMN" /><div id="apexir_SEARCHDROP" style="display:none;"><br /></div></td><td rowspan="3" class="apex_finderbar_middle" valign="middle" id="apexir_SEARCH_COLUMN_DROP" ></td><td rowspan="3" class="apex_finderbar_left" valign="middle"><table class="formlayout" summary=""><tr><td nowrap="nowrap" align="right"></td><td  colspan="1" rowspan="1" align="left"><input type="text" size="30" maxlength="2000" value="" id="apexir_SEARCH" onkeyup="($f_Enter(event))?gReport.search('SEARCH'):null;" /></td><td nowrap="nowrap" align="right"> <label for="apexir_NUM_ROWS">Rows</label></td><td  colspan="1" rowspan="1" align="left"><select size="1"  id="apexir_NUM_ROWS"  name="p_accept_processing"><option  value="1">1</option><option  value="5">5</option><option  value="10">10</option><option selected="selected" value="15">15</option><option  value="20">20</option><option  value="25">25</option><option  value="30">30</option><option  value="50">50</option><option  value="100">100</option><option  value="200">200</option><option  value="500">500</option><option  value="1000">1000</option><option  value="5000">5000</option><option  value="100000">All</option></select></td><td nowrap="nowrap" align="right"></td><td  colspan="1" rowspan="1" align="left"><input type="button" value="Go"  onclick="gReport.search('SEARCH')"  /></td><td align="left" width="55"><div class="dhtmlMenuLG"><div class="dhtmlMenuItem" style="margin-right:0px;"><img src="/apex_images/ws/action_dropdown.gif"  class="dhtmlMenu" onclick="gReport.controls.menu(this,'apexir_ACTIONSMENU',false)" alt=""/></div><ul id="apexir_ACTIONSMENU" htmldb:listlevel="2" class="dhtmlSubMenu" style="display:none;"><li><a href="javascript:gReport.controls.display_column('COLUMN');" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Select Columns"><img src="/apex_images/ws/edit_col_32.gif" /> Select Columns</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:gReport.controls.filter();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Filter"><img src="/apex_images/ws/filter_32.gif" /> Filter</a></li>
    <li><a href="javascript:gReport.controls.ordering();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Sort"><img src="/apex_images/ws/sort_32.gif" /> Sort</a></li>
    <li><a href="javascript:gReport.controls.ctrl_break();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Control Break"><img src="/apex_images/ws/break_col_32x24.gif" /> Control Break</a></li>
    <li><a href="javascript:gReport.controls.highlight();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Highlight"><img src="/apex_images/ws/highlight_32x24.gif" /> Highlight</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:gReport.controls.flashback();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Flashback"><img src="/apex_images/ws/flashback_32x24.gif" /> Flashback</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:gReport.controls.save();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Save Report"><img src="/apex_images/ws/disk_32.gif" /> Save Report</a></li>
    <li><a href="javascript:gReport.controls.reset();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Reset"><img src="/apex_images/ws/reset_32x24.gif" /> Reset</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:popupURL('wwv_flow_utilities.show_ir_help?p_app_id=275&p_worksheet_id=1119004877117463&p_lang=en-us');" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Help"><img src="/apex_images/ws/help_32x24.gif" /> Help</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:gReport.controls.download();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Download"><img src="/apex_images/ws/download_32x24.gif" /> Download</a></li>
    </ul></div></td></tr><tr><td></td><td  colspan="1" rowspan="1" align="left"></td></tr></table></td><td rowspan="3" width="30"><br /></td></tr><tr><td class="apex_finderbar_left_middle"><br /></td></tr><tr><td valign="bottom" class="apex_finderbar_left_bottom"><img src="/apex_images/1px_trans.gif" class="spacer" width="10" height="8"  alt="" /></td></tr></tbody></table></td></tr></table></div><div id="apexir_WORKSHEET"><div id="apexir_CONTROL_PANEL_DROP" class="drop_panel clearfix" style="display:none"></div><style id="apexir_WORKSHEET_CSS" type="text/css">
    </style>
    <input type="hidden" id="apexir_WORKSHEET_ID" value="1119004877117463" />
    <input type="hidden" id="apexir_APP_USER" value="23733090" />
    <input type="hidden" id="apexir_REPORT_ID" value="1119819810130548" />
    <div>
    <div id="apexir_CHART">
    </div>
    <div id="apexir_CALENDAR">
    </div>
    <div id="apexir_DATA_PANEL">
    <table summary="">
    <tr><td colspan="5" class="pagination" align="right"><span class="fielddata"> 1 - 15 of 1559 <a href="javascript:gReport.navigate.paginate('pgR_min_row=16max_rows=15rows_fetched=15')"><img src="/apex_images/jtfunexe.gif" title="Next" alt="Next" align="absmiddle" /></a></span></td></tr>
    <tr><td><script>var gTable = '1119004877117463'</script>
    <table summary="" cellpadding="0" cellspacing="0" border="0" class="apexir_WORKSHEET_DATA" id="1119004877117463">
    <tr><th><div id="apexir_DOWNLOAD" onclick="gReport.controls.widget(this.id)" style="text-align:center;">Download</div></th><th><div id="apexir_FILENAME" onclick="gReport.controls.widget(this.id)" style="text-align:center;">Filename</div></th><th><div id="apexir_DATE_UPLOADED" onclick="gReport.controls.widget(this.id)" style="text-align:center;">Date Uploaded</div></th><th><div id="apexir_ELIMINATE" onclick="gReport.controls.widget(this.id)" style="text-align:center;">Delete</div></th></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759474_12032008_Conservative_Baptist_Foreign_Mission.pdf%2C1&cs=3BE46CEC54B25D9045EA1101E5205F6C5" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759474_12032008_Conservative_Baptist_Foreign_Mission.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759474_12032008_Conservative_Baptist_Foreign_Mission.pdf%2C1&cs=35E7631A02949AC0874933DB5011A7A9B" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759484_12032008_Elaina_Whittenhall.pdf%2C1&cs=30628489CF133D8AE07C3F6DCDEACD4B5" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759484_12032008_Elaina_Whittenhall.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759484_12032008_Elaina_Whittenhall.pdf%2C1&cs=324BE78644A60856A9FB7598AE0E2927D" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759494_12032008_Donald_Parrott.pdf%2C1&cs=381C0B68B62C1DE0AFAFFB138849DD343" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759494_12032008_Donald_Parrott.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759494_12032008_Donald_Parrott.pdf%2C1&cs=3E7711587AEB6567E2E5DB49A4486F146" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759505_12032008_Hydron_Turf_Inc.pdf%2C1&cs=370546244E33C0CDD45EC592543251891" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759505_12032008_Hydron_Turf_Inc.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759505_12032008_Hydron_Turf_Inc.pdf%2C1&cs=368EB6EC80669A372E442EEE7009E7614" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759511_12032008_Zeeks_Pizza_inc.pdf%2C1&cs=393AD5D099610F1714B0EA78181EE755C" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759511_12032008_Zeeks_Pizza_inc.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759511_12032008_Zeeks_Pizza_inc.pdf%2C1&cs=34281BB3410289F25BA111051C2470AF1" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:1437_12032008_Foxworth_Galbraith.pdf%2C1&cs=310BF9AC14F29E35E6027C2EC6B7D49C4" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">1437_12032008_Foxworth_Galbraith.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:1437_12032008_Foxworth_Galbraith.pdf%2C1&cs=31A37B74BF39A7A8028457C978A3982E1" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:1442_12032008_Brunos_Party_Time_Rental.pdf%2C1&cs=359B1791458976AF272259756BECC2426" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">1442_12032008_Brunos_Party_Time_Rental.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:1442_12032008_Brunos_Party_Time_Rental.pdf%2C1&cs=362713E518E1A23FE165DCC5C909B529B" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747564_12032008_Matt_Mikalatos.pdf%2C1&cs=3852CC3C23951C12384568DD801BEB0DD" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747564_12032008_Matt_Mikalatos.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747564_12032008_Matt_Mikalatos.pdf%2C1&cs=301CD3F8543CB50E0AC89D0AD605CB915" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747574_12032008_Casas_Por_Cristo.pdf%2C1&cs=3892F3DE74C4E007443D5117634A7D329" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747574_12032008_Casas_Por_Cristo.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747574_12032008_Casas_Por_Cristo.pdf%2C1&cs=3E14BCB602BA6BEAC7369238C19669216" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747868_12032008_Mark_Brunson.pdf%2C1&cs=326579694381D52F1C9B0E6CEFF9B6AC0" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747868_12032008_Mark_Brunson.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747868_12032008_Mark_Brunson.pdf%2C1&cs=3D7A290F9474B4674EB57810CDEE828C7" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747892_12032008_Brandon_Tackett.pdf%2C1&cs=35159001B486DD368DDB15977B0D0CC74" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747892_12032008_Brandon_Tackett.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747892_12032008_Brandon_Tackett.pdf%2C1&cs=3D672DF7CAF3DEB99CF9D36788CEFF94A" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747990_12032008_Jami_Kirkbride.pdf%2C1&cs=3500DCCE200085E8071279B7431382DD5" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747990_12032008_Jami_Kirkbride.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747990_12032008_Jami_Kirkbride.pdf%2C1&cs=38AB133AF835915640EBCE78E346925F3" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23748001_12032008_Steven_Todd.pdf%2C1&cs=3C92E47F21A6264800ED11EDD1909A23F" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23748001_12032008_Steven_Todd.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23748001_12032008_Steven_Todd.pdf%2C1&cs=37031494E7B6950E1DFEBCE014A7E8DD8" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23748023_12032008_Amerigas.pdf%2C1&cs=38C1BA2D898623C6EB90373DC0B42694A" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23748023_12032008_Amerigas.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23748023_12032008_Amerigas.pdf%2C1&cs=3565731C7716F663E9B115B003135A29B" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23761639_12172008_Kathy_Ammon.pdf%2C1&cs=3E678E6956231231F39E6CF9181B6E3D4" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23761639_12172008_Kathy_Ammon.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23761639_12172008_Kathy_Ammon.pdf%2C1&cs=32787E0AB470723DDB5D7159696FD1596" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    </table></td></tr>
    <tr class="fielddatasmall" align="left"><td>
    </td></tr>
    <tr><td colspan="5" class="pagination" align="right"><span class="fielddata"> 1 - 15 of 1559 <a href="javascript:gReport.navigate.paginate('pgR_min_row=16max_rows=15rows_fetched=15')"><img src="/apex_images/jtfunexe.gif" title="Next" alt="Next" align="absmiddle" /></a></span></td></tr>
    </td></tr>
    </table>
    </div>
    </div>
    </div>
    </div></div><script type="text/javascript">
    addLoadEvent(init_gReport);
    var gReport,gValid;
    function init_gReport(){
    gReport = new apex.worksheet.ws('');
    gValid = new apex.validation.v();
    </script>
    <div id="apexir_rollover" style="position:absolute;display:none;"><table cellpadding="1" cellspacing="0" border="0" width="100%"><tr><td><span id="apexir_sortup"><img src="/apex_images/ws/dup.gif" alt="Sort Ascending" title="Sort Ascending" onclick="gReport.column.order('ASC')" /></span><span id="apexir_sortdown"><img src="/apex_images/ws/ddown.gif" alt="Sort Descending" title="Sort Descending" onclick="gReport.column.order('DESC')" /></span><span id="apexir_hide"><img src="/apex_images/ws/trash.gif" alt="Hide Column" title="Hide Column" onclick="gReport.column.hide()" /></span><span id="apexir_break"><img src="/apex_images/ws/break_col.gif" alt="Control Break" title="Control Break" onclick="gReport.column.break_on()" /></span><span id="apexir_info"><img src="/apex_images/ws/info_20x18.gif" alt="Column Information" title="Column Information" onclick="gReport.controls.info()" /></span><span id="apexir_computation"><img src="/apex_images/ws/calc.gif" alt="Compute" title="Compute" onclick="gReport.controls.computation(false)" /></span></td></tr><tr><td><input type="text" onkeyup="$d_Find('apexir_rollover_content',this.value,'a');" style="width:95%;" id="apexir_search" /></td></tr></table><div id="apexir_rollover_content"></div></div><span id="apexir_LOADER" style="display:none;"><img src="/apex_images/ws/ajax-loader.gif" /></span></td>
    </tr>
    </table><table id="apex_layout_3134323851085756" class="formlayout" summary="" ><tr><td></td><td  colspan="1" rowspan="1" align="left"><input type="hidden" name="p_arg_names" value="3134621904094597" /><input type="hidden" name="p_t01" value="test-navcentral.navigators.org" id="P1_SERVER_NAME"  /></td></tr><tr><td></td><td  colspan="1" rowspan="1" align="left"><input type="hidden" name="p_arg_names" value="3139106994289054" /><input type="hidden" name="p_t02" value="" id="P1_DEBUG"  /></td></tr>
    </table>
      </div>
      <div id="secondary">
      </div>
      <div id="footer">
        <br />
      </div>
      <input type="hidden" name="p_md5_checksum" value=""  /></form>
    </div>
    <script type="text/javascript">
    <!--
    //-->
    </script></body>
    </html>Marc

  • Displaying different colors for cells/columns in Interactive Report

    Hi,
    I have a requirement to display just the 'cells' in the Interactive Report columns with different colors.
    There are 3 columns in the Interactive report.
    The color coding for all the 3 different columns should be such that:
    <40% - red color
    40-70-orange
    greater than 70%-green
    I tried the highlight option in the report and saved the report as default, but still the color condition ended up getting displayed to the end user. I dont want this.
    Can someone suggest a better way to handle this requirement?

    Perhaps explore similar solutions described here
    Background Colour of Report Cell Issues.
    Scott

  • Download CSV of Interactive Report

    Hi,
    I am using Apex 4.1 and Oracle 11g.
    Can anyone pls help me with this below issue.
    select a,b,c,'<font style="font-size:10px; background-color:#FF0000; color:black" nowrap>'|| d ||'</font>',e from table_name
    a,b,c,d are column names.
    I have used the above HTML code for giving background color for single column. But when I am downloading the Report in CSV format through Actions Menu on Interactive Report in the d column i am getting the HTML code also along with data in it which i dont want. I want only the data to come into CSV not the HTML code along with it.
    Regards,
    Shoaib
    Edited by: Shoaib581 on 04-Jun-2012 01:15

    mahmoudrabie wrote:
    Dear Shoaib,
    i am getting the HTML code also along with data in it which i dont want. I want only the data to come into CSV not the HTML code along with it. 1) Right click on the interactive report ---> edit report attributes
    2) Change the column (Display Text As) to *(Standard Report Column)* for column d
    This does not solve the problem because he is getting the html code in CSV and not in browser
    >
    <font style="font-size:10px; background-color:#FF0000; color:black"  nowrap>'|| d ||'</font>Stop using font tag because it is deprecated
    Please remove the html formatting from the sql query and use the Interactive report Actions Menu > Format > Hightligh option
    Login as developer Go to Actions Menu > Save > Save as default > primary report to save it as default for all users
    http://apex.oracle.com/pls/apex/f?p=46417:4
    Login test/test

Maybe you are looking for