Catch Error Message WAD Popup

Hi all
I have a report published in portal and now I have the necessity to show a message when the user execute this report. If the user execute this report and the process chain that update the information is running, I have to show the message "Update Process in Progress, Please Wait a Moment"
Now I can show the message but I want show this message in a popup window, for ensure that the user can see it.
Any Idea thanks.

Hi,
in SRM all messages are stored in the message handler. Also when you set a message within the check BAdI, the message is stored later in the message handler. If you want to know when a message is moved to the message handler, just set a break-point in FM BBP_PD_MSG_ADD.
Regards

Similar Messages

  • OLE Automation: catch error message

    Hi, Experts.
    I am interested in catching error messages after OLE commands. I show it in Excel example, but interested in general:
    REPORT zlcka_ole .
    TYPE-POOLS ole2.
    DATA h_excel TYPE ole2_object.
    DATA h_workbooks TYPE ole2_object.
    DATA h_workbook TYPE ole2_object.
    DATA h_range TYPE ole2_object.
    CREATE OBJECT h_excel 'EXCEL.APPLICATION'.
    SET PROPERTY OF h_excel 'Visible' = 1.
    CALL METHOD OF h_excel 'Workbooks' = h_workbooks.
    CALL METHOD OF h_workbooks 'Add' = h_workbook.
    CALL METHOD OF h_excel 'Rows' = h_range
      EXPORTING
        #1 = 3.
    SET PROPERTY OF h_range 'Name' = 'TEST'.
    CALL METHOD OF h_excel 'Range' = h_range
      EXPORTING
        #1 = 'TEST'.
    SET PROPERTY OF h_range 'Hidden' = 1.
    WRITE / sy-subrc.
    WRITE / sy-msgli.
    I turned on debuging Automation of GUI and execute program.
    Result was sy-subrc = 3 sy-msgli = ''
    But in logfile(directory: SapWorkDir) I find:
    <275=Automation(Error): *****************************ERROR OCCURED IN MODULE: [CALL METHOD OF 12 ('[Excel.Application.10]') 'Range' Imode 1002]*********************************************************************************************************************************
    <275=Automation(Error): PROGRAM_ID                                                          |MODULE_NAME              |METHOD_NAME          |ERROR DESCRIPTION                                        |VERSION                    |GUI VERSION       |MODULE_PATH              |
    <275=Automation(Error): ********************************************************************************************************************************************************************************************************************************************************
    <275=Automation(Error): CALL METHOD OF 12 ('[Excel.Application.10]') 'Range' Imode 1002     |Class name not found     |Hidden               |Unable to set the Hidden property of the Range class     |Version info not found     |6206.6.64.970     |Module doesnot exist     |
    <275=Automation(Error): ********************************************************************************************************************************************************************************************************************************************************
    Is there anybody know how to get that error message <i>"Unable to set the Hidden property of the Range class"</i>?
    SAP Version: 4.6C

    Hi,
    in SRM all messages are stored in the message handler. Also when you set a message within the check BAdI, the message is stored later in the message handler. If you want to know when a message is moved to the message handler, just set a break-point in FM BBP_PD_MSG_ADD.
    Regards

  • Catching Error Message

    Hi,
    Question : could you please tell me how to catch footer error message?
    Background :
    I am working with FM L_TO_CREATE_SINGLE .
    This FM has so many exceptions and I am catching those in my custom program.
    the problem is FM is throwing error message while it executes and simply coming out of my custom program and displaying error message at footer so I am not able to catch error message.
    Please help me how to catch this error and see my code below
            CALL FUNCTION 'L_TO_CREATE_SINGLE'
              EXPORTING
                I_LGNUM                     = '620'
                I_BWLVS                     = '999'
                I_MATNR                     = WA_RECORD_OUT-MATNR
                I_WERKS                     = WA_RECORD_OUT-WERKS
                I_ANFME                     = WA_PHY_INV_HIS-QUANTITY
                I_ALTME                     = WA_PHY_INV_HIS-UNIT_OF_MEASURE
               I_SQUIT                     = 'X'
               I_VLTYP                     = WA_RECORD_OUT-LGTYP
               I_VLPLA                     = WA_RECORD_OUT-LGPLA
               I_VLENR                     = WA_PHY_INV_HIS-STO_UNIT
               I_NLTYP                     = WA_PHY_INV_HIS-STO_TYPE
               I_NLPLA                     = WA_PHY_INV_HIS-STO_BIN
               I_COMMIT_WORK               = 'X'
               I_BNAME                     = SY-UNAME
               I_KOMPL                     = 'X'
             IMPORTING
               E_TANUM                     = I_TANUM
            EXCEPTIONS
               NO_TO_CREATED               = 1
               BWLVS_WRONG                 = 2
               BETYP_WRONG                 = 3
               BENUM_MISSING               = 4
               BETYP_MISSING               = 5
               FOREIGN_LOCK                = 6
               VLTYP_WRONG                 = 7
               VLPLA_WRONG                 = 8
               VLTYP_MISSING               = 9
               NLTYP_WRONG                 = 10
               NLPLA_WRONG                 = 11
               NLTYP_MISSING               = 12
               RLTYP_WRONG                 = 13
               RLPLA_WRONG                 = 14
               RLTYP_MISSING               = 15
               SQUIT_FORBIDDEN             = 16
               MANUAL_TO_FORBIDDEN         = 17
               LETYP_WRONG                 = 18
               VLPLA_MISSING               = 19
               NLPLA_MISSING               = 20
               SOBKZ_WRONG                 = 21
               SOBKZ_MISSING               = 22
               SONUM_MISSING               = 23
               BESTQ_WRONG                 = 24
               LGBER_WRONG                 = 25
               XFELD_WRONG                 = 26
               DATE_WRONG                  = 27
               DRUKZ_WRONG                 = 28
               LDEST_WRONG                 = 29
               UPDATE_WITHOUT_COMMIT       = 30
               NO_AUTHORITY                = 31
               MATERIAL_NOT_FOUND          = 32
               LENUM_WRONG                 = 33
               OTHERS                      = 34       .
            IF SY-SUBRC <> 0.
              CASE sy-subrc.
                WHEN 1.  MESSAGE = 'no_to_created'.
                WHEN 2.  MESSAGE = 'bwlvs_wrong' .
                WHEN 3.  MESSAGE = 'betyp_wrong'.
                WHEN 4.  MESSAGE = 'benum_missing'.
                WHEN 5.  MESSAGE = 'betyp_missing'.
                WHEN 6.  MESSAGE = 'foreign_lock'.
                WHEN 7.  MESSAGE = 'vltyp_wrong'.
                WHEN 8.  MESSAGE = 'vlpla_wrong'.
                WHEN 9.  MESSAGE = 'vltyp_missing'.
                WHEN 10. MESSAGE = 'nltyp_wrong'.
                WHEN 11. MESSAGE = 'nlpla_wrong'.
                WHEN 12. MESSAGE = 'nltyp_missing'.
                WHEN 13. MESSAGE = 'rltyp_wrong'.
                WHEN 14. MESSAGE = 'rlpla_wrong'.
                WHEN 15. MESSAGE = 'rltyp_missing'.
                WHEN 16. MESSAGE = 'squit_forbidden'.
                WHEN 17. MESSAGE = 'manual_to_forbidden'.
                WHEN 18. MESSAGE = 'letyp_wrong'.
                WHEN 19. MESSAGE = 'vlpla_missing'.
                WHEN 20. MESSAGE = 'nlpla_missing'.
                WHEN 21. MESSAGE = 'sobkz_wrong'.
                WHEN 22. MESSAGE = 'sobkz_missing'.
                WHEN 23. MESSAGE = 'sonum_missing'.
                WHEN 24. MESSAGE = 'bestq_wrong'.
                WHEN 25. MESSAGE = 'lgber_wrong'.
                WHEN 26. MESSAGE = 'xfeld_wrong'.
                WHEN 27. MESSAGE = 'date_wrong'.
                WHEN 28. MESSAGE = 'drukz_wrong'.
                WHEN 29. MESSAGE = 'ldest_wrong'.
                WHEN 30. MESSAGE = 'update_without_commit'.
                WHEN 31. MESSAGE = 'no_authority'.
                WHEN 32. MESSAGE = 'material_not_found'.
                WHEN 33. MESSAGE = 'lenum_wrong'.
                WHEN 34. MESSAGE = 'ERROR_MESSAGE'.
                WHEN OTHERS.
                  message id sy-msgid type sy-msgty number sy-msgno with
                          sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
              ENDCASE.
    Thanks
    SB

    Hi I have resloved it myself. here is the working code, thanks for all your help
    CALL FUNCTION 'L_TO_CREATE_SINGLE'
              EXPORTING
                I_LGNUM                     = '620'
                I_BWLVS                     = '999'
                I_MATNR                     = WA_RECORD_OUT-MATNR
                I_WERKS                     = WA_RECORD_OUT-WERKS
                I_ANFME                     = WA_PHY_INV_HIS-QUANTITY
                I_ALTME                     = WA_PHY_INV_HIS-UNIT_OF_MEASURE
               I_SQUIT                     = 'X'
               I_VLTYP                     = WA_RECORD_OUT-LGTYP
               I_VLPLA                     = WA_RECORD_OUT-LGPLA
               I_VLENR                     = WA_PHY_INV_HIS-STO_UNIT
               I_NLTYP                     = WA_PHY_INV_HIS-STO_TYPE
               I_NLPLA                     = WA_PHY_INV_HIS-STO_BIN
               I_COMMIT_WORK               = 'X'
               I_BNAME                     = SY-UNAME
               I_KOMPL                     = 'X'
             IMPORTING
               E_TANUM                     = I_TANUM
             EXCEPTIONS
               NO_TO_CREATED               = 1
               BWLVS_WRONG                 = 2
               BETYP_WRONG                 = 3
               BENUM_MISSING               = 4
               BETYP_MISSING               = 5
               FOREIGN_LOCK                = 6
               VLTYP_WRONG                 = 7
               VLPLA_WRONG                 = 8
               VLTYP_MISSING               = 9
               NLTYP_WRONG                 = 10
               NLPLA_WRONG                 = 11
               NLTYP_MISSING               = 12
               RLTYP_WRONG                 = 13
               RLPLA_WRONG                 = 14
               RLTYP_MISSING               = 15
               SQUIT_FORBIDDEN             = 16
               MANUAL_TO_FORBIDDEN         = 17
               LETYP_WRONG                 = 18
               VLPLA_MISSING               = 19
               NLPLA_MISSING               = 20
               SOBKZ_WRONG                 = 21
               SOBKZ_MISSING               = 22
               SONUM_MISSING               = 23
               BESTQ_WRONG                 = 24
               LGBER_WRONG                 = 25
               XFELD_WRONG                 = 26
               DATE_WRONG                  = 27
               DRUKZ_WRONG                 = 28
               LDEST_WRONG                 = 29
               UPDATE_WITHOUT_COMMIT       = 30
               NO_AUTHORITY                = 31
               MATERIAL_NOT_FOUND          = 32
               LENUM_WRONG                 = 33
               ERROR_MESSAGE               = 99
               OTHERS                      = 34.
            IF SY-SUBRC NE 0.
              CALL FUNCTION 'FORMAT_MESSAGE'
                EXPORTING
                  ID        = SY-MSGID
                  LANG      = '-D'
                  NO        = SY-MSGNO
                  V1        = SY-MSGV1
                  V2        = SY-MSGV2
                  V3        = SY-MSGV3
                  V4        = SY-MSGV4
                IMPORTING
                  MSG       = MESSAGE
                EXCEPTIONS
                  NOT_FOUND = 1
                  OTHERS    = 2.
           ENDIF.
    Edited by: Rob Burbank on Oct 12, 2011 3:44 PM

  • How to catch error message and show it in VC?

    I want to catch the error message and show it in VC.For example, if there is no data row in table view queryed from data service, then popup a window to show the message "No Data Found".I don't konw how to implement it!

    Hello Kane
    use expression{disble this after defining erroe messege} box in that popup there u can define your own message as error or warning accordingnly it display message
    I hope it work or Let me know it
    Regards
    ````Satish````

  • Problem in BDC: Catching error messages (Urgent)

    Hello Experts,
    I want to catch the error message coming in the form of popup using Call Transaction in background mode.
    I have used the following statement.
    CALL TRANSACTION 'FBZ5' USING bdcdata MODE 'N' messages into bdcmsg.
    But this statement catches only the messages which are displayed in the task bar. It doesn't catch the error message in the form of popup.
    Please suggest any solution to this.
    Thanks.
    Radhika

    Hi Radhika ,
    try this one,
    DATA : BDCMSGCOLL TYPE TABLE OF BDCMSGCOLL WITH HEADER LINE,
           BDCDATA TYPE TABLE OF BDCDATA WITH HEADER LINE.
    <b>CALL TRANSACTION 'MM01' USING BDCDATA MODE N UPDATE S MESSAGES INTO BDCMSGCOLL.</b>
    IF SY-SUBRC <> 0.
      PERFORM ERR.
      CLEAR I_MSG.
      REFRESH I_MSG.
    ENDIF.
    *&      Form  ERR
          text
    -->  p1        text
    <--  p2        text
    form ERR .
    DATA V_MSG(255) TYPE C.
    READ TABLE I_MSG WITH KEY MSGTYP = 'E'.
    IF SY-SUBRC = 0.
      CALL FUNCTION 'FORMAT_MESSAGE'
       EXPORTING
         ID              = I_MSG-MSGID
         LANG            = 'E'
         NO              = I_MSG-MSGNR
         V1              = I_MSG-MSGV1
         V2              = I_MSG-MSGV2
         V3              = I_MSG-MSGV3
         V4              = I_MSG-MSGV4
       IMPORTING
         MSG             = V_MSG
      EXCEPTIONS
        NOT_FOUND       = 1
        OTHERS          = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      WRITE V_MSG. " Error Message Displayed Here.
      CLEAR V_MSG.
    ENDIF.
    endform.                    " ERR
    Regards,
    Vijay.

  • How to catch error message inside a variable?

    Hi,
    I'm trying to catch the error message inside a variable using this this command below:-
    <%=odiRef.getPrevStepLog("MESSAGE")%>
    Could you please tell me what is the right approach to capture the error message inside a variable.
    Thanks
    Anindya

    Hi Bhabani,
    I have done this and select an oracle schema.But the variables only captures the (null).Please look into this.You must have one step prior to this refresh variable. Then only it can get the status as given below.
    Returns the one-letter code indicating the status with which the previous step terminated. The state R (Running) is never returned.
    D: Done (success)
    E: Error
    Q: Queued
    W: Waiting
    M: Warning
    If you want the complete error details then you will face issues in case of multi line message. For this best option would be jython variable.Could please provide me some idea how to use this jython variable.I will update you on this soon
    Thanks
    Anindya

  • Error message as popup in webdynpro for Abap

    Hi,
    Use method REPORT_ERROR_MESSAGE of interface IF_WD_MESSAGE_MANAGER to create an error message in the webdynpro application.
    This works fine, the message is shown in the message area.
    Now I want to have the error message in a popup.
    In the method REPORT_ERROR_MESSAGE i set the parameter SHOW_AS_POPUP on abap_true but i get no popup.
    Is anyone familar with this?
    Thanks.
    Vincent.

    Hi Vincent.
    That's one I fell into as well.  That importing field is not is use yet.  Perhaps in a future support stack.
    You can bypass that by using the CREATE_POPUP_TO_CONFIRM method.  Below, you'll find some code from SAP's documentation.  All you need to do is select the button type and create some actions to receive input from the popup.
    data: l_cmp_api type ref to if_wd_component,
        l_window_manager type ref to if_wd_window_manager,
        l_popup type ref to if_wd_window,
        l_text type string_table,
        l_api type ref to if_wd_view_controller.
    l_cmp_api = wd_comp_controller->wd_get_api( ).
    l_window_manager = l_cmp_api->get_window_manager( ).
    insert `Data where changed` into table l_text. "#EC *
    insert `Do you want to save?` into table l_text. "#EC *
    l_popup = l_window_manager->create_popup_to_confirm(
        text = l_text
        button_kind = if_wd_window=>co_buttons_yesnocancel
        message_type = if_wd_window=>co_msg_type_question
        window_title = 'Test: Popup to confirm'
        window_position = if_wd_window=>co_center )."#EC *
    l_api = wd_this->wd_get_api( ).
    l_popup->subscribe_to_button_event(
        button = if_wd_window=>co_button_yes
        action_name = 'YES'
        action_view = l_api
        is_default_button = abap_true ).
    l_popup->subscribe_to_button_event(
        button = if_wd_window=>co_button_no
        action_name = 'NO'
        action_view = l_api
        is_default_button = abap_false ).
    l_popup->subscribe_to_button_event(
        button = if_wd_window=>co_button_cancel
        action_name = 'CANCEL'
        action_view = l_api
        is_default_button = abap_false ).
    l_popup->open( ).
    Hope this helps.
    Adam

  • Catching error message from standard function module to internal table.

    Hi,
    i am calling a FM in my custom prog.
    After execution of the FM some auto generated errors is getting displayed.
    I want to pass this error to an internal table.
    Please tell me how to do this?
        CALL FUNCTION 'FORMAT_CHECK'
          EXPORTING
            i_checkrule   = t005-prbkn
            i_checkfield  = it_ven-bankn
            i_checklength = t005-lnbkn
            i_checkmask   = space
            i_fname       = fname
          EXCEPTIONS
            not_valid     = 1
            OTHERS        = 2.
      IF sy-subrc <> 0.
           MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    I want to catch this particular error message in the itab.
    Thanks,
    SAM.

    Even we can create an internal table  nad move the messages to it.
    DATA : BEGIN OF L_ERR OCCURS 0,
            SNO LIKE SY-tabix,                                  "serial no
            MSGTY LIKE SY-MSGTY,                         "message type
            MSGNO LIKE SY-MSGNO,                        "message no
            ERR_TEXT LIKE T100-TEXT,                     "message text
           END OF L_ERR. 
       IF SY-SUBRC <> 0.
              L_ERR-SNO      = SY-TABIX.
              L_ERR-MSGTY    = SY-MSGTY.
              L_ERR-MSGNO    = SY-MSGNO.
              L_ERR-ERR_TEXT = TEXT-015.                        "Problem encounterd in uploading data.
              APPEND L_ERR.
              clear L_ERR.
         ENDIF.

  • Validation error message in popup

    Hello,
    I want to ask if it's possible to display validation error message in a popup window/box? I have searched the forum but couldn't find specific solution.
    Thank you in advance.

    Hi,
    Edit your label template as above. Remove javascripts mentioned above if you edit same template.
    Include this javascript
    <script type="text/javascript">
    $('#errdialog').find('ul').append($('<li/>',{text:'#ERROR_MESSAGE#'}));
    </script>Then in page where you like use this place to page HTML header
    <script type="text/javascript">
    $(function(){
    if($('#errdialog').find('li').length>0){
      $('#errdialog').dialog({
       modal:true,resizable:false,
       buttons:{"Ok":function(){$(this).dialog("close")}}
    </script>And to page Header Text
    <div id="errdialog" title="Validation Error !" style="display:none"><ul/></div>Regards,
    Jari
    Edited by: jarola on Nov 4, 2010 10:48 AM
    And remember change item labels use this custom template
    Edited by: jarola on Nov 4, 2010 10:49 AM
    script tag included

  • How to display error message in Popup window

    Hi,
    I have main view and when I click button I opened new pop up window.
    I have some validation for the form in pop up window. I want to display the error message in pop up window.
    Please let me know how to get it.
    Thanks

    Hi mami,
           Is is very difficulty to request focus to the POP window..in our case we are trying lot of time ..but we are not success to display massage in pop window.
    you will  put TEXTView in you pop window where you want to display massage in you POPWINDOW.
    and Create one context value Attribute as Massage
    Value Attribute-----ErrMassage.
    ErrMassage Attribute set your Text property of TEXTVIEW  UI Element.
    If(your condition is TRUE){
    //Excute Your code perfectly.
    else
    wdContext.currentContextElement().setErrMassage("Please provide proper name");
    In this way we were this massage showing in our popwindow..
    thanks
    jati

  • Struts validation error message in popup

    instead of doing this
    <logic:messagesPresent>
                   <html:messages id="error">
                        '<bean:write name="error" />'
                   </html:messages>
              </logic:messagesPresent>I want to display the error message in a pop up.
    I've written a function to pass the message when the page loads.. this works correctly when there is only one error... because I'm using the above code.. so of course it doesn't work.
    Now my question is, can I pass the whole collection into the function and iterate through it in the function and how is it stored in the collection.

    Hi,
    Edit your label template as above. Remove javascripts mentioned above if you edit same template.
    Include this javascript
    <script type="text/javascript">
    $('#errdialog').find('ul').append($('<li/>',{text:'#ERROR_MESSAGE#'}));
    </script>Then in page where you like use this place to page HTML header
    <script type="text/javascript">
    $(function(){
    if($('#errdialog').find('li').length>0){
      $('#errdialog').dialog({
       modal:true,resizable:false,
       buttons:{"Ok":function(){$(this).dialog("close")}}
    </script>And to page Header Text
    <div id="errdialog" title="Validation Error !" style="display:none"><ul/></div>Regards,
    Jari
    Edited by: jarola on Nov 4, 2010 10:48 AM
    And remember change item labels use this custom template
    Edited by: jarola on Nov 4, 2010 10:49 AM
    script tag included

  • How to fectch the error message from popup?

    i am able to recognize pop message at the the time recording byt at the time of playback it's unable to find that.

    When u call a BAPI there will be Return structure. u need to pass the internal table to that function module. when the function module is executed the internal table is filled with the messages. u can loop at that internal table where message type is 'E' and process the message.
    Check this :
    DATA:IT_PERSONALDATA LIKE STANDARD TABLE OF BAPIKNA101_1 WITH HEADER LINE,
         IT_COPYREFERENCE LIKE STANDARD TABLE OF BAPIKNA102 WITH HEADER LINE,
         RETURN LIKE STANDARD TABLE OF BAPIRETURN1 WITH HEADER LINE.
    CALL FUNCTION 'BAPI_CUSTOMER_CREATEFROMDATA1'
      EXPORTING
        PI_PERSONALDATA              = IT_PERSONALDATA
      PI_OPT_PERSONALDATA          = PI_OPT_PERSONALDATA
      PI_COMPANYDATA               = PI_COMPANYDATA
      PI_OPT_COMPANYDATA           = PI_OPT_COMPANYDATA
      PI_CONSUMEREN                = PI_CONSUMEREN
        PI_COPYREFERENCE             = IT_COPYREFERENCE
      PI_CREDIT_CONTROL_FLAG       = PI_CREDIT_CONTROL_FLAG
    IMPORTING
       CUSTOMERNO                   = V_CUSTOMERNO
       RETURN                       = RETURN.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        WAIT = 'X'.
    APPEND RETURN.
    LOOP AT RETURN.
      WRITE:/ RETURN-TYPE, RETURN-MESSAGE.
    ENDLOOP.
    Regards,
    Swathi

  • Catch Error message from WLI Process

    Hi,
    I have a big application developed with WLI and I wanna know if there is a way to recive error messagem from this application throught the ALSB. The ALSB call a WLI jpd procces by BussinesProxy.
    For example, when occurs a database error into JPD proccess, I want to receive this error and log it or pass it to another application to nofify error and so one.
    All the procces in my WLI application were developed with ClientRequestWithReturn and I am thinking in put in this return one tag called <ERROR>ORACLE-0002 - JDBC ERROR bla bla</ERROR> in case off error and <ERROR>FALSE</ERROR> when everythig went OK at the WLI Application.
    Is there another way to do this?
    Thanks!
    Edited by denimar at 05/12/2008 2:33 PM

    Hi,
    Try throwing an RPC SoapFaultException from your JPD. That should make it back to ALSB as an error and does not count as "Unhandled Exception" by WLI. Although SoapFaultExceptions are a pain to create.
    Otherwise passing an error element back in the body has worked fine for me in the past.

  • Catching error messages in Webservice response

    Hi,
    The webservice I am trying to call from ABAP is throwing address not found exception which is caught by cx_ai_system_fault exception class. This class only returns <faultcode> and <faultstring> but not <ErrorCode> and <ErrorMsg> in <detail> node.
    Is there any way I could get information from <detail> node?
    Below is response I am getting from webservice.
    <?xml version="1.0" encoding="utf-16"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
    <soap:Fault>
    <faultcode>soap:Client</faultcode>
    <faultstring>Fault occurred</faultstring>
    <faultactor>http://testserver/Addressverification/addressservices.asmx</faultactor>
    <detail>
    <ErrorCode xmlns="http://www.testserver.com">2</ErrorCode>
    <ErrorMsg xmlns="http://www.testserver.com">ADDRESS NOT FOUND</ErrorMsg>
    </detail>
    </soap:Fault>
    </soap:Body>
    </soap:Envelope>
    Thank you,
    Jagadish

    If you see proxy structure created from wsdl then you can find exception class which may have "Detail" node.
    Regards,
    gourav

  • Reg:Internal Popup Window:Error messages

    Hi All,
            I am using a Internal Popup Window, but the error messages of "Popup window" is shown in the "Parent Window" instead of showing in "Popup Window". please suggest me to get the Error messages in "Internal Popup Window"
    Thanks
    Nagaraju

    Hi Naga,
    Disable the parent iviews message area before calling the child(popup) window. Then you can get the message in the child(popup) window.
    According to documentation, oldest (parent) message area would be used if there are more than one windows (in a layout).
    see this thread also How to display messages in pop up windows?
    PradeeP

Maybe you are looking for

  • Having a 2nd home hub on same account?

    i have bt total at my main home address but id like to have another home hub set up at my 2nd address but all under the same account number? reason is i dont want to have to pay 2 accounts when we have enough usage on this account. many thanks. brian

  • RFC Error: A remote host refused an attempted connect operation

    Hi I received strange kind of error.. Have anyone of you seen something like this before? <SAP:AdditionalText>com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: RfcAdapter: r

  • Datasource pool are not recovered

    Sometimes in our environment, weblogic lose the connection with the database for any reason: - the network between weblogic server and data base server have some crash - the data base is out Most of the times, as soon as the connection is reestablish

  • Where are the back ups?

    Hi all I'm new to this forum and as my Mac has recently been causing me an increasing amount of problems it's likely that I shall be frequenting the site more often, I shall look forward to your assistance and who knows I might even be able to share

  • Illustrator CS2 quits at startup

    I'm using Illustrator CS2 for Mac, v10.4. I believe the problem may be with the fonts that need to be activated for Illustrator to open, b/c it quits as the program is starting up as it's cycling thru the fonts in the activation window. It stalls for