Over riding a seeded message with a custom one.

Hello everybody,
Can you please tell me if it is possible to over ride the seeded error messages with our custom message. For example, while accessing UpdateSR screen on setting the Responded Date to a date before the creation of the case, we get an API programming error. Is there a way we can catch this exception and show the user a more understandable error. Please let me know...
Thank you,
Ramya

Did you query if the message exists under Appl. Admin>Application>Messages form. If it exists, you can change the message text as per your requierments.
Btb, What is the message text of the error?

Similar Messages

  • Replace standard fail popup with a custom one

    Dear all,
    I want to know if it's possible to replace the FAIL popup with a custom one.
    I want to do this because at a FAIL I also want to display what the tester can do to solve the problem.
    gr,
    Bart

    Its possible by overriding the POST UUT call back sequence ( refer help document for overriding callbacks).
    When you override the post uut there will be no popup.In the over ridden post uut call back sequence you can either call a custom vi\dll or even use a message popup to display.
    Also refer to the parameters of the overridden post uut callback to get the pass fail status.
    Hope this helps.

  • Javamail to send message with a custom messageclass to outook exchange

    Hello,
    I developed a microsoft outlook addin which added a custom message class to our outlook exchange. Now if a user sends a message of type "IPM.Note.OurCustomForm"; the recipient gets our custom addin when the message is received. My question is, is there any way to use JavaMail to send a message from our server, which is all in Java, which the Microsoft Office exchange will pick up as the "IPM.Note.OurCustomForm"; message class and display my addin.
    Some example code, or reference to similar problems would be appreciated, I have not programmed in Java since I graduated many a years ago :). Also, I was hoping to do this without using third party software (unless it is free), but I would none the less appreciate information about them too.
    Thanks much,

    I know nothing about Exchange, so all I can give you is a general approach to
    solving this problem. Remember that Exchange is full of Microsoft proprietary
    features that are not defined by any standard or specification.
    You need to learn how to construct a MIME format message that is equivalent
    to the new Exchange-proprietary message you created. One way to do that would
    be to use JavaMail (or some other non-Outlook email client) to read a message of
    that type from Exchange and examine the MIME structure of that message. That
    should give you enough information to construct a MIME message using JavaMail
    that has the same structure (MIME types, headers, etc.).
    The second part is constructing the actual content of the message. Since you
    created the new custom message class, maybe you already know how to do that.
    But if you used a tool to do that you might not understand the raw format of that
    message, in which case you may need to reverse engineer the format by reading
    sample MIME messages in that format.
    Does that help?

  • Netbeans creating wsdl file having message with more than one part...

    Hi,
    I am using netbeans 6.0.1. I made an xml schema, then I wanted to make an wsdl that uses that schema.
    I wanted to put in a message more parts(3), and it would not let me. Then, i made the message with just one part, and added the other parts afterwards.
    But now, when I try to make a web service from that wsdl, it says that there is no service in the specified wsdl file.
    And if i let that message with just one part, it will make the Web Service.
    here is the xml schema and the wsdl file:
    XML Schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://xml.netbeans.org/schema/Abruf38"
    xmlns:tns="http://xml.netbeans.org/schema/Abruf38"
    elementFormDefault="qualified">
    <xsd:complexType name="FormRequest">
    <xsd:sequence>
    <xsd:element name="newRequest" type="xsd:boolean"/>
    <xsd:element name="requestNumber" type="xsd:int"/>
    <xsd:element name="vehicleClass" type="xsd:string"/>
    <xsd:element name="vehiclesNumber" type="xsd:int"/>
    <xsd:element name="prefferedType" type="xsd:string"/>
    <xsd:element name="kombi" type="xsd:boolean"/>
    <xsd:element name="usageMission" type="xsd:boolean"/>
    <xsd:element name="usageEducation" type="xsd:boolean"/>
    <xsd:element name="usageGeneral" type="xsd:boolean"/>
    <xsd:element name="usageOthers" type="xsd:string"/>
    <xsd:element name="eqVehicle" type="xsd:boolean"/>
    <xsd:element name="eqDangerous" type="xsd:boolean"/>
    <xsd:element name="eqPlaneSpriegel" type="xsd:boolean"/>
    <xsd:element name="eqBegrstll" type="xsd:boolean"/>
    <xsd:element name="eqMSitzBTruck" type="xsd:boolean"/>
    <xsd:element name="eqVerzurrAusst" type="xsd:boolean"/>
    <xsd:element name="eqOthers" type="xsd:string"/>
    <xsd:element name="bringService" type="xsd:boolean"/>
    <xsd:element name="holService" type="xsd:boolean"/>
    <xsd:element name="chauffService" type="xsd:boolean"/>
    <xsd:element name="otherService1" type="xsd:string"/>
    <xsd:element name="otherService1Chk" type="xsd:boolean"/>
    <xsd:element name="otherService2" type="xsd:string"/>
    <xsd:element name="otherService2Chk" type="xsd:boolean"/>
    <xsd:element name="otherService3" type="xsd:string"/>
    <xsd:element name="otherService3Chk" type="xsd:boolean"/>
    <xsd:element name="activity" type="xsd:string"/>
    <xsd:element name="costPayer" type="xsd:string"/>
    <xsd:element name="costCenter" type="xsd:string"/>
    <xsd:element name="vehicleCost" type="xsd:float"/>
    <xsd:element name="chauffServiceCost" type="xsd:float"/>
    <xsd:element name="holBringServiceCost" type="xsd:float"/>
    <xsd:element name="totalCost" type="xsd:float"/>
    <xsd:element name="tripPurpose" type="xsd:string"/>
    <xsd:element name="fixTermin" type="xsd:boolean"/>
    <xsd:element name="justificationFix" type="xsd:string"/>
    <xsd:element name="requestID" type="xsd:string"/>
    <xsd:element name="rentalPeriod" type="tns:RentalPeriod"/>
    <xsd:element name="carPool" type="tns:CarPool"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="CarPool">
    <xsd:sequence>
    <xsd:element name="poolID" type="xsd:string"/>
    <xsd:element name="poolName" type="xsd:string"/>
    <xsd:element name="orgNumber" type="xsd:string"/>
    <xsd:element name="vehicle" maxOccurs="unbounded" type="tns:Vehicle"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="RentalPeriod">
    <xsd:sequence>
    <xsd:element name="rentalPeriodID" type="xsd:string"/>
    <xsd:element name="startDate" type="xsd:date"/>
    <xsd:element name="endDate" type="xsd:date"/>
    <xsd:element name="startTime" type="xsd:time"/>
    <xsd:element name="endTime" type="xsd:time"/>
    <xsd:element name="startLocation" type="xsd:string"/>
    <xsd:element name="endLocation" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Vehicle">
    <xsd:sequence>
    <xsd:element name="vehicleID" type="xsd:string"/>
    <xsd:element name="vehicleClass" type="xsd:string"/>
    <xsd:element name="vehicleRegisterNo" type="xsd:int"/>
    <xsd:element name="vehicleType" type="xsd:string"/>
    <xsd:element name="seatsNumber" type="xsd:int"/>
    <xsd:element name="cost" type="xsd:float"/>
    <xsd:element name="available" type="xsd:boolean"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Contact">
    <xsd:sequence>
    <xsd:element name="contactID" type="xsd:string"/>
    <xsd:element name="contactName" type="xsd:string"/>
    <xsd:element name="telNumber" type="xsd:int"/>
    <xsd:element name="faxNumber" type="xsd:int"/>
    <xsd:element name="loNo" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Person">
    <xsd:sequence>
    <xsd:element name="personID"/>
    <xsd:element name="department" type="xsd:string"/>
    <xsd:element name="serviceNumber" type="xsd:int"/>
    <xsd:element name="contact" type="tns:Contact"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Department">
    <xsd:sequence>
    <xsd:element name="departmentID" type="xsd:string"/>
    <xsd:element name="fundsDepartment" type="xsd:string"/>
    <xsd:element name="mvwdst" type="xsd:int"/>
    <xsd:element name="distributionNumber" type="xsd:int"/>
    <xsd:element name="contact" type="tns:Contact"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="formRequestElement" type="tns:FormRequest"/>
    <xsd:element name="personElement" type="tns:Person"/>
    <xsd:element name="departmentElement" type="tns:Department"/>
    <xsd:element name="vehicle" type="tns:Vehicle"/>
    <xsd:element name="loadFormReturn" type="xsd:boolean"/>
    <xsd:element name="editFormReturn" type="xsd:boolean"/>
    </xsd:schema>
    Wsdl File:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="userWS" targetNamespace="http://j2ee.netbeans.org/wsdl/userWS"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns="http://xml.netbeans.org/schema/Abruf38" xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:tns="http://j2ee.netbeans.org/wsdl/userWS" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <xsd:schema targetNamespace="http://j2ee.netbeans.org/wsdl/userWS">
    <xsd:import namespace="http://xml.netbeans.org/schema/Abruf38" schemaLocation="Abruf38.xsd"/>
    </xsd:schema>
    </types>
    <message name="loadFormRequest">
    <part name="formRequest" element="ns:formRequestElement"/>
    <part name="person" element="ns:personElement"/>
    <part name="department" element="ns:departmentElement"/>
    </message>
    <message name="loadFormReply">
    <part name="retVal" element="ns:loadFormReturn"/>
    </message>
    <portType name="userWSPortType">
    <operation name="loadForm">
    <input name="input1" message="tns:loadFormRequest"></input>
    <output name="output1" message="tns:loadFormReply"/>
    </operation>
    </portType>
    <binding name="userWSBinding" type="tns:userWSPortType">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="loadForm">
    <soap:operation/>
    <input name="input1">
    <soap:body use="literal"/>
    </input>
    <output name="output1">
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="userWSService">
    <port name="userWSPort" binding="tns:userWSBinding">
    <soap:address location="http://localhost:18181/userWSService/userWSPort"/>
    </port>
    </service>
    <plnk:partnerLinkType name="userWS1">
    <!-- A partner link type is automatically generated when a new port type is added. Partner link types are used by BPEL processes.
    In a BPEL process, a partner link represents the interaction between the BPEL process and a partner service. Each partner link is associated with a partner link type.
    A partner link type characterizes the conversational relationship between two services. The partner link type can have one or two roles.-->
    <plnk:role name="userWSPortTypeRole" portType="tns:userWSPortType"/>
    </plnk:partnerLinkType>
    </definitions>
    The message that Netbeans says when trying to put more parts to the message is:
    WS-I Basic Profile Rule R2210: If a document-literal binding in a DESCRIPTION does not specify the parts attribute on a soapbind:body element, the corresponding abstract wsdl:message MUST define zero or one wsdl:parts.
    Please...I am desperate, cause I am pressed by time!
    Can anyone tell me how can I make it work. Cause it is very common to use a Web service operation that has more than ONE parameter.
    I am waiting for your replys!

    Hi,
    Change the <soap:binding style="document"... to <soap:binding style="rpc"... and see if that works.
    I'm not sure how to get <soap:binding style="document"... working yet - I'm not that experienced in web services yet.
    Hope this helps and is not too late.
    Regards,
    Greg Nye

  • Move Message with Attachment from one Mailbox to another problem

    Hi,
    starting with Exchange 2013 we have following odd thing. 
    (That happens with Outlook 2010 aswell as Outlook 2013). 
    My mailbox has several other mailboxes mounted aswell. (using Full Access at ECP Settings), aswell as one separate Exchange Mailbox with own User/Password. 
    Now, when I have an Email with an attachment (like Word, .jpg, whatever), I used to move it to another mailbox by using "drag & drop". 
    The mail was moved to the mailbox without noticable changes. 
    Starting with Exchange 2013, the Mail is changed into Rich Text. That means, the attachment now appears somewhere within the message, instead as real attachment. Some attachments are also lost, and as the message was moved, the only way to recover it is
    using our external Email Archive. 
    Is this a bug, or didn't I see any option that results in this odd behaviour?
    Moving to a different folder does work as expected, but not to another mailbox.
    Thanks
    Patrick 

    Based on some research we have decided to create a workaround as all mails got converted from HTML to Rich Text when moving from User Mailbox to a PST(Archive).
    We have built an add-in for end-users to archive based on the following Outlook-VBA
    Option Explicit
    Sub MoveToFolder()
    Dim objApp As Outlook.Application
    Dim strPath As String
    Dim objNS As NameSpace
    Dim objFolder As Outlook.MAPIFolder
    Dim olCurrExplorer As Outlook.Explorer
    Dim olCurrSelection As Outlook.Selection
    Dim olCurrMailItem As MailItem
    Dim m As Integer
    'pick destination folder
    Set objApp = CreateObject("Outlook.Application")
    Set objNS = objApp.GetNamespace("MAPI")
    Set objFolder = objNS.PickFolder
    'get selected mails
    Set objNS = objApp.GetNamespace("MAPI")
    Set olCurrExplorer = objApp.ActiveExplorer
    Set olCurrSelection = olCurrExplorer.Selection
    For m = 1 To olCurrSelection.Count
    Set olCurrMailItem = olCurrSelection.item(m)
    On Error Resume Next
    olCurrMailItem.Move objFolder
    If Err.Number <> 0 Then
    With olCurrMailItem
    ' due this week flag
    .MarkAsTask olMarkThisWeek
    ' sets a specific due date
    .TaskDueDate = Now + 3
    .FlagRequest = "Call "
    .Save
    .FlagStatus = olFlagComplete
    End With
    olCurrMailItem.Move objFolder
    End If
    Next m
    End Sub
    for us it was important to have the mails still in HTML Formats as some customers are sending embedded images in the mail-body which are removed when the mail where converted to Rich Text.
    For people who doesn't care in which format an mail gets archived another workaround is to Flag the Message with an follow up action, then unflag (complete the follow up) and users are able to move the messages but still they would be converted from HTML
    to Rich Text.
    Strange enough that with a simple VBA move event the message will stay in HTML Format we are happy to found a solution and maybe someone else can use it.

  • URGENT: Substituting a seeded VO with a custom VO !!!

    My requirement is to customize IcxPorChoPG page, to get an error message while updating the Price field under the condition ( if the Quantity Billed corresponding to that line is greater than zero ).A similar condition is existing in the adjacent column (Quantity).
    This validation is handled in ChangeOrderVORowImpl using OAAttrValException. We need to do the same thing for Price field also.
    For that we extended the existing ChangeOrderVO and wrote the validation in the setUnitPrice() method in our custom XxChangeOrderVORowImpl. We did a substitution and imported the jpx file. The custom VO is shown in About Page, but when we change the Unit Price the error is coming for all the rows and the changed value is shown in all the rows.
    The existing ChangeOrderVO has a view link with ChangeOrderDistributionVO with RequisitionLineId. The View Link is ChangeOrderDistributionsVL.
    What are the things that we need to take care while we are customizing a VO which has a View Link ?
    Could any one please suggest me a method to customize the Price Field, its very urgent ?

    Hi,
    Thanks for ur replies.
    I tried with code mentioned by Kumar in the setter method. But its not working as expected. Im getting the same problem.
    Mukul, i couldn't find the EO related to the VO which i have to customize. The VO which im using is ChangeOrderLinesVO. There is no EO related this VO. So i couldn't try writing the code in ValidateEntity().
    One thing i noticed in the Diagnostic messages is that, in the seeded VO after editing the Price field and clicking the Next Button, Exception occurs for that particular row alone. In the diagnostic log messages I found that OAAttrValException occurs in 'VO'. Log message is as below:
    EVENT:[fnd.framework.OAAttrValException]:OAF LOG: Event : Check Errors, in: oracle.apps.fnd.framework.OAAttrValException: Exception: New price entered should be greater than zero. ,In VO: ChangeOrderAM.ChangeOrderLinesVO
    EVENT:[fnd.framework.OAAttrValException]:OAF LOG: Event : Check Errors, in: oracle.apps.fnd.framework.OAAttrValException: Exception: New price entered should be greater than zero.
    After customizing the VO when I change the Price field and click Next button, Exception is replicated in all the rows. In the diagnostic log messages I found that the OAAttrValException occurs in 'VO' and 'bean'. Log messages are as below:
    EVENT:[fnd.framework.OAAttrValException]:OAF LOG: Event : Check Errors, in: oracle.apps.fnd.framework.OAAttrValException: Exception: New price entered should be greater than zero. ,In VO: ChangeOrderAM.ChangeOrderLinesVO
    EVENT:[fnd.framework.OAAttrValException]:OAF LOG: Event : Check Errors, in: oracle.apps.fnd.framework.OAAttrValException: Exception: New price entered should be greater than zero.
    EVENT:[fnd.framework.OAAttrValException]:OAF LOG: Event : Check Errors, in: oracle.apps.fnd.framework.OAAttrValException: Exception: New price entered should be greater than zero. ,In Bean: UpdatableCurUnitPrice
    EVENT:[ChangeOrderLinesVO]:OAF LOG: Event : Get Attribute Value, in: ChangeOrderLinesVO: View:ChangeOrderLinesVO ,Attribute:Quantity , Return Value without datatype conversion :1
    Does it has anything to do with issue im getting?
    Please suggest a solution for this.
    Thanks
    Harsha

  • Dispaly message with multiple customer no.s

    Hi All,
       I have arequirement to display all the customer no.s in the message for whom there is no tax code defined. Foe example
    if I have customers 1000, 1001, 1002, 1003 for whom the taxcode is not defined then I should get the below message:
    "No Tax code defined for customers 1000, 1001, 1002, 1003 "
    Regards,
      Santosh

    Hi,
    Get all the customer numbers for whom the tax code is not defined into an internal table, loop them and concatenate the numbers into a string and pass the string to the message statement.
    describe table cust lines w_line.
    loop at cust.
    if sy-tabix < w_line.
    concatenate cust-no ',' into cust-string separated by space.
    endif.
    endloop.
    concatenate 'No tax code defined for customers' cust-string into cust-string
                                                                      separated by space.
    message  w_string type 'E'.
    Regards
    Sarves

  • DISPLAY ONLY CUSTOM MESSAGE WITH SRW.MESSAGE

    Hi.I created a report with Report Builder 9i.I also created two form parameters of type date.I put inside the validation trigger in the property inspector the following plsql code.
    function FROM_DATEValidTrigger return boolean is
    v_date VARCHAR2(12);
    date1 date;
    begin
    v_date := :from_date;
    date1:=TO_DATE(v_date, 'DD/MM/YYYY');
    return (TRUE);
    EXCEPTION
    WHEN OTHERS THEN
    SRW.MESSAGE(546,'My Message');
    return (FALSE);
    end;
    This code works fine.Supose the user input wrong data for example 29/02/2003 displays an alert message
    with my custom message.But after this displays an another message from the Report Builder like this:
    Rep-0546:Invalid parameter input.
    My question is .Is it possible display only my custom message with the SRW.MESSAGE built in procedure?
    Thanks in advance Panagiotis.

    Hi,
    I am using this function in my Validation process to display Error when user gives null input
    function DEPT_IDValidTrigger return boolean is
    begin
         -- Check for Null Value here
         if(:DEPT_ID is null) then
         raise SRW.NULL_ARGUMENTS;
         else
    return true;
    end if;
         Exception
              -- Exception For Null Value
    when SRW.NULL_ARGUMENTS then
         srw.message(100, 'Please Enter Dept ID');
    raise srw.program_abort;
    end function ___ ;
    Function is correct but the error message i am getting at the client side is as follows ::
    "*MSG-00100: Please enter Dept IDREP-1419: 'dept_idvalidtrigger': PL/SQL program aborted.* "
    It seems it is adding some system level error.
    but i want only my custom message to be displayed on the client side ::
    *"Please Enter Dept ID"*
    Is this Possible in Oracle 6i.

  • How to use I18N with a custom validator?

    This is my custom validator:
        public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException
            Pattern pat=Pattern.compile(".+@.+\\.[a-z]+");
            Matcher m= pat.matcher(value.toString());
            if(!m.find())
                FacesMessage message = new FacesMessage("Not a valid e-mail address");
                throw new ValidatorException(message);
        }Instead of providing the text "Not a valid e-mai address", I'd like to get the text out of my ApplicationResources property file.
    How can I do this?
    I know how to use it with the provided validators, but not with own custom ones
    Please help me out, thanks

    I found a solution for this problem, I don't know it's best practice but here it is :
        public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException
            String errortext;
            Pattern pat=Pattern.compile(".+@.+\\.[a-z]+");
            Matcher m= pat.matcher(value.toString());
            if(!m.find())
                ResourceBundle bundle =
                ResourceBundle.getBundle("be.vdab.resources.ApplicationResources", context.getViewRoot().getLocale());
                errortext = bundle.getString("erroremail");
                FacesMessage message = new FacesMessage(errortext);
                throw new ValidatorException(message);
        }

  • Replacing the "No Items Found" message with Javascript

    On this page http://www.sedonamagoretreat.org/test in the second "Program Dates" box in the righthand sidebar, I'm attempting to implement a script I found to replace the "No items found" message with a custom html file.
    The javascript is here: http://www.sedonamagoretreat.org/js/no-items-found.js and the html file used to replace the message is here: http://www.sedonamagoretreat.org/prog-dates-alternate-content.
    I'm sure it's an easy fix and I'm just overlooking something...any suggestions to get this script working are welcome - thanks!
    Linda

    If it still doesn't work after you move the script then you might need to update your script to the following:
    $(document).ready(function() {
         $.each($("."+webapp_wrapper_div), function() {
                   if($("." + webapp_wrapper_div).html().indexOf("No items found.") != -1) {
                             $.get(alternate_page_html, function(data) {
                                       $("." + webapp_wrapper_div).append('<div id="ajax-temp" style="display: none;"></div>');
                                       $("#ajax-temp").html(data);
                                       $("." + webapp_wrapper_div).html($("#ajax-temp #" + alternate_page_div).html());
    All I did was wrap the if statement in an $.each() function so that it does this to each instance of your web app item list. 
    Also, you should probably change your variable for "alternate_page_html" to "/prog-dates-alternate-content" so that this would work on pages that are in a folder in your site.  Without the "/" this might only work on pages that are on the first-level of your site. If you tried this on a page at "/about/contact" then your get request without the "/" would be trying to get "/about/prog-dates-alternate-content" which doesn't exist.

  • Error while accessing application with the custom components

    Hi experts,
    I have an application (HAP_MAIN_DOCUMENT) of component FPM_OIF_COMPONENT which uses a Webdynpro component with the same name (HAP_MAIN_DOCUMENT). This Webdynpro component (HAP_MAIN_DOCUMENT) uses 2 other components (HAP_DOCUMENT_BODY and HAP_DOCUMENT_HEADER). For my client requirement, i need to create the custom components by copying from standard components as the UI layout changes are quiet huge and not manageable with the enhancements. To accomodate this i have changed the standard configurations by replacing the standard web dynpro components with the custom ones copied. Apart fomr this there are no changes to the standard.
    While trying to access the application, i am getting the error as Null object reference.
    the details of the error is as below. Please advice.
    Heading 1: h1. P:ortal Error
    The URL http://******************/sap/bc/webdynpro/sap/HAP_MAIN_DOCUMENT/ was not called due to an error.
    Note
    The following error text was processed in the system DSD : Access via 'NULL' object reference not possible.
    The error occurred on the application server ddrsap12_DSD_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: WDDOINIT of program /1BCWDY/LUR96POELQNL3TIUWPYS==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_DO_INIT of program /1BCWDY/LUR96POELQNL3TIUWPYS==CP
    Method: DO_INIT of program CL_WDR_DELEGATING_VIEW========CP
    Method: INIT_CONTROLLER of program CL_WDR_CONTROLLER=============CP
    Method: INIT_CONTROLLER of program CL_WDR_VIEW===================CP
    Method: INIT of program CL_WDR_CONTROLLER=============CP
    Method: GET_VIEW of program CL_WDR_VIEW_MANAGER===========CP
    Method: BIND_ROOT of program CL_WDR_VIEW_MANAGER===========CP
    Method: INIT of program CL_WDR_VIEW_MANAGER===========CP
    Method: INIT_CONTROLLER of program CL_WDR_INTERFACE_VIEW=========CP
    Heading 2: h2. ST22 - Dump Analysis
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
         caught in
        procedure "WDDOINIT" "(METHOD)", nor was it propagated by a RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        You attempted to use a 'NULL' object reference (points to 'nothing')
        access a component.
        An object reference must point to an object (an instance of a class)
        before it can be used to access components.
        Either the reference was never set or it was set to 'NULL' using the
        CLEAR statement.
    Information on where terminated
        Termination occurred in the ABAP program "/1BCWDY/LUR96POELQNL3TIUWPYS==CP" -
         in "WDDOINIT".
        The main program was "SAPMHTTP ".
        In the source code you have the termination point in line 4640
        of the (Include) program "/1BCWDY/B_LUXVEOR5WUW66V6QRRNU".
        Termination occurred in a Web Dynpro application
          Web Dynpro Component          ZWD_HAP_DOCUMENT_HEADER
          Web Dynpro Controller         VW_HEADER_MAIN
        The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in
        procedure "WDDOINIT" "(METHOD)", but it was neither handled locally nor
         declared
        in the RAISING clause of its signature.
        The procedure is in program "/1BCWDY/LUR96POELQNL3TIUWPYS==CP "; its source
         code begins in line
        4619 of the (Include program "/1BCWDY/B_LUXVEOR5WUW66V6QRRNU ".
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
          Name
       33 METHOD       /1BCWDY/LUR96POELQNL3TIUWPYS==CP    /1BCWDY/B_LUXVEOR5WUW66V6QRRNU       4640
          CL_VW_HEADER_MAIN_CTR=>WDDOINIT
          Web Dynpro Component          ZWD_HAP_DOCUMENT_HEADER
          Web Dynpro Controller         VW_HEADER_MAIN
       32 METHOD       /1BCWDY/LUR96POELQNL3TIUWPYS==CP    /1BCWDY/B_LUXVEOR5WUW66V6QRRNU         70
          CLF_VW_HEADER_MAIN_CTR=>IF_WDR_VIEW_DELEGATE~WD_DO_INIT
          Web Dynpro Component          ZWD_HAP_DOCUMENT_HEADER
          Web Dynpro Controller         VW_HEADER_MAIN
       31 METHOD       CL_WDR_DELEGATING_VIEW========CP    CL_WDR_DELEGATING_VIEW========CM003     3
          CL_WDR_DELEGATING_VIEW=>DO_INIT
       30 METHOD       CL_WDR_CONTROLLER=============CP    CL_WDR_CONTROLLER=============CM00Q     3
          CL_WDR_CONTROLLER=>INIT_CONTROLLER
       29 METHOD       CL_WDR_VIEW===================CP    CL_WDR_VIEW===================CM00K     5
          CL_WDR_VIEW=>INIT_CONTROLLER
       28 METHOD       CL_WDR_CONTROLLER=============CP    CL_WDR_CONTROLLER=============CM002     7
          CL_WDR_CONTROLLER=>INIT
       27 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM008    70
          CL_WDR_VIEW_MANAGER=>GET_VIEW
       26 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM005    23
          CL_WDR_VIEW_MANAGER=>BIND_ROOT
       25 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM00B    17
          CL_WDR_VIEW_MANAGER=>INIT
       24 METHOD       CL_WDR_INTERFACE_VIEW=========CP    CL_WDR_INTERFACE_VIEW=========CM004    11
          CL_WDR_INTERFACE_VIEW=>INIT_CONTROLLER
       23 METHOD       CL_WDR_CONTROLLER=============CP    CL_WDR_CONTROLLER=============CM002     7
          CL_WDR_CONTROLLER=>INIT
       22 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM008    70
          CL_WDR_VIEW_MANAGER=>GET_VIEW
    Thanks In advance,
    Regards,
    Ravi.

    Hi, I'm closing this thread and opening the same in another as the content got pasted in reader un friendly format and i'm unable to change the format.
    Thanks,
    Ravi.

  • Can't send messages with old .mac/me aliases

    Hi, I'm using iCloud on the web because I have an old Powerbook as my primary device.  I specifically recall that Apple said that I can continue to use my .mac and .me aliases.  This is incredibly important since my business is tied to a particular .mac e-mail alias that I've had since, well, dotmac was around.
    It looks like I can receive messages with at least one of these aliases, but I cannot send messages with the alias.  The alias does not exist in the alias list pull down menu.  I tried adding the alias, but was told I already have too many.  Three?  Very frustrating!  Anybody know what's going on or how to fix it?  Thanks!
    -Jen

    IE11 is the most recent update.
    Try to reset all Skype settings.
    Quit Skype or use Windows Task Manager to kill any Skype.exe process. Go to Windows Start and in the Search/Run box type %appdata% and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a folder named “Skype”. Rename this folder to something different, e.g. Skype_old.
    Next go to Windows Start and in the Search/Run box type %temp%\skype and then press Enter or click the OK button. Delete the DbTemp folder.
    Restart Skype.
    N.B. If needed, you will still be able to re-establish your call and chat history. All data is still saved in the Skype_old folder.

  • Change the Simple Principal default entry to  a custom one

    Hello people,
    How do I change the default "Simple Principal" entry with a custom one
    for my application in WL 7? I get this entry using the
    SessionContext.getCallerPrincipal() in my EJBs and insert it into my
    Oracle DB. Is it a configuration in an XML file or is it in the
    Console?
    Thanking you in advance
    Byte

    Hi Hari, I don't want to change it or reuse it. When you type in localhost:8080/apex in a browser the application 4550 opens up. I would like to change the settings, so my custom application opens up by default. I have a problem running my application with a new APEX listener. I cannot modify a web.xml file to point to my custom application and open it up under ROOT when you type in domainname.com in a browser without specifying an application id, page, etc., so I thought maybe I could replace APEX's default application to resolve the issue.
    Thanks,
    Art

  • Can we modify the standard AOL Message with custom Message in Seeded Page?

    Hi,
    I have a requirement to change AOL Message with custom Message in Seeded Page.
    In a seeded OAF page when a user clicks on a submit button a standard AOL Processing Message is populated.
    I Need to change the Standard Message and call Custom Message.
    Did controller extension and found that both the messages are populating.
    called the code after super and tried to call before super also.
    Did any one face this issue and resolved it. Kindly provide the solution.
    Regards
    Chaitanya

    Hi Gyan,
    I have tried by extending a sample custom controller.
    Below is the code of TestCO calling create message
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
          OAApplicationModule am = pageContext.getApplicationModule(webBean);
          if (pageContext.getParameter("Test") != null)
              OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_CREATE_CONFIRM",    null,
              OAException.CONFIRMATION, null);
              pageContext.putDialogMessage(confirmMessage);
      }Then I extending the TestCO to XXTestCO and it is calling Update Message
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
          super.processFormRequest(pageContext, webBean);
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
        }got below Confirmation
    Confirmation
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    Employee (&EMP_NAME) has been updated.
    Tried below approach also calling the message before super class
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
          super.processFormRequest(pageContext, webBean);
        }got below Confirmation
    Confirmation
    Employee (&EMP_NAME) has been updated.
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    My requirement is to print only the message which I have kept in Extended controller i.e. Update message
    Regards,
    chaitanya

  • Data Migration from 11i to R12 Global - Open POs,lines, receipts & on hand upload, Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines?

    Hi Friends,
    We are in a phase of data migration from 11i to R12 
    I was discussed with client & they wants extraction of all open POs which was generated after 01 Jan 2014 to till date in 11i.
    Condition for open POs is PO qty-received qty=>0
    critical Example for open PO is :PO no: 10 has 4 lines, 3lines full qty has been received & for 1 line partial qty(say 50 out of 100) received.
    in this case he wants in R12 uploading as PO no:10 should entered as open PO with all 4lines & 3 lines complete receipt should be done, for 4th line partial qty i.e 50 should be received.
    the question is if we upload on hand qty first, then open POs & receipts, it will increase the onhand qty in new system(mismatch of on hand qty's 11i to R12) 
    Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines.
    Or Please advice best solution.
    Thanks & Regards
    Giri

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

Maybe you are looking for

  • Transfer photos from iPhone 3GS to MacBook Pro?

    How do I transfer my photos from my iPhone 3GS to my MacBook Pro? iPhoto doesn't support my iPhone... I've tried a lot of stuff, iPhoto and Image Capture application don't work. I have 15.000 pictures I need to transfer (Screenshot, 9gag, vacation, t

  • How to upload data in a custom table in quality server

    Hi All, I want to upload data in custom table in quality server. I forgot to tranfer TMG into QA. I also don't send any upload program to QA. Is there any way to upload data directly to table in quality server i.e. by use of debugging. Regards, Naren

  • Updating the iphone fails.. hard

    Heyas, I tried to update to the latest OS for the iPhone today, and while it was installing and doing it's thing, the itunes program crashed, leaving the iphone stuck in the "plug me into itunes" mode, and has been ever since. So my questions is clea

  • CRM Mobile Service For Handheld

    Can anyone help me understand why this log shows method CRMHH_SYNC could not be executed.  My architecture is as follows: WebAS 620 SP53 ME 21SP03 CRM Server 40SP08 CRM HH 40SP08 I have followed the installation guide for ME21SP03 (Table Mappings, Au

  • I really need help from someone with CS5

    HELP me. I am in a begining flash class and I need to submit an assignment as CS4, one which I made it with CS5 and my trial ran out before I could save it down. I am in the procces of recieving an educational discount but my deadline is tonight and