Email report region and content

hello,
is it possible to email the contents of an entire region e.g. tabular report?
if so, how would i go about such an exercise?
Regards.
Tom

Hi fac586,
It's not working in Firefox. I could get the desired width in IE but not in firefox.
When I clicked on view source..both firefox and IE has the same HTML code.
<td headers="TITLE" class="t2data"><span style="width:800px"><p><b><i><big>Critique</b></i></big></p></span></td>
Do you know what could be the problem?
I rather have it working in Firefox than IE :)
Thanks.

Similar Messages

  • Layout issue: sql report region and items derived from a different table

    Hi all,
    I have a report region whose source is a sql query. I am trying to display other items in the same region(These I added manually on the page and they come from another table in the schema). It works fine, except the items that I added manually in the region always appear at the top of the items that are derived from the query. I want the other way around if possible, where I want the items from report query to appear first and then the other items to appear below them. Can this be done? If so how?
    Thanks in advance
    sr

    sr,
    on the definition page of your region, set the property "Display Point" to "Page Template Body (1. items below region content).
    I think that's what you are looking for.
    Patrick
    *** New *** Oracle APEX Essentials *** http://essentials.oracleapex.info/
    My Blog, APEX Builder Plugin, ApexLib Framework: http://www.oracleapex.info/

  • Connecting a report region and a PL/SQL region

    Hi,
    I have created a report region whith pagination that only show 1 row at a time. I can then navigate backwards and forwards through this recordset. The first reportcolum in this recordset contains a number.
    I have also, on the same page, created a PL/SQL procedure region. What I want is to use the number from the SQL region as an input to the PL/SQL region. So when I navigate through the report (Using the pagination arrows), the PL/SQL region is in sync with the record I'm currently seeing in the report.
    Is this possible or do I have to try something different?
    Regards
    Trond

    Hi Trond,
    If you only want to show one record in your first region, it might be best to work with page items, retrieve one record at a time and use that data as the source for your page items. It's easier to implement and easier to reference those values in your second region. Reports are great if you have more then one record.
    Having said that, there are ways to implement it the way you outlined it in your posting. Granted it's not very elegant but it serves its purpose. You could write your own PL/SQL package, use this to set a global to the current row's primary key value and reference that global in your second region.
    Create your package as follows:
    create or replace package md_sample as
    g_pk_value number;
    function set_value(p_value number) return number;
    end;
    create or replace package body md_sample as
    function set_value(p_value in number) return number is
    begin
    g_pk_value := p_value;
    return 1;
    end;
    end;
    Now you need to make sure that your report calls this package appropriately. Calling this as part of your SQL statement won't work properly as it would also be called for records not currently shown on your page. A better way would be to use it for a PL/SQL expression within your report template definition. Pick a custom report template for your report and edit that template. Scroll down to the condition for the first column template and pick “Use Based on PL/SQL Expression”. Then type in the following expression (this is based on a select deptno, dname, loc from dept report):
    md_sample.set_value(#DEPTNO#)=1
    After that you'll be able to reference the global md_sample.g_pk_value. You could e.g. use this as the source for page items shown in your second region.
    Hope this helps,
    Marc

  • Modify SAP Email notification subject and content

    Hi,
    As of now we are receiving notification emails with standard subject whenever we are receiving workflow items in SAP .
    I want to customize the subject and content of the notification...
    Eg;
    One of our team receiving email notifications for all workflow items [for Idoc Status errors] .. now i want to change the subject and content for this team alone . ..
    Suppose if the orders got failed , workflow will assign to EDI team .. they will receive email for this ..
    Now i need to change the email subject / append the idoc status in the subject ...
    Please help me

    Hi, how did you solve the problem? I have probably the same problem and I am new in this. After payment clarification process in FS-CD the email is automatically generated and send to user. But I do not know where can I change the body of the email. If it is Customizing, or change in some program or User exit or FM?
    thank you for any help..
    Michal

  • Apex 4.1 different font text in Reports Region and Interactive reporting

    Hi everybody,
    In my APEX 4.1 page, I have two regions using the same ''Reports region" Template but font text are different. Why The first region is an interactive reporting. The second it's a report. I know that each one has his own data for sure but the same region template .Spaces between colons are different. Is it normal ?  I want to have the same font text for the two regions.
    Thanks in advance. Bye.

    Apex4.0+HTML_DB1.6 wrote:
    Theme 13 is not an APEX 4.x theme ? How I can know that is one of this serie ?
    Legacy themes are flagged with a "*" in the theme gallery. Standards mode themes are not. (I don't have access to APEX 4.1 at present to be able to identify specific themes.)
    Properties of interactive report components, is it possible to take a look on this properties or it's a "black box" ?
    You can either look in the global APEX style sheet, or (probably more usefully) use a browser web inspector to examine the CSS properties of the IR components in the page.

  • SQL report region and search capability

    1) I have a report and I would like to be able to cat two fields together but the problem occurs is that the query will no longer search for that field once they are "catted " together.. The field is a combo of staff id (initials) and the full name, when you search it will find staff_id but it will not search on name.
    An example is listed here: http://htmldb.oracle.com/pls/otn/f?p=860:21
    workspace:epic
    select B."BASE_UNIT_ID",S."NAME" || S."ACCESS_ACCOUNT_ID" AS STAFF_ID_combo_of_Name_and_Id, ST."ACCESS_ACCOUNT_ID" AS IMAGE_INSTALLED_BY
    from "#OWNER#"."BASE_UNIT" B LEFT OUTER JOIN "#OWNER#"."IP" I ON B."IP_ID" = I."IP_ID"
    LEFT OUTER JOIN "#OWNER#"."STAFF" ST ON B."IMAGE_INSTALLED_BY" = ST."STAFF_ID"
    LEFT OUTER JOIN "#OWNER#"."STAFF" S ON B."STAFF_ID" = S."STAFF_ID"
    where
    instr(upper(B."BASE_UNIT_ID"),upper(nvl(:P21_SEARCH,B."BASE_UNIT_ID"))) > 0 OR
    instr(upper(S."ACCESS_ACCOUNT_ID"),upper(nvl(:P21_SEARCH,S."ACCESS_ACCOUNT_ID"))) > 0 OR
    instr(upper(ST."ACCESS_ACCOUNT_ID"),upper(nvl(:P21_SEARCH,ST."ACCESS_ACCOUNT_ID"))) > 0
    2) On a side note does anyone know how to concat a space or dash between two fields for a report? I tried doing this column1 || '--' || column2 but when I tried to run the report it gave me an error and says all variables are not bound. (The query does work however in sqlplus) Currently I have managed to get by with column1 || '< /br >' || column2 but I would like both values on the same line.

    I have similar problem, my search is not working with the sql query below. Can someone tell me what wrong I am doing.
    I have 3 text fields for users to enter different search criteria, and I "GO" button to submit their search. Hope to see your reply soon. Thank you.
    select
    "BUSINESS_UNIT",
    "TURNKEY_PN_FORMULA_VER",
    "TURNKEY_DESIGNATOR_FLAG",
    "TECH_CODE_PREFIX",
    "TECH_CODE",
    "PART_NUMBER",
    "DESCRIPTION",
    "PKG",
    "NO_OF_LEADS",
    "METRIC_BODY_SIZE",
    "NO_OF_DIE",
    "NO_OF_WIRES",
    "WIRE_SIZE",
    "PB_FREE_FLAG"
    from "TURNKEY_CODES"
    where
    instr(upper("BUSINESS_UNIT"),upper(nvl(:P1_REPORT_SEARCH,"BUSINESS_UNIT"))) > 0 or
    instr(upper("TURNKEY_PN_FORMULA_VER"),upper(nvl(:P1_REPORT_SEARCH,"TURNKEY_PN_FORMULA_VER"))) > 0 or
    instr(upper("TURNKEY_DESIGNATOR_FLAG"),upper(nvl(:P1_REPORT_SEARCH,"TURNKEY_DESIGNATOR_FLAG"))) > 0 or
    instr(upper("TECH_CODE"),upper(nvl(:P1_REPORT_SEARCH,"TECH_CODE"))) > 0 or
    instr(upper("PART_NUMBER"),upper(nvl(:P1_REPORT_SEARCH,"PART_NUMBER"))) > 0
    or
    instr(upper("DESCRIPTION"),upper(nvl(:P1_REPORT_SEARCH,"DESCRIPTION"))) > 0
    or
    instr(upper("PKG"),upper(nvl(:P1_REPORT_SEARCH,"PKG"))) > 0
    or
    instr(upper("NO_OF_LEADS"),upper(nvl(:P1_REPORT_SEARCH,"NO_OF_LEADS"))) > 0 or
    instr(upper("METRIC_BODY_SIZE"),upper(nvl(:P1_REPORT_SEARCH,"METRIC_BODY_SIZE"))) > 0 or
    instr(upper("NO_OF_DIE"),upper(nvl(:P1_REPORT_SEARCH,"NO_OF_DIE"))) > 0 or
    instr(upper("NO_OF_WIRES"),upper(nvl(:P1_REPORT_SEARCH,"NO_OF_WIRES"))) > 0 or
    instr(upper("PB_FREE_FLAG"),upper(nvl(:P1_REPORT_SEARCH,"PB_FREE_FLAG")))> 0
    or
    instr(upper("PKG"),upper(nvl(:P1_W_PKG,"PKG"))) > 0
    and
    instr(upper("NO_OF_LEADS"),upper(nvl(:P1_W_LEADS,"NO_OF_LEADS"))) > 0
    )

  • SQL Report Region

    Hi,
    I am using apex 4.0.1 and I have a page with several SQL Report regions. The user can edit the data in the report regions by clicking a column that uses a href link to open a DML page in a modal window. The user can then amend some data in the modal window, press save which closes the modal window and uses the partial page refresh process to refresh the SQL report region. (Using apex.event.trigger('#SOME_REGION'),'apexrefresh')).
    If I navigate through the report to show rows 31-45 and then click on a href to edit a record. On pressing save, the report is refreshed but the rows displayed goes back to 1-15.
    How can I get the report to stay showing the rows 31-45?
    Cheers
    Paul.

    I believe this answers my question
    http://monkeyonoracle.blogspot.com/2010/11/refresh-report-region-and-pagination.html
    Edited by: pjturley on Jan 10, 2012 1:14 PM

  • How can i define the width of report column in report region ?

    Hi,
    I have report region and i want to have a static width for each column ( not based on column name of column data ), how can i do it ?
    Thanks in advance ,
    Yoel

    Can you provide more details pls? I am also trying to change widht of report columns and I do not see anywhere in reports atrributes where it allows me to do that...Thanks so much!

  • Erratic Report Region Behavior with Dynamic SQL Queries

    I'm running HTMLDB v 1.5.1.00.12 and I've noticed some odd behavior with report regions using dynamic SQL queries. Every so often, our testers will run a page containing a dynamic sql report region and get the following error, (despite the fact the query was working only moments ago and no other developer has touched it):
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    or sometimes
    failed to parse SQL query:ORA-01403: no data found
    The only solution I've found so far is to:
    1) Make a copy of the failed report region.
    2) Disable or delete the original failed report region.
    The new copy of the report region runs without issue.
    My search of the forums turned up the following two threads, but neither provided me with a clear explanation of the cause, and how to avoid it:
    ORA-06502:PL/SQL: numeric or value error: character string buffer too small
    Re: Import Export Error (ORA-06502)
    The columns being returned are below the 4000 character limit, and the rows being returned are far less than 32k in size.
    Could this have anything to do with the way HTMLDB is internally storing the PL/SQL used to generate the dynamic SQL Query? Is there any known issue related to this with that version of HTMLDB?
    This problem occurs without any discernable pattern or consistency, making it hard to determine where I should focus my efforts in tracking down the cause.

    Hi all,
    My report seems to be behaving correctly once i set it to "Use Generic Column Names (parse query at runtime only)" :)
    Cheers,
    Joel

  • Cell Padding in SQL Report Region

    I have what I hope is a simple question.
    I have a SQL Report region and I want to add more padding to the left and right sides of the table cell.  I don't want to change the style sheet because I don't want to affect other pages.  But I tried adding style attributes on the "Region HTML table cell attributes" field but I still can't get it to work.
    Can anyone give me an example of how I can do this?

    95665 wrote:
    Please update your forum profile with a real handle instead of "95665". And always specify your APEX version. What is it?
    I have what I hope is a simple question.
    I have a SQL Report region and I want to add more padding to the left and right sides of the table cell.
    "The table cell"? A single, specific cell within the report? All cells in a specific column or row? All cells in this report? Or do you mean padding around the entire report table?
    I don't want to change the style sheet because I don't want to affect other pages. 
    Create a page-specific style sheet using the Inline page CSS attribute (in 4.2) or a style element in the page HTML Header (previous versions).

  • How to create a report region which the first colomn is row selector column

    I want to create a report region and its first column is a row selector column. I have used select sentence to select some columns. But I do not know how set the first column to row selector column. I mean I want to do as follow. When a radio which is first column is chosen, it will return it's value of the column in the chosen row. Please help me! Thanks

    Hi unnamed,
    Suppose you have an id that identifies your record.
    Go to Report definiton, tab report attirbutes.
    Select the id of your record.
    Create a link to the page you want to go to.
    Hope this helps.
    If not, I suggest you to create a from with report, and analyze the way the wizard has generated it.
    Leo

  • 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...

  • Print out of Report Region dropping negative values

    I am very new to APEX (< 2 months) and don't have much of a programming background. I have created a report layout using BI publisher and made it available as a shared component in my APEX applicaiton. When I print the the report region, most of the data displays fine on the print out, but any amounts with negative values are suppressed. I can view the negative amounts just fine when they are displayed on the report region itself.
    It took me quite a while to get the style sheets from BI Publisher to work with APEX. I thought the two were supposed to be compatible. Does anyone know how to resolve the issue above or if their are any known compatability issues between BI Publisher and APEX? We are on APEX version 4.2.1.00.08 and BI Publisher version 11.1.1.

    This was indeed a bug. Response from Oracle:
    This issue has been noted by development as a bug and I have file bug 16224878 regarding your issue. The issue explained by development pertains numeric format string which wraps the negative value in angle brackets: < val > , and the report is treating this as a HTML tag and filters it out. It looks like this is happening only for classic report regions, i.e. report queries seems to support this type of numeric format mask.
    A work around would be to turn off printing for the classic report region and to provide a button to a report query for printing, using the same SQL for the report query as is used for the report region. Alternatively you could also use a different format mask.

  • Export for all rows of a Report Region

    Hi,
    I have a html region with a query button to restrict which rows get selected in a reports region below it.
    But I also want to have a link to export all rows in the report to a csv file. Button the report region may already
    have selected data in it that is not necessarily all rows in the report. Thus I guess I am wondering if I should
    create a whole separate hidden report region that will always select all rows in the query to relate the
    export link to? Or if I can someone use the current report region and select all rows for the export but
    not requery or change the currently displayed report regions results?
    Thanks in advance!

    Yes I just created a hidden report i.e. one with all columns set to
    APEX_APPLICATION.G_EXCEL_FORMAT = TRUE
    And then just create a javascript function to call the export routine...

  • Problem using CASE within SELECT in a standard REPORT region

    I'm trying to do a CASE-oriented SELECT within a standard REPORT region and the parser is rejecting the SQL statement.
    The code I'm using is the following:
    SELECT
    CASE
    WHEN INSTR(citation, '@') > 0 THEN
    SUBSTR(citation, 1, INSTR(citation, '@')-1)
    || ':'
    || SUBSTR(citation, INSTR(citation, '@')+1,
    LENGTH(citation) - INSTR(citation, '@'))
    ELSE citation
    END
    FROM citation
    WHERE obj_table_cd = 'FI'
    AND obj_id = :P41_FIND_ID
    ORDER BY CITATION
    The parser says the (case .... ) is invalid, use column alias. The query works correctly when using SQL_Developer and SQL*PLUS.
    My intention is to replace an '@' with ':' within the citation text. The standard citation format should have a colon, but this causes problems with AppExpress, hence the substitution situation.
    Any insights on this or on another way to achieve the purpose?
    Thanks,
    George

    George,
    You should give a column alias after the END of the case statement:
    SELECT
    CASE
    WHEN INSTR(citation, '@') > 0 THEN
    SUBSTR(citation, 1, INSTR(citation, '@')-1)
    || ':'
    || SUBSTR(citation, INSTR(citation, '@')+1,
    LENGTH(citation) - INSTR(citation, '@'))
    ELSE citation
    END citation_col
    FROM citation
    WHERE obj_table_cd = 'FI'
    AND obj_id = :P41_FIND_ID
    ORDER BY CITATIONSam

Maybe you are looking for

  • TS2755 Iphone 4s voice to text messaging has stopped working. Any information on how to correct this?

    Iphone 4s voice to text messaging suddenly stopped working. The little dots that appear while program is preparing to tranfer audio to text shake side to side and no text appear.

  • Word crashes when trying to open exported files from Acrobat.

    Hey. Im realy confused about this problem, I cant figure out if it a word problem or if it`s in Acrobat. When I try to open files in word that i have exported from pdf, word just hangs and goes in to "Not responding". I have tryed to uninstall office

  • ERROR MESSAGE IN PPOME TCODE AFTER UPGRADE TO ECC 6.0

    Hi Experts, I have a question. Recently our system went for upgrade and during testing phase we have found one issue. Error message is appearing in PPOME transactio code after upgrade to ECC 6.0 The screen is getting defaulted to Budget section and u

  • C3-01 screen smooth scrolling?

    any tips on how to get the screen to scroll smoothly? When I first got this I was told by several people it just takes time to get used to a touch screen & soon I would love it!  Well had it a year now & I still cant get it to scroll smoothly especia

  • Flash Player 10.2.153 constant hangs on Mac

    "A script in this movie is causing Adobe Flash Player 10 to run slowly." I got this CONSTANTLY. Constantly. Not just in Safari but also Firefox, Chrome and every single other browser. Even Firefox and Safari's special Flash Player process isolation d