Hyperlink Target without CrystalReportViewer?

Crystal Reports 2008 v 12.3.0.601
ASP.NET 2.0
Visual Studio 2005
I have a hyperlink in a report that I would like to open in a new window when clicked. I have heard of a Hyperlink Target property for CrystalReportViewer objects but my report isn't using a viewer. Is there any other way to accomplish this?

Not sure I understand;
You have a report
There is a hyperlink on the report
Normally, if you view the report and click on the hyperlink, you get the hyperlink result
You are not using the viewer - what would you click to fire the hyperlink? Or what event would fire the hyperlink?
Ludek
Follow us on Twitter http://twitter.com/SAPCRNetSup
Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Similar Messages

  • Hyperlink target Indesign CC Interactive PDF

    Hi,
    We're working on an Interactive PDF but strangely enough we suddenly can't work with hyperlink targets anymore. This means we can't make certain objects a hyperlink target so we can't navigate
    through the document as we were used to. Any idea of how this is possible and what we can do about it?
    Kind regards,
    David

    I usually start by creating my Hyperlink Destinations by choosing New Hyperlink Destination from the Hyperlinks panel menu.
    Then I create my hyperlink. In this case I started with a text frame:
    I chose to link to a Shared Destination (although you don't have to):
    You can test this in InDesign when the Hyperlink is selected:
    When you test it in your PDF, be sure choose File > Export > Adobe PDF (Interactive) so the hyperlinks will be properly exported.

  • Hyperlink target - open on new window

    Hello people
    I edited one field's hyperlink property to point to an asp page. As I run this report into the internet, I want to open the page on a new browser window. In html I could simply add target="_blank" option, but I don't know how to do this in Crystal Reports.
    Can anybody help me?
    thanks
    Fabio

    Thanks to [this|DBMGui Information about old non existent databases|forums.sun.com] Sun forum topic, I changed my asp page and now it works fine:
    instead of:
    Dim objViewer
    Set objViewer = CreateObject("CrystalReports.CrystalReportViewer")
    objViewer.ProcessHttpRequest Request,Response,Session
    now it is:
    Dim objViewer
    Set objViewer = CreateObject("CrystalReports.CrystalReportViewer")
    dim lstrHTML
    lstrHTML = objViewer.GetHtmlContent(Request, Response, Session)
    lstrHTML = Replace(lstrHTML, "target=""_self""", "")
    lstrHTML = Replace(lstrHTML, "sWindow=New""", "sWindow=New"" target=""_blank""")
    Response.Write(lstrHTML)
    tks
    Fabio

  • How to open hyperlink(target Webi report) in new tab in BOXI3.1

    Hi all,
    Currently we are using report link using hyperlink syntax between summary report and transaction report.
    We were able to open transaction report either new window or same window.
    *"<a href="http://<servername>:8080/OpenDocument/opendoc/openDocument.jsp?sType=wid;iDocID=108&sWindow=New&lsSEnterJOBID:="UserResponse([Query 1];"Enter JOBID:")"&lsSEnterAccount:="URLEncode([Account]) ">"[Description]"</a> * "
    Summary report(Source report) is having one parameter: JOBID
    Transaction report(Target report) is has two parameters: JOBID and Account
    Now our client requirement is target report needs to be shown in same window but in new tab.
    Is it posssible in BOXI3.1,if yes kindly provide me syntax.
    Thanks in advance,
    Subash
    Edited by: subaschandrabose sunkari on Aug 7, 2009 10:48 AM
    Edited by: subaschandrabose sunkari on Aug 7, 2009 10:50 AM
    Edited by: subaschandrabose sunkari on Aug 7, 2009 10:50 AM

    hi Bhargav,
    i have developed summary report in one tab and transaction report on other tab
    Summary report is developed on One data provider.
    ="<a href=http://Severname:8080/OpenDocument/opendoc/openDocument.jsp?sType=wid&iDocID=11234&sWindow=Same&sReportName=Transaction&lsSEnterJOBID:="UserResponse([Query 1];"Enter JOBID:")"&lsSEnterAccount:="URLEncode([Query 1].[Account]) ">"[Description]"</a>"
    sReportName=Tab name(report tab name we need to specify.

  • Hyperlinks (target="_blank") and buttons on same page problem.

    Another interesting problem.
    I have a hyperlink that is set to open in a new window (target='_blank') and execute the 'hyperlink1_action' on the server.
    The framework executes the javascript function 'hyperlink_submit' (in the formElements.js library) when a hyperlink is clicked. This function sets the 'target' property on the form and also creates a hidden field that identifies the hyperlink that was clicked.
    This works fine and a new window open up with the required data.
    However, now if I click a BUTTON on the ORIGINAL page, a NEW WINDOW pops up and the WRONG DATA is displayed due to the form target setting and hidden field that were created by the 'hyperlink_submit' function called prevously - ie. the changes to the form made by the 'hyperlink_submit' function are NOT rolledback/overwritten when the button is clicked. How annoying!!!
    Am I doing something completely wrong or what?
    Anyway, I feel better now. Have a nice day!
    Message was edited by:
    thepigs2
    OK. In the absence of any replies, I've come up with this superhack that I put at the end of the page which fixes the form...
    <f:verbatim>
    <script>
    var f = document.getElementById('form1');
    f.oldsubmit = f.submit;
    f.submit=function() { setTimeout(function(){resetForm(f);},250);return f.oldsubmit(); }
    function resetForm(f)
    f.target='';
    for( var i=f.childNodes.length-1; i >=0; i-- ){
    var n = f.childNodes;
    if (n && n.name)
    if (n.name.indexOf('_submittedField')>-1)
    f.removeChild(n);
    </script>
    </f:verbatim>

    Guillaume,
    The built-in tabular form feature only supports one tabular form on each page. You'll have to put the two forms on separate pages. Or use simple reports as the detail reports with edit links to an edit form page.
    Regards,
    Marc

  • Hyperlink target connects from Outlook e-mail to file in Oracle database

    Greetings.
    Due to lack of permissions, I cannot create text file on the UNIX server.
    This will not be changed.
    I have stored the file in the Oracle 11g database.
    I want to send e-mail from PL/SQL with attached file.
    No UNIX scripts at all.
    It is a big file.
    Thought crossed my mind.
    Can I send e-mail from PL/SQL containing a hyperlink which connects to the file stored in the Oracle database ?
    The link target is a file stored in the Oracle database.
    Has anyone done this before?
    Let me know your ideas.
    Thank you.

    Oracle Freq wrote:
    I want to send e-mail from PL/SQL with attached file.
    No UNIX scripts at all.Can be done using UTL_SMTP or the newer UTL_MAIL.
    Attachments to e-mails are just that - the contents of the file is attached to the body of the mail. The mail arrives at its destination, the mail reader recognises the attachment and enables it to be saved to disk (or opened/viewed).
    This is standard stuff.. see MIME for details on how to construct a message body that includes attachments.
    Can I send e-mail from PL/SQL containing a hyperlink which connects to the file stored in the Oracle database ?
    The link target is a file stored in the Oracle database.Yes. You need a web server that has been configured with Oracle "+access+" - the default is using Oracle's Apache server that includes a module called mod_plsql. This module enables the web browser to use a URL that refers to a web enabled PL/SQL procedure in a specific database schema - and pass parameters (as part of the URL's query string) to the procedure.
    You can also use Oracle EPG (Extended Procedural Gateway I think is what the acronym means). This provides a web server directly inside the Oracle instance via the XDB (integrated XML database) option in Oracle. It too has a mod_plsql type module that provides an interface (via http) to web enabled PL/SQL procedures.
    This procedure can be a "+document download+" procedure. Oracle provides a system procedure called WPG_DOCLOAD.download_file()+ that you can use inside that web enabled PL/SQL procedure. This will return the contents of blob/clob as a "file" to the web browser.
    For example, a download web-enabled procedure will simplistically look something as follows:
    create or replace procedure downloadFile( fileName varchar2 ) is
            b       blob;
            mimeType varchar2(50);
    begin
            select
                file_content, mime_type  into b, mimeType
            from my_documents where file_name = fileName;
            OWA_UTIL.mime_header( mimeType, false );
            HTP.p('Content-Length: ' || DBMS_LOB.getlength(b));
            OWA_UTIL.http_header_close;
            WPG_DOCLOAD.download_file( b );
    end;The URL will look something like:
    http://my-webserver.my-domain.com:7777/pls/ora/scott.downloadfile?filename=somefile.docwhere:
    scott.downloadfile = name of PL/SQL procedure
    filename=somefile.doc = parameter name values to pass to procedure

  • Systemd: starting service after graphical target without

    Hi there,
    I have a service that I want to start after X has been started.
    This is my service file:
    [Unit]
    Description=Run powersaving script depending on AC state
    After=graphical.target
    [Service]
    Type=oneshot
    KillMode=none
    ExecStart=/usr/bin/powersaving
    [Install]
    WantedBy=multi-user.target
    However, during boot I get the following error message:
    ~ systemctl status powersaving
    ● powersaving.service - Run powersaving script depending on AC state
    Loaded: loaded (/usr/lib/systemd/system/powersaving.service; enabled)
    Active: inactive (dead)
    Apr 07 07:16:14 thinkpad systemd[1]: Found ordering cycle on powersaving.service/start
    Apr 07 07:16:14 thinkpad systemd[1]: Found dependency on graphical.target/start
    Apr 07 07:16:14 thinkpad systemd[1]: Found dependency on multi-user.target/start
    Apr 07 07:16:14 thinkpad systemd[1]: Found dependency on powersaving.service/start
    Apr 07 07:16:17 thinkpad systemd[1]: Found ordering cycle on powersaving.service/start
    Apr 07 07:16:17 thinkpad systemd[1]: Found dependency on graphical.target/start
    Apr 07 07:16:17 thinkpad systemd[1]: Found dependency on multi-user.target/start
    Apr 07 07:16:17 thinkpad systemd[1]: Found dependency on powersaving.service/start
    ~ dmesg | grep powersaving
    [ 7.492597] systemd[1]: Found dependency on powersaving.service/start
    [ 7.492604] systemd[1]: Breaking ordering cycle by deleting job powersaving.service/start
    [ 7.492608] systemd[1]: Job powersaving.service/start deleted to break ordering cycle starting with graphical.target/start
    I found this thread which suggests to use display-manager.service instead of the graphical target.
    However, I start X manually using startx and no display-manager.
    So how can I run my service after starting of X without a display-manager?
    Thanks!

    I don't think your new version will work. Your new version will make your service part of multi-user.target and started after multi-user.target; so you are asking systemd to start your service after itself. In any case such attempts will start the service before startx. startx is a command that you run as an ordinary user, X has the special privilege to get root access (it has the suid bit set) and systemd is not involved in the process. I do not think that you can tell systemd to start a service after a command that you launch by hand; and I don' think it's the purpose of systemd. You are really asking to launch a daemon that needs root access as part of a command that you run as an ordinary user. One of the solution is to use sudo and put sudo /usr/bin/powersaving into ~/.xinitrc after having properly configured sudo.
    Last edited by olive (2014-04-07 08:34:32)

  • Hyperlink targets

    Simular post to my last one but still un-resolved. May have to break something. I have an article with a single (almost full frame) web overlay to an index.HTML file containg one hyperlink to another HTML file containing an image.  On page load the first HTML file looks great, but touching the link activates the in-app browser window to display. I just want it simply appear in the same space and NOT go to the in-app browser window.  Any help would be very much appreciated

    > Hi all
    >
    > Test site URL is
    http://myweb.tiscali.co.uk/22stephen/
    >
    > Regards
    <frame src="index.html">
    <frame src="index.html">
    <frame src="Title.html" name="topFrame" scrolling="No"
    noresize="noresize"
    id="topFrame" title="topFrame" />
    <frameset rows="*" cols="134,*" framespacing="0"
    frameborder="no"
    border="0">
    <frame src="Control.html" name="leftFrame" scrolling="no"
    noresize="noresize" id="leftFrame" title="leftFrame" />
    <frame src="main.html" name="frame1" id="frame1"
    title="frame1" />
    </frameset>
    </frameset>
    there is quite a bit of nonsense info there.
    two frames don't exist.
    the other three are topFrame, leftFrame, and frame1
    there is no frame with a name/ID of "main"
    to use what you have-
    Open the frameset document in dw.
    Double-click on one of the Flash Buttons in dw to bring up
    the dialog box to
    edit that Flash Button.
    The TARGET line should have a pulldown to select any one of
    the existing
    frames already filled in with their names. Pick one of them.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Connect to remote target without giving SYSDBA password

    Hi, I would want to script RMAN backup running from a Catalog Server using windows scheduled job which will backup target running in remote machine.
    Is there a way I can connect to the target in remote machine without giving the password in the script?
    Catalog server and target server are 11.2.0.3
    -Srini

    Hi, I created the wallet with UserA and now I want to put a scheduled job with a service account UserB but am not able to access the wallet.
    Its Windows 2008 and I have explicitly added the UserB as Full permission for the wallet file. The error message is below
    ORA-12578: TNS:wallet open failed
    Am pretty sure its a permission issue - but not sure how to provide the permission. UserB is in Admin Group, ORA_DBA Group, can log-in a batch job .........
    Any pointer greatly appreciated.
    -Srini

  • Hyperlink targeting a new window?

    Has anyone been able to determine how to target a hyperlink to a new window rather than the current one? Seems like this should be a basic function but it is missing from the inspector.
    Thanks.
    Dual 2.0Ghz PowerMac G5   Mac OS X (10.4.4)  

    Apnewbie -
    While the explaination isn't as clear as it could be,
    If you go to my main iWeb page it describes how to open your files, read the html code, etc.
    http://iweb.aardvarkland.com
    it basically describes manually editing the HTML.
    The problem with this solution is the fact that if
    you update the page, while I haven't tried it yet,
    iWeb will rewrite the HTML in affect deleting the
    changes that you have made. Do you really want to
    manually edit the HTML every time you update your
    site? I don't.
    Use MassReplaceIt as recommended on my page and it will make the whole job much easier!
    Apple should give the option of
    targeting a new window.
    Yes, but they DON'T. So manual editing is the only way.

  • Installing OWB runtime and targets without assistant?

    Can anyone tell me if it is possible to install all the repositories (Design repo, runtime repo) and the target schemas with a script, rather than using the assistants.
    We would like to automate the total installation of our DW solution as much as possible. Therefore, we are trying to also install the design repository, the runtime repository and the five targets using a script. No luck till now... The import of mdl and deploying of objects, mappings and flows using OMB scripting works fine... ;)
    Any suggestions?
    Koen

    What you need, is runtime on each instance that contains target locations.
    For the runtime environment, you need to download and install the server-side (on the HP-UX box) software.
    To avoid this, you might be able to use synonyms and db-links on your WIN XP box.
    Borkur

  • Software Targets Without Inventory

    I have installed OEM GC rel 3 on windows and have 4 database on the same box. 3 of the databases are in the same home, but only two database show up for the software target with inventory. In my databases, the one missing from the software target but is actually showing up in OEM.
    I have already refreshed the host configuration. DOes anyone have any ideas as to how I can get this database to register in the inventory.
    thanks
    Adrian

    emom.trc from .../oms10g/sysman/log
    there is one in .../oms10g/cfgtoollogs also
    2007-08-17 13:42:02,214 [EMUI_13_41_53_/console/database/instance/sitemap] ERROR em.console doGet.357 - java.lang.IllegalStateException: Response has already been committed, be sure not to write to the OutputStream or to trigger a commit due to any other action before calling this method.
    java.lang.IllegalStateException: Response has already been committed, be sure not to write to the OutputStream or to trigger a commit due to any other action before calling this method.
         at com.evermind.server.http.EvermindHttpServletResponse.sendRedirect(EvermindHttpServletResponse.java:1408)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:806)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:337)
         at oracle.sysman.eml.app.Console.doGet(Console.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:109)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:336)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:659)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    2007-08-17 15:00:18,773 [EMUI_15_00_18_/console/database/instance/sitemap] ERROR adm.BaseController getDatabaseId.302 - java.sql.SQLException: Io exception: Software caused connection abort: recv failed
    java.sql.SQLException: Io exception: Software caused connection abort: recv failed
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:286)
         at oracle.jdbc.driver.T4CStatement.execute_for_describe(T4CStatement.java:442)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:1003)
         at oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:462)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1109)
         at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1270)
         at oracle.sysman.util.jdbc.StatementWrapper.executeQuery(StatementWrapper.java:175)
         at oracle.sysman.util.jdbc.ConnectionWrapper.getDBID(ConnectionWrapper.java:2628)
         at oracle.sysman.db.adm.BaseController.getDatabaseId(BaseController.java:295)
         at oracle.sysman.db.adm.BaseController.getInstance(BaseController.java:224)
         at oracle.sysman.db.adm.inst.SitemapController.getBean(SitemapController.java:2285)
         at oracle.sysman.db.adm.BaseController.validateFileNameState(BaseController.java:1234)
         at oracle.sysman.db.adm.BaseController.handleEvent(BaseController.java:1146)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:577)
         at oracle.sysman.db.adm.RootController.handleRequest(RootController.java:174)
         at oracle.sysman.db.adm.DBControllerResolver.handleRequest(DBControllerResolver.java:114)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:781)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:337)
         at oracle.sysman.eml.app.Console.doGet(Console.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:109)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:336)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:659)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    2007-08-17 15:00:18,929 [EMUI_15_00_18_/console/database/instance/sitemap] ERROR jdbc.ConnectionWrapper getInstanceTimeZone.2824 - java.sql.SQLException: Closed Connection: Closed Connection
    2007-08-17 15:00:18,976 [EMUI_15_00_18_/console/database/instance/sitemap] ERROR perf.sitemap getBean.2289 - java.sql.SQLException: Closed Connection
    java.sql.SQLException: Closed Connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:239)
         at oracle.jdbc.driver.PhysicalConnection.prepareStatement(PhysicalConnection.java:928)
         at oracle.jdbc.driver.PhysicalConnection.prepareStatement(PhysicalConnection.java:824)
         at oracle.sysman.util.jdbc.ConnectionWrapper.prepareStatement(ConnectionWrapper.java:467)
         at oracle.sysman.util.jdbc.ConnectionWrapper.getDeltaTime(ConnectionWrapper.java:2753)
         at oracle.sysman.util.jdbc.ConnectionWrapper.getInstanceTimeZone(ConnectionWrapper.java:2842)
         at oracle.sysman.emo.model.OraInstance.<init>(OraInstance.java:194)
         at oracle.sysman.emo.model.OraInstance.<init>(OraInstance.java:223)
         at oracle.sysman.db.adm.BaseController.getInstance(BaseController.java:248)
         at oracle.sysman.db.adm.inst.SitemapController.getBean(SitemapController.java:2285)
         at oracle.sysman.db.adm.BaseController.validateFileNameState(BaseController.java:1234)
         at oracle.sysman.db.adm.BaseController.handleEvent(BaseController.java:1146)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:577)
         at oracle.sysman.db.adm.RootController.handleRequest(RootController.java:174)
         at oracle.sysman.db.adm.DBControllerResolver.handleRequest(DBControllerResolver.java:114)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:781)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:337)
         at oracle.sysman.eml.app.Console.doGet(Console.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:109)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:336)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:659)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    2007-08-17 15:01:59,962 [EMUI_15_01_59_/console/database/ob] ERROR eml.creds loadCreds.564 - CredsBean.loadCreds(): Error loading credentials: ORA-20206: Target does not exist: :host
    ORA-06512: at "SYSMAN.MGMT_TARGET", line 572
    ORA-06512: at "SYSMAN.MGMT_CREDENTIAL", line 2456
    ORA-06512: at line 1
    2007-08-17 15:05:18,731 [EMUI_15_05_04_/console/database/instance/sitemap] ERROR svlt.PageHandler handleRequest.639 - com.evermind.server.http.HttpIOException: Connection reset by peer: socket write error
    com.evermind.server.http.HttpIOException: Connection reset by peer: socket write error
         at com.evermind.server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:250)
         at com.evermind.server.http.EvermindJSPWriter.writeOut(EvermindJSPWriter.java:475)
         at com.evermind.server.http.EvermindJSPWriter.jspflush(EvermindJSPWriter.java:392)
         at com.evermind.server.http.EvermindJSPWriter.close(EvermindJSPWriter.java:363)
         at oracle.jsp.runtime.OracleJspRuntime.extraHandlePCFinally(OracleJspRuntime.java:1460)
         at database.instance._sitemap._admin._jspService(_admin.java:1778)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:275)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:222)
         at oracle.sysman.emSDK.svlt.PageHandler.render(PageHandler.java:1113)
         at oracle.sysman.db.adm.inst.SitemapController.render(SitemapController.java:2158)
         at oracle.sysman.emSDK.svlt.PageHandler.myRender(PageHandler.java:1173)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:597)
         at oracle.sysman.db.adm.RootController.handleRequest(RootController.java:174)
         at oracle.sysman.db.adm.DBControllerResolver.handleRequest(DBControllerResolver.java:114)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:781)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:337)
         at oracle.sysman.eml.app.Console.doGet(Console.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:109)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:336)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:659)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    2007-08-17 15:05:18,731 [EMUI_15_05_04_/console/database/instance/sitemap] ERROR em.console doGet.357 - java.lang.IllegalStateException: Response has already been committed, be sure not to write to the OutputStream or to trigger a commit due to any other action before calling this method.
    java.lang.IllegalStateException: Response has already been committed, be sure not to write to the OutputStream or to trigger a commit due to any other action before calling this method.
         at com.evermind.server.http.EvermindHttpServletResponse.sendRedirect(EvermindHttpServletResponse.java:1408)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:806)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:337)
         at oracle.sysman.eml.app.Console.doGet(Console.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:109)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:336)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:659)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    2007-08-18 00:00:09,256 [JobWorker 17774:Thread-35] ERROR em.jobs executeCommand.245 - OpatchUpdateLatest: Oracle MetaLink credentials are incorrect or missing. Click Patching Setup to set required parameters.
    2007-08-18 00:00:09,599 [JobWorker 17769:Thread-36] ERROR em.jobs executeCommand.370 - UpdateARUTables: Oracle MetaLink credentials are incorrect or missing. Click Patching Setup to set required parameters.
    2007-08-19 00:00:02,051 [JobWorker 19703:Thread-36] ERROR em.jobs executeCommand.370 - UpdateARUTables: Oracle MetaLink credentials are incorrect or missing. Click Patching Setup to set required parameters.
    2007-08-19 00:00:02,473 [JobWorker 19706:Thread-35] ERROR em.jobs executeCommand.245 - OpatchUpdateLatest: Oracle MetaLink credentials are incorrect or missing. Click Patching Setup to set required parameters.
    2007-08-20 00:00:02,198 [JobWorker 21639:Thread-35] ERROR em.jobs executeCommand.245 - OpatchUpdateLatest: Oracle MetaLink credentials are incorrect or missing. Click Patching Setup to set required parameters.
    2007-08-20 00:00:02,464 [JobWorker 21635:Thread-36] ERROR em.jobs executeCommand.370 - UpdateARUTables: Oracle MetaLink credentials are incorrect or missing. Click Patching Setup to set required parameters.
    2007-08-20 09:00:44,867 [EMUI_09_00_44_/console/connector/event/eventhostHomePg] ERROR mommanagedhost handleEvent.106 - pageForward null
    ....

  • Aiming targets without lookat

    Hi,
    I need to make a targeting system that progressively aims some object in the space from a fixed point (pratically pointing stars in the sky from Earth).
    Given 2 objects at different coordinates, I compute their angles on the XZ and YZ plane using Math.atan2(y1,x1). In this case I have no problem, even if some hints for using aVector3d.angle(anotherVector3d) could be really appreciated.
    My problem occurs when some rotation have been applied to the viewer axes, I cannot figure out how to obtain the local viewer Z axis respect to its world Z axis for calculating the angle between them.
    Please, can you help me? Thanks
    PS
    sorry for my poor English :)
    Message was edited by:
    fravalle
    Just for other people searching fast solutions, solved calculating heading, attitude and banking of the viewer. For more information see great documentation provided by Martin Baker on his website http://www.euclideanspace.com/

    Did you Refresh Host Configuration? This will update the Oracle Enterprise Manager repository with the current configuration information for your hosts. Select the hosts whose configuration information you want to update in the Oracle Enterprise Manager repository. Go to Deployments> Refresh Host Configuration

  • GridControl 10g2 : Software Targets Without Inventory on HP packages

    We are using Packages as fail over on HPUX. I think we have to install one agent per package and let it watch on the package local ip address only. The inventory is stored in a non default place. We don't have an inventory (oraInst.loc) on the default place /var/opt/oracle/. I tried adding the inventory location in OUIinventories.add. But it won't prevent the error. The manual states that if the default location failed it won't search for the additional locations. Can someone help?
    Mvg Andre Broers

    define oraInst.loc (or Inst.loc) as an environment
    varaible to point to the non-default location and try
    again.I have searched for an environment var to set. But couldn't find one. What is the correct name of the variable to set?
    Andre

  • How can I make hyperlinks work in InCopy when I export to PDF without using InDesign?

    I created an InCopy document with hyperlinks linking to other InCopy documents. When I exported to PDF, these hyperlinks don't work. Is there any way I can make these hyperlinks work without using InDesign? Thanks.

    beer and no prepress schrieb:
    If it's for the web, why not export to JPEG?  Why PDF?
    Terrible idea. In a JPG the text will not be alive, you loose all interactivity.
    And making JPGs with InDesign is not what the program is meant to make.

Maybe you are looking for