Mailto and HTTP in Reports

Some of my reports in iPortal show email ids and web urls.
How do I enable the Mailto and HTTP links so that clicking on the field (withMailto) opens the email client with the addressee email id and similarly (for http) open up another browser to display that site?

In the report wizard, select the report from sql query. In the sql statement you can mix html tags with sql accordingly. See below the example that comes with the PEOPLE_APP of Oracle Portal. Hope this helps.
SELECT
nvl(ltrim(FIRST_NAME | |' '| | MIDDLE_NAME | |' ' | | LAST_NAME), USER_NAME) name,
decode('(' &#0124; &#0124; KNOWN_AS &#0124; &#0124; ')', '()', ' ', '<BR>(' &#0124; &#0124; KNOWN_AS &#0124; &#0124; ')') knownas,
decode(TITLE &#0124; &#0124; '<BR>', '<BR>', ' ', '<BR>' &#0124; &#0124; TITLE &#0124; &#0124; '<BR>') title,
'<IMG SRC="'&#0124; &#0124; decode(IMAGE, '', PORTAL30.wwctx_api.get_image_path &#0124; &#0124; 'noimg.jpg', owa_util.get_cgi_env('DOC_ACCESS_PATH') &#0124; &#0124; '/' &#0124; &#0124; IMAGE) &#0124; &#0124;'">' image,
'' &#0124; &#0124; EMAIL &#0124; &#0124; '' email,
nvl(WORK_PHONE, '(No Phone)') WORK_PHONE,
decode(OFFICE_ADDR1 &#0124; &#0124; '<BR>', '<BR>', '', OFFICE_ADDR1 &#0124; &#0124; '<BR>') &#0124; &#0124;
decode(OFFICE_ADDR2 &#0124; &#0124; '<BR>', '<BR>', '', OFFICE_ADDR2 &#0124; &#0124; '<BR>') &#0124; &#0124;
decode(OFFICE_ADDR3 &#0124; &#0124; '<BR>', '<BR>', '', OFFICE_ADDR3 &#0124; &#0124; '<BR>') &#0124; &#0124;
OFFICE_CITY &#0124; &#0124; ' ' &#0124; &#0124;
OFFICE_ZIP &#0124; &#0124; '<BR>' &#0124; &#0124;
OFFICE_STATE &#0124; &#0124; ' ' &#0124; &#0124;
OFFICE_COUNTRY office_addr,
decode(MOBILE_PHONE, '', ' ', 'Mobile <B>' &#0124; &#0124; MOBILE_PHONE &#0124; &#0124; '</B><BR>') &#0124; &#0124;
decode(PAGER,'', '', 'Pager <B>' &#0124; &#0124; PAGER &#0124; &#0124; '</B><BR>') &#0124; &#0124;
decode(FAX, '', '', 'Fax <B>' &#0124; &#0124; FAX &#0124; &#0124; '</B><BR>') Other_numbers,
EMPNO,
USER_NAME,
'' &#0124; &#0124;
'<IMG SRC="' &#0124; &#0124; PORTAL30.wwctx_api.get_image_path &#0124; &#0124; 'tree.gif" BORDER="0" WIDTH="24" HEIGHT="24">' CHART,
NVL(ORGANIZATION, ' ') ORGANIZATION,
M_FIRST_NAME &#0124; &#0124; ' ' &#0124; &#0124; M_MIDDLE_NAME &#0124; &#0124; ' ' &#0124; &#0124; M_LAST_NAME managername,
nvl(to_char(HIREDATE, 'DD-MON-YYYY'), ' ') HIREDATE,
NVL(TO_CHAR(NO_OF_YRS), ' ') NO_OF_YRS,
nvl(HOME_PHONE,'(No Phone)') HOME_PHONE,
decode(HOME_ADDR1 &#0124; &#0124; '<BR>', '<BR>', '', HOME_ADDR1 &#0124; &#0124; '<BR>') &#0124; &#0124;
decode(HOME_ADDR2 &#0124; &#0124; '<BR>', '<BR>', '', HOME_ADDR2 &#0124; &#0124; '<BR>') &#0124; &#0124;
decode(HOME_ADDR3 &#0124; &#0124; '<BR>', '<BR>', '', HOME_ADDR3 &#0124; &#0124; '<BR>') &#0124; &#0124;
HOME_CITY &#0124; &#0124; ' ' &#0124; &#0124;
HOME_ZIP &#0124; &#0124; '<BR>' &#0124; &#0124;
HOME_STATE &#0124; &#0124; ' ' &#0124; &#0124;
HOME_COUNTRY home_addr,
nvl(to_char(DATE_OF_BIRTH, 'FMMONTH DD'), ' ') DOB
FROM PORTAL30_DEMO.PEOPLE_INFO_VW
WHERE EMPNO = :BEMPNO
AND DISPLAY_PERSONAL_INFO = 'Y'
null

Similar Messages

  • TS1702 I purchased 2 packages of gems for skylanders and only received 1 package. Got email receipts and tried to report problem on ipad2 and it keeps coming up with to many https redirects. Can anyone help? Just want my gems :).

    I purchased 2 packages of gems for skylanders and only received 1 package. Got email receipts and tried to report problem with link in email on my ipad2 and it keeps coming up with to many https redirects. Can anyone help? Just want my gems :).

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Error Message: The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. The request failed with HTTP status 404: Not Found.

    I have a web page that contains a ReportViewer control.  I am trying to display a report, which is an .rdl file located on the SSRS server, in this ReportViewer control.  I have set the ReportPath and ReportServerUrl correctly.  I am
    getting an error message.
    Am I suppose to use an .rdlc file rather than a .rdl file?  Does the web server configuration need to use a certain account?
     I am getting the following error message:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    The request failed with HTTP status 404: Not Found.

    Hi bucaroov,
    The error "The request failed with HTTP status 404: Not Found." means the ReportServerURL configured in the ReportViewer control is invalid.
    Please follow these steps to solve the issue:
    Logon the Report Server machine.
    Open the Reporting Services Configuration Manager.
    Copy the Report Server URL from 'Web Services URL'.
    Logon the application server(in this case, it is the server that host the web page), check if we can use the URL we got from step 3 to access the Report Server. If so, please replace the ReportServerURL in the ReportViewer control with this URL. If it is
    not available, could you please post the error message.
    Additionaly, we don't need to provide the extension for a server report. The ReportPath should be like: /<reports folder>/<report name>
    For more information, please see:
    Walkthrough: Using the ReportViewer Control in Remote Mode:
    http://msdn.microsoft.com/en-us/library/ms251669(VS.80).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • Logical AND in MDX Reporting Services Parameter

    Hi, I would like to implement logical AND on a cube parameter. I have seen examples of hard-coded logical AND in MDX.
    (http://salvoz.com/blog/2013/12/24/mdx-implementing-logical-and-on-members-of-the-same-hierarchy/)
    But I'm not sure how to apply this to a parameter's MDX dataset.
    Here is an example of the automatically generated MDX which uses logical OR:
    This is the drop down parameter:
    WITH MEMBER [Measures].[ParameterCaption] AS [Department].[Department].CURRENTMEMBER.MEMBER_CAPTION MEMBER
    [Measures].[ParameterValue] AS
    [Department].[Department].CURRENTMEMBER.UNIQUENAME MEMBER [Measures].[ParameterLevel] AS
    [Department].[Department].CURRENTMEMBER.LEVEL.ORDINAL
    SELECT {[Measures].[ParameterCaption], [Measures].[ParameterValue],
    [Measures].[ParameterLevel]} ON COLUMNS
    , [Department].[Department].ALLMEMBERS ON ROWS
    FROM [MyCube]
    And the demo report dataset is:
    SELECT NON EMPTY { [Measures].[CompanyTbl Count] } ON COLUMNS,
    NON EMPTY { ([Product Level No].[Product Level No].[Product Level No].ALLMEMBERS ) }
    DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM
    ( SELECT ( STRTOSET(@DepartmentDepartment, CONSTRAINED) )
    ON COLUMNS FROM [MyCube]) WHERE
    ( IIF( STRTOSET(@DepartmentDepartment, CONSTRAINED).Count = 1,
    STRTOSET(@DepartmentDepartment, CONSTRAINED), [Department].[Department].currentmember ) )
    CELL PROPERTIES VALUE,
    BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING,
    FONT_NAME, FONT_SIZE, FONT_FLAGS

    Hi,
    I can see there just one parameter @Department@Department in your script. But if you had two parameters that should return resultset affected by two parameters. You can do it as either select from subselect from subselect.
    Example 1
    SELECT
    {x} ON COLUMNS,
    {ROWS_SET} ON ROWS
    FROM
    (SELECT StrToSet(@Param1) ON COLUMNS FROM
    (SELECT StrToSet(@Param2) ON COLUMNS FROM
    [CUBE_NAME]
    Or crossjoin between 2 parameters
    SELECT
    {x} ON COLUMNS,
    {ROWS_SET} ON ROWS
    FROM
    (SELECT StrToSet(@Param1)*StrToSet(@Param2) ON COLUMNS FROM
    [CUBE_NAME]
    Jiri
    Jiri Neoral

  • How to show all view tab (Main Report and all Sub Report) in Visual FoxPro 9

    I use ActiveX from Crystal Report Developer XI for viewer in Visual FoxPro 9 and I already know how to show Main Report by using command:
    oRptRun=createobject("CrystalRuntime.Application")
    oRptView=thisform.oleRptViewer
    oRptOpen=oRptRun.OpenReport('MyReport.rpt')
    oRptView.ReportSource=oRptOpen
    oRptView.ViewReport
    Inside the MyReport.rpt there is two subreport name :
    1. MySubReport1
    2. MySubReport2
    My Question is :
    How to show all view tab (Main Report and all Sub Report) at the 1st time we call ViewReport?
    I try to using command :
    oRptRun=createobject("CrystalRuntime.Application")
    oRptView=thisform.oleRptViewer
    oRptOpen=oRptRun.OpenReport('MyReport.rpt')
    oRptSub=oRptOpen.OpenSubreport("MySubReport1")
    oRptSub=oRptOpen.OpenSubreport("MySubReport2")
    oRptView.ReportSource=oRptOpen
    oRptView.ViewReport
    but only show Main Report (view tab name : Preview)?
    Did I miss any command before I call oRptView.ViewReport?

    Your right, there is only one tab to view the report.
    To open the subreports you will need to click on them in the main report. I don't know of a way to open them programmatically like you are doing here
    http://diamond.businessobjects.com/robhorne</a>

  • Siebel 8117 and BIP Multilingual reports not working.....

    Hello,
    We went live with Siebel 8113 and BIP. We have Siebel Reports configured in 4 languages and the choosing the language and locale on report generation pick applet worked fine with correct translated report coming out.
    We have upgraded Siebel to 8117.
    Reports stopped working. Applied 8117 related BIP objects(only repository objects and seed data - ACR 719B) then default language, ENU, reports worked fine. But other languages are still generating ENU reports.
    Applied QF0703 in Tools (It has SIEBEL_BIP_8117 Extension SIF) and deployed the SRF.
    Only two things from 8117 BIP related items we missed.
    a) EIM Table related schema changes. This is of no use for us as we don't use EIM.
    b) LMU files were not imported into tools. Each time I tried to import an LMU, it gives an error that site "http://www.oasis-open.org/committees/xliff/DTD" is an invalid site. On checking in browser found that it should be https and changed it in one language XLIFF. Once the transport changed to http, comes an error that the patch is invalid".
    Not sure what is the importance of LMU OR how to get around it.
    Any suggestions are appreciated.
    -Ravi-

    Can anyone help me on this please?

  • Crystal Report and Dash Board Report templates

    Hi All,
    I was wondering can you help to find out few Crystal report and Dash Board report Templates for SAP Business One.
    This in order to give demo to customers.
    Link pointing to same is good enough. I have authorization to SAP portal and I have searched through it found only two template of Crystal report no Dash report templates.
    Regards,
    Aditya

    Hi Adit,
    For CR demo, you can use this youtube CR demo:
    http://www.youtube.com/watch?v=bKLtTDNpQMM
    For the CR sample templates donwload, you can check this link:
    http://scn.sap.com/thread/1239521
    If  you want to create the template by your self, you can check this link:
    http://scn.sap.com/thread/1627677
    For dashboard sample, you can download from this link:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0bd3605-e1ad-2d10-488d-f2e4fede1d46
    JimM

  • To find and open Crystal Reports using SI_Name & SI_PARENT_FOLDER

    Hi,
    I have been given the below properties and link, which uses Crystal Reports (I guess its using java integration)
    http://<portal server>/projectsportal/jsp/collaboration/deliverables/pdf_report.jsp?entity=1&Entity_Type=P&Key_Indicators=Y&LV_FROM_FY=&LV_TO_FY=
    The properties used are
    CMSName = 138.220.5.56:6400
    hostName= crystalprd
    authentication = secEnterprise
    #infoStoreQuery = SELECT * FROM CI_INFOOBJECTS WHERE ( SI_NAME = 'OrganizationReport' AND SI_PROGID = 'CrystalEnterprise.Report' AND SI_PARENT_FOLDER = 2000 )
    infoStoreQuery = SELECT * FROM CI_INFOOBJECTS WHERE ( SI_NAME = 'scorecard' AND SI_PROGID = 'CrystalEnterprise.Report' )
    I have to make few changes in the Crystal Reports.
    Please help me in finding out the report.  What is the location of the report ?
    Thanks in Advance for your timely help.
    Eswari.

    You have most of the info already here.  Just use Query Builder to pull back the rest of the object info and you'll have what you need.  I'm not sure which report you want, but either can be achieved in much of the same way.  You'll need to know the parent-child heirarchy for the folder structure to determine where this report sits.  once you have this info, open the CR designer and open the report from the repository navigating the folder heirarchy you found.
    1.  Open "Query Builder" from the start | programs menu on the server.  Depending on the version of XI you are using, the url will differ.
    2.  Execute a query similar to what you posted to bring back the info for the report object (not instances) with the name 'scorecard'. If multiple reports exist in different folders with the same name, they will all be returned.
    SELECT * FROM CI_INFOOBJECTS WHERE SI_NAME = 'scorecard' AND SI_PROGID = 'CrystalEnterprise.Report' and SI_INSTANCE = 0
    3.  Look for SI_PARENT_FOLDER attribute and query on this ID next.  That should give you the name of the parent folder the report sits within.
    SELECT * FROM CI_INFOOBJECTS WHERE SI_ID = <si_parent_folder>
    4.  You will need to keep querying for the parent in order to work your way up the folder tree.

  • Haw to execute and create a report in pdf format

    i have installed developer 10g and application forms & report 10g.
    I have used until noe application 1.0.2.2 and ina form to execute a report i have this istruction
    run_product(REPORTS,
         var_report,     
         SYNCHRONOUS,
         RUNTIME,
         FILESYSTEM,
         plid);
    where var_reprot is the name of my report (example test.rep)
    plid = paramlist (example Add_Parameter(plid,'MAXIMIZE', TEXT_PARAMETER, 'YES');
    add_parameter(plid, 'PARAMFORM', TEXT_PARAMETER, 'NO');
    add_parameter(plid, 'BACKGROUND',TEXT_PARAMETER, 'YES');)
    then i have execute regedit to change the variable
    FORMS60_REPFORMAT = 'PDF' TO OBTAI AUTOMACTICALY A REPORT in pdf.
    Now i have try to convert form and execute the same instruction but there is no result !!!
    There is a fast way to convert all button tha i have for the pdf printer in forms10g ???
    Thank's a lot for the suggestion !!!

    Please read the Forms and Reports Integration whitepaper
    (link below). That is a must-read for anyone working in Forms-reports
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • Hi there, i've just finish our schools year book (voluntarily) and it has 155 pages incl. front/backcover. This file has 1800 links a lot of photos and a few reports. everytime i go to save as PDF it freezers on page 66. i need the book printed in hi-res?

    hi there, i've just finish our schools year book (voluntarily) and it has 155 pages incl. front/backcover. This file has 1800 links a lot of photos and a few reports. everytime i go to save as PDF it freezers on page 66. i need the book printed in hi-res? im running out of "printing time" as we need it back to school by 10th december for 12th December distribution.
    what do i do? if i save it in low res pdf everything will be a blur...can someone please come to my rescue. i have a
    OS X version 10.8.2,
    Processor: 3.06 GHz Intel Core 13,
    Memory 4 GB 1333 MHz RAM
    Startup Disk is Moutain Lion
    my file is about 24 GB I Purchased a 32 GB USBA stik to save and send to printers.
    PDF made easy assistance please anyone out there....?

    I do not have InDesign so I can't help you there.
    Here is an article from Adobe:
    http://helpx.adobe.com/indesign/using/exporting-publishing-pdf.html
    Export an open document to PDF for printing
    Choose File > Export. 
    Specify a name and location for the file.
    For Save As Type (Windows) or Format (Mac OS), choose Adobe PDF (Print), and then click Save.
    When you select the Adobe PDF (Print) option, you cannot include interactive elements in the PDF. To export an interactive document to PDF, see Create interactive documents for PDF.
    Do one of the following:
    To use a predefined set of job options, choose a preset from the Adobe PDF Preset menu.To create a PDF/X file, either choose a PDF/X preset from the Adobe PDF Preset menu, or choose a predefined PDF/X format from the Standard menu.To customize options, select a category from the list on the left and then set the options.
    For Compatibility, choose the lowest PDF version necessary to open the files you create.
    Click Export (Windows) or Save (Mac OS).
    To reset options to the default, in the Export Adobe PDF dialog box, hold down Alt (Windows) or Option (Mac OS) and click Reset. (The Cancel button changes to Reset.)

  • Solution and Service level Reporting in Solution Manager

    Hi All,
    I have got some requirement , can anyone please provide me the link/blog regarding Solution and Service level Reporting.
    Thanks,
    vk

    Hi,
    got confused since previous you said it was enterprise service report,
    https://websmp207.sap-ag.de/~form/sapnet?_SCENARIO=01100035870000000202&_SHORTKEY=01100035870000742027&_OBJECT=011000358700000999072011E
    the Following SAP notes
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1442799
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1250529
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1391968
    Thanks
    Jansi

  • Show filename and path of report on dashboard

    Is it possible to (automatically) show the filename and path of reports on a Dashboard?

    hi,
    we do that using Usage Tracking
    Refer : http://obiee101.blogspot.com/2008/08/obiee-setting-up-usage-tracking.html
    Thanks,
    Saichand.v

  • 340 and 347 tax reports

    Hello,
    There are some changes needed to be applied for doing 340 and 347 tax report in Spain from Febrary 2012.
    Is there any note to apply this changes?
    Thanks a lot

    Hi
    Check this link,
    https://issues.openbravo.com/print_all_bug_page.php
    check this note 0018738, 0018976, 0018974, 0018824, 0017140, 0012436, 0019450, 0019457,0019453,0019444,0019259,0019420,

  • Office Telemetry Agent Last Run Result 0x800700005 and machines not reporting back in the Telemetry Dashboard

    We have had the Office Telemetry Dashboard setup for a while now as part of our Office 2013 evaluation and it currently reports back on 117 Computers which roughly matches up with the number of agents we have deployed. However, I have recently discovered
    that some computers do not show up on the dashboard when searching under either their computer name or username. Having looked locally at these machines they report a Last Run Result code of 0x800700005 on the Task Scheduler. Not exactly sure what this
    means as I know its a fairly generic code. I can run the telemetry dashboard locally on the effected machines and all appears ok. I have looked at the main Telemetry Processor Log file on our server (%windows%\ServiceProfiles\NetworkService\AppData\Local\Temp\dperrorlog.txt)
    and can see there are quite a few machines reporting that Office Telemetry Processor deleted the folder \\ServerName\SharedFolderName\ComputerNameReference because the files in the folder haven't been uploaded for more than 2 hours. I tried googling this error
    but got nothing back.
    The machines in question are running Windows 7 Enterprise SP1, Office 2013 and the telemetry agent is configured through Group Policy. We also have a number of Office 2007 clients
    running the agent but I have not yet checked to see if any of these ones are not reporting back.
    Can anyone help troubleshoot this issue further to try and establish why some machines are not showing up in the dashboard logs. I have gone through the troubleshooting info here http://technet.microsoft.com/en-us/library/jj219431.aspx#tshooting
    but so far can't find a solution.
    Thanks.

    I tried running the agent as admin and it returned a last run result of 0x41301 which I believe means the Task is currently running but its been like this for several days with nothing being reported back yet.
    For all the other agents that appear to be running fine they show up on the dashboard with each non-admin username which is what we need to run reports based on individual users so I cant understand why this would be a permissions problem. The permissions
    on the shared folder were setup using the automated option when installing the telemetry processor on the server. I have tried just adding in one of the problem users to have full control to see if this makes a difference but have not tested this yet.
    Anyone have any tips on troubleshooting the DPErrorLog file? There doesn't appear to be much out there in the way of documentation for this stuff. Is anyone else using the Telemetry Dashboard successfully as part of their Office 2013 evaluation? 
    Thanks.

  • What is the mean of standard and HTML in report generation?

    What is the mean of standard and HTML in report generation?  I  need your help.Thank you!
    1110340020

    check these links for your query they will help you
    http://www.ni.com/white-paper/13926/en/
    http://www.ni.com/example/27568/en/

Maybe you are looking for

  • WBS element- Sales Order

    Dear Gurus, In WBS element If dont tick on Billig element system will not allow assign this WBS element while creating a Sales Order. How it is happening,where can i find out these settings. Cheers, Sumith

  • Android devices not getting push notifications after a while

    We have just installed a new Exchange 2013 setup and started to move mailboxes across. Users that have Android devices though are noticing that push notifications are not reaching them and checking in the ECP I can see their last sync times are a lon

  • How to reference the class-instance, created in parent class.

    Hi, I have following scenario. During compilation I am gettting error message -- "cannot resolve symbol - symbol : Variable myZ" CODE : under package A.1;      ClassZ      Servlet1           ClassZ myZ = new ClassZ; under package A.2;      Servlet2 e

  • I have iLife but no iWeb

    Why can I not find iWeb? I have iLife and iWeb is suppose to be with it. What's up?

  • Batch determination at del level

    Hi Gurus, I am tryin to understand the config for Batch determination at delivery level. The batch is determined thru condition record maintained in VCH1. But when i go to this transaction,i dont see any place where the batch is maintained. Pl explai