Enable email field on Interactive report

Hi,
I have a column that contains the contact email as well an other column that contains the website of the company both displayed on an interactive report .
Does anyone knows what I need to do to be able to:
1. Click on the email (on the report) and open the local email client to send an email
2. Click on the URL field (on the report) and open the default browser to visit that site
Thank you
YannisR

for the mail question, you would create a tag like this as a report column:
<a href="mailto:youremailaddress">Email Me</a> 
or with a subject
<a href="mailto:[email protected]?subject=DAMIFINOY">
Send Email</a> Thank you,
Tony Miller
Webster, TX
On the road of life...There are 'windshields', and there are 'bugs'
(splat!)
"Squeegees Wanted"
If this question is answered, please mark the thread as closed and assign points where earned..

Similar Messages

  • Is it possible to have editable text field in interactive report?

    Is it possible to have editable text field in interactive report?
    Thanks,
    Dip

    Hi,
    I followed your suggestion and defined an IR with apex_item.text columns and it works fine. Now however I face a new problem when I run the page and use the standard Search Bar:
    - Click on Actions/Filter
    - Select a column, for example the employee name.
    - Open the Expression field LOV: I correctly see the different names.
    - When I select one of the names, in the Expression field, instead of the name, I see:
    "<input type="text" name="f03" size="20" maxlength="2000" value="Eugene" />"
    Horrible!!!!!!
    Is there a way to see the name and not that expression? The same thing get downloaded, so it´s really annoying.
    Thank you very much in advance for your help!!!
    Regards
    Francesco

  • Enabling email fields

    Hi gurus i would like to know how can i enable the e-mail fields from interaction center webclient
    From interaction center on line i dont have any problem , but when i try to send an email in the web client the fields of the email are unaviable.
    any idea?

    Hi alejandreo,
    There is a "New" button right at the bottom of the e-mail screen .. Is that active ?
    If it is active and on pressing you still see the uneditable fields then we may have to check the configuration for the E -mail function profile assigned in your ICWC profile
    Regards
    Raj

  • Changing value of input field in interactive report

    Hi all,
    I have created interactive report. On 3rd list, i had calculated total for netwr filed and it is displayed at bottom.
    netwr field on list is editable. If value in netwr changed by user , value for total should be changed on same list.
    Can anybody help me out?
    Thanks and Regards,
    Rakesh.

    Hi Rakesh
    Within the third alv's usercommand, Try this code.
    FORM user_command1 USING r_ucomm LIKE sy-ucomm
           rs_selfield TYPE slis_selfield.
        CASE r_ucomm.
             WHEN 'EDIT'.
                 <code>
                 CALL METHOD <alv_instance>->refresh_table_display
                     EXPORTING
                     is_stable = <third_alv_internal_table>
                     EXCEPTIONS
                     finished = 1
                     OTHERS = 2.
      ENDCASE.
    ENDFORM.
    This will refresh the internal table each item a edit operation is done, after this write the code to find the sum.
    Thanks and Regards,
    Rinzy Deena Mathews

  • Filter on field in Interactive report to small/narrow

    In a interactive report I have the problem that the first (about) 30 positions of the values of one of the fields is not unique. So if you want to use the filter function it is impossible to know which value is selected. Is there a way to make these drop down select list wider for some fields?
    Any one?

    Found the ANSWER!!
    If I click on the little 'wheel' and click filter, I can choose other expressions. whooa!
    Marco

  • Custom date fields in Interactive Report

    Hi,
    I am using newly patched version of Apex - 4.0.2.00.06
    What I am trying to do is to have two datepicker fields P84_DATE_FROM and P84_DATE_TO in separate HTML region, on the page that has IR / Interactive Report, that will be filter in report source.
    In debug mode I noticed that values that are picked with datepicker are not binding in report sql.
    select * from calendar_x
    where
    date between to_date(:P84_DATE_FROM,'DD.MM.YYYY') and to_date(:P84_DATE_TO,'DD.MM.YYYY')
    Do I have to force submit on Go button before it executes gReport.search('SEARCH')? Is it the right way to go about this?
    Thnx,

    Hi Vish,
    I was informed by SAP few months back that Interactive Reports can not be enhanced with custom fields. I don't see any documentation regarding this.
    You may want to check with SAP also.
    Regards,
    Paparao Undavali

  • Adding new fields in interactive reports in Opportunity area

    Hi All,
         We have implemented SAP CRM 7.0 ( SP8) and we are using the interactive reporting available in the system.  When we try to build a custom report using the manage reporting link (which leads to a wizard), the wizard lets us choose between 34 available fields in opportunity area. The customer wants to include few more fields to this list like Prospect id, Opportunity id, Item descriptions which are standard fields but not available in interactive reporting. So I am trying to find out from where in system those 34 fields are configured and how I can add few extra fields to that list. 
    With EHP1, SAP has provided a interactive reporting enhancement workbench, but we are on SP8. So any help or information is highly appreciated.
    Regards,
    Manas.

    Hi Sven,
    Could you please let me know whether i can add SAP fields(like lead partner address) using Interactive Reporting Workbench  on to the Standard Leads Origin  Interactive Report .
    I am using Eph-2 Version of CRM .
    Basically i want to pull a field which is already  in the Lead Transaction on to the standard Interactive Report .
    Thanks
    With Best Regards
    Mamatha

  • Custom Z fields in Interactive reports

    Hi Gurus,
    We have enhanced the Opportunity Object using EEWB
    These fields are now not available in the Interactive Reports
    I have tried to create my own report using the 'Manage Reports' Work Center
    and saw that these fields are not available for picking in the report
    Is there anything i need to do inorder to make these fields pickable in the reports
    Regards,
    Vish

    Hi Vish,
    I was informed by SAP few months back that Interactive Reports can not be enhanced with custom fields. I don't see any documentation regarding this.
    You may want to check with SAP also.
    Regards,
    Paparao Undavali

  • Higlighting currency fields in interactive report

    I have an interactive report where two cells need to be highlighted if the values in these two cells are not equal. Both cells have the currency mask (FML999G999G999G999G990D00) in the column attributes. I have modified the sql for the first column based on info in this forum. However when I use the span tag to conditionally highlight the cell, the format mask is apparently overriden by the span tag in the SQL statement. Is there a way to have both highlighting and a currency mask on the same cell?
    SQL for report
    SELECT  CASE
                     WHEN TO_NUMBER (v.committed) < pwd.obligatedamt
                     THEN '<span style="background-color:yellow;">' || TO_NUMBER (v.committed) || '</span>'
                     ELSE
                        TO_CHAR (v.committed)
          END committed, ...Thanks,
    Kim

    Figured it out. Here is the revised code. Instead of using the Number / Date Format field in the column definition (in APEX) and the span tag in the select statement, put all the formatting in the select statement and leave the Number / Date Format field blank in APEX.
    SELECT  CASE
                     WHEN v.committed < pwd.obligatedamt
                     THEN
                           '<span style="background-color:yellow;">'
                        || TO_CHAR (v.committed, 'L999G999G999G999G990D00')
                        || '</span>'
                     ELSE
                        TO_CHAR (v.committed, 'L999G999G999G999G990D00')
                     END committed,  ....

  • Users Email Subscriptions of Interactive Reports, getting deleted

    Hi,
    We have apex 4.0.2 version instances installed in DEV, Test, Prod environments.
    We use the same app id across all the 3 environments
    eg: App no 200 is used in all the 3 environments.
    The users subscriptions for the interactive reports are getting deleted,
    when the App from Dev is moved to Test or Prod environments.
    Any ideas or suggestions ?
    Thnx

    Hi,
    I could able to get back the users subscriptions in the target environment with below procedure.
    In my scenariou i am moving the app 200 from Dev to Test environment.
    Step1: Export the app 200 from Test environment by selecting Export interactive Report Subscriptions to Yes in Export Preferences tab
    Step2: Extract carefully the wwv_flow_api.create_worksheet_notify code +(you will see more than 1 statements, if there are multiple users subscriptions)+ from the app 200.sql .
    Step3: Extract wwv_flow.g_flow_id and wwv_flow_api.g_id_offset initializer statements.
    Example below:
    In my scenariou i was testing with 1 interactive report user subscription
    begin
    wwv_flow.g_flow_id := nvl(wwv_flow_application_install.get_application_id,200);
    wwv_flow_api.g_id_offset := nvl(wwv_flow_application_install.get_offset,0);
    wwv_flow_api.create_worksheet_notify (
    p_id => 3351032625694541+wwv_flow_api.g_id_offset,
    p_flow_id => wwv_flow.g_flow_id,
    p_worksheet_id => 11045125897667191+wwv_flow_api.g_id_offset,
    p_report_id => 11046318922668871+wwv_flow_api.g_id_offset,
    p_owner => 'abc.def',
    p_email_subject => 'Primary Report test',
    p_email_address => '[email protected]',
    p_start_date => '2012.09.07.01:00:00',
    p_notify_interval => 'D');
    end;
    Step4: Import the app 200 from Development environment to Testing environment.
    Step5: Execute the above Example pl/sql in the Test environment sql prompt.
    Run the app in Test environment, You will see your interactive reports user subscription to the associated pages.
    Note: This procedure applies only when you have  app id same across all the enviornments

  • Referencing fields from interactive report

    Nevermind!
    Hi,
    I'm working with an interactive report for the first time and I'd like to direct the "edit" button for a record to another page so I can use that record's data in the new page. How do I get the other page to reference the record I selected in the interactive report?
    Thanks!
    Edited by: Tinlemon on Mar 19, 2009 11:36 AM

    Found my answer in the LINK COLUMN section of the Report Attributes

  • Enter in search field in Interactive report does not work

    APEX 3.2.1
    When I type a string in apexir_SEARCH field and clichk on OK button, the report behaves in a correct way - it adds a filter line and does filtering.
    When I type a string in apexir_SEARCH field and then <Enter>, nothing happens.
    The same behavior in IE9 and Chrome.
    Apparently, it's gReport.search('SEARCH') function actioned on apexir_SEARCH's keyup event that is fired, but I don't manage to get further.
    I have deleted all non-odp processes and created a test IR page, but there the behavior is still the same.
    Any idea what could cause this?
    Igor

    inspect the input element and see if it has something like this
    if($f_Enter(event)){gReport.search('SEARCH'); return false;}if not add this using javascript

  • Interactive Report Subscription emailing different dataset

    Hi All,
    I am having a bit of strange problem with subscriptions email on an interactive report.
    I have the report to email users every morning from an interactive report.  The dataset that is emailed is not the same as the report on the interactive report screen.  The variance between what is emailed and what is on the report screen page is quite large and it is not an issue of the data changing between the email fist going out and the report screen being viewed.
    Also, is there a way for a user to 'unsubscribe' from a report?
    Any help would be great,
    Thanks
    Chris
    APEX Version v:  Application Express 4.0.0.00.46

    Hello Becky,
    While exporting from DEV you should set NO for following options
    <li> Export Private Interactive Reports
    <li> Export Interactive Report Subscriptions
    Because, Private Reports and Subscriptions will be made by end-users and they will be made on Prod systems. So if you export them from DEV and import into PROD, then all private reports and subscriptions will be lost on PROD.
    Regards,
    Hari

  • Interactive Report Compute Field Creation Computation Formula

    I'm trying to create a compute field in Interactive Report in APEX 3.
    There are two fields: 'Plan Type' and 'Product Type'.
    I want to create Compute Field - 'My Check'
    Condition is as follows:
    If 'Plan Type' field value begins with 'FY11 AA' and 'Product Type' field value ends with 'ABC' then 'My Check' field value should be 'CHECK' else 'OK'.
    'Plan Type'-----------'Product Type'----------'My Check'
    FY11 AA123---------123ABC-------------------CHECK
    FY11 BB123---------123KKK--------------------OK
    FY11 CC123---------123ZZZ--------------------OK
    Would appreciate if you can write for me a computation formula for the case above.
    Thanks,
    Guy

    Hi Jari,
    Thanks for your formula.
    When I tried that, I got error as below.
    Actual formula entered:
    case when BH = 'Y' then
    case when SUBSTR(T,1,7) = 'FY11 OU' then
    case when SUBSTR(AL,-3) = 'REC' then
    'CHECK'
    else 'OK' end
    else 'OK' end
    else 'OK' end
    Error message:
    Invalid computation expression. then case

  • Download to email in interactive reports returns same sender as recipient

    Hello everyone
    I just upgraded to Apex 4 and is very happy with it, and I love the feature to download and send by email option in interactive reports, which makes life a little bit easier. However, when I send the mail, I get the same sender e-mail, as the recipient I entered.
    So when the mail with report arrives it says
    from: [email protected]
    to: [email protected]
    Instead of
    from: [email protected]
    to: [email protected]
    This is no dealbreaker, but it can confuse the customer that requested the report and think it might be something fishy with the attachment, thinking it's something bad like a virus.
    Is there any way to change this? Cannot find anything in the settings to change this.
    Sincerely
    Johnny
    Edited by: Johnny_Johnny on Aug 4, 2010 2:02 AM
    Spelling error in recipient :)

    Getting the same problem. Anyone found a solution or is this a bug

Maybe you are looking for

  • Schedule agreement - delivery schedule by IDoc

    Hi Experts, I have an issue with IDoc types Delins/Deljit. If customer send us a new delivery schedule for next weeks, the old lines are deactivated. System replace old lines instead of appending them. I found in documentation the field in Idoc which

  • BPM (IP) Error: "No object type found for this message [...]"

    For your info. I have searched SDN today for a solution to an error message found in XI message monitor (trx SXI_MONITOR) when sending a message to BPM: <b>No object type found for this message; check the activation of the corresponding process</b> W

  • JDev 10.1.2/Embedded OC4J / JDev generated Library path

    Hello! I migrated a JDeveloper 9.0.3.4 - Workspace and Project to JDeveloper 10.1.2. My application uses Struts 1.2.4 and Toplink 9.0.3. I don't want to migrate Toplink 9.0.3 to Toplink 10G (9.0.4.5) in that moment. Running my application on embedded

  • [SOLVED] Google Voice and Video plugin

    Cheers, I want to use my gmail account to voice/video chat within the browser. There are packages available for debian, ubuntu, fedora and suse and I'm wondering how to install the plugin for arch? If this is not possible, could you please point me t

  • Can't install ilite because stuff is open

    Can't install because imovie etc is running. Under force quit nothing is running. Want to install garage band from ilife 4 disk on g4 laptop