Auto-re-action method Question (Please Urgent)

Hi, all
I have very quick question about Auto-re-action method CCMS, I setup method for "server dialog response time" and changed threshold value to become red and alert create, when I double click on it it shows 10 Alerts with status "Action_Faled" its suposed to be "Action Required" or Action-Running...
Background job has been created, do you know how do i trace that why it does't work
Even SMTP works fine, and internal mail works fine...
Thanks a lot

please let me know where should I post it
i am working XI 3.0

Similar Messages

  • Simple Question Please URGENT

    Hello All,
    I'm having a little problem in witting an SQL statement.
    I'm sure there is a simple solution for it but its just not clicking with me!.
    Anywayz,
    I'm trying to write a statement that in the FROM clause, there is a formula, and i would like to assign conditions to this formula in the WHERE Clause
    Ex:
    SELECT DateValue(FLD_AS_STRING) FROM Table1 WHERE ???
    I want the statement to convert the FLD_AS_STRING field (which is in string format) to Date format, and in the same time i want to only view fields that it's FLD_AS_STRING is greater than today's date (after it is converted to Date)?
    How can i do that in this statement?
    Thanks in advance,
    Best Regards

    who do you mean "we"?Forum members that are quite fed up with people declaring their matters (more) urgent then other people's questions. I'm also one of them.
    I just wanted to grab people's attention for helpA simple thread with an appropriate subject line that describes the problem in short and a message that includes enough information to develop a solution for said problem would suffice.
    in the same time, it IS urgent, because my work is
    based on the solution for this issue...So what about everybody's else work? Not as important as your task?
    BTW, i dont see how rude that could be, could you plz
    explain!?Just imagine if everyone that wants to grab attention in this forums uses urgent in the subject line. Do you really consider that the way to go?
    C.

  • Using an existing USB Auto DC power adapter question please...

    Good Morning.
    I have an exisiting USB Auto/DC power adapter for my GPS unit.
    Can I used this for the Iphone please?
    Thank you.

    You shouldn't have any problem. Car chargers use a trickle charge, not a full powered charge.

  • Unable to call the backend action method

    Hi,
    First of all,I would like to let you know that I am not very much familiar with jsf. My problem is as follows:
    I have a jsf page having some input text boxes,one gridview component( Infragistics jsf component) and a submit button. On submit, I am trying to call one managedbean action method. The gridview component has further two columns,one input text box and one h:selectonemenu component.
    When I try to submit the page, it doesn't call the managedbean action method.The gridview component has one attribute called datasource which is basically a list.During debugging, I found that on submitting the page, it goes to getter of datasource.
    One thing I noticed that If I remove the h:selectonemenu from the gridview component, the action method gets called.
    Can any body please suggest me where could be the problem?
    Thank you

    Hi Guys,
    Thanks for your solutions and answers. My problem was solved.
    But again I have similar kind of problem. This time I have h:selectOneRadio component which seems to be causing the problem because if I remove this, the call goes to action method. It's again seems to be conversion or validation error.As suggested,I have tried putting <h:message> for this component but I get a warn message in console like "Unable to find component with ID 'categorylist' in view". I further saw in the html source of the page and indeed found that the id was not there.I have no idea about it,why it's happening.
    I have following code snippet for jsp page:
    <div id="inner_body" style="height: 550px;">
                                  <h:outputText value="#{msg.Manage_MED_CLASS}" styleClass="title" />
                                  <h:messages globalOnly="true" styleClass="error" />
                                  <f:verbatim>
                                       <br />
                                       <br />
                                  </f:verbatim>
                                  <br />
                                  <ig:gridView id="medclassdefnitionlist"
                                       dataSource="#{medClassManagedBean.medClassDefinitions}">
                                       <ig:column>
                                            <f:facet name="header">
                                                 <h:outputText value="Med class definition"></h:outputText>
                                            </f:facet>
                                            <h:outputText value="#{DATA_ROW.medClassDef}"></h:outputText>
                                       </ig:column>
                                       <ig:column>
                                            <f:facet name="header">
                                                 <h:outputText value="Classification(Controlled/Uncontrolled)"></h:outputText>
                                            </f:facet>
                                            <h:selectOneRadio id="categorylist"
                                                 value="#{DATA_ROW.medClassCategory}"
                                                 style="white-space: nowrap">
                                                 <f:selectItem itemLabel="Yes" itemValue="true" id="itemid1"/>
                                                      <f:selectItem itemLabel="No" itemValue="false" id="itemid2"/>
                                            </h:selectOneRadio>
                                            <h:message for="categorylist" styleClass="error"></h:message>
                                       </ig:column>
                                  </ig:gridView>
                                  <f:verbatim>
                                       <br />
                                       <br />
                                  </f:verbatim>
                                  <h:panelGrid columns="2" cellpadding="4" cellspacing="3">
                                       <h:commandButton image="../../../images/btn_save.gif"
                                            accesskey="S"
                                            action="#{medClassManagedBean.saveMedClassDefinition}"
                                            style="outline: none;"></h:commandButton>
                                       <h:commandButton accesskey="C" style="outline: none;"
                                            image="../../../images/btn_cancel.gif"
                                            action="backtoreportinglevel" />
                                  </h:panelGrid>
                             </div>Under ig:gridView component, I have two columns, in the first one h;outputtext is there while in the 2nd one h:selectOneRadio is there. I tried putting immediate="true" in h:commandButton , and then the call goes to the action method. So, it is definitely failing in either validation or conversion phase.
    The following is my java code snippet:
    public ArrayList<MedClassBackingBean> getMedClassDefinitions() {
              try {
                   medClassDefinitions = new ArrayList<MedClassBackingBean>();
                   HttpServletRequest request = (HttpServletRequest) FacesContext
                             .getCurrentInstance().getExternalContext().getRequest();
                   HttpSession session = request.getSession();
                   String hospitalCode = (String) session
                             .getAttribute(Constants.HOS_GLO_EXCLUSION_SESSION_VAR);
                   MedGroupBD medGroupBd = new MedGroupBD();
                   List<Object[]> medClassList = medGroupBd
                             .getMedClassDefinitionsForHospital(hospitalCode);
                   //populateMedClassCategoryList();
                   if (UtilityFunctions.isNotEmpty(medClassList)) {
                        for (Object[] medClass : medClassList) {
                             MedClassBackingBean medClassBackingBean = new MedClassBackingBean();
                             medClassBackingBean.setHospitalCode(hospitalCode);
                             medClassBackingBean.setMedClassDef(medClass[0].toString());
                             if (medClass[1] != null) {
                                  if (medClass[1].toString().equals("Controlled")) {
                                       medClassBackingBean.setMedClassCategory("true");
                                  } else {
                                       medClassBackingBean.setMedClassCategory("false");
                             } else {
                                  medClassBackingBean.setMedClassCategory("false");
                             medClassDefinitions.add(medClassBackingBean);
              } catch (Exception e) {
                   log.error(e.getMessage(), e.getCause());
              return medClassDefinitions;
         }The above code returns the list for the ig:gridView datasource. "medClassCategory" is the property of backing bean which is mapped for the value attribute of h:selectOneRadio component. The managed bean is in the request scope.Right now on submit of form, first the call goes to this method "getMedClassDefinitions" and then I found like call goes to setter of medClassCategory property in the backing bean as well and sets the changed value from the UI but it never goes to the action method.
    Please see if anybody can help me.
    Thank you,
    Edited by: dacsinha on Nov 27, 2009 6:36 AM

  • I forgot my security question and i guess i failed all mt atempts, what can i do ? please urgently..

    Hello,
    i forgot my security question and i guess i failed all mt atempts, what can i do ? please urgently..

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (112725)

  • Auto tab focus method is not working in iOS devices please share the ideas why its not working?

    Auto tab focus method is not working in iOS devices. Please share the idear i am facing this issue while developing code for devices.

    Hi there,
    I can confirm this bug.
    Not sure if this info is relevant, but this is my experience:
    I am on the FIDO network, and so are two other people I know.
    We all tried blocking numbers, and calls ring right through. Text messages are blocked successfully. (never tried facetime)
    I also tried a ROGERS device running IOS7, and was successfully able to block my phone call from ringing through. HOWEVER, my call was forwarded to their voicemail, I was able to leave a voicemail for the person, and they did get an alert that they had a new voicemail.
    I have not yet had a chance to test this on Bell, Telus, or any other carriers.
    Spoke to Apple, and they advised me to do a hard reset (hold both buttons to shut off and reboot the phone), and if that fails to do an iOS restore.
    I have yet to try this, but hopefully someone will have a better solution.

  • Help please with my action method

    Hello everybody,
    Actually I'm working in a CRM 4.0 development project and I'm totally new in ABAP Programming.
    My question is the following:
    I have to develop an action method which delete several partner functions from partner tab in a sales order (for all included items and always the same partner functions, ZO1, ZO2 and ZO3 for example).
    Which is the best way to do it? Maybe using CRM_ORDER_MAINTAIN function?
    Could anybody help me posting some example code or any guideline?
    Thanks in advance.

    hi, I think you need a way to delete partner of SD.
    I do the similar functionality for PO, so I think the situation is same.
    I think some FM can be helpful to you.
    try this:
    SD_SALESDOCUMENT_CHANGE
    it has a TABLE parameter PARTNERCHANGES and PARTNERS.
    Hope it will be helpful
    thanks

  • Action method not called in Backing Bean

    I am using <x:inputFileUpload> tag inside my jsp page. I am trying to call action method when clicking button, but action method not called.
    My jsp page:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://myfaces.apache.org/extensions" prefix="x"%>
    <html>
         <head>
              <title>File upload Test</title>
         </head>
         <body>
              <f:view>
                   <h:form id="form1" enctype="multipart/form-data">
                        <h:messages id="asdghsda"/>          
                        <h:outputText value="This is file upload page functionlaity POC" />                                   
                        <h:inputText value="#{fileUploadBean.textField}" />
                        <x:inputFileUpload id="myFileId" value="#{fileUploadBean.myFile}" storage="file" required="true"/>                    
                        <h:commandButton action="#{fileUploadBean.storeFile}" value="Enter here" />                    
                        <h:commandLink value="Clicl Here!!" action="#{fileUploadBean.storeFile}"></h:commandLink>
                   </h:form>               
              </f:view>
         </body>     
    </html>
    My backing bean:
    package com.beans;
    import java.io.BufferedInputStream;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import org.apache.log4j.Logger;
    import org.apache.myfaces.custom.fileupload.UploadedFile;
    public class FileUploadBean {     
         private static Logger logger = Logger.getLogger(FileUploadBean.class.getName());
         private String textField;
         private UploadedFile myFile;
         public UploadedFile getMyFile() {
              logger.info("inside get method");
         return myFile;
         public void setMyFile(UploadedFile myFile) {
              logger.info("inside set method");
              this.myFile = myFile;
         public void storeFile(){          
              logger.info("Inside the storeFile method");
              logger.info("The text field value: " + getTextField());
              try {
                   InputStream in = new BufferedInputStream(myFile.getInputStream());
                   logger.info("The string is: " + in.read());
                   System.out.println(in.read());
                   File f = new File("D:\\share\\sample.txt");               
                   OutputStream out = new FileOutputStream(f);
                   out.write(in.read());
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              logger.info("Exit from the storeFile method");
         public String getTextField() {
              return textField;
         public void setTextField(String textField) {
              this.textField = textField;
    My web.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>MyJSFProject</display-name>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>server</param-value>
    </context-param>
    <filter>
    <filter-name>ExtensionsFilter</filter-name>
    <filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
    <init-param>
    <param-name>uploadMaxFileSize</param-name>
    <param-value>10m</param-value>
    </init-param>
    <init-param>
    <param-name>uploadThresholdSize</param-name>
    <param-value>100k</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>ExtensionsFilter</filter-name>
    <servlet-name>FacesServlet</servlet-name>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    </web-app>
    Can someone help me on this? I need urgently.

    One straight and simple answer which i can give you method associated to action attributes always returns a java.lang.String Object.
    REF :
    action:
    =====
    If specified as a string: Directly specifies an outcome used by the navigation handler to determine the JSF page to load next as a result of activating the button or link If specified as a method binding: The method has this signature: String methodName(); the string represents the outcome
    source : http://horstmann.com/corejsf/jsf-tags.html#Table4_15
    therefore
    change
    public void storeFile(){
    logger.info("Inside the storeFile method");
    logger.info("The text field value: " + getTextField());
    try {
    InputStream in = new BufferedInputStream(myFile.getInputStream());
    logger.info("The string is: " + in.read());
    System.out.println(in.read());
    File f = new File("D:\\share\\sample.txt");
    OutputStream out = new FileOutputStream(f);
    out.write(in.read());
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    logger.info("Exit from the storeFile method");
    }to
    public String storeFile(){
    logger.info("Inside the storeFile method");
    logger.info("The text field value: " + getTextField());
    try {
    InputStream in = new BufferedInputStream(myFile.getInputStream());
    logger.info("The string is: " + in.read());
    System.out.println(in.read());
    File f = new File("D:\\share\\sample.txt");
    OutputStream out = new FileOutputStream(f);
    out.write(in.read());
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    logger.info("Exit from the storeFile method");
    return "success";
    }else where you can make use of actionlistener property in the following senario.
    but the method signature has to be void storeFile(ActionEvent ae)
    and could be use like
    <h:commandButton actionlistener="#{fileUploadBean.storeFile}" action="success" value="SUBMIT" /> Hope that might help :)
    REGARDS,
    RaHuL

  • ReCaptcha question, please help?

    Hello!!
    I am trying to set up the reCaptcha function on my website and i am having some difficulty understanding some of the setup criteria.
    From the way it looks, it seems that I would have to have two actions in my form. This can't be correct is it??
    Here is my form:
    <form class="required-form" action="http://www.jeurmston.com/php/formmail_request.php" method="post" name"SampleForm">
                   <input type="hidden" name="good_url" value="http://www.jeurmston.com/thankyou.html" />
                   <input type="hidden" name="env_report" value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT,AUTH_TYPE,REMOTE_USER">    
                   <input type="hidden" name="recipients" value="[email protected]" /> 
                   <input type="hidden" name="subject" value="Request A Quote - Webform Mailer">
                   <input type="hidden" name="mail_options" value="[email protected]" />
                    <ol class="forms">
                        <li>
                          <label for="name"> Name of Property:</label>
                          <input type="text" name="name" id="name" />
                        </li>
                        <li>
                          <label for="company"> Name of Company/Owner:</label>
                          <input type="text" name="company" id="company" />
                        </li>
                        <li>
                          <label for="address1"><em class="required">*</em> Address / APN #:</label>
                          <input type="text" name="address1" id="address1" class="required" />
                        </li>
                        <li>
                          <label for="address2"> Address 2:</label>
                          <input type="text" name="company" id="company" />
                        </li>
                        <li>
                          <label for="city"><em class="required">*</em> City:</label>
                          <input type="text" name="city" id="city" class="required" />
                        </li>
                        <li>
                          <label for="state"> State:</label>
                                    <p class="state">Nevada</p>
                        </li>
                        <li>
                          <label for="property[]"><em class="required">*</em> Use of Property:</label>
                          <select name="property[]" multiple id="property[]" class="required">
                                    <option value="select" selected>Please Select...
                            <option value="assembly">Assembly/Meeting Place
                            <option value="commer">Commercial General
                            <option value="health">Health Care
                            <option value="indust">Industrial
                            <option value="land">Land
                            <option value="lodgeHosp">Lodging & Hospitality
                            <option value="mixed">Mixed-Use
                            <option value="multiFam">Multi-Family
                            <option value="office">Office
                            <option value="retail">Retail
                            <option value="senior">Senior Housing
                            <option value="shopping">Shopping Center
                            <option value="special">Special Purpose
                            <option value="sportEnt">Sports & Entertainment
                           </select>
                        </li>
                        <li>
                          <label for="report[]"><em class="required">*</em> Report Type:</label>
                                    <select name="report[]" multiple id="report[]" class="required">
                                      <option value="select" selected>Please Select...
                                <option value="self">Self Contained
                                <option value="summary">Summary
                                <option value="restricted">Restricted
                                <option value="advise">Unknown (please advise)
                            </select>
                        </li>
                        <li>
                          <label for="client_company"> Client Company:</label>
                          <input type="text" name="client_company" id="client_company" class="required" />
                        </li>
                        <li>
                          <label for="client_first"><em class="required">*</em> Client First Name:</label>
                          <input type="text" name="client_first" id="client_first" class="required" />
                        </li>
                        <li>
                          <label for="client_last"><em class="required">*</em> Client last Name:</label>
                          <input type="text" name="client_last" id="client_last" class="required" />
                        </li>
                        <li>
                          <label for="client_phone"><em class="required">*</em> Client Phone:</label>
                          <input type="text" name="client_phone" id="client_phone" class="required" />
                        </li>
                        <li>
                          <label for="client_email"><em class="required">*</em> Client Email:</label>
                          <input type="text" name="client_email" id="client_email" class="required" />
                        </li>
                        <li>
                          <label for="message"> Message:</label>
                          <textarea name="message" id="message" ></textarea>
                        </li>
                        <li class="buttons submit">
                          <button type="submit">Submit</button>
                           </li>
                        <li class="buttons reset">
                          <button type="reset">Reset Form</button>
                           </li>
                    </ol>
                  </form>
    And here is the reCpatcha example from thier website:
    <html>
      <body>
        <form action="" method="post">
    <?php
    require_once('recaptchalib.php');
    // Get a key from https://www.google.com/recaptcha/admin/create
    $publickey = "";
    $privatekey = "";
    # the response from reCAPTCHA
    $resp = null;
    # the error code from reCAPTCHA, if any
    $error = null;
    # was there a reCAPTCHA response?
    if ($_POST["recaptcha_response_field"]) {
            $resp = recaptcha_check_answer ($privatekey,
                                            $_SERVER["REMOTE_ADDR"],
                                            $_POST["recaptcha_challenge_field"],
                                            $_POST["recaptcha_response_field"]);
            if ($resp->is_valid) {
                    echo "You got it!";
            } else {
                    # set the error code so that we can display it
                    $error = $resp->error;
    echo recaptcha_get_html($publickey, $error);
    ?>
        <br/>
        <input type="submit" value="submit" />
        </form>
      </body>
    </html>
    Exactly where am I supposed to insert this information? This is what i do not completely understand. Also, as far as the PHP, it says that I will need a php file called verify.php. Am I supposed to create a new file? Or is it possible to add this to my already existing php validation script?
    Sorry I am so confused by this, it is my first time setting it up. Any help will be much appreciated. Thank you all so much!
    -Greg

    Hey Jon, quick question if you don't mind?
    I am using the reCaptcha on two seperate forms on my website, I have set them up correctly, as far as I know. They have the same exact setting but with the link, specific to each. Problem is, one form is working, and for no real apprent reason, the other form I am recieving an error: verify_failed. Here's the error part of the email.
    The following error occurred in FormMail :
    verify_failed
    Error=Image verification string missing. This is probably a fault on the server.
    On google reCaptcha site I made sure that the key is site wide and I have checked and recheked my settings, and can't seem to find anything wrong...
    Any ideas??
    I really appreciate it.
    Thank you!
    -Greg

  • Value  set in constructor is not getting saved in button  Action method

    Hi All,
    I am not understanding why the value set ( On Condition )in constructor is not hold in the button actoin method.
    Could any body explain me on that
    for this I will try to explain with sample example
    I have taken a button and add a integer property in session bean.
    now if session bean's property is even then I am trying to set the button value to bidNow other wise Accept Invitation.
    Till this opstion everything is OK
    but once I click on Button,
    Constructor is doing the right job only. But I do not understand why in button action I am getting the First Value only.
    public Page1() {
            // <editor-fold defaultstate="collapsed" desc="Creator-managed Component Initialization">
            try {
                if (getSessionBean1().getIntValue()%2==0)
                    button1.setValue("BidNow");
                else
                    button1.setValue("Accept Invitation");
                getSessionBean1().setIntValue(getSessionBean1().getIntValue()+1);
                log("In Constructor Button Value : "+button1.getValue());
            } catch (Exception e) {
                log("Page1 Initialization Failure", e);
                throw e instanceof javax.faces.FacesException ? (FacesException) e: new FacesException(e);
            // </editor-fold>
            // Additional user provided initialization code
        public String button1_action() {
            // TODO Replace with your code
            log("In Action Button Value : "+button1.getValue());
            return null;
        }and here is the log
    [#|2005-07-19T11:55:17.859+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:17.859+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:18.359+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:18.359+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:18.843+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:18.843+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:19.312+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:19.312+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:19.828+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:19.828+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:20.234+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:20.250+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:20.828+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:20.828+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:21.328+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:21.328+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:35.437+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:35.437+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:35.906+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:35.921+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:36.265+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:36.265+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:36.890+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:36.890+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:37.171+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:37.171+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:37.468+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:37.468+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]As per this log every time I am getting Bid Now only in action, though the value is changed in Construtcor
    Can u explain the reason for this

    Hi Sudhakar,
    Please try the following and you will get an idea as to what is happening:
    1. Drag and drop a button, 2 outputText components
    2. Add a property to the session bean called intValue of type int. Customize it to set it's initial value to 0
    3. Add the following lines of code to the constructor
    outputText1.setValue("" + getSessionBean1().getIntValue());
    getSessionBean1().setIntValue(getSessionBean1().getIntValue()+1);
    4. Double click on the button component to go to the button action method.
    5. Add the following line of code
    outputText2.setValue("" + etSessionBean1().getIntValue());
    6. Save and run the application
    7. Watch the values of outputText1 and outputText2 with each click of the button
    Also, try the application with the following code block in the button action method:
    if(getSessionBean1().getIntValue()%2==0){
    button1.setValue("Bid Now");
    } else{
    button1.setValue("Accept Invitation");
    getSessionBean1().setIntValue(getSessionBean1().getIntValue()+1);
    outputText1.setValue(button1.getValue());
    outputText2.setValue("" + getSessionBean1().getIntValue());
    When the above code block is in the button action method the values set to button are as expected.
    Hope that helps
    Cheers
    Giri :-)

  • SD Questions Please Send The Answers

    Hai
                Here i have attached some SD Interview Questions .Please Send the Answers .
    Awaiting For Ur Replay - Please Mail Me [email protected], And [email protected]
    Thanks
    S.Siva
    1.     Five steps of implementation with full details.
    2.     What is ticket? Process flow ticket?
    3.     What is ticketing tool? What is SODA?
    4.     How to stop PGI?
    5.     Details about SLS.
    6.     Details about the Gap analysis. (What are the gaps you have faced?)
    7.     What is meant by landscape? (Landscape of your project for example)
    8.     In which scenario we go for different pricing procedure at orders and billing?
    9.     Cut over activity means what?
    10.     In real-time project, how many pricing procedures to be used?
    11.     What are the tools used to communicate with the client?
    12.     Any three major issues faced in the support project?
    13.     Difference between SD account key and FI account key?
    14.     How to post goods receipt from storage location to warehouse? What is the movement type?
    15.     Tcode for listing blocked documents?
    16.     What is the advantage of using the text as reference instead of duplicating it?
    17.     Have you ever applied BPR (Business Process Reengineering) in an implementation project?
    18.     To perform material configuration, which system one has to use in landscape?
    19.     What is the tcode for creating number range for a sales order type?
    20.     Difference between centralized credit mgmt and decentralized credit management.
    21.     Where do u configure in development server or application server or in testing server?
    22.     Details about clients.
    23.     What is an abap query? Why it is used?
    24.     What are the steps for end user training in sap SD module?
    25.     Difference between discount and rebate.
    26.     When is material determination got triggered?
    27.     A customer wants to buy two materials / one is 3rd party material (Item category: TAS) / another one is normal material (Item category: TAN). His requirement is he wants a single invoice for both items without splitting? How can we do this?
    28.     In consignment fill up, we deliver goods to customer site, is there any agreement with customer? If yes means, what type of agreement relating price?
    29.     Details about VAT configuration.
    30.     What is the use of pricing date in condition type?
    31.     In R/3, we represent a company’s structure by defining and assigning corporate structure elements. What is the purpose of doing that?
    32.     What are the different partner functions can a customer master record serve?
    33.     What is the difference between condition type EK01 and EK02?
    34.     What is retroactive billing? Who will create that?
    35.     In your functional role, how you gather technical specifications for your technical team members from your client?
    36.     Is it possible to change existing item categories?
    37.     For cash sale, how will availability check be done?
    38.     How is the access sequence controlled?
    39.     User specific parameter means what? How to create that one?
    40.     What is the difference between listing and exclusion?
    41.     Difference between customization and configuration.
    42.     How to customize rebate processing in sap sd?
    43.     LSMW important step is what?
    44.     What is the extract used in condition technique of pricing?
    45.     Can we create credit management separately for two different materials?
    46.     Work center means what?
    47.     If the client logon screen deleted while requirement is urgent, then what to do?
    48.     What is meant by time bond deliveries?
    49.     After implementing sap in production environment, while creating sales order, client wants to give discount for first 10 sales orders? How to do this?
    50.     What are the Three different kinds of messages? What is the difference between them?
    51.     Details about testing at sap sd.
    52.     What is the access sequence for header conditions?
    53.     Details about actual GI date and planned GI date .Can actual GI dt differ from planned GI dt?
    54.     Influencing factors for account determination for invoices.
    55.     Details about sap best practices.
    56.     To start a transaction, how many ways are there? And what are they?
    57.     Who will create transportation request?
    58.     In realization phase, what will be doing?
    59.     Is it possible to release change request without releasing task?
    60.     Details about lean warehouse management.
    61.     How to customize excise duty, insurance and cess condition type in pricing procedure?
    62.     How to stop PGI?
    63.     Data dictionary or repository means what?
    64.     How do you transfer request from development instance to production or quality instance?
    65.     What is the importance of release status in condition table?
    66.     Why does account group controls customer?
    67.     What are the deliverables in your blue print?
    68.     If you generate bill more than credit limit, then what will happen?
    69.     What is the value class used for material creation?
    70.     Why do we maintain sales office?
    71.     Is it possible to substitute one product for another? If so, how it can be achieved?
    72.     What is the difference between ATP check and availability check? How these reflect in sales order?( Which check system considers) what are the img steps for the same?
    73.     Explain process and steps involved in returns third party order processing.
    74.     What is the client specific data? Give 2 examples of client specific data.
    75.     What is the most critical field in delivery document?
    76.     What is the relation between sap sd and ABAP?
    77.     What is the functionality of negative posting in billing document?
    78.     In real time, when we start system in first, what screen we get and tell me the process how to log on screen? (IBM question)
    79.     How can you check in sap system, how, when and by whom, which fields in the customer master record were changed?
    80.     What is variant and its configuration?
    81.     After logging into R/3 system, if you want an end user to see a specific menu…. How could you do that?
    82.     Is it possible to automate output processing?
    83.     Which data is relevant for crediting credit and debit memos?
    84.     In system landscape, where the sandbox and golden box client exists?
    85.     What is the user exists? /how can we create user exists? What is the purpose of that?
    86.     Details about value sap.
    87.     Is there any difference between product selection and material determination?
    88.     How do you transfer request from development instance to production or development instance?
    89.What part of the company is responsible for the type of shipping, the necessary shipping materials and the means of transport?

    What is ticket? Process flow ticket
    Handling tickets is called Issue Tracking system. The errors or bugs forwarded by the end user to the support team are prioritized under three seviority High, Medium and Low. Each and every seviority as got its time limits before that we have to fix the error.
    The main job of the supporting consultant is to provide assistance on line to the customer or the organisation where SAP is already implemented for which the person should be very strong in the subject and the process which are implemented in SAP at the client side to understand,to analyse,to actuate and to give the right solution in right time.This is the job of the support consultant.
    The issues or the tickets(problems) which are arised is taken care of on priority basis by the support team consultants.
    The work process in support projects are given below for your reference.
    1. The customer or the end user logs a call through any tool or by mail (RADIX).
    2. Each one of the support team is a part of support group.
    3. Whenever a customer logs a call he /she has to mention to which work group (by name).
    4. Once the calls came to the work group the support consultant or the team need to send an IR (Initial Response) to the user depending upon the priority of the calls. (Top,High,Med,Low,None)
    5. Then the error is fixed, debugged by the support consultant or the team. Then after testing properly by generating TR(Transport Request through the basis admin)
    6. Then it is informed to the end user/customer/super user about the changes which have moved to the production server by CTS process.
    These are the process. In summary, what I understand is that if any configuration or customization is required to solve the issue, then the consultant have to work on DEV Client, then the end user will test it in the QA client and after approval the BASIS consultant has to transport it to the PRODUCTION client.
    An example:
    Tickets in SD can be considered as the problems which the end user or the employee in the company face while working on R/3. Tickets usually occur during the implementation or after theimplementation of the project. There can be numerous problem which can occur in the production support and a person who is working in the support has to resolve those tickets in the limited duration, every ticket has the particular deadline alert so your responsibility is to finish it before that deadline.
    To begin with , we should give "TICKET" to you for not knowing it.
    Here is an eg of a ticket raise:
    End user is not able to
    1. Create Sales order for a customer from a New plant , since shipping point determination is not happened . ( Without Shipping point the document becomes INCOMPLETE and he will not be able to proceed further like DELIVERY, BILLING).
    He raises a ticket and the priority is set in one of the below:
    1. Low 2. Medium 3. High.
    Now you need to solve this ticket. You would analyze the problem and identify that the SP configuration has to be done for the new plant.
    You would request a transport for DEV CLIENT to BASIS. You do the change and Request one more Transport to BASIS for QA client. The End user will test the same by creating a sales order for the new plant and approve it.
    Finally, you request a transport to move the changes to PRODUCTION. Once the change is deployed in production the TICKET is closed. What I have given is a small example. You would get some real issues with severity HIGH in your day-day support.
    Regards.

  • CommandButton action method invoked multiple times in standalone OC4J

    Hi,
    We've developed an application in JDeveloper 10.1.3.3.0 (ADF Business Components version 10.1.3.41.57). In one page we have a commandButton with an action method:
    <af:commandButton action="#{MyBean.myActionMethod}"
    blocking="false"
    textAndAccessKey="#{nls['MY_LABEL']}"
    id="myButtonId" >
    <f:actionListener type="oracle.jheadstart.controller.jsf.listener.ResetBreadcrumbStackActionListener"/>
    </af:commandButton>
    This method is defined in a managed bean:
    public String myActionMethod() {
    /* some code */
    return "indexPage";
    There is a navigation-rule for outcome "indexPage". When we run our application in the JDeveloper embedded OC4J instance and click on the commandButton, the action method is invoked once and then the .jspx in the navigation-rule is navigated to.
    We deployed our application to a standalone OC4J instance. Both embedded and standalone OC4J have version: Oracle Containers for J2EE 10g (10.1.3.3.0) (build 070610.1800.23513)
    When we run our application in the standalone OC4J and click on the commandButton, the action method is repeatedly invoked in a seemingly infinite loop.
    We'd appreciate it if someone could shed some light on the matter. Please note that we cannot use <redirect /> in our navigation-rule for "indexPage" because in production we have an Oracle webcache server upstream of our OC4J. Users can only submit HTTPS requests to the webcache, which in turn forwards these requests as HTTP requests.
    Kind regards,
    Ibrahim

    Dear All,
    We'd really appreciate it if somebody would suggest some possible causes even if these might seem fare-fetched. Perhaps compare certain .jar files or something to that effect.
    Anything ????
    Thanks and regards,
    Ibrahim

  • Action method never called

    Hello,
    I have identified a problem with my app which really puzzles me:
    When I specify programmatically whether a command button should be rendered, the action method never gets called whereas the button does get rendered. See below:
    <h:commandButton action="#{ContractManagedBean.updateContractAction}" image="images/update.png" rendered="#{ContractManagedBean.contractForUpdate}"/>When I specify declaratively whether the button should be rendered, the action method does get called. See below:
    <h:commandButton action="#{ContractManagedBean.updateContractAction}" image="images/update.png" rendered="true"/>What I am missing?
    Thanks in advance,
    Julien.
    pS. I have no error messages displayed by the h:messages and when I click the button the whole of the lifecycle run through all phases without problems.

    Hello BalusC,
    Thanks for your reply!!
    On a different note, I would greatly appreciate your advice on a different topic but was not able to find you email address nor was I able to register on your forum as I don't speak Dutch so I take the liberty to post my question here:
    Which ajax framework would you advice to go with jsf???
    Thanks in advance,
    Julien.

  • Parent/Action Script advise, please

    Hello
    I am posting to ask for some advice. I have Flash MX 2004.
    I have a series of thumbnails (Movie Clips) which seem to be
    arranged over two layers (layers 1 and 2). Layer 1 holds each
    individual thumbnail (movie clip) in several keyframes, so that
    with Layer 1 highlighted, when I click on frame 1 I can see
    thumbnail no. 1 on the stage, when I click on frame 2 I see only
    thumbnail 2 on the stage, when I click on frame 3 I see only
    thumbnail 3 on the stage, etc.
    I see no Action Script when I click through the frames:
    Layer 2, however, does appear to hold Action Script. Please
    see here:
    http://www11.brinkster.com/stevehigham/parent.html
    When I click on Layer 2 frame 1 I can see Action Script for
    the first thumnail:
    gotoAndStop(_parent._name);
    When I click on frame 2 I can see my second thumbnail, but
    the same script:
    gotoAndStop(_parent._name);
    When I click on frame 3 I can see my third thumbnail, but
    again the same script:
    gotoAndStop(_parent._name);
    I am trying to get my limited cognitive ability to grasp how
    the file works (I bought it as a template) so that I can change it.
    I wish to ask two questions. Does the gotoAndStop(_parent._name);
    mean that every time I click on thumbnail 1 I go to this file:
    --> _parent._name?
    And does it mean that every time I click on thumbnail 2 I
    also go to this file: --> _parent._name? Does it also mean that
    every time I click on thumbnail 3 I go to the same file: -->
    _parent._name?
    When I go to Ctrl + Enter and click on the thumnails
    (regardless of which one it is), I am always taken to the same
    place. Is it this script, the _parent._name that takes me there? If
    so, my second question concerns how can I change it - what is it in
    the script that I need to change - so that each thumbnail takes me
    to a different place?
    Many thanks for reading such a long message!
    Steve

    Hello kglad
    Thank you for your message.
    In relation to your comment:
    'you need to label your frame and you probably are supposed
    to load that swf into another swf'.
    How do I do that? If I create something new on my stage in a
    new layer in the first frame how to I change the Action Script so
    that when the thumbnail is clicked, I go to that particular frame
    in that particular layer?
    Thank you for your help.
    Steve
    Text

  • I have solved some questions, please check if my answers are correct

    Hi every Java aces,
    I have solved some programming questions, please check if my answers are correct. Thanks
    Here are the questions and the answers to each question
    (a) Write a method called add that takes three integers as parameters and returns an
    integer that is the sum of the three parameters.
    (b) Write a method called max that takes three integers as parameters and returns the
    largest of the three integers.
    (c) Write a method called printMax that takes three integers as parameters and prints
    the maximum value to the screen. The method should return nothing. The method
    should print the words \The maximum value is " followed by the maximum value,
    followed by a new-line character. You should try to use the max method that you
    wrote earlier.
    (d) Write a method called min that takes three integers as parameters and returns the
    smallest of the three integers.
    (f) Write a method called ticketPrice that takes one integer parameter representing
    the age of a person, and returns the price of a movie ticket in dollars (as a
    oating
    point value). Children under 6 get in for free (0.00), people that are 18 or under
    pay 8.50, senior citizens (65 or older) pay 6.50, and all other people pay 10.00.
    (g) Write a method called isDivisor that takes two integers as parameters and returns
    true if the rst parameter is a divisor of the second parameter or false otherwise.
    We say that m is a divisor of n, or that m divides n, if there is an integer k such
    that n = k m. Note that 1 divides every integer, and every integer divides i
    itself .
    here are my codes
    public class Methods
    // This is method (a)
    public static int add (int a, int b, int c)
    int sum = a + b + c;
    return sum;
    // This is method (b)
    public static int max (int a, int b, int c)
    int largest;
    if (a > b)
    if (a > c)
    { largest = a; }
    else
    { largest = c;}
    else
    if (b < c)
    { largest = c; }
    else
    { largest = b;}
    return largest;
    // This is method (c)
    public static void printMax (int d, int e, int f)
    int maxValue;
    maxValue = max (d, e, f);
    System.out.println ("The maximum value is " + maxValue);
    // This is method (d)
    public static int min (int a, int b, int c)
    int smallest;
    if ( a < b )
    if ( a < c )
    { smallest = a; }
    else
    { smallest = c; }
    else
    if ( b > c )
    { smallest = c; }
    else
    { smallest = b; }
    return smallest;
    // This is method (f)
    public static double ticketPrice (int age)
    double price;
    if ( age < 6 )
    { price = 0.00; }
    else
    if ( age <= 18 )
    { price = 8.50; }
    else
    if ( age < 65 )
    { price = 10.00; }
    else
    { price = 6.50; }
    return price;
    // This is method (g)
    public static boolean isDivisor ( int m, int n )
    boolean result;
    int check1;
    double check2;
    check1 = n / m;
    check2 = (double)n / m;
    if ( check2 == check1 )
    { result = true; }
    else
    { result = false; }
    return result;
    }

    Here are my codes
    // This is method (a)
      public static int add (int a, int b, int c)
        int sum = a + b + c;
        return sum;
      // This is method (b)
      public static int max (int a, int b, int c)
        int largest;
        if (a > b)
          if (a > c)
          { largest = a; }
          else
          { largest = c;}
        else
          if (b < c)
          { largest = c; }
          else
          { largest = b;}
        return largest;   
      // This is method (c) ?
      public static void printMax (int d, int e, int f)
        int maxValue;
        maxValue = max (d, e, f);
        System.out.println ("The maximum value is " + maxValue);
      // This is method (d)
      public static int min (int a, int b, int c)
        int smallest;
        if ( a < b )
           if ( a < c )
           { smallest = a; }
           else
           { smallest = c; }
        else
          if ( b > c )
          { smallest = c; }
          else
          { smallest = b; }
        return smallest;
    // This is method (f)
      public static double ticketPrice (int age)
        double price;
        if ( age < 6 )
        { price = 0.00; }
        else
          if ( age <= 18 )
          { price = 8.50; }
          else
            if ( age < 65 )
            { price = 10.00; }
            else
            { price = 6.50; }
        return price;
      // This is method (g)
      public static boolean isDivisor ( int m, int n )
        boolean result;
        int check1;
        double check2;
        check1 = n / m;
        check2 = (double)n / m;
        if ( check2 == check1 )
        { result = true; }
        else
        { result = false; }
        return result;
       // This is method (h)
      public static boolean isProduct ( double a, double b, double c )
        boolean result;
        if ( a == b*c )
        { result = true;}
        else
        { result = false;}
        return result;
         

Maybe you are looking for

  • Does anyone know when Siri location services will work in the UK?

    I really like the iP4S, and perhaps moving to it from a Blackberry. However, one of the key features of the 4S is Siri and the last time I checked, it didn't have the "there is a pizza place within 5 miles from you" type service. I know it's in beta,

  • How do you check what your user ID and password is?

    hey, anyone know how for me to find out my user id and password? I need them to start up my mail account and to download a program. I called apple but they said to either ask here or I'd have to extend my phone support, and thats too expensive for me

  • How to parse all the data of the particular tag in the xml file

    Hi All, I have a xml file, which have tags like, code,rev_num,type...volunteer.I want to parse the xml and save the all data(code,rev_num...) of the tag <type>unknown </type>in a text file. I tried to use a Match node vi but I not geting the output i

  • Index creation time

    Hi, Could anyone point me in the right direction? How much time would it take to create new index on a column in a warehouse table containing 1.3 million records? Does creating unique index take more time?

  • Timesheet could not add task from existing project task assignment

    HI there, I tried to add a task in Timesheet (PWA2013) from an existing assignment. However, there is no task listed under the project when I open the dialog "Add an existing task". It only shows me the project name, I click it, nothing under the pro