Action links in JEditorPane like in Eclipse Editor

Hi! I'm desperately looking for help on this topic:
How to display a sort of link in a JEditorPane whose action is not to open a browser page but to display something in another JEditorPane?
I think it must be the same type of action as in Eclipse Editor, where you can control-click on a function name and instantly see its declaration.
Any ideas?
Thanks!

Problem is I need to pass the values of the prompts on the dashboard so that the analysis I navigate to is automatically filtered. This happens automatically with action links.
For Example:
Dashboard prompt: Category: Open
Narrative Report
# of Items 4
Clicking on 4 should navigate to a list report that shows the 4 # of items
Category Item
Open Item1
Open Item2
Open Item3
Open Item4

Similar Messages

  • Content action links like Edit, Delete...just disappear

    I am facing this unique issue for which I dont seem to find any helpful material.
    We are running Oracle® Application Server Portal 10g (9.0.4.1) on Linux.
    On several occasions and now a days often scenario, the pagegroups page of the Portal Navigator, which displays the action links like Edit, Delete, Export, View...etc just disappears and gives me or any content user no means to perform any action on the page groups or pages. This happens even when logged in as ORCLADMIN.
    Attimes the links work/come back if the cache is cleared but this is not always true.
    Do help me as this on an overall basis doesnt help maintain this website or its content and seems entirely a wasteful portal option, which I hate to admit at this point.
    Thanks, any help appreciated.
    Gayathri
    [email protected]

    Do you have one or multiple midtier instances in your environment? I have seen this problem with a multiple machine environment where the Web Cache Invalidation port causes problems on the instances when pages get cached. I ask because you mentioned clearing your cache sometimes helps.

  • Change / Delete action link & Printing in WDA

    Hi Experts,
    Q1. In one of my ALV table column i need to put link like this ' "Change" / "Display" '. Means in 1 column 2 Action LInk one is Change the other will be display. If user press on Change it will open another view in edit mode if user press on delete it will open the view in display mode.Also please tell what will be the domain of that field in the structure.
    Q2. Need a print button at the top of all the pages in my application with printing functionality. I am not sure it is psible in WDA or not. In few threads i read that we can achieve this using BSP & java scripting not with WDA.
    Can anyone please help me on this.
    Regards,
    Nik

    Q1.  You can't add two cell editors to the same column.  You will need to make these two separate columns.
    >Also please tell what will be the domain of that field in the structure.
    You don't need any field at all. You can add a column to the ALV output that doesn't exist in the underlying data dictionary structure.
    Q2.  Not currently possible.  There is print functionality in the ALV that uses the Adobe Document Services to output a PDF for printing of just the ALV content.  You can use the Print functionality in the browser itself.  SAP is currently developing print functionality like you describe targeted for possible inclusion in NetWeaver 7.02 (future features are always subject to change however).

  • Action Links vs. HTML Links - Can you make both open in a new window?

    We are creating some reports that and are trying our best to keep them short and to the point. My requirement is that I pull a list of top accounts based on prior year revenue values. That piece is covered. Now that I'm trying to make sure the sales force can get at the details faster I've linked the Account Name field to pull up the account details.
    I have done this first using the HTML method and it worked just fine but I found I ended up with a column that had to say something like "Go". Again I'm trying to keep the number of columns down as this is to be a dashboard type report at some point. I simply passed the target=top command to keep the list in the background and just pop open a new window which was ideal as they like keeping the list open behind the drill.
    Then I went in and swapped it out to an action link because it looked like I could just have the Account name hyperlinked and it would save me a column. The only thing now is that it seems to want to open in the same window.
    I guess my question is that can I either force the Action Link to open a new window when drilled or can I somehow put in an expression into the HTML HREF method to still drill off the account name. I didn't know if there was a way to do this via expressions or not.

    There is no such option in InDesign CS6. It has to be accomplished in Acrobat by use of a JavaScript, as I recall. You should ask in the Acrobat forums for more informations.

  • Obiee 11g 11.1.1.6 Action links not taking into consideration DashBoard Prompts

    I really hope someone can help.
    I have a dashboard with an analysis that has a column that is not shown but is prompted via dashboard prompts.
    This dashboard is a summary set of data and the column in question is deliberately exclude at the request of the users for clarity within the analysis.
    An example would be a pivot report that looks something like this.....
    OrgUnit
    Year 2010-11
    Year 2011-12
    Org 1
    5
    19
    Org 2
    7
    25
    Org 3
    3
    7
    With a Prompt on the dashboard for example pay grade set to a default value.
    The dashboard prompt works just fine and only the items prompted for are shown.
    However - the dashboard report has another report linked via an Action Link - that allows you to drill down on one of the values.
    The prompts on the linked report are Org Unit, Year and Pay Grade.
    clicking on the Year 2010-11 value for Org 1 I would expect only 5 results however every value for the year 2010-11 at Org 1 is returned and the prompt on pay grade is ignored - obviously as it not passed by the action link!
    How can I get around this?
    Is this a 'feature' of OBIEE as other similar tools I  have used take any top level prompts as explicit parameters for further drill downs - any help would be appreciated.....
    J.

    Hi,
    Yes, we do face this issue.There is no workaround for this issue as of now.
    Rgds,
    Dpka

  • Action Links - Browser Script

    Hi All,
    This has been a long process. I just wanted to use Action Links to open an external webpage based on a URL field that is stored in our data warehouse. The problem (based on my findings) is that external webpages can only be launched from OBIEE with a fixed part of the URL and then a query string section that follows the ? symbol. This is great if you are looking to launch a url with a query string (ie. google, cnn, etc.) but it doesn't help you if your url has no question mark.
    My first solution was to build a redirect asp page. I would point the URL to this asp page with the real URL positioned after the question mark. The asp page would strip out the query string from the end of the url and then launch that webpage. This works great but it relies on an asp page being stored somewhere on a server (by IT). I would rather take advantage of the out of the box action link functionality using OBIEE solely. So I started looking at browser scripts. I am so close but can't get the last bit to work.
    I have a function that looks like this:
    USERSCRIPT.Show_URL = function popitup(url){
    var url = c
    alert(url);
    My only issue is that this shows a comma at the beginning of the c variable. The c variable comes from the USERSCRIPT.parameter function sample that is in the USERSCRIPT.js file. Any ideas why there is a comma before my url? I tried using the replace function to get rid of it but it keeps erroring out saying 'Object doesn't support this property or method'.
    Much Appreciated,
    Mike

    I finally got this to work on my own with a bit of work.
    I borrowed some of the code for the displayparameters ootb function in the USERSRIPTS.js file but changed the variable that they have in the alert function from c to a. I then swapped out the alert function for the window.open function. This code now opens the url in my cell regardless of whether or not there is a ? in the url which in my case, there was not. I have set the parameter 1 to be the column value of the URL field.
    USERSCRIPT.Launch_URL=function(b){var c="";for(args in b){var d=args;var a=b[d];c+=""+d+""+a;c+="\n"};window.open(a,'name')};
    USERSCRIPT.Launch_URL.publish={parameters : []};
    Perhaps this will save someone else some time.
    Mike
    PS Oracle could have save me a lot of work by just allowing variables to be passed into web page url's without the requirement of a question mark. Easy nice enhancement they should incorporate into next release.
    Edited by: user8030589 on May 24, 2013 10:48 AM
    Edited by: user8030589 on May 24, 2013 10:49 AM

  • OBIEE 11g Drill Hierachies & Action Links

    Hi Everyone,
    Apologies if this has already been covered in another thread.
    I have create a level based hierachy and a report with 2 columns.
    Type1, #
    When following the drill path the heirachy/report is as follows...
    Type1,#
    which drills to
    Type1, Type2,#
    which drills to
    Type1, Type2, Type3, #
    The problem, I would like to create an Action Link (navigate to BI content) on the Type3 column once at the detail and final level in the drill.
    To provide further context, I have tried saving the Action link the as the default interaction for the type3 column however our version of obiee is saving/remembering the interaction choice but not the action link itself.
    Any ideas??
    Thanks

    1. Did doing this one time create a permanent fix for you?
    - Yes , The reason what I assume is XML is very sensitive and gets corrupted easily if the OBI environment is unstable.
    So in my case since the number of master-detail reports was less - I actually recreated those reports. Filters were being Protected. This fixed our issue.
    DO take the backup before modification.
    2. Why does the protected filter help? Should we always use protected filters when navigating using an Action Link?
    -No idea - As i was playing around to find the workaround - I happened to PROTECT the filters in the master reports and the trick worked out. I assume when filters are protected in master reports - OBIEE front end makes sure that actual filters are carried away when the master is navigated to detail despite XML of the master-detail setup is corrupted.
    3. What is an example of an unused front end object? I am unsure as to what this is.
    -Ohh- I wanted to say - Front end objects ( Reports , dashboards, Saved Filters , Actions, Agents etc which are NOT in use - or which are outdated ) can be removed.
    This makes the front end setup lighter and stable.
    Thank you.

  • OBIEE 11g Agent Includes Action Link Report Name

    OBIEE 11g Agent Includes Action Link Report Name
    I have a dashboard page with multiple reports. One of the reports has Action Links to drill to another report. When I view the dashboard as a web page, the report with the Action Links look fine. The link fields are colored blue. When I send this dashboard page as an HTML email, it shows the Action Link report name in the cell with the other data.
    The dashboard page sent out as an agent should look the same as the web page and the Action Link report name should not be visible.
    Any ideas?
    Thanks!
    Eric

    So you spoofed the values of the 2nd column to have the report act almost like a menu listing?
    if that's the case then check the data type of column 2, it should be set to HTML. Then you will just need to build your HTML tag within the column formula.
    Example below bins the year name into a Link HTML Tag:
    '<a href="http://'|| CASE  WHEN "Time"."T05 Per Name Year" = '2011' THEN 'www.google.com' WHEN "Time"."T05 Per Name Year" = '2012' THEN 'www.yahoo.com' ELSE 'www.apple.com' END || '" target="_blank" > ' || CASE  WHEN "Time"."T05 Per Name Year" = '2011' THEN 'www.google.com' WHEN "Time"."T05 Per Name Year" = '2012' THEN 'www.yahoo.com' ELSE 'www.apple.com' END || '</a>'
    if that is not what you are attempting to do, please clarify.

  • Issue Action links,Column sorting in OBIEE(11g) 11.1.1.7.0

    Hello everyone,
    I want to provide the feature column sorting to my users but i dont want to provide any feature to users when they click on right mouse button.When we click on right mouse in action link column value it is giving the "action links","include/exclude columns" options etc.
    I disabled the do not display the action link report name in the column properties.
    Also disable the  include/exclude columns options in the interaction XYZ properties of the view.
    But still i am not able to understand why these links are coming when i run the report from the dashboard.
    Please help me out here.
    thanks,
    prassu

    Hi Timo,
    I am using data control web services to get these attributes on to the jspx page. The table has the value property which is binding to the iterator( #{bindings.SUMMARY_LINES_ITEM.collectionModel}).
    The table has various coulmns like order no, status, request and so on..where Order no and status are converted to a cmd link which navigates to another page on a query.
    I don't understand how setting sorting to true in one of the columns can make it not found in the iterator! And I get the errors only if sorting is done first before querying(clicking on one of the values in a column to navigate to another page).
    Thanks,
    Sue

  • Can we place a link of an image in Eloqua editor?

    I want my managers to add the images on landing page that are not store in Eloqua. Is there any way we can place the link of the image in Eloqua editor?

    Hi Hammad,
    You can do this by adding a text box to your landing page, right clicking it, and selecting "Edit Source". In the source code, you can specify the link of your image, like this:
    <img src="http://imageurlgoeshere.jpg">
    You'll need to make sure the dimensions of the text box are as big as or bigger than the dimensions of your image so the image doesn't get cut off.
    Hope this helps!
    Ida

  • One JSP Coded in JSTL with an Action Link and a Form

    My JSP written in JSTL with an action link works fine. The checkboxes are well recognized ( I have a "form" specified in both the action mapping and form bean).
    <%@ page import="......common.pojo.user.User" %>
    <!-- Create a variable in scope called userRows from the Users object -->
    <c:set var="userRows" value="${requestScope.Users}" />
    <c:choose>
         <c:when test="${not empty userRows}">
              <!-- create a "user" object for each element in the userRows -->               
              <c:forEach var="user" items="${userRows}" varStatus="idx">
                      <c:choose>
                              <c:when test="${( idx.count+1 )%2==0}">
                                 <tr class="contentCell1">
                              </c:when>
                              <c:otherwise>
                                 <tr class="contentCell2">
                              </c:otherwise>
                      </c:choose>
                                           <td align="center">
                                                              <html-el:checkbox property="selectedUsers[${idx.index}].selected" />
                                                              <html-el:hidden property="selectedUsers[${idx.index}].id" value="${user.id}"/>
                                           </td>
                                           <td align="center"><c:out value="${user.createdByUserID}" /></td>
                                           <td align="center"><c:out value="${user.firstName}" /></td>
                                           <td align="center"><c:out value="${user.lastName}" /></td>
                             </tr>
              </c:forEach>
                        <tr>
                             <td colspan="6" align="left">
                                      <html-el:link action="/admin/selectUsers.do">Edit Selected Users</html-el:link>
                             </td>
                           </tr>
                   </table>
              </c:when>
              <c:otherwise>
                   <center><H1>No User Found.</H1></center>
              </c:otherwise>
         </c:choose>
    ......But, if I add another form (form B) with some textfield(s) and a submit button in between the opening <c:when ...> and <c:forEach ... > tag, I get the "runtime" JSP error: "cannot find bean: "org.apache.struts.taglib.html.BEAN" in any scope".
    The form B also works well. And varStatus="idx" and var="user" still work. The complaint points specifically to the <html-el:checkbox property="selectedUsers[${idx.index}].selected" />. The getter method for selectedUsers[0].selected can no longer be recognized:
    <%@ page import="......common.pojo.user.User" %>
    <!-- Create a variable in scope called userRows from the Users object -->
    <c:set var="userRows" value="${requestScope.Users}" />
    <c:choose>
         <c:when test="${not empty userRows}">
                                    <html-el:form action="/admin/findUsers.do">
                                               // many textfields and a submit button
                                    </html-el:form>
              <!-- create a "user" object for each element in the userRows -->               
              <c:forEach var="user" items="${userRows}" varStatus="idx">
                      <c:choose>
                              <c:when test="${( idx.count+1 )%2==0}">
                                 <tr class="contentCell1">
                              </c:when>
                              <c:otherwise>
                                 <tr class="contentCell2">
                              </c:otherwise>
                      </c:choose>
                                           <td align="center">
                                                              <html-el:checkbox property="selectedUsers[${idx.index}].selected" />
                                                              <html-el:hidden property="selectedUsers[${idx.index}].id" value="${user.id}"/>
                                           </td>
                                           <td align="center"><c:out value="${user.createdByUserID}" /></td>
                                           <td align="center"><c:out value="${user.firstName}" /></td>
                                           <td align="center"><c:out value="${user.lastName}" /></td>
                             </tr>
              </c:forEach>
                        <tr>
                             <td colspan="6" align="left">
                                      <html-el:link action="/admin/selectUsers.do">Edit Selected Users</html-el:link>
                             </td>
                           </tr>
                   </table>
              </c:when>
              <c:otherwise>
                   <center><H1>No User Found.</H1></center>
              </c:otherwise>
         </c:choose>
    ......

    Hi,
    your strtus config file looks like
    <form-beans >
    <form-bean name="manageAuditFindingsForm" type="com.lib.struts.form.ManageAuditFindingsForm" />
    </form-beans >
    <action
          attribute="manageAuditFindingsForm"
          input="/New.jsp"
          name="manageAuditFindingsForm"
          path="/manageauditfindings"
          scope="request"
          type="com.lib.struts.action.ManageAuditFindingsAction">
          <forward name="success" path="/AuditFindings.jsp" />
        </action>Thanks
    Edward

  • How to add action link to EPM FR

    I'm trying to add capability of linking to EPM FR by adding <registry> section in ActionFrameworkConfig.xml ,after that the content looks like this,
         <registries>
              <registry>
                   <id>HDPreg</id>
                   <name>Hyperion Directory Provider</name>
                        <content-type>epm</content-type>
                   <provider-class>oracle.bi.action.registry.epm.HDPRegistry
                        </provider-class>
                   <description>Hyperion Financial Reports Registry</description>
              <location>
              <path>http://epmfoundation:19000/workspace/browse/listXML</path>
              </location>
              <service-access>
              <account>EPM</account>
              </service-access>
         </registry>
    </registries>
    the xml file was valid that can be opened normally by IE.
    then I added the credential of "EPM" mapping to user admin who was given the administrator roles of FR,in fact i gave it all the roles under the financial report node in Shared Service.
    then I restarted the BI Server,and even restarted the computer. but when I added the action link by clicking the add new acliton link icon, an error occured said
    Trying to read a config value before initializing the reader
    and the EPM action link type was not shown in the action type list
    what else i should do to make it work?
    thanks
    Edited by: carry on 2012-11-9 下午7:11
    Edited by: carry on 2012-11-9 下午7:20

    Here is the correct format of ActionFrameworkConfig.xml.
    This is your EPM workspace/raframework location - <path>http://WinSvr64EPM:19000/raframework/browse/listXML</path>
    Thiis same EPM key need to create in credential store
    <account>
         <name>EPM</name>
         <description>Account used to access EPM.</description>
         <adminonly>false</adminonly>
         <credentialkey>EPM</credentialkey>
    </account>
    Below is my config file, it's working.
    <?xml version="1.0" encoding="UTF-8"?>
    <obi-action-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="afconfig.xsd">
    <aliases>
    </aliases>
    <registries>
    <registry>
         <id>HDPreg</id>
         <name>Hyperion Directory Provider</name>
         <content-type>epm</content-type>
         <provider-class>oracle.bi.action.registry.epm.HDPRegistry</provider-class>
         <description>Hyperion Financial Reports Registry</description>
         <location>
         <path>http://WinSvr64EPM:19000/raframework/browse/listXML</path>
         </location>
         <service-access>
         <account>EPM</account>
         <propagateIdentity>false</propagateIdentity>
         </service-access>
    </registry>
    </registries>
    <content-types>
    <content-type>
         <typename>epm</typename>
         <displayname>Hyperion Applications</displayname>
         <actionType>URLActionType</actionType>
    </content-type>
    <content-type>
         <typename>webservices</typename>
         <displayname>Web Services and BPEL Processes</displayname>
         <actionType>WebServiceActionType</actionType>
    </content-type>
    <content-type>
         <typename>misc</typename>
         <displayname>Mixed Services</displayname>
         <actionType>URLActionType</actionType>
    </content-type>
    </content-types>
    <accounts>
    <account>
         <name>WLSJNDI</name>
         <description>Account used to access WLS JNDI.</description>
         <adminonly>false</adminonly>
         <credentialkey>JNDIUser</credentialkey>
    </account>
    <account>
         <name>EPM</name>
         <description>Account used to access EPM.</description>
         <adminonly>false</adminonly>
         <credentialkey>EPM</credentialkey>
    </account>
    </accounts>
    </obi-action-config>

  • Use of action links in combination with hierarchy object in analysis

    Hi All,
    From OBI 11g release hierarchy objects are available in the presentation layer of OBI. We make often use of these hierarchy objects. We also make use of action links to drill down to a analysis with more detailed information. This more detailed analysis should inherit the values of the higher-level analysis. In combination with the hierarchy objects this can give problems.
    An example:
    Let's say we have the following atttributes:
    Hierarchy object date (year, quarter, month), a product column and # of units shipped measure. On the column # of units shipped we have defined an action link to a more detailed analysis.
    Now, let's say the user clicks on the year 2011 in the hierarchy object. The quarters for 2011 are shown. The 'normal' product column attributes contains 'Product A'. The user makes use of the action link that is available by clicking on the measure value of # of units shipped. He clicks on the value that is based on quarter 2 of 2011 and 'Product A'. The detailed analysis is set to filter the analysis on the product and date dimension. In this example the analysis is filtered on 'Product A' but not on the value Quarter 2, 2011. Hierarchy object values are not passed through on clicking on a action link.
    Is there any workaround for this issue? We want to make use of the hierarchy object but users expect to also pass the hierarchy object value to the underlying detailed analysis

    I am facing the same issue...
    First check it out:
    http://prasadmadhasi.com/2011/12/15/hierarchicalnavigationinobiee11g/
    http://www.rittmanmead.com/2010/10/oracle-bi-ee-11g-navigation-passing-parameters-using-hierarchical-columns/
    I solved it by using Go URL link. I pass value of hierarchy level (whichever level it is). For Year it is 2012, month: 2012-03.
    Now ugly part: in url I pass 2 parameters that refers to the same value : "Time"."Year"="2012", "Time"."Month"="2012"
    In target report I apply filter: "Time"."Year" "Is Prompted" OR "Time"."Month" "Is Prompted"
    This way in target report only one of filters will work : depending from which level you navigated from source report.
    If you decide use this approach be carefoul with URL syntax, remember about double quotes etc. In my case it was:
    Parameter : value
    PortalGo : [LEAVE EMPTY]
    path : %2Fusers%2Fweblogic%2FMIS%20EVAL%2FT_Target
    options : dr
    Action : Navigate
    col1 : "Time"."Year"
    val1 : [SELECT TIME HIERARCHY COLUMN]
    col2 : "Time"."Month"
    val2 : [SELECT TIME HIERARCHY COLUMN]
    Remember to:
    Remove “=” after PortalGo
    Surround value attribute with double quotes - e.g. @val1=”@{6}”
    After you "adjust" your URL text manually (unfortunatelly it won't be done automatically) it should look like:
    http://10.10.10.100:7001/analytics/saw.dll?PortalGo@{1}&path=@{2}&options=@{3}&Action=@{4}&col1=@{5}&val1=”@{6}”&col2=@{7}&val2=”@{8}”

  • Jbo:DataScroller - how to ensure 'First' and 'Last' action links appear

    I'm working in JDeveloper 10.1.3.5.0.
    I'd like to know if there's a way to ensure that the action links 'First' and 'Last' will appear, in addition to the 'Next' and 'Previous' ones (that is, assuming we're not already at the first or last range position).
    It seems as if the thing that determines whether or not they appear is the number of total range positions. I can't be certain, but it seems like the magic number is 1000. If there are fewer, then 'First' and 'Last' will appear, and if there are more, then they will not. It'd be great to be able to have control of this, though. Is it possible?
    Thanks
    Shea

    Encore is being phased out?  I would be surprised if Adobe did not offer some kind of DVD authoring solution in it's place.  I have not heard about this yet myself.
    I have a menu size issue because, despite my reported file size being under 4.7G, Encore continues to report a menu size problem.  Of course it doesn't say which menu or by how much it is exceeded.  When I build it to DVD it waits several hours before reporting that there is a space issue.  See below.
    There is a file called woodstock-1.mp4.  I can find no use of this clip at this point and it's not part of a timeline, yet Encore won't let it be deleted.  Encore reports it's still in use.  Surely there should be some way to track down any dependencies quickly.

  • How to add images to a report with action links

    I am working with Action Links between OBIEE 10.1.3.3 and EBS 11.5.10.2
    I would like to hide the action link URL with an image. Can someone point me to documentation for adding images to a report with action links.
    Regards,
    Manav

    I am working with Action Links between OBIEE 10.1.3.3 and EBS 11.5.10.2
    I would like to hide the action link URL with an image. Can someone point me to documentation for adding images to a report with action links.
    Regards,
    Manav

Maybe you are looking for

  • How do I Transfer songs from my iTunes library, without losing all the songs already on my iPhone?

    I have an apple iPhone 3G, and got some songs from youtube to mp3 into my iTunes library. I don't want to lose all the songs already on my playlist even though I want to sync the songs to my iPhone. Also, it won't let me drag the songs to the little

  • Opening jpegs in Camera Raw 4.1?

    I just received some jpegs from Getty and I decided to see what they looked like when I opened them using ACR as opposed to just opening them in PSCS3. What I found was that with the default settings the files from ACR had less saturation? The jpegs

  • Performance tuning of the XI System

    Hi Everybody, We are testing  the Interfaces in QA System and I see the messages are getting stuck when we have load. Is there any performance tuning which can be done to better the performance.. Can somebody suggest me the options? Helpful answers w

  • Modifying an "ssl-proxy-list" without disturbing the active sessions.

    Hello, I would like to know if it is possible to have two SSL modules installed in a CSS11503 with each one having it's own "ssl-proxy-list" ("ssl-proxy-list list1" and "ssl-proxy-list list2"), but the two lists (list1 and list2) are exactly the same

  • List of MenuUID's?

    Hi, Is there somewhere I can get a list of MenuUID's?  I did a search in the SDK but couldn't see a list anywhere. Thanks, Michael