Need Help on Express Language

Can Anybody please help me out how express language works and if possible with examples.
Thanks for your help.
Gajendra Nagapurkar
[email protected]

the reference guide has a full tutorial on the language. if you know xml and any programming language, you should have no trouble learning it.
Dana Reed
AegisUSA
Denver, Co
773.412.3782

Similar Messages

  • Help needed in JSP Expression Language

    Hi all,
    I have been working for JSP Expression Language Sample execution since past 5 days. I am using the application server as "Jboss Server" and web server as "Tomcat".
    I have been included the jsp-api.jar file in my lib directory of application server as well as source folder's lib directory.
    When i am trying to build the source code, i am getting this build error.
    [javac] D:\eclipse\workspace\esolvProject\development\src\com\esolv\taglibs\
    web\classes\SetSupport.java:186: cannot resolve symbol
    [javac] symbol : method getExpressionEvaluator ()
    [javac] location: class javax.servlet.jsp.PageContext
    [javac] ExpressionEvaluator evaluator = pageContext.getExpressionEvaluator();
    In my jsp-api.jar , there are two classes called,
    PageContext and JspContext, Both are abstract classes.
    PageContext inherits JspContext class. JspContext class have the method getExpressionEvaluator() , returns ExpressionEvaluator.
    PageContextImpl - class . it has been called internally when we are trying to call PageContext class. In PageContextImpl class, there is one comment before, the method's definition. that is
    " Since JSP 2.0 "
    But we have the JSP 2.0 version. But it won't work.
    Please help me ont this.
    Thanks in Advance,
    Natraj

    >
    If the pblm was due to setting the classpath.
    The error should be showed for all files in the jar
    file.
    why i am getting the error for particular method ?
    it is accessing the other methods of same class
    'JspContext' . but it is not accessing that method.
    Thats my question.
    Just check that your .jar file is 2.0 compliant and that you do not have any other jars(for servlet or jsp api) in the classpath.
    Probably you have an older version of .jar file in your path. So the errors will appear only for those methods that have been added since 2.0, all other methods would compile fine.
    Please tell me the jar files to work out the
    expression language. so that i can cross check my
    list of jars.Hmmm...I dont use jboss. In tomcat the jar file name is jsp-api.jar. But it would have been the same even for jsp1.1, going by jar file names wouldnt help. Just look at your cp as if with a microscope to identify redundant jars.
    cheers,
    ram.

  • Need help in Multi language XML Publisher report

    Hi Experts,
    I am working in EBS R12, database 10g.
    I am have a requirement to develop the multilanuge XML Publisher report.
    Details i have till now:
    query in report builder: select * from emp;
    RTF: created RTF(test_rtf)
    Datadefinition: test_dd
    Template:test_t (Language:English, terittory:US, uploaded the RTF)
    Requirement: I need the output in English and German Language.
    For French language, how to proceed further.... Could somebody help me with procedure to get it.
    Do i need to create any RTF and Template for FRENCH language.
    Kindly help me with procedure to be followed.
    Thanks in advance.

    Hi Experts,
    I have below procedure to achieve this but still not able to print output in desired language.
    1. created rtf
    2. created data definition (dd)
    3. created template (tt) [language-english, terittory-US, translatable].
    4. Exported the translated file(.xlf file) to local system
    5. In .xlf file, changed the target language to 'fr-FR' (I want to print in french)
    6. It was successfull done and status is complete
    Through SRS window, i submitted the program...but it's still showing output in english only not in french.
    Note:At SRS window, it's showing only ENGLISH LANGUAGE.
    Am i missing anything....How to show desired languages at SRS WINDOW.
    Could somebody help me how to print data in FRENCH language.
    I hope that i can get the solution from this forum.
    Thanks in advance.

  • Need help with Expressions to get the sum of rows between dates

     Date              Total
    8/06/2010     $2000
    8/10/2010    $5000
    8/28/2010      $2500
    9/10/2010    $5000
    9/16/2010   $2000
    9/25/2010   $7000
    9/28/2010     $2500
    I need sum of rows based on month. I have tried  following syntax. It did not work, which is returning $0.  Appreciate any help i get.
    =sum(iif(Date.value>="8/01/2010" AND Date.value<="8/30/2010",Total.value,0))

    Hi RG K,
    According to your description, you want to calculate sum of total based on month use expression, but the expression does not work. If that is the case, please refer to the following steps:
    In design surface, right-click Insert and click Text Box.
    Right-click inside of the text box, then click expression.
    In Expression text box, type the expression like below:
    =sum(iif(Fields!Date.Value>="8/01/2010" AND Fields!Date.Value<="8/30/2010",Fields!total.Value,CDec(0)))
    In this expression, the data type of total is Decimal, so we need to convert 0 to Decimal use CDec() function. If data type of total is Double, we need to use CDbl() function.
    The following screenshot is for your reference:
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • Need help with Expression

    I need to search and replace several Title Tags with
    information such as "<b>Almond Oil (5 ml)</b>
    </font> <hr size="2" noshade>" (without quotes). What
    expression do I use to indicate "everything between the >b>
    and </b> as this information changes?

    Hi,
    Assuming you are using the database is SQL Server:
    SELECT [CustomerID]
    ,[Quantity]
    ,[Unit Price]
    ,[Contract Price]
    ,[Total] = CASE WHEN [On Contract] = 'Yes' THEN [Quantity] * [Contract Price]
    WHEN [On Contract] = 'No' THEN [Quantity] * [Unit Price] END
    FROM [Customers]
    Modify the SQL to suit your need.
    Hope this helps.
    ~J.

  • Need help with expression builder issue

    Hi all
    I'm hoping someone can help with an issue I'm having. I'm creating a database for a manufacturing joinery. For 1 of my forms, Ive to create a despatch form which includes order details along with customer details. Some customers can have contracts in which
    they get a fixed price on certain item. This is where the problem lies.
    For my customers table, I have a field called "On contract" which is a Yes/No field. I've created a query to attempt to make this form. I'm having trouble with adding a total column at the end of this query. Quantity,Unit Price, Contract Price
    are also in the query. I've been trying to build an expression to say like;
    iif [on contract] = "Yes", [Quantity] * [Contract Price]
    iif [on contract] = "no", [Quantity] * [Unit Price]
    It obviously wont work, what am I doing wrong?
    Thanks in advance

    Hi,
    Assuming you are using the database is SQL Server:
    SELECT [CustomerID]
    ,[Quantity]
    ,[Unit Price]
    ,[Contract Price]
    ,[Total] = CASE WHEN [On Contract] = 'Yes' THEN [Quantity] * [Contract Price]
    WHEN [On Contract] = 'No' THEN [Quantity] * [Unit Price] END
    FROM [Customers]
    Modify the SQL to suit your need.
    Hope this helps.
    ~J.

  • Need help on Hindi Language pack

    Hi All,
    Can any one help me, from where i can download hindi language pack for my EHP3 system. Please give me the path of the download location in market place.
    Thanks in advance
    Praveen

    Hi,
    Unfortunately, SAP does not offer Hindi as a language for its products  and solutions. SAP supports it do not offer a translation for it (Note 920085).
    Br,
    Javier

  • Need help in installing language in R11i-11.5.10.2

    Dear Team,
    We are in the process of installing few languages in R11i - 11.5.10.2. Currently it has American English and Italian.
    Please help us with your expertise in getting the NLS language packages, steps to be followed, any hiccups if any in implementing the same.
    List of Languages are as follows,
    1) Arabic
    2) Spanish
    3) Chinese
    4) Bahasa - Indonesia
    5) Turkish
    6) Portuguese
    7) French
    Thanks for your time and help,
    Rajasekaran.

    Hi Hussein,
              Thanks a lot. Would follow as suggested.
    Now we are struck with issue when performing the following activity,
    ACTIVITY:
    ========
    Run Maintain Multi-lingual Tables (AD Administration Main Menu > Maintain Applications Database Entities Menu) using adadmin.
    ISSUE:
    ======
       FAILED: file INVNLINS.sql on worker  2 for product inv username INV.
    FROM THE LOG : adwork002.log
    Start time for file is: Fri Jun 21 2013 15:40:35
    sqlplus -s APPS/***** @/opt/gfsd/gfsdappl/inv/11.5.0/sql/INVNLINS.sql
    PL/SQL procedure successfully completed.
    MESG
    LANGUAGE = AMERICAN
    PACKAGE= INV_ITEM_PVT
    SQLERRM= ORA-01555: snapshot too old: rollback segment number 13 with name "_SYS
    SMU13$" too small
    select to_date('ERROR')
    ERROR at line 1:
    ORA-01858: a non-numeric character was found where a numeric was expected
    Time when worker failed: Fri Jun 21 2013 23:52:39
    QUESTION:
    ==========
    Should we fix this issue before applying synchronization patches?
    {OR}
    can we proceed with the synchronization patches keeping this issue aside?
    Thanks for your help,
    Regards,
    Rajasekaran.

  • I Need Help Installing Expression 3.3

    Hi my friends,
    I want to install Expression 3.3 so I downloaded the installation program E33Mac370en.sit and tried to run it but it opens with "TextEdit" instead showing a bunch of nonsense stuff. It seems like the .sit file extension is not supported??? or my system doesn't have the application to run it.
    What do I need to run ".sit" files in my iMac? Have someone installed Expression 3.3 before? Thanks!

    Guitar Monster wrote:
    Hi my friends,
    I want to install Expression 3.3 so I downloaded the installation program E33Mac370en.sit and tried to run it but it opens with "TextEdit" instead showing a bunch of nonsense stuff. It seems like the .sit file extension is not supported??? or my system doesn't have the application to run it.
    What do I need to run ".sit" files in my iMac? Have someone installed Expression 3.3 before? Thanks!
    Many old PPC apps use .sit compression schemes.
    Be sure you have an Intel version of Expression 3.3 if it exists. Product was discontinued some years ago so there is no support.

  • Need help changing phone language

    My current phone language is french, I dont know any french at all and cant navigate through menus. I've been trying to switch languages but just cant figure it out. I'm using a nokia 500.

    Nokia 500 » Menu » Paramètres » Téléphone » Langue » Langue du téléphone

  • Help in Expression Language: Document Explorer Component

    From the Component Properties of the Document Explorer in WebCenter Spaces, how do I get the current user's Department and append it to my existing folder in UCM? For example in UCM, I have the folder:
    Contribution Folders/Documents/<user_department>
    How do I get and append the user's department using EL so the default Start Folder Path of my Document Explorer is set to the folder with the same name as the department of the current user? Using the Expression Editor of the Start Folder Path, I got:
    *#{webCenterProfile[securityContext.userName].department}*
    to retrieve the current user's department. I tried plainly putting them together like this:
    *Contribution Folders/Documents/#{webCenterProfile[securityContext.userName].department}*
    but that is wrong too. Any ideas, please? Thanks!

    Hoque wrote:
    try this one by adding one more backslash in the beginning-
    /Contribution Folders/Documents/#{webCenterProfile[securityContext.userName].department}
    clarify one thing -
    whether in ucm, whether you have the folder name as user_department or department only ?
    the above will work if the folder name is department(respective department what you have mentioned) only.Thanks for the info, but somehow I got the error:
    Directory not found.
    *Contact the administrator to ensure that the configuration is correct and that the /Contribution Folders/Documents/#{webCenterProfile[securityContext.userName].department} directory exists and is accessible.*
    The *<user_department>* pertains to the department name, i.e. Finance, Marketing, etc. I have folders under the Documents folder like Finance, Marketing, etc. and I have my users' Department field in their user profile defined as Finance, Marketing, etc. so that when he opens the Document Explorer, it must retrieve his department field, and open the corresponding folder for him.

  • Need Help - regular expression

    Hello,
    I am doing one kind of parsing in which my input string will be
    INPUT : hi*< img src='ani.gif'>*
    Desired output : hi
    Means I want to write a reg exp for omitting text in bold shown in above.
    thanks
    Aniruddha

    prometheuzz wrote:
    jverd wrote:
    I continue to be disappointed, but not surprised, at how people are either unable or can't be bothered to communicate their problem requirements, and to consider that there might be cases that may or may not match the one example they give and that need to be accounted for.Yes, I know the feeling. And when asked for clarification, you frequently get just one other example leaving the remaining 1000 cases to guess for the people answering the question.Yup.
    OP: i need regex.......... to turn numbers into X........
    Us: Provide more detailed requirements, and examples of what would and wouldn't get changed.
    OP: "a 1" --> "a X", but "a b" --> "a b" .......bcos...... there r no numbers.
    Us: See previous reply. More detail. Examples.
    OP: ok i thot u guyzz were pros r sumtin so i wudnt have 2 xpln evrthng but whatevs.....lol......... so like i have letters..... and numbers..... n if therz a number i wan 2 mak it a x, like a 1 becomz a x n b 2 bcoms b x......... do u clr now......... pls give me teh codez........ or maybee dis prob 2 hard for u guyzzz..... i chalegne u to do it.....
    Us, deciding it's not worth it to try to explain that his two examples are identical, that his "explanation" added no new information, that he needs to specify whether each digit becomes and X or each numerical token, whether numbers that are connected to words without an intervening space get converted, etc.:
    [:headdesk:|http://www.geocities.com/darrylbu/images/headdesk.gif]
    [:headdesk:|http://www.geocities.com/darrylbu/images/headdesk.gif]
    [:headdesk:|http://www.geocities.com/darrylbu/images/headdesk.gif]
    [:headdesk:|http://www.geocities.com/darrylbu/images/headdesk.gif]
    [:headdesk:|http://www.geocities.com/darrylbu/images/headdesk.gif]
    [:headdesk:|http://www.geocities.com/darrylbu/images/headdesk.gif]

  • I need help with express install

    I am attempting to use the express install option in the swf
    object discussed
    here
    I have used this to embed flash content to overcome the
    'click to activate' issue, but so far, I have been unable to get
    the express install option to work.
    I removed flash player using the
    “uninstall_flash_player.exe” and now the embedded flash
    content doesn’t show up, I get the content between the
    “<div id="flashcontent"> This text is replaced by the
    Flash content. </div>” as expected but express install
    doesn’t run.
    I have expressinstall.as and swfobject.js in the root folder.
    This is the code from the html page:
    <script type="text/javascript"
    src="swfobject.js"></script>
    <div id="flashcontent">This text is replaced by the
    Flash content.</div>
    <script type="text/javascript">
    var so = new SWFObject("rolloverBG.swf", "mymovie", "700",
    "200", "7", "#bdbdbd");
    so.addParam("useExpressInstall", "true");
    so.write("flashcontent");
    </script>
    In the fla file, the first frame has the #include
    "expressinstall.as" code in place.
    I think I have all the parts in place and deployed
    appropriately, I would appreciate any assistance.
    The test page I am using
    can be
    found here.

    The following are important in a roaming network:
    The Express must be connected back to the 2Wire router by Ethernet.
    The Express must be configured as a bridge.
    The Express must broadcast a wireless network that uses the same Network Name (aka SSID) and wireless security type/password as the 2Wire's wireless network.
    In a roaming network, the Express will "extend" the 2Wire's network by creating a second wireless network with the same characteristics. You can literally roam with a wireless laptop between these networks and still be on the 'same' network. However, if the Express is placed outside of the signal range of the 2Wire, then there will be a coverage gap and that can appear as though the network is not extended.

  • Need help with multi language

    I have a situation where I enter Traditonal Chinese character from a mobile device directly into a ms sql 200 server.
    When I use query Analyzer to view the data, everything is correct
    When this data are display on the jsp pages its not readable.
    I have tried serveral conversion with no luck.
    Wonder if anyone have done this before?

    yes tried that and try
    String u1 = new String(s1.getBytes("iso-8859-1"), "utf-8");
    The character pull out from the sql server is just not correctly displayed.
    The problem can be simulated by entering a string of chinese charater
    into sql2000 via query anlayzer of course with the col as nvarchar
    and insert with an N before the characterset.
    then in jsp set up
    <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8">
    and
    String u1 = new String(s1.getBytes("iso-8859-1"), "utf-8");
    and whole load of other combination with no success.

  • Need help with Airport Express and so on.

    Ok so my main problem before getting into what I need help with here is that our MacBooks and now my iPhone 6 plus isn't staying online. Keep getting booted off and then I either have to select the network again or it will eventually go back on. If anyone has a solution or so please feel free to answer that as well. I'm running on Roadrunner with a Netgear 600 wireless router and a motorola modem. Both of which I'll leave the link to below for a better look.
    My Main Question: So I'm looking at a new wireless router mainly and possibly a new modem. I know Apple products are trustworthy but how good is the Airport Express and other Airport products. Also what is the Maximum speed and Maximum data speed for the cheapest express station and if anyone knows the speeds of the other devices it would be greatly appreciated.

    DSL Router to Netgear 5-port Switch and I used the switch to connect to Airport Extreme, TV, Blue-Ray DVD player and DirecTV Receiver.
    The AirPort Extreme base station (AEBS) is a router so it will do what you need.
    You need to reconfigure your setup. Connect the WAN port of the AEBS to the DSL router. Then connect the Netgear switch to one of the LAN ports on the AEBS. The AEBS will properly share the connection.

Maybe you are looking for