Creating Bookmarkable URLs - two or more parameters

I followed the tutorial "Creating Bookmarkable URLs" and I was able to pass 1 parameter OK with values from a database. I don't know the syntax for multiple parameters, though, when using the IDE Design view. I really would like to have bookmarkable URLs using multiple parameters.
In the url property for the group of hyperlinks, I tried:
/faces/Report.jsp?testableentityconfigId=#{currentRow.value['testableentityconfig.testableEntityConfigID']}&modelId=#{currentRow.value['device.deviceModelID']}
When I run the program, the url in the address bar looks like this:
/Reporting/faces/Report.jsp?testableentityconfigId=%23%7BcurrentRow.value%5B'testableentityconfig.testableEntityConfigID'%5D%7D&%3BmodelId=5
The desired output would look like this:
/Reporting/faces/Report.jsp?testableentityconfigId=2&modelId=5

I tried it (using the TRAVEL FLIGHT table) and it worked for me.
My url property setting in the Properties window looks like this:
/faces/Details.jsp?flightId=#{currentRow.value['FLIGHT.FLIGHTID']}&tripId=#{currentRow.value['FLIGHT.TRIPID']}My JSP looks like this:
<webuijsf:hyperlink binding="#{Page1.hyperlink1}" id="hyperlink1" text="text" url="/faces/Details.jsp?flightId=#{currentRow.value['FLIGHT.FLIGHTID']}&tripId=#{currentRow.value['FLIGHT.TRIPID']}"/>

Similar Messages

  • Two or More parameters in the SQL Source Window

    Hi,
    I have a Crystal Reports which uses an SQL Query as the source. I have a Report Date Range in the Crystal Reports but I want to improve the performance by embedding the parameter in the SQL Command. One parameter in the SQL Command is fine but more than that, I'm getting the following error:
    Failed to retrieve data from the database.
    Details: ORA-00911 : invalid character
    Database Vendor Code: 911
    Is there a configuration that I should do before adding two or more parameters?
    Thanks.

    Hi,
    The expression is something like this:
    ... where CLOSED_DATE >= {?Start Date} and CLOSED_DATE <= {?End Date}
    I also tried to use the BETWEEN IN function but got the same error. The CLOSED_DATE, Start Date, and End Date are Date Time.
    Thanks.

  • How to create Bookmark for 1 or more tabs in defined bookmarks folder?

    Hi,
    How can I create a bookmark for
    a) the current tab
    b) all tabs in the current safari window
    in an already existing bookmarks folder via Apple Script?
    (Why? I want to define keyboard shortcuts for 3 or 4 different folders
    to quickly sort my bookmarks already when saving them.)
    After launching the script, i'd like to also get a text input box to
    define
    for (a) the name of the bookmark (default value like when hitting cmd-
    D)
    and for (b) the name of the bookmarks folder to create with all the
    tab's bookmarks.
    Is there an easy way to do that?
    Thank you very much,
    Kind regards
    Martin

    Do you mean a Book mark folder inside Safari or a real folder full of .webloc files?
    Beside this, for my own use I wrote an AppleScript that puts the URLs + descriptions + keywords into a simple text-file. Then I wrote a small html-file that pulls this text-file using Javascript and builds up a html-table with live-search like in itunes...
    I placed a bookmark to that lokal html-file in my bookmark-bar and now I can access this bookmark list just by pressing cmd+1 inside Safari (since it is the first Bookmark in the Bookmark-Bar).
    (This local bookmark-site works great with Safari or Firefox, but chrome resists to load the local-textfile... but it would work if the file is online... strange google )

  • RM06IBI0 Create Inforcords with two or more P000

    Hi everybody
    I want to create or modify an info record with program RM06IBI0.
    The problem is that I must load two gross price conditions
    (P000) with a diferent validity for every condition in the same info record.
    How Can I do it at the same time, in the same transaction ME11 or ME12?
    thanks in advance

    If you read the documentation of this program, you will find the following text.
    <i>The following records only occur if conditions are to be maintained:
    For each conditions record (condition type), a record (BKONP, record type 2, table name KONP).
    For each line of a quantity scale, a record (BKONM, record type 2, table name KONM).
    For each line of a value scale, a record (BKONW, record type 2, table name KONW).</i>
    That is what you may need to do.

  • MVC: Create a view which populates two (or more) joined tables in a single view table

    I am beginner in MVC and I would like to create a view which populates two (or more) joined tables in a single view table as described below.
    I have two tables:
    1 - Bloggers: - bloggerID (int);
                        - bloggerName (string)
    2 - Blogs: - blogID (int);
    bloggerID (int);
                    - blogTitle (string);
                    - blogImage (string)
    A blogger can have one or more blogs while one blog must be related to only one blogger.
    I would like to have a view table on my webpage as the following:
    Blogger Name
    Blog Title
    Blog Image
    Noris Gang
    Virus
    virus.jpg
    Noris Gang
    Desktops
    desktop.jpg
    Gauthier
    Books
    books.png
    John Leon
    NNNMHJhjdhj
    Nmbj.jpg
    I'm using MVC 4 (or at least 3).
    Thanks for your help.

    Hello,
    From your description, it is not very clear that what you mean about the View, if it means the View concept in database as SQL Server, your required view should be as below:
    Create view
    as
    Select Bloggers.bloggerName, Bloggers.blogTitle, Bloggers.blogImage
    From Bloggers join Blogs on Bloggers.bloggerID = Blogs. bloggerID
    If it means the UI view in MVC concept, I suggest you could ask it on the MVC forum:
    http://forums.asp.net/1146.aspx
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • WHERE clause creating a join for two or more tables

    The CS3 Dreamweaver book says that the WHERE clause can
    create a join for two or more tables. The join was created, but the
    data is repeating. I have searched the web and this forum and have
    not found the answer.
    My Master page filters the recordset by Style No and when a
    customer clicks on a particular style, it sends him to the Detail
    page. All the records are showing from all tables on the detail
    page from the Dynamic List, except they are showing multiple times
    (ex. Size table has 4 sizes and Color table has 2 colors - my Size
    Drop Down list is showing 8 options and my Color Drop Down List is
    showing 8 options) I have a Master Page with a recordset pointing
    to a Detail Page using the same recordset.
    Master page works perfectly.
    Master Recordset SQL:
    SELECT products.itemID, products.category, products.styleno,
    products.name, products.description, products.ourprice,
    products.imageTH, products.image, coloroption.color,
    sizeoption.size
    FROM products, coloroption, sizeoption
    WHERE category = 'chefcoats' AND
    products.styleno=sizeoption.styleno AND
    products.styleno=coloroption.styleno
    GROUP BY products.styleno
    ORDER BY styleno ASC
    The Detail Recordset:
    SELECT products.itemID, products.category, products.styleno,
    products.name, products.description, products.ourprice,
    products.imageTH, products.image, sizeoption.size,
    coloroption.color
    FROM products, sizeoption, coloroption
    WHERE itemID=colname AND products.styleno=sizeoption.styleno
    AND products.styleno=coloroption.styleno
    I tried using the GROUP BY on the detail page, but then it
    only showed one size and color from the dynamic drop down list. I
    tried changing the field name "styleno" in the other tables to be
    unique, however, I was using the table identifer. I tried using the
    JOIN command instead of the WHERE clause and that didn't help
    either.
    On the detail page, the customer is supposed to click on the
    Size box and see sizes XSM - 6XL ONLY ONE TIME. and then be able to
    click on the Color option and see White, Black, Red ONE TIME.
    Is this possible?
    Thank you for giving your time to read this.!
    Evie

    Do you have a link we can look at to see what you are trying
    to do?
    Dave
    "EviePhillips" <[email protected]> wrote in
    message
    news:[email protected]...
    > The CS3 Dreamweaver book says that the WHERE clause can
    create a join for
    two
    > or more tables. The join was created, but the data is
    repeating. I have
    > searched the web and this forum and have not found the
    answer.
    >
    > My Master page filters the recordset by Style No and
    when a customer
    clicks on
    > a particular style, it sends him to the Detail page. All
    the records are
    > showing from all tables on the detail page from the
    Dynamic List, except
    they
    > are showing multiple times (ex. Size table has 4 sizes
    and Color table has
    2
    > colors - my Size Drop Down list is showing 8 options and
    my Color Drop
    Down
    > List is showing 8 options) I have a Master Page with a
    recordset pointing
    to a
    > Detail Page using the same recordset.
    >
    > Master page works perfectly.
    > Master Recordset SQL:
    > SELECT products.itemID, products.category,
    products.styleno,
    products.name,
    > products.description, products.ourprice,
    products.imageTH, products.image,
    > coloroption.color, sizeoption.size
    > FROM products, coloroption, sizeoption
    > WHERE category = 'chefcoats' AND
    products.styleno=sizeoption.styleno AND
    > products.styleno=coloroption.styleno
    > GROUP BY products.styleno
    > ORDER BY styleno ASC
    >
    > The Detail Recordset:
    > SELECT products.itemID, products.category,
    products.styleno,
    products.name,
    > products.description, products.ourprice,
    products.imageTH, products.image,
    > sizeoption.size, coloroption.color
    > FROM products, sizeoption, coloroption
    > WHERE itemID=colname AND
    products.styleno=sizeoption.styleno AND
    > products.styleno=coloroption.styleno
    >
    > I tried using the GROUP BY on the detail page, but then
    it only showed
    one
    > size and color from the dynamic drop down list. I tried
    changing the
    field
    > name "styleno" in the other tables to be unique,
    however, I was using the
    table
    > identifer. I tried using the JOIN command instead of the
    WHERE clause and
    that
    > didn't help either.
    >
    > On the detail page, the customer is supposed to click on
    the Size box and
    see
    > sizes XSM - 6XL ONLY ONE TIME. and then be able to click
    on the Color
    option
    > and see White, Black, Red ONE TIME.
    >
    > Is this possible?
    >
    > Thank you for giving your time to read this.!
    > Evie
    >
    >

  • Pick activity is not working properly while creating two or more file adapt

    Hi,
    pick activity is not working properly while creating two or more file adapter for bpel process.
    bpel process compiled and deployed succesfully but while observing the wsdl file of deployed process you can find only one file adapter. so it polls only from that location.
    can anybody help on over this? or it's limitation of jdev to use only one file adapter at time while using Pick.
    Thanks
    sagar

    Does anybody tried this?
    Thanks
    sagar

  • How do I create a bookmark in two different pdfs?

    How do I create a bookmark in two different pdfs

    Provided you only want to go one way, you can change a bookmark to fire the "open a file" action. I 'm not sure you entirely understand the terminology though - bookmarks in a PDF file appear on the left side panel and usually take you to a defined page in the current document. They are not part of the page and so don't change as you move through the file. Links are regions on a particular page that act as click points, and can do pretty much anything (move to a different page, open a file, etc.). Although you can use bookmarks to do something other than switch pages, it's very rare to do so and won't necessarily be supported by third-party software (or obvious to your users).
    If you want to create a bookmark to another document, and both files are going to be distributed together (in the same folder) then you can create a new bookmark (doesn't matter where in the source file you are..) then select it and from the options menu choose Properties. Switch to the Actions tab and delete the "go to a page" entry, then from the dropdown list choose "Open a file" and browse to your destination document.
    If your destination file is an attachment to your source file, you should use the "Go to page view" action, and when the tiny dialog box appears you should open the attachment, then click the OK button.

  • Creating statistics based on two or more fields

    Hi!
    Curious if the functionality of Adobe Forms has the same possibilities with calculating stats based on several fields as one can do with Excel. For example, can I create a SUMPRODUCT formula to find all the replies that meet two or more critieria, and generate a bar graph with the result?

    Hi;
    You can set up formulas in the Response Table in the View Responses tab.  It does not generate a graph but you can add a Summary Report tile (from the Insert menu) for the new column that shows the count (it may be possible to show a bar chart but I only got it to show count). 
    These are the formulas available:
    http://helpx.adobe.com/acrobat-com/formscentral/help/formula-syntax-built-in-functions.htm l
    Here is a brief tutorial - note that you can set up formulas in rows or columns: http://acrobatusers.com/tutorials/how-to-work-with-formulas-in-formscentral
    Thanks,
    Josh

  • Creating a DNS Record for a Host with Two or More IP???

    Can we create DNS A Record for a Host with Two or More IP ... ( we like to use my website  "mysite.com" pointing to two Ips )
    Please help...

    Sure, no worries.
    In a production environment DNS will query always the first record it will stores in cache, you need to find a dynamic or NLB way to achieve the automatic fail over else when you will have an outage with the first IP, then you need to ask your clients to
    clear the cache and register to DNS again, this i will not suggest in a production environment, lots of manual efforts and doesnt sound like a solution in a production environment, i would suggest you to explore windows NLB, it's easy to set and use the OS
    license.
    Thanks
    Inderjit

  • How to create a unique key using two or more attributes?

    how to create a unique key using two or more attributes ?

    The following example illustrate how to create a unique key using two or more attributes/fields
    Scenario: Implementing Unique Key on ManagerID & Location ID in DepartmentEO(Department Table)
    Step#1: Open the Desired Entity Object “DepartmentEO”. Go to Overview tab & Click “General” Finger tab.
    Step#2: Expand “Alternate Keys” section & click “+”.
    Step#3: In the Pop-up wizard, Enter a name for alternate Key “Unique_Manager_X_Location”.
    Step#4: Select the desired attributes/fields from available list & Shuffle to right side.
    Step#5: Now go to “Business Rules” finger tab.
    Step#6: Select “Entity Validators” in the list & click “+” to add a new entity level validation rule.
    Step#7: In the Pop-up, Select “Rule Type” as Unique Key
    Step#8: In the “Rule Definition” tab select the key “Unique_Manager_X_Location”created.
    Step#9: Now go to “Failure Handling” tab, and click the Magnifier Icon .
    Step#10: If the key is not already created then in the “Select Text Resource” Popup, Using the functional design document, Enter display value, Key and Description. And click “Save & Select” Button.
    Step#11: Now Click “OK”.

  • Create two or more GL account in same material grp

    Is it possible to create a two or more GL account for material group based on plant level.
    Thanks

    Hi Elaine,
    I am not quite sure what are you trying to do. Do you mean material type? Either or the assignments of GL accounts to materials mainly depend on the valuation class. So under the same material type you could have different materials going to different accounts or valuation class. Typically each Material Type is defaulted to one valuation class, but that doesn't necessary mean  that individual materials master records can be changed to another one, which may be pointing to another GL account.
    Hope this helps.
    GG

  • Creating URL and fetching the parameters

    Hi,
    In my webdynpro application I hav to create a URL that shud take me to a new IView and in that URL I have to give certain Parameters that I have to fetch as application parameters.I am not aware how to create URL and give the PCD path of the new iView and the Parameters that I hav to fetch. I have seen some of the threads but I am not able to find out the clear picture.Could anyone help me out?
    This is really urgent.
    Thanxs in advance.

    Hi,
    You can navigate from one view to another using portal navigation
    WDPortalNavigation.navigateAbsolute();
    The above method needs various parameters which are shown<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/c3/235a428a1e9041e10000000a1550b0/frameset.htm">here</a>
    Warm Regards,
    Murtuza

  • How do i make the bookmark toolbar have two or more rows

    the question says it all i guess. I want the bookmark toolbar to have more than 1 row

    https://addons.mozilla.org/en-US/firefox/addon/multirow-bookmarks-toolbarplus/

  • Creating bookmarks on a page or on controls in the page?

    Is this available?  Generally I like to use the left panel as the "Pages" panel or hidden.  I find the bookmarks more of an annoyance unless I have more than a few pages (which happens much less, usually 2-6 pages tops).
    So, is there an easy way to add bookmarks to onscreen controls or just have them floating on the page?  I work in an office that much of the documentation is shared from various computers so activing another menu  item and creating it on my machine would do little to help in terms of effecieny.  I'm not familiar with JS but I'm familiar with programming (mostly VB).
    Thanks!

    Type writer, calculater tape, Text box, highlights,rectangle tools, etc.  anything you would add to an existaning PDF for purposes of defining what it is or incorporating it into some analysis.  Most of the PDFs I work with are scanned images of documents or converted/printed to PDF from existing software.
    A lot of times I'll have a multipage document 4 pages long and some of the relevant information is on the 3rd or 4th page.  I'd like to take a typewriter or some other object control and have it be a bookmark, as opposed to having the "Bookmarks" panel open.
    This would eliminate two things that happen.  One, having to have the panel open all the time, even in documents where there are no bookmarks and two, eliminate the need to use the bookmark panel to retrace or refocus where you are when dealing with an index of bookmarks while your in one bookmark with multiple pages.  I.E. I have a PDF with 200 pages, it has roughly 40 parent bookmarks and a few child bookmarks within those 40.  Some of those bookmarks are mulitple pages but rather create a 2nd or 3rd tier bookmark for each page, I'd like to have the first page of the multipage bookmark have objects on it to lead into the remaining page(s) with relevant information.

Maybe you are looking for