Creating dynamic link in column

Hi All,
I am using Jdev 11.1.1.2.0 . I am getting few urls that is comma seperated. I need to seperated different URL from the value and create no of link or golink equal to no of the value.Please suggest me how to do this.
I need to create dynamically link and put diffent url value in destination property of Link
How can i create dynamically link .

I created a sample app for this. Please see if it is helpful.
http://adf-use-cases.googlecode.com/files/LinkApp.rar
I am displaying all the employees(first name) in a department as link. For now, the link is pointing to google. You can change according to your requirement.
The code is written in DepartmentVORowImpl.java
+public String getEmployeeName() {+
RowSet rowSet = getEmployees();
RowSetIterator ritr = rowSet.createRowSetIterator("new");
StringBuilder formattedLink = new StringBuilder("");
String requestURL = "http://www.google.com";
String hrefPrefix = "<a href='";
String targetProp = "' target='_blank' class='xfd' >";
String hrefSuffix = "</a>";
String employeeName = null;
+while (ritr.hasNext()) {+
Row row = ritr.next();
formattedLink.append(hrefPrefix).append(requestURL).append(targetProp).append(row.getAttribute("FirstName")).append(hrefSuffix).append(" | ");
ritr.next();
+}+
ritr.closeRowSetIterator();
rowSet.closeRowSet();
if (formattedLink != null && formattedLink.length() > 0)
employeeName =
formattedLink.substring(0, formattedLink.lastIndexOf(" | "));
return employeeName;
+}+

Similar Messages

  • How to create dynamic links in one page with div panels

    HI
    I am using Dreamweaver CS3 with developer toolbox.
    I have a PHP page where I have two separated tabbed div
    panels.
    I want to show dynamic summary of data from database in one
    panel.
    In the other panel I have a table with dynamic text.
    I want to click on a link in the first panel with the summary
    data and see the whole record in the other panel table.
    How do I tell the dynamic link to send the wuery and show the
    data in the detailed panel without having to reload the whole page.
    I hope I am clear enough....
    Idan Agmon

    I asked something similar to this last week and was told by
    others much more experienced that it couldn't be done. Hopefully
    your quest will yield something.

  • How to create Dynamic Links

    Hi all,
    I have a table (let's call it Links) of structure like the following:
    Link_Lable varchar2(100),
    Link_Page_ID varchar2(5)
    How can I use rows in that table to generate a dynamic links so that when a Link_Label is clicked, the engine redirects to page of the value stored in the clicked Link_Page_ID?
    Any guideline is appreciated.

    See
    http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b14377/rprt_drill.htm

  • How to create dynamic link which point to a BLOB column in report

    Hello,
    I am fighting with the issue for about 2 days.
    My purpose is to use Oracle Report Builder to build a report of our employee directory which contains employee's information and also employee's picture. The requirement is that our report is going to generate a html file to our web server. By creating a dynamic hyperlink to the Employee's name in the report output file (the html file generated to our web server), it should then display the corresponding employee's picture which is a BLOB column stored in our oracle database.
    I only can create the hyperlink for the employee's name if the link is static, like 'http://www.google.com
    But from the Oracle Reports 10g Release2 (10.1.2), about the exmaple 1: Dynamic hyperlink, I refered the link
    http://www.oracle.com/webapps/online-help/reports/10.1.2/state/content/navId.3/navSetId._/vtTopicFile.htmlhelp_rwbuild_hs%7Crwcontxt%7Cprops%7Cpi_lay_hyperlink%7Ehtm/
    The link gave he following example shows a value for the Hyperlink property that specifies a link to a destination identified dynamically:
    'DEPT_DETAILS_' || LTRIM(TO_CHAR(:DEPTNO))
    where :DEPTNO is a column value retrieved from the database at runtime.
    I tried as the same way to want it dynamcially shows the column :EMP_PHTOT, which is one BLOB column, but it was failed.
    Anyone knows how to implement this? Any inputs is appreciated!
    Thanks,
    Jing

    What exactly is the error messag u are getting ?
    If u have a hyperlink which refers to www.oracle.com in ur pdf, does it work ?
    I think simple URL from PDF will not retrieve any data from the oracle database since it has to make some database connection.
    My suggestion would be whenever request for employee information comes,
    extract that picture from blob and put it a virtual folder in the application server.
    And from the pdf/report access the URL with reference to the picture...
    Rajesh Alex

  • Creating Dynamic hierarchical  Data Columns

    Hi All,
              I have to create a plan layout like figure below :
                                Oct...............Oct...............Oct...............Oct...............Nov...............Nov...............Nov...............Nov
                             Week1...........Week2..........Week3..........Week4.........Week1..........Week2...........Week3..........Week4
               P1
               P2
               P3
               P4
    Here for each calmonth i am showing 4 weeks to enter data. for calmonth i am using 0CALMONTH and for week i m using my own defined object say RCALWEEK.   P1.... are my products.  How i will achieve this in BW BPS.
    Regards:
    Jitendra
    Edited by: Jitendra Gupta on Sep 12, 2009 12:03 PM

    Hi,
    I'm not sure about how your end users are flexible .
    Will they agree ig you craete a dynamic column on week with data displaying as week & calmonth ?
    In this way it will be easy to carve out the layout design.
    I mean to say .
    week1 calmonth week2 calmonth week3 calmonth wseek4 calmonth
    If not then did you try out  hierarchy variables in Layout ?
    Thanks
    Pratyush

  • Creating dynamic link on each click

    Hey everyone!
    got another small issues... this is the last thing i need to
    fix to finish my project :-).. what im doing is creating a map that
    will allow you to click on a state and using PopUpManager, display
    data from that state (the data resides within an xml file).
    right now on each click, i run clickState="createPopUp()".
    the createPopUp functions runs and initializes the http service to
    grab the xml file. in the result handler.. i have it grab the data
    for the state. the problem is, i cannot figure out how to make it
    dynamic so that when u click on one state it grabs the name and
    then uses the name to grab the data from the xml file. for example,
    right now it always grabs event.result.venuelist.michigan but i
    want it to grab event.result.venuelist.stateName so its dynamic (or
    something like that). Thank you so much for the help!!!
    Here is the result handler that grabs the info from the
    xml... here i just set it to grab the data for michigan to make
    sure it was working..
    quote:
    public function resultHandler(event:ResultEvent):void {
    /* var icon:Object = map.target.selected.name; */
    arrcol = event.result.venuelist.michigan as ArrayCollection;
    dg.dataProvider = arrcol;
    Here is the code for creating the popup... i tried to use
    this.selectedItem.name to grab the name of the state but it didnt
    work. i did it in an alert box to test if it was grabbing the name.
    quote:
    public function createPopUp():void {
    var icon:Object = this.selectedItem.name;
    var state:String = icon;
    Alert.show(state, 'Alert Box', mx.controls.Alert.OK);
    getXML.send();
    PopUpManager.addPopUp(panel, this, true);
    PopUpManager.centerPopUp(panel);
    Here is the entire code... there are two xml files... one
    inline and one external... the one inline which is shown below
    contains the name for each state in the <name></name>
    brackets... that is the info i need to grab once i click so i can
    grab the info for that state from the external xml file. (i left
    out some states from the populationdata xml to shorten the code for
    posting)
    quote:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*" layout="absolute" backgroundGradientAlphas="[1.0, 1.0]"
    backgroundGradientColors="[#FFFFFF, #FFFFFF]" width="739"
    height="481" creationComplete="init()">
    <!--<mx:XML id="list"/>
    <mx:HTTPService id="getXML" url="VenueList/list.xml"
    resultFormat="e4x" result="list = XML(event.result);"/>-->
    <mx:HTTPService id="getXML" url="list.xml"
    result="resultHandler(event)" resultFormat="object"/>
    <!--
    The populationData contains elements for each state: the
    state code (eg, "ca")
    and the data (population). This data set assumes you will
    color the map based on
    a colorFunction (see below). Alternatively, you can supply a
    color for each state
    directly in the model: <color>0xffcccc</color>
    -->
    <mx:XML id="populationData" format="e4x" xmlns="">
    <list>
    <state><name>California</name><code>ca</code><present>0</present></state>
    <state><name>Texas</name><code>tx</code><present>1</present></state>
    <state><name>NewYork</name><code>ny</code><present>1</present></state>
    <state><name>California</name><code>fl</code><present>0</present></state>
    <state><name>California</name><code>il</code><present>1</present></state>
    <state><name>California</name><code>pa</code><present>0</present></state>
    <state><name>California</name><code>oh</code><present>1</present></state>
    <state><name>California</name><code>mi</code><present>1</present></state>
    <state><name>California</name><code>ga</code><present>0</present></state>
    <state><name>California</name><code>nj</code><present>1</present></state>
    <state><name>California</name><code>nc</code><present>0</present></state>
    </list>
    </mx:XML>
    <mx:Style>
    global {
    modalTransparencyBlur: 0;
    modalTransparency: 0.6;
    modalTransparencyColor: black;
    modalTransparencyDuration: 500;
    </mx:Style>
    <mx:Script>
    <![CDATA[
    import mx.events.ListEvent;
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    import mx.containers.Panel;
    import mx.controls.Button;
    import mx.controls.Spacer;
    import mx.controls.DataGrid;
    import mx.containers.ControlBar;
    import mx.controls.dataGridClasses.DataGridColumn
    import mx.managers.PopUpManager;
    import mx.controls.Alert;
    import mx.events.ListEvent;
    public var panel:Panel;
    public var arrcol:ArrayCollection = new ArrayCollection();
    public var dg:DataGrid = new DataGrid();
    public var arr:Array = [];
    public function init():void {
    var d1:DataGridColumn = new DataGridColumn;
    var d2:DataGridColumn = new DataGridColumn;
    var d3:DataGridColumn = new DataGridColumn;
    var d4:DataGridColumn = new DataGridColumn;
    var d5:DataGridColumn = new DataGridColumn;
    var d6:DataGridColumn = new DataGridColumn;
    var b1:Button = new Button();
    var cb:ControlBar = new ControlBar();
    var s:Spacer = new Spacer();
    b1.label = "Click here to return to the map";
    b1.addEventListener(MouseEvent.CLICK, closePopUp);
    s.percentWidth = 100;
    cb.addChild(s);
    cb.addChild(b1);
    dg.width = 638
    dg.height = 146
    d1.width = 150;
    d1.headerText = "Venue Name";
    d1.dataField = "name";
    d2.width = 150;
    d2.headerText = "Address";
    d2.dataField = "address";
    d3.width = 100;
    d3.headerText = "City";
    d3.dataField = "city";
    d4.width = 50;
    d4.headerText = "State";
    d4.dataField = "state";
    d5.width = 50;
    d5.headerText = "Zip";
    d5.dataField = "zip";
    d6.width = 100;
    d6.headerText = "Phone";
    d6.dataField = "phone";
    arr.push(d1);
    arr.push(d2);
    arr.push(d3);
    arr.push(d4);
    arr.push(d5);
    arr.push(d6);
    dg.columns = arr;
    panel = new Panel();
    panel.title = "Here are our venues:";
    panel.width = 658;
    panel.height = 222;
    panel.addChild(dg);
    panel.addChild(cb);
    public function resultHandler(event:ResultEvent):void {
    /* var icon:Object = map.target.selected.name; */
    arrcol = event.result.venuelist.michigan as ArrayCollection;
    dg.dataProvider = arrcol;
    public function closePopUp(evt:MouseEvent):void {
    PopUpManager.removePopUp(panel);
    public function createPopUp():void {
    var icon:Object = this.selectedItem.name;
    var state:String = icon;
    Alert.show(state, 'Alert Box', mx.controls.Alert.OK);
    getXML.send();
    PopUpManager.addPopUp(panel, this, true);
    PopUpManager.centerPopUp(panel);
    [Bindable]
    public var stateData:ArrayCollection;
    * This method uses the alpha setting to indicate mouseOver
    and mouseOut events.
    public function hilightState( event:*, alpha:Number ) : void
    map.setStateAlpha( event.code, alpha );
    * This method is invoked by the click event on the map. All
    this does is set the comboBox to
    * the state selected.
    public function selectState( event:USAMapEvent ) : void {
    var stateData:Object = map.stateData;
    for(var i:Number=0; i < stateData.length; i++) {
    if( event.code == stateData
    .code ) {
    break;
    * This method is used to set the color of a state based on
    the item given.
    public function dataColor( item:Object ) : Number {
    if( item.present > 0 ) return 0x2e81fe;
    else return 0xe9e9e9;
    ]]>
    </mx:Script>
    <mx:CurrencyFormatter id="currFmt" />
    <mx:NumberFormatter id="numFmt" />
    <!-- Set the USAMap and its initial properties:
    dataProvider - maps state codes to colors and valuesa
    dataField - indicates which field should be displayed in the
    dataTip
    formatFunction - specifies a function to use to present the
    data tip
    clickState - event handler invoked when mouse is pressed and
    released over a state
    rollOverState - event handler invoked when mouse is rolled
    over a state
    rollOutState - event handler invoked when a mouse is rolled
    out of a state
    -->
    <USAMap id="map" dataProvider="{populationData.state}"
    dataField="population" colorFunction="dataColor"
    mapLoaded="stateData = new ArrayCollection(map.stateData)"
    clickState="createPopUp()"
    rollOverState="hilightState(event,.5)"
    rollOutState="hilightState(event,1)" left="10" top="10"/>
    </mx:Application>

    Tracy, not again!!!! :)
    lastResult could be and should be used in AS.
    If you've got a race condition - there will be a
    desynchronisation between event & lastResult property. But it
    does not mean that you can't use it - you should take measures to
    prevent race conditions from occurring.
    Cheers,
    Dmitri.

  • Want to create dynamic link with ActionEvent

    Hi all,
    I am developing an application in JSF. I want to create links dynamically with their action event. I can create links dynamically, but I don't know how to provide actionEvent OR actionListener to those links.
    Any help will be appreciated. ( If possible, give me an example / sample code. )
    Thanks in advance,
    JSF GEEKS
    Edited by: jsfgeeks on Nov 24, 2009 10:15 AM

    commandLink?
    What do you mean when you say: "I want to create links dynamically with their action event."
    Do you need parameters? Or different action events?

  • Create dynamic links.

    Greetings:
    In a left nav column, I have several links:
    <cfmenu name="nav" type="vertical" bgcolor="white"
    fontcolor="black">
    <cfmenuitem display="page1"
    href="javaScript:ColdFusion.navigate('page1.cfm','myDiv')">
    </cfmenuitem> etc.
    I want each link to display the target page in the right
    table cell:
    <cfdiv id="myDiv" bind="url:page1.cfm">
    </cfdiv>
    I have got this working but It acts erratically.
    A few questions: does there need to be the same number of div
    tags as links, e.g. <cfdiv id="myDiv" bind="url:page2.cfm">
    </cfdiv> etc.?
    Does the target page need to be a standalone HTML document or
    can it be simply text that takes on the style elements of the area
    it displays in?
    Not a lot of postings re: cfmenu- are people using it?
    Thanks!

    There is no direct connection with the cfmenu and reference
    links. You can even use direct links without any cfmenu.
    such as:
    <a
    href="javascript:ColdFusion.navigate('content.cfm?page=aboutus','mainContent');">About
    Us</a>
    You can use any HTML/CFM template or text or image etc. for
    your binded divs. It is just URL.

  • Dynamic Links in Form

    Is there a way to create dynamic links in a form?
    For instance I have an interactive report/form if I click on the edit link the report takes me to the form to do an update based on the primary keys. I would like that form to also have links that can pass some foreign key values and take me to a related form to edit the related information.

    That is what I am trying to do, but I am unsure of how to pass the appropriate string with the values of the foreign/primary key.
    I am using the following URL, but the form doesn't seem to be populating based on the primary key
    <!--
    edit
    -->
    Message was edited by:
    dsn0wman

  • Dynamic links

    Hello all
    iWeb fab, but has anyone looked into creating dynamic links to iTunes, eg, if you have a Top 10 Playlist in your iWeb, when it change in itunes get it to automatically update in iWeb, would be cool feature.

    Hi,
    Still get a error message but it is a different one.
    1084: Systax error: expecting colon before right brace
    1084: Systax error: expecting identifier before right brace
    Here is my updated code:
    <mx:Repeater
    dataProvider="{feed.lastResult.rss.channel.item}">
    <mx:VBox verticalGap="0" backgroundColor="#EEF5EE"
    borderStyle="outset">
    <mx:LinkButton click="navigateToURL(new
    URLRequest({url}), '_blank')" label="{title}"/>
    </mx:VBox>
    </mx:Repeater>

  • Creating a Link on the Column Heading

    Good afternoon,
    I know with reports, you can create a link for each cell in the report attributes section. My question is it there's any way to create a link for the column header without hard coding it into the query that generating the results.
    Thanks in advance,
    Ivan

    Ivan,
    If you are using the classical reports, you have the option of creating column header using pl-sql block which will be dynamic. Thanks
    Regards,
    Manish

  • Create a Link using Dynamic Text and Capture Variable

    I am building a dynamic website using Dreamweaver CS5 with Coldfusion 9
    Currently I have created a dynamic text table. The table is created by querying the Invoice table and displays the all the customers Invoices. The columns Include Invoice #, Date, Amount Paid, BalanceRemaining, Due Date. So basically lists all the invoices I have applied to the unique customer. It is pulled up using a session variable I created from the login page.
    My question is this I want to make the "Invoice #" linked so when you click on it it goes to a new page and performs a new query which retrieves infro related to that specific invoice such as Services Rendered, Service Description, Date, Price, Total. I was able to create a link to the Invoice # but I am stuck trying to figure out how to capture the Unique Invoice # and apply it to the new query. Is this possible if so how?
    Thanks for your help!

    Now keep in mind I am speaking strictly from a web and SQL standpoint as I have no experience with coldfusion.
    If you are able to create the link to the Invoice, I am perceiving this as the following:
    Invoice
    Links to
    #123
    page.php?invoice=123
    #345
    page.php?invoice=345
    If your page is setup like that then you already have the data stored in the browser request with the GET method.  In PHP the equivalent is the $_GET array.  I am assuming ColdFusion has a similar array to work with forms.  Then on your following page you obviously need to check that the visitor came from the prior page with the proper permissions to ensure that someone doesn't get the address page.php?invoice=### and just guesses through and views all invoices if they are not supposed to.  Then your query would look something like the following:
    SELECT * FROM invoice_table WHERE invoice_number = $_GET['invoice']
    Remember this in written in PHP so yours should be a similar equivalent.
    Hopefully this helps a little to get you going in the right direction.

  • Dynamic Link Column Based on Value

    I'm using Apex version 4.1.
    This is driving me nuts, I can't get it to work. I'm trying to create a dynamic link on a column (in a SQL report) based on the value. Here's my query:
    SELECT STRUCTURE_ENTITY_ID AS "Market ID",
    Structure_entity as "Market Name",
    CASE WHEN NVL2((select 'A' from PC_PAYROLL_DISTRIBUTION PD
    WHERE PROCESSING_YEAR = SUBSTR('2011-08',1,4)
    AND PROCESSING_MONTH = TO_NUMBER(SUBSTR('2011-08',6,2))
    AND PD.OPS_MARKET = SE.STRUCTURE_ENTITY_ID
    AND ROWNUM = 1),'Ready','Not Ready') = 'Ready' THEN '' ||'' ELSE 'Not Ready' END AS Status
    FROM STRUCTURE_ENTITY SE
    So when the value in that CASE statement equals 'Ready' then I need it to show the word Ready (in the Status column) as a hyperlink, otherwise it needs to show 'Not Ready' in normal text that's not clickable.
    The URL string I have in there DOES pick up the correct values for my parameters, but it stilll appears in the report as the whole string, and it's not clickable. Any help would be greatly appreciated!
    Thanks,
    Greg

    I see an a instead of <a and no </a> in this code.
    Oh, I guess your {a is <a ... B-)  Still no end tag, though.
    Edited by: InoL on Oct 7, 2011 2:27 PM                                                                                                                                                                                                                                                                                                                       

  • How to create Dynamic internal table with columns also created dynamically.

    Hi All,
    Any info on how to create a dynamic internal table along with columns(fields) also to be created dynamically.
    My requirement is ..On the selection screen I enter the number of fields to be in the internal table which gets created dynamically.
    I had gone thru some posts on dynamic table creation,but could'nt find any on the dynamic field creation.
    Any suggestions pls?
    Thanks
    Nara

    I don't understand ...
    something like that ?
    *   Form P_MODIFY_HEADER.                                              *
    form p_modify_header.
      data : is_fieldcatalog type lvc_s_fcat ,
             v_count(2)      type n ,
             v_date          type d ,
             v_buff(30).
    * Update the fieldcatalog.
      loop at it_fieldcatalog into is_fieldcatalog.
        check is_fieldcatalog-fieldname+0(3) eq 'ABS' or
              is_fieldcatalog-fieldname+0(3) eq 'VAL' .
        move : is_fieldcatalog-fieldname+3(2) to v_count ,
               p_perb2+5(2)                   to v_date+4(2) ,
               p_perb2+0(4)                   to v_date+0(4) ,
               '01'                           to v_date+6(2) .
        v_count = v_count - 1.
        call function 'RE_ADD_MONTH_TO_DATE'
            exporting
              months        = v_count
              olddate       = v_date
            importing
              newdate       = v_date.
        if is_fieldcatalog-fieldname+0(3) eq 'ABS'.
          concatenate 'Quantité 0'
                      v_date+4(2)
                      v_date+0(4)
                      into v_buff.
        else.
          concatenate 'Montant 0'
                      v_date+4(2)
                      v_date+0(4)
                      into v_buff.
        endif.
        move : v_buff to is_fieldcatalog-scrtext_s ,
               v_buff to is_fieldcatalog-scrtext_m ,
               v_buff to is_fieldcatalog-scrtext_l ,
               v_buff to is_fieldcatalog-reptext .
        modify it_fieldcatalog from is_fieldcatalog.
      endloop.
    * Modify the fieldcatalog.
      call method obj_grid->set_frontend_fieldcatalog
           exporting it_fieldcatalog = it_fieldcatalog.
    * Refresh the display of the grid.
      call method obj_grid->refresh_table_display.
    endform.                     " P_MODIFY_HEADER

  • How to create a dynamic link in a Form to link to a specific FOLDER

    Hello,
    I have created a reports of all employees of my department.
    This reports shows me the empno and ename
    When I clicked on a empno ( for example empno = 1 ) then then I got a MASTER DETAIL FORM about that employee(empno = 1) .
    Who he or she is and which course he or she had followed.
    I want create a dynamic link in the MASTER DETAIL FORM which shows me directly the folder of that employee ( in this example folder 1 ).
    If I clickt on the report with all employees of my department on an other number ( for example empno = 3333333) then if I click on the dynamic link in the MASTER DETAIL FORM I want to see the folder of employee 3333333 !!! You know what I mean ?
    What I want to know is, how to create a dynamic link that shows me directly a folder which is dependent on which empno I had clicked on in the report ( report with employee numbers and ename )
    Is there any way to pass some parameters into a link to a Folder ? Is this possible in Portal ? Does anyone know how to do this, or do you have a suggestion how to solve this problem ?
    Thanks a lot !!!
    Chu Lam

    Hi Chetan,
    I am glad that someone had replied on my question.
    I will explain it to you again.
    I have created a report that shows me all employees. If I click on a employee number then I get an MASTER DETAIL FORM on my screen with all the information(where he works now and which number I have to dial ifhow can I reach him by telephone) of that employee on which number I clicked on.
    I really like this mechanism. (You click on a number and the information that you see in the next screen is dependent of the number you clicked on ! )I have created all this. It works fine.
    What I want is to expand this example.
    Every employee has a FOLDER (yes, those ones in Content Area ) which they can insert text or image into that folder. The folder name is just the employee number. ( employee with employee number 3303, he owns a folder which is named 3303 and an employee with empno 9999, he or she owns a folder with the name 9999. )
    Every employee can tell more about himself in that FOLDER by iserting text and images. For example : What he likes, pictures of his vacation, something like this.
    What I want is this :
    If I click on the first report,which provides me all employees on screen, on a employee number 3303 then I get a Master Detail Form on my screen with all information about that employee with employee number 3303. And I want in this MASTER DETAIL FORM to create a link that shows me directly the FOLDER of that employee ( 3303), so I can learn more about employee with employee number 3303. But I don't know how to create this link.
    That link had to be dependent on the employee number. The difficult thing about this link is that this link had to be dynamic.
    I hope this will make it clear to you :
    (report all employees:)
    empno ename
    3301 john smith
    3302 peter clark
    3303 wilson jones
    If I click on a empno ( for example 3303) then I get a MASTER DETAIL FORM which provides me information.
    (MASTER DETAIL FORM )
    EMPNO 3303
    ENAME wilson jones
    department New York
    mobile number 98908763
    Company tel. no day
    AOL 097485838 monday till wednesday
    Oracle 04848584333 thursday and friday
    LINK
    (what I want is to create a link here )
    If I click on LINK in this MASTER DETAIL FORM then I want to link to the FOLDER of this employee ! ( In this example it is FOLDER 3303.
    BUT IF I CLICKED ON THE FIRST REPORT ON A DIFFERENT NUMBER ( FOR EXAMPLE 3301) THEN IF I CLICK ON LINK IN THE MASTER DETAIL FORM THEN I HAVE TO LINKED TO FOLDER 3301.
    I just want to know how to make a link like this ( create a dynamic link to a specific folder ).
    Thanks in Advance.
    Chu

Maybe you are looking for