Can you assign the value of a jstl:out value to a jstl:set variable?

Basically can you do the following?
<jstl:set var="journeyVisit"
value="<jstl:out value=${journeyVisits.stopPoint.description} />" />
Basically we have our own independent markup language and I need to use our own href tag to wrap the 'journeyVisit' tag.
Any ideas?
Thanks.

<jstl:set var="journeyVisit" value="${journeyVisits.stopPoint.description} " />

Similar Messages

  • Can you use the Vocal Transformer for Live Show?

    Can you use the Vocal Transformer for Live Show? I have automations set up in my vocal track using the vocal transformer and would like my vocals to adjust accordingly while performing live. Is this possible to configure and if so, how do I set it up at the venue?

    Vocal Transformer opens in MainStage. All controls in VT are visible & editable in MS. Don't set it up at the venue. Set it up in one or more patches before you leave your house. You will need up to twelve sliders or knobs plus one or two buttons on your controller to get the most out of it.

  • Can you change the value of app_user?

    can you change the value of app_user?

    Hi Scott,
    Thanks for being patient.
    A lot of the reports are based on personal information tied to the username. so on my reports I use app_user to pull the information. the app is a production app so when problems arise a lot of the time is user error but the users are in some other state so i need a way to look at the same thing they are looking at. I need to be able to sign in as them but since the app uses sso they cannot give me their corporate passwords. when i changed the value of g_user it changes but only for the scope of the region that i changed it in. it does not persist for the session.
    Thanks Fernando

  • Can you edit the color of the bottom play bar on a slide once you assign the cpCmndShowPlaybar to 0

    Can you edit the color of the bottom play bar  on a slide once you assign the cpCmndShowPlaybar to 0. When I assign the slide this action it shows a grey shape at the bottom hiding the playbar controls, but I would like to make that color white to blend in with the white background on my webpage. How do you change the color?

    It is not possible to change the border color by an (advanced) action, sorry. If you do not mind, you could choose the white color for the bottom border from the start. When the playbar is showing, provided it it stretched, it will cover up this bottom border.
    Lilybiri

  • How can you trim the contact field value without cloudconnector?

    How can you trim the contact field value without cloudconnector?

    You can add your contacts to segments, while right-clicking on the criteria you have added in segments, you will see the option for Merge, Intersect & Trim.
    See the attached URL, it might help you .
    Merge, Intersect, Trim

  • Can you modify the price of a contract in the ME32K directly from the item

    Hello,
    I am in ECC6.0
    I need to modify the price of an item in the contract (ME32K WK or MK) but it is grey (only in display). So I must do Item-Condition and then I can modify the price of the item.
    Can you modify the price of a contract in the ME32K directly from the item screen?
    I have try with several field selections but nothing.
    AKTV     Change
    MKK     Quantity contract (for MK)
    WKK     Value Contract (for WK)
    PT0K     Standard item contract
    Cheers,
    Marta

    HI,
    If you maintain any condition in the contract line item condition, like freight, discount etc. the landed price gets populated in the line item price field. So if you want to make any change in base price, it has to be changd in the line item condition.
    This is because, You can maintain different validity period in condition and maintain different price in each validity period. So which price you want to pick? So the system captures the price from condition and populate it in the item price field depending on the validity period price.
    Hope this helped you.
    Regards

  • Can you get the file name of the current executing TSQL script?

    Can you get the file name of the current executing TSQL script? I wrote entries to a generic log file and would like to include the script name.

    Okay, So What you can do is
    1. Read get the version from your  database and redirect it to a text file(SQLCMD outout can be directed to text file using -o option or windows redirection operator >)
    2. Now you can read this value from the text file either inside a batch file or a powershell script and decide what operations you can do. 
    Satheesh
    My Blog |
    How to ask questions in technical forum

  • Can you assign a keystroke to a hot corner?

    Can you assign a keystroke to a hot corner?
    For example, I want to assign option-D (toggles something in some app I use) to a hot corner.

    This would be like executing any program with a combination of buttons. It's going to depend on your operaating system. My guess would be that most operating systems aren't going to make it easier to 'take over' keystrokes because that could interfere with the operation of some programs. For example, if you have MSWord up on your screen, it is quietly listening for a bunch of keys Alt-F, ctrl-x, crtl-o, ctrl-p....
    You might be able to find some kind of program like this, but it's not going to be java specific.

  • Can you assign a Window grab or snapshot (Shift+Command+4) folder?

    I am using ShiftCommand4 for capturing a picture of a window or section of the screen.
    I was wondering if I can select a folder to save the pictures to. Where are the preferences for this feature?
    Are there preferences? Can you assign a folder or do they have to go to the desktop.

    When you save , it goes to the last location you saved to, so choose your folder, save a shot to there, and it will go to that folder next time.
    Update
    Francine Schwieder offers a solution in this topic.
    http://discussions.apple.com/thread.jspa?messageID=2412150#2412150
    You'll need to scroll down a bit.
    regards roam
    Message was edited by: roam

  • Java arrays - can you name the keys?

    i have 1 function that declares 2 ArrayLists of type String. They are the same size and the values are related. Let's call them A & B.
    I was hoping i could have my function return just 1 array, with the values of arraylist A being they keys of the returned array, and the values of arraylist B being the values in the returned array.
    But can you name the elements of an array in java? in php you can, but in java, the only examples i have seen only use the standard #'s: 0, 1, 2, 3, etc. if you can, please post sample syntax.
    i guess i could use a double scripted array, but... well i don't exactly know what the sytax would be for that in declaring the funciton.
    if someone has a link of these kinds of examples / topics they could send me - that would be great too - i googled it but haven't really come across any.
    thanks in advance

    It appears as though what you are trying to do is associate a specific "key" value with another value. For example, let's say you want the word "dog" to be the key for the arraylist value of "bull dog."
    The perfect data structure for this that Java provides is called a Map. Here is some sample code.
    //create something called a HashMap where the first
    //value is the key, and the second value is the value
    //that the key is associated with
    HashMap<String, String> map = new HashMap<String, String>();
    //now, consider the previous example...
    //here is the syntax for storing those values
    map.put("dog", "bull dog");
    //and this would be the syntax for getting a value
    String value = map.get('dog");
    //which would give "bull dog"
    {code}
    Hope that helps :)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Can you adjust the pitch of a track in the middle of a song in Logic Express?

    Can you adjust the pitch of a track in the middle of a song in Logic Express? So have the first  40 bars in C minor and the last 16 in D major for example?
    Thanks

    Hi,
    the question is what you want to achieve by doing so. Obviously, transposing is easy. Split the track into two regions. The first region is original pitch, the second is to be transposed. Select the second region. Enter the desired transposition value in the region inspector. Make sure the checkbox "no transpose" is UNchecked in the track inspector.
    HOWEVER: You cannot "transpose" minor key into major key. This is because the intervals of full steps / half steps is different for minor and major. The 3rd and the 6th step is a half step in minor, while it is a full step in major. Therefor you must adjust the MIDI events in the piano roll editor to change minor to major and vice versa.
    Fox

  • Can you Disable the emergency call (911) or change the number.

    Can you Disable the emergency call (911) or change the number. When my phone is locked I keep calling it when the phone is in my pocket.
    Even if I could change the number that would help but I think 911 is starting to hate me.
    Im running  XP pro
    Palm Desktop Version 4.1.4
    Treo 680 (Rogers)
    Post relates to: Treo 680 (Rogers)

    Hi Evtek,
    I'm afraid that there does not appear to be any way to disable the autocomplete of the LabVIEW combo box.  If this is a real problem the best suggestion I could give you would be to try the .net combo box.  This does allow you to disable the autocomplete mode although obivously the programming would be slightly more complex than the built in combo box.
    Otherwise you could use the update value on every key and use a different event to trigger the movement or if it isnt the enter key that is pressed do nothing in the event case.
    Regards,
    James Mc
    ========
    CLA and cRIO Fanatic
    wiresmithtech.com/blog

  • Can we assign the same profit center to diff costcenter master data

    hi all
    can we assign the same profit center to diff costcenter master data 
    what are the impacts in control parameters  for actual and plan  dat a
    Thanks
    MvNr

    Hello,
    There is no need that you should have the profit center and cost center one to one relation.
    You can assign number of profit centers to a cost center. Meaning that the same profit center can be used in different cost center master data. Whenever, you make posting to cost center, the same will be flown to profit center.
    For example when you post actual line items, it will update GLPCA and GLPCT in profit center accounting.
    Regards,
    Ravi

  • CAN I ASSIGN THE NEW CHART OF DEPRECIATION????//

    Hi dear AA experts,
    I can not assign the new chart of dep to my company code.
    It gives the message that YOU CAN NOT PROCESS COMPANY CODE XX, IT CONTAINS ASSETS
    Rgds,
    Venkata Raju

    HI Paul Antony,
    Thank you for ur response and for ur answer and Pl read below matter and give me the suggestion.
    Actually Why I want to change the COD because
    AA was implemented in the year 2005 but there were no of mistkes were done. they are
    1) Recon ac not defined in GL ac
    2) In legacy asset master data dep key defined as "0000"
    3) from 2005 onwards users are making the transactions manually in F-02.
    So I have taken this as challenge and I have done new configuration.
    But I have done new Acc Det, Screen Layout, Asset Class, New GLs, Dep Kyesw.
         When I run the depreciation for the year 2007in dev system for new assets it is asking to run the dep from 2005.
         So If we assign the new COD, I think it will not ask to run the dep 2005.
    So now without run the dep for 2005 can I run the new AA acquisitions (after maintain legacy data and GL master data)
    Rgds,
    Venkata Raju

  • How can i assign the Transaction varient to the user in 4.6C version

    How can i assign the Transaction varients n Screen Varients  to the users in 4.6C version.
       Actually Iam using T-code SHD0 for hiding the field in VA11 transaction. In this iam created one transaction varient n one Screen varient.iam not able to activate that screen varient and iwant to assing to perticular users. But i have a option in 4.7 above version my client is using 4.6C version. Please give me the solution as need full.

    Hi,
         Use the PPM toolkit class CL_CRM_PPM_UM_TOOLKIT. You can use the method You can use the method GET_ASSIGNMENTS_OF_USER which returns positions held by an user(user name).  You may also find the method GET_POSITION_OF_USER useful. It accepts username and the organization ID and will return the positions held by the user under that organization.
      This class always uses the current plan (01). If you want otherwise, you can use the FM RH_STRUC_GET. As to how this FM should be used, look inside the above said methods.
    Regards,
    Arun Prakash
    Edited by: Arun Prakash Karuppanan on May 11, 2010 11:40 AM

Maybe you are looking for

  • My audio is not working with movies on my new iMac

    i have had this imac for 3 months now, audio works fine for everything else, but when i am watching a movie on full screen, sound is not present but when it is not on full screen sound is present but never matches the actual movie, i really would lov

  • A small conglomerate of E450/Solaris 10 Questions!

    To whom it shall concern or can just help out: Solaris 10 Questions If I wish to run an iSCSI target under Solaris 10, will GA do it or do I need the Express verison of Solaris 10 (for an E450, SPARC)? If the GA version of Solaris 10 supports iSCSI t

  • HT201272 Dowloading past purchases from iTunes doesn't work in România and still no movies, maps and more..

    If u buy something from iTunes like a song or 100 songs and u lose them, let's say u're phone was replaced by waranty. U can see that u purchased songs but u cannot redownload them, not in România i guess ..at least u can redownload apps  

  • How to view by show and not Seasons

    This is probably more an itunes questions but since apple tv users use itunes I thought I'd try here. Is there a way to organize the library so that when you are in TV shows you view just the shows. Say I have lost and theres 4 seasons of it. Can't I

  • My podcast episode descriptions have disappeared...

    I've consulted several websites and I can't find the error in my XML file. podcast: https://itunes.apple.com/us/podcast/30-000-kilohertz-of-sound/id299700719?mt=2 xml file: http://30000khz.com/rss.xml Using this code under each item: <itunes:summary>