Help with sending parameters

I have a datatable of which two columns(Name and Department) were made as URL , where on clicking goes to next page. When I click on Name, it should pass a paramaeter(save). When I click on Department , it should pass other parameter (copy)
<h:datatable value = �#{employerInformation.empInfos}� var = �empTable�
<h:commandLink immediate ="true" onmouseover="setParams(Emp,'Select','Employer')" action = "#{controller.control}" >
                                                                 <f:param name="empIdValue" value="#{empTable.empId}" />
                                                                 <f:param name ="save" value = "{param.save}" />// This is the save param I want to pass when I click on this
                                                                 <h:outputText styleClass="user" value="#{empTable.name}"/>
</h:commandLink>
The same way..I have a command link where I am passing copy parameter.
For this I have getters and setters for Save and Copy in my dto (EmployerInformation).
Also, I n faces-config..
<managed-bean>
<managed-bean-name> employerInformation </managed-bean-name>
<managed-bean-class>dtc.dto. EmployerInformation </managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
<managed-property>
<property-name>save</property-name>
<value>#{param.save}</value>
</managed-property>
<managed-property>
<property-name>copy</property-name>
<value>#{param.copy}</value>
</managed-property>
</managed-bean>
How can I get the value of save and copy on next screen when I click on respective links. When I click on Name..how can I get the �save� on next screen.
Any suggestions

Hi Raymond,
I have <h:column> whici forgot to add in the poost. Also, since it would take soem time for you to go through all the code, I have cut and paste the part of the code.
For more information..i have pasted the respective HTML code when I try for different values. Iss there any thing in my faces-config.xmal file with respective to save.
If the code is <f:param name ="save" value = "#{param.save}" /> the respective generated HTML code is this
document.forms['gdotCip']['save'].value='null
<f:param name ="save" value = "#{save}" />
document.forms['gdotCip']['save'].value='null
any suggestions are a lot helpful
Thanks again..

Similar Messages

  • Help with 'Send to Many" on 5210 please

    I am getting closer to the answer I need about sending a text message to as many people as possible from as inexpensive a phone as possible. Thanks to Jalisinfo for your help with my previous post. I have pasted below the response I have been sent from the Nokia care team to my question. Can anyone help with the part they were unable to answer about how many recipients I would be able to send to using this phone? I need to be able to send to about 70 contacts. All the recipients would be the only people in the contacts list.
    "Pertaining to our previous email, the Nokia 5210 does not support the SMS distribution list feature. On this device, you can send SMS to more than one contacts. This feature is known as "Send to many".
    We are unable to advise on the number of contacts you can send the SMS at one time."
    Thanks to you all for your help.

    oops

  • Help with sending email from RoadRunner account on Mac, iPhone, iPad

    Recently, I have had strange issues where suddenly I realize that I cannot send email using Mac Mail (Mac OS X 10.8.1).  Its a very frustration condition where when everything was once fine, suddenly you stop being able to send email without what appears to be 'reason'.
    Today I learned the reason, and I assume others might run into this as well, so I am posting the issue and solution:
    Per Time Warner/RoadRunner support:  "When on your home network, the SMTP server does not require authentication.  When away from your home network, the SMTP server REQUIRES authentication"
    That is what I believe to be a mistake on RoadRunner's part.  Hundred of thousands of users will not understand that they need to change this setting anytime they go for a coffee at Starbucks.
    So to help, here is what I have come up with:
    From Mail -> Preferences, you need to edit your SMTP server list.  Click the drop-down list next to 'Outgoing Mail Server (SMTP) and select 'edit SMTP Server List.  Create two server connections and name one something that reminds you that it is the home network, and the other a roaming network.  Set the home network server config to Authentication -> None.  Set the roaming network server config to Authentication -> Password and fill in the username/password credentials.
    Having both these servers available for you to select from will reduce the impact of this inconvenient requirement from RoadRunner.
    .....Comcast.....please make service available in my area.....

    Bradley,
    You did it. I used your suggestion and solved what I hope to be the last of a very persistent problem.
    I made both a home and away SMTP server setting on my iMail. I tested both and are working well.
    Of all my research, your suggestion was the only fix to this problem. Now, I hope to be able to send email wherever I am instead of waiting until I am at a home network or worse, resorting to using my phone.
    Thanks again!

  • Help with URL Parameters and HTML DataSet please.

    Hello everybody!
    Looking at the example page: "Using URL Parameters to Control Data Regions", towards the bottom it gives an example of "Set by Product Name", from an XML DataSet using the following sample code:
        //Data set for the second example. var ds2 = new Spry.Data.XMLDataSet("../../demos/products/products.xml", "products/product");    //If the URL parameter 'product' has a value, set the XPath that includes a filter and then load the data. if (params.product){    ds2.setXPath("products/product[name = '"+params.product+"']");    ds2.loadData(); }
    Can anyone please explain how to amend this to work with a HTML Dataset rather than XML?
    The first example on the page (Set by RowID) works unchanged for the HTML DataSet, but I don't know what I should replace the 'setXPath' line with.
    I see this has been asked before, but I'm afraid I can't find any answer that works (or, more often, that I can understand properly!)
    Grateful for any suggestions.
    Len

    Wow! Thanks Ben.
    I hadn't thought about using Stacked Containers.
    I'll test this out tonight and let you know how I get on.
    Cheers,
    Len
    A few days later and at last I've been able to test your suggestions.
    I think I must be doing something wrong as the links and content don't work at all:
    http://www.myosanthe-bernhard-huber.com/html/stack1.php
    I know that the stacked containers do work (http://www.myosanthe-bernhard-huber.com/html/stack0.php), so I guess there are some errors in the coding somewhere.
    Would you mind reviewing, please?
    The important thing for me (in this case, anyway) is to get the called page's content using its 'Ref', and I'm not sure what benefit there is in using stacked containers as opposed to master-detail containers.
    The master-detail method works reasonably well for me at
    http://www.myosanthe-bernhard-huber.com/html/fotoalbum.php and sub-pages.
    Perhaps I am betraying my lack of knowledge, but as I said in my original post, I think that I just need the HTMLDataSet equivalent to:
        //Data set for the second example.
    var ds2 = new Spry.Data.XMLDataSet("../../demos/products/products.xml", "products/product");
       //If the URL parameter 'product' has a value, set the XPath that includes a filter and then load the data.
    if (params.product){
       ds2.setXPath("products/product[name = '"+params.product+"']");
       ds2.loadData();
    which as you can see uses an XMLDataSet, but does exactly what I need.
    (see http://labs.adobe.com/technologies/spry/samples/data_region/DataWithURLParams.html)
    Thanks again for your help, Ben.
    Len
    Message was updated by: ec1lennie

  • SAPRFC - Help with Export parameters

    Hi, I need to connect SAP through PHP and I'm using SAPRFC.
    I have problems when the RFC used EXPORTS (works well with IMPORTS and TABLES). I tried in all ways that I found on the
    Internet, but not accomplished fix it. In some cases, no receipt data, and in other only achievement print the first
    character of each field.
    Example:
    $result=$sap->callFunction("BAPI_USER_GET_DETAIL",array(array("IMPORT","USERNAME",< USER >),array("EXPORT","LOGONDATA",array())));
    if ($sap->getStatus() == SAPRFC_OK)
         foreach ($result["LOGONDATA"] as $solicitud)
              echo $solicitud["LOGONDATA"];
    In this case, I get only the first character of each of the fields of LOGONDATA. I hope that you can help me.
    Thank you!

    I made the suggested change:
    exp / file=$file tables=shrlgpa query=" where shrlgpa_pidm in (Select sztahbr_pidm from purdue.sztahbr where sztahbr_to_extract=\'Y\' and sztahbr_export_status=\'N\')"
    and got the following error:
    LRM-00116: syntax error at 'sztahbr_to_extra' following 'where'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    Shannon

  • Help with Sending Mail

    I am fairly new to the Mail application. I have a gmail account, and I am able to receive emails, but I cannot send emails. A message pops up saying something is wrong with the server. Any suggestions/help would be appreciated.
    Thanks
    Ryan

    HI Ryan,
    Go here: Mac OS X 10.5: Can receive email, but not send email
    In the future it would help if we knew which Mac you have and running exacty which version of Leopard. Please click: My Settings on the right side of this page and fill out your profile then scroll down and click Save. Thanks.
    You need to be running 10.5.5 or later according to that link.
    Also, repair disk permissions...
    Quit any open applications/programs. Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn
    Message was edited by: Carolyn Samit

  • Help with passing parameters to Aspell from C [SOLVED ENOUGH]

    I found this really cool utility called aspellstdout that will allow for rudimentary spell check in Scite:
    http://www.distasis.com/cpp/scitetip.htm#spell
    What I can't figure out (and the author didn't either) is how to pass parameters beyond language to Aspell. What I want to be able to do is pass mode switches. For instance, if I have a LaTeX document I want to be able to pass the -t switch (--mode=tex). I looked through aspell.h and couldn't see what I'm looking for.
    --EDIT--
    The output to xterm option is far easier and it makes quite a bit more sense now that I'm use to it. From my .SciTEUser.properties:
    # Rudimentary LaTeX Spell Checker
    command.name.2.$(file.patterns.tex)=Spell Check
    command.2.$(file.patterns.tex)=xterm -e aspell -t -c $(FileNameExt)
    command.subsystem.2.$(file.patterns.tex)=0
    Last edited by skottish (2008-09-08 01:58:57)

    Hi,
    I see you're using System.Data.OracleClient (which has been deprecated by MS) rather than Oracle.DataAccess.Client, but this works for me with Oracle's ODP, maybe it will help.
    Cheers,
    Greg
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    public class dataadapterfill
        public static void Main()
            using(OracleConnection con = new OracleConnection("user id=scott;password=tiger;data source=orcl"))
                con.Open();
                using(OracleCommand cmd = new OracleCommand("select ename from emp where ename = :1", con))
                    cmd.Parameters.Add(new OracleParameter("myename", OracleDbType.Varchar2, 50)).Value = "KING";
                    OracleDataAdapter da = new OracleDataAdapter(cmd);
                    DataSet ds = new DataSet();
                    da.Fill(ds);
                    foreach (DataRow row in ds.Tables[0].Rows)
                        Console.WriteLine("ename: {0}", row["ename"]);
    }

  • Can anyone help with sending non-Ascii messages?

    I'm currently writing a small application that sends and receives encoded messages through JavaMail. Here's the problem: each character in the string that I'm sending can be up to 11 bits long and I'm apparently losing accuracy while emailing encoded text.
    Apparently, JavaMail treats Strings as a series of bytes, while Java treats Strings as a series of integers. When I try
    String message = "Message to code";
    message = encodeMessage(message);
    message = decodeMessage(message);
    and then print out the contents of message, I get the correct contents of message. However, when I try
    String message = "Message to code";
    message = encodeMessage(message);
    Message msg;
    msg.setContent(message, "text/plain");
    and then receive the message and read the contents, the contents are changed. I tried a for/while loop to see what the string "message" was holding before and after I emailed it. The results:
    Before:
    Encoded text as integers: 74 196 478 1006 1921
    After:
    Decoded text as integers: 74 196 63 63 63 13 10
    Can anyone give me suggestions on how I can send this data without losing accuracy? I had the idea of sending an int[] array, but I can't see an easy way of doing that... I'm fairly new to JavaMail, so any help is greatly appreciated :-)
    Thanks,
    Robert Chatham

    I've figured out a solution only to come up with an even more bizarre problem. JavaMail is now inserting random bytes into my message.
    My code:
    (When sending the email):
    String encodedMessage;
    msg.setContent(encodedMessage);
    (When receiving the email):
    String encodedMessage = (String)msg.getContent();
    I've printed out a list of the bytes in each string immediately before sending the encoded message and immediately after receiving the encoded message. I'm doing absolutely nothing to the message between the times I send and receive it (and I don't think there's a way to, considering that it's off at the mail server.)
    Take a look at a sample of the bytes of the encoded message before sending and after receiving (I added parenthesis for emphasis):
    0 74 1 96 4 78 10 6 19 21 18 87 17 65 14 13 7
    0 74 1 96 4 78 (13) 10 6 19 21 18 87 17 65 14 13 (10) 7
    So... what is causing these extra bytes to be inserted into my message? In ascii format, the two bytes represent (I believe) line feed and form feed - but why inserted, and why so randomly?
    Thanks,
    Robert

  • Help with formatting parameters in html output?

    Hi --
    I would like to use a style sheet to adjust the way that javadoc displays lists of parameters below each method. In the HTML output, the code around the parameter name and description looks like this:
    <dd><code>filterContainers</code> - True if the containers within the database
    are to be considered individually during task assignment; false if the entire database is to be assigned as a single task.
    </dd>
    I apologize if this is basic CSS question, but I don't understand how to change the way 'filterContainers' is formatted -- maybe make it italic or something. I was also hoping to increase the padding below each parameter name/description because they seem to squished together.
    Any help is greatly appreciated.
    Jen

    Add this to stylesheet.css to make "filterContainers" italic:
    dl dd dl dd code {
    font-style: italic;
    }This adds space below lines inside dd
    dl dd dl dd {
    padding-bottom: 3px;
    }(You could change it to padding-top to add the space above instead.)
    The sequence "dl dd dl dd code" is the nested hierarchy of HTML tags relative to body.
    Here are the CSS elements defined above: (CSS 2.0)
    http://www.w3.org/TR/2005/WD-CSS21-20050613/propidx.html

  • Help with sending emails to multiple users.

    Currently we have a process to send mail to muliple users by looping through the list of users and sending each individual an email
    <Action id='1' name='sendEmail' application='com.waveset.provision.WorkflowServices'>
    <Argument name='op' value='notify'/>
    <Argument name='template' value='$(template)'/>
    <Argument name='toUser' value='$(tuser)'/>
    <Argument name='catch' value='notificationException'/>
    </Action>
    The variable tuser contains a single email address.
    Is there any way to setup tuser to contain multiple email addresses?
    I have tried passing a list and a string separated by colons (ex: <s>[email protected]; [email protected]</s>) and neither one works.
    Question 2
    Is it a bad idea to try and send email to up to 50000 users at once using IDM? Besides the fact that I would need to search for specific users and get their email addresses based on their capabilities.

    Hi,
    For sending emails to multiple users, use to instead of toUser. Put the names in comma seperated values
    <Action id='0' application='com.waveset.provision.WorkflowServices'>
    <Argument name='op' value='notify'/>
    <Argument name='template' value='$(template)'/>
    <Argument name='to' value='$(to)'/>
    <Argument name='cc' value='$(cc)'/>
    <Argument name='catch' value='notificationException'/>
    </Action>
    You can use IDM to send emails.
    it will be a good idea to break down the email that you are sending into groups/batches. If possible, you can send email to DL s
    Else, you can segregate the users based on roles and send emails. This will reduce the load. Hope it helps
    Regards
    Arjun
    Edited by: arjun.sengupta on Dec 4, 2012 3:26 AM

  • Need help with sending email notifications via OEM

    Hi Folks,
    Objective: To setup email notification if the listener or the database instance goes down
    Version: 10 g Rel 2
    I have setup the email from OEM. I have verified the configuration by successfully sending myself test emails.
    I have configured the schedule (7 days a week, from 1 A.M to 11 P.M)
    I have also configured the out-of-the package alerts so that I will be notified if the listener goes down
    However, once I manually stop the listener, no email is sent out?
    Can somebody spot any obvious steps that I might have missed? Or if somebody can suggest any debugging steps that might help to resolve the issue ?
    Thanks in advance.
    rogers42

    Hi Roger
    Ok, tell me
    1. You have a user like DBA and configurate this count for recive email?
    2. When You try send email from Console You recive this email? Your prove server email
    You should recive this mensagge
    Este mensaje de correo electrónico de prueba de Oracle Enterprise Manager indica la configuración correcta de la dirección de correo electrónico y del servidor de correo.

  • Help with Page Parameters with PDK and/or PL/SQL

    Hello,
    I'm having difficulties get the real path of pages with PL / SQL. Another parameter that can not put the portlet in PL / SQL is the HTTP_REFERER.
    I read the PDK API but I could not understand how to use the
    HTTP_REFERER
    And as I get the realpath of the page? (In a portlet within the page in PL / SQL or JSP)
    Example: /portal/page/portal/groupage/page/page...
    Somebody can help me?
    Thks =]~

    Are you using Oracle Application Server Portal's PDK? If so, you would have better luck posting to that forum: Oracle Application Server Portal
    Greg

  • One more problem with sending parameters

    hi people!
    I'm new in JSP, so don't laugh at me if i'm asking for something stupid or obvious.
    I have a form in my jsp which contains several input texts. the number of these texts is different according to query results by which this page is generated. Such as:
    <jbo:DataSource id="reportBoundVarsVO" whereclause="<%=whereString%>" appid="ServerModule" viewobject="ReportboundvarsView" />
    <FORM method="post" action="GeneratedReport.jsp">
    <%RowSet boundRows=reportBoundVarsVO.getRowSet();
    Row cr;
    %>
    <%while (boundRows.hasNext()) {
    cr=boundRows.next();%>
    <%=cr.getAttribute(2).toString()%>
    <INPUT TYPE=TEXT SIZE=10><BR>
    <%}%>
    <P><INPUT TYPE=SUBMIT VALUE="Ok"></P>
    Then i need to send values of these texts to next page... But, texts have no NAMES so how can i get parameters in next page? I mean how can I use methods like getParameterValues()?
    thanks

    <INPUT TYPE=TEXT SIZE=10><BR>--------------why not <INPUT TYPE=TEXT NAME =" TextName"SIZE=10><BR> ...in this way each #text# input have same -TextName
    <%}%>
    <P><INPUT TYPE=SUBMIT VALUE="Ok"></p>
    Then i need to send values of these texts to next
    page... But, texts have no NAMES so how can i get
    parameters in next page? I mean how can I use methods
    like getParameterValues()?------then in next page use getParameterValues("TextName")

  • HT1694 Help with sending hotmail on IPad please

    I can send and receive hotmail on my PC and on my iPhone. I can receive mail on my iPad, but it will not let me send mail.  I keep getting  the message the password is not correct for the SMTP.  I have changed passwords until I am dizzy!  Help!

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
     Cheers, Tom

  • Help with FCC parameters

    Hi,
    I have the source file in the following format
    USD
    2345
    23443
    23454
    234543
    23456
    23456
    234546
    23456
    23454
    23462
    5634
    USD
    2345
    23454
    234543
    234546
    23456
    23454
    23462
    I want to accept all the data as single Field
    What FCC parameters do I need to place?
    I placed endseperator as 'nl' and without fieldSeperator, the file s not being picked
    I have declared the source file as STRING. how to I specify the maxlength to the MAX when I specify it as "............" generating me error message.
    Thanks,
    Nikhil.

    >>I would like to accept all the records at the same time as Single field
    Do u mean that u need to have the total content of the file to be as a single field?
    For this input
    USD
    2345
    23443
    23454
    234543
    23456
    23456
    234546
    23456
    23454
    23462
    5634
    USD
    2345
    23454
    234543
    234546
    23456
    23454
    23462
    1. Do u need to create 2 records of single field each 0r
    2. Do u need to create a single record with single field holding all the data.
    Regards
    San

Maybe you are looking for

  • Group messages in iOS 8 updated not working on my iphone 5

    i updated to the new iOS 8 this morning on my iphone 5 and now the group messaging isn't working. no group message option in setting neither. help please.

  • HT1349 How do I know if my itouch is still under warranty?

    How do I know if my ipod is still under warranty?

  • Change of Business Partner in RE-Fx Lease Out Contract.

    Hi, I would like to know the possibility of change in the Business Partner in a RE Lease out contract wherein some postings have already made.i.e. A contract was created with Business Partner X and postings and invoicing was done. Later it was decide

  • FileUpload UI element ...

    Hi guys, I have placed FileUpload UI element into a FileUploadView and binded it to context attributes PdfSource (binary type) and PdfName (string type). Also I have placed a button into the view. Folowing code should be executed after selecting some

  • Airport Vs Ethernet

    Hello. My computer has been repaired twice for the Nvidia problem. They changed the mainboard after the first problem but after only one month, they had to do it again since the problem came back... Thanks Nvidia! All that to say that what follows ha