Query regarding Error Messages

Dear All,
            Anyone please tell me how to display 'Error Messages in PCUI'.
I tried using " Message MESAGEID type MESSAGETYPE number MESSAGENUMBER " but it did not work.
Please provide some pointers on the above.
Regards,
Vijay

You can use the the function module  'CRM_MESSAGE_COLLECT' to add a message to the application log. These are then displayed in the pc ui.
For example if you are in an application like opportunities which is working on a one order object you can use something like the following to display a message :
message w123(mymessageclass) into lv_dummy.
call function 'CRM_MESSAGE_COLLECT'
        exporting
          iv_caller_name = gc_object_name-orderadm_h
          iv_ref_object  = iv_header_guid.
Regards, Paul
Don't forget to award points if this helps

Similar Messages

  • Query transport error message

    Dear All,
    Having trouble transporting a query.  In the log, it has the following error message:-
    "Start of the after-import method for object type R3TR ELEM (Activation Mode)
    Message no. R7501 "
    Not sure if this is the only problem, because there are several red error messages, but the above message is the first one in the list.
    Regards, Frederick

    Hi Frederick,
    Do the error messages talk about particular elements being missing? Try to collect the query in RSA1 > Transport Connection and see if there are any elements that have $TMP data package...correct this and try to put into a fresh request and transport again.
    Hope this helps...

  • How front end query invoke error message at backend

    Dear all,
    Please help me this out! I'm working on servlets(using Apache server). I'm sending sql statement to (dbaccess) database. If I do a sql statement directly at backend, the db will generate an error message. Now I'm sending the query at front end. When error occurs, the backend doesn't show the error message. I have no idea how to 1) generate the error messages at backend when a sql from front end is executed. 2) And then how the backend send the error message to the frontend.
    If you have any idea, please help me. I greatly appreciate that!
    Regards,
    Grace

    Thanks. Backend means database. But I just wonder why this exception not shown on my webpage. I made it to print out in html file.
    And are you sure that the exception front end caught is the same error message that I get if I run the sql statement at backend directly? Because I'm thinking of ways to make the error message both detail and user friendly to understand.
    What would you think?
    Thanks again!
    Grace

  • Regarding Error message in ME_PROCESS_PO_CUST badi for validation.

    hi Friends,
    I am Using ME_PROCESS_PO_CUST badi for validation in Purchase order (ME21N),
    For that I implemented PROCESS_ITEM method which fires during each row now i  add another validation in same implementation for plant  should be same through out the all line item. Now following code is woking fine but when for second line item user changese plant then it shows error message as per logic which is fine but even after changing plant to correct one the error message is still coming why is it so?
    following is my current validation code
    method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM.
      DATA:ls_poitem TYPE mepoitem,
           ls_poitem_set TYPE mepoitem.
      DATA:ls_poheader TYPE MEPOHEADER.
      DATA:lm_poheader TYPE ref to IF_PURCHASE_ORDER_MM.
      DATA:w_mara TYPE mara.
      DATA:IT_ZMMTBL039 TYPE STANDARD TABLE OF ZMMTBL039 ,
           WA_ZMMTBL039 TYPE ZMMTBL039 .
      DATA:ls_poitem1 TYPE mepoitem.
      DATA:V_KUNNR1 TYPE KNA1-KUNNR.
      DATA:V_KUNNR2 TYPE KNA1-KUNNR.
      DATA:W_WERKS(4),
           w_werks_tmp(4),
           w_flag(1).
      ls_poitem = im_item->get_data( ).
      lm_poheader = im_item->GET_HEADER( ).
      ls_poheader = lm_poheader->GET_DATA( ).
      IF ls_poitem-werks IS NOT INITIAL.
        w_werks = ls_poitem-werks.
        import w_flag to w_flag from MEMORY ID 'FLAG'.
        if w_flag is initial.
          w_flag = 'X'.
          EXPORT w_werks_tmp FROM w_werks TO MEMORY ID 'MEMO1'.
          export w_flag from w_flag to MEMORY ID 'FLAG'.
          clear: w_flag.
        endif.
      ENDIF.
      IMPORT w_werks_tmp TO w_werks FROM MEMORY ID 'MEMO1'.
    break swaroopb.
      IF ls_poitem-werks NE w_werks.
          MESSAGE E010(zparts) with 'Different plants are not allowed in single PO.'.
      ENDIF.
      CLEAR: WA_ZMMTBL039,w_mara.
      REFRESH:IT_ZMMTBL039[] .
      SELECT *
        INTO TABLE IT_ZMMTBL039
        FROM ZMMTBL039
       WHERE bsart EQ ls_poheader-bsart.
      IF sy-subrc EQ 0.
        CLEAR: WA_ZMMTBL039,w_mara.
        SELECT SINGLE *
          INTO w_mara
          FROM mara
         WHERE matnr EQ ls_poitem-MATNR.
        IF SY-SUBRC EQ 0.
          READ TABLE IT_ZMMTBL039 INTO WA_ZMMTBL039 WITH KEY  bsart = ls_poheader-bsart
                                                              mtart = w_mara-mtart
                                                              spart = w_mara-spart.
          IF SY-SUBRC NE 0.
            MESSAGE E009(zparts) WITH ls_poitem-MATNR w_mara-spart ls_poheader-bsart .
          ENDIF.
        ENDIF.
      ENDIF.
    end method

    Hello Swarup
    Since you want to compare all items together (having the same plant) I would suggest to implement this logic either in method CHECK or POST of the interface.
    However, if you want to make your checks within the PROCESS_ITEM method then you should change your logic.
    It does not make sense to work with the ABAP memory within a BAdI implementing class because the class itself is your "memory".
    I would use the following logic to implement your validation:
      lo_poheader = im_item->get_header( ).  " retrieve header instance
      lt_items = lo_poheader->get_items( ).   " retrieve all items
      ls_detail_x = im_item->get_detail( ).  " details of currently processed item
      LOOP AT lt_items INTO ls_item.
        ls_detail = ls_item-item->get_detail( ).
        IF ( ls_detail-werks NE ls_detail_x-werks ).  " validation failed
        " do something...
       ENDIF.
      ENDLOOP.
    However, I would prefer to do this kind of validation in CHECK or POST method.
    Regards,
      Uwe

  • Regarding Error Message for the purchase order

    Hello SRM Experts,
    The Status of the purchase order is Archived and PO is not transferred to the backened system.  I ran the transaction bbp_pd_po_transfer_exec in P36 and check the error message in T-Code RZ20, i get the following error in RZ20 for the PO as:
    1.  Error reading the export data for EXEC of purchase order
    2.   and in P36 system, when i press F5, popup message appears - Error while reading PO in backened system. Inform System administrator.
    I want to know, why this problem appears and how to resolve this issue ?
    Thanks in Advance,
    Regards,
    B.Satyanarayan Reddy

    Hello,
    I checked in the bbp_pd and there also i got the popup message as Error while reading PO in backened system. Inform System Administrator.
    I also checked with the backened team, everything seems to be fine there.
    The thing is that PO is not transferred to the backened system since 13.02.2008 to till date and it stuck up in the EB system.
    Kindly let me know, why this problem occurs and what should i do to resolve the issue.
    Thanks in advance,
    Regards,
    B.Satyanarayan Reddy

  • Regarding Error Message while releasing Process Order

    Dear friends,
                              While releasing process order i m getting following error message.
    " Storage location in PUB(loc1) is not same as storage location (loc2)''.
    how to remove this error and release the order.
    Thanks & regards,
    Sandip Sonar

    Hi Sandip,
    The error message LP 099 'Stor. location in PUB X is not the same as prod.stor. location Y' is issued when the system finds  inconsistancy in your customizing of the couple storage location - Production supply area for your components in your process order.                                                                               
    The logic of the storage location determination is the following ...
    The issuing storage location is determined in three steps:                                                                               
    1. First, the issue storage location of the material to be issued   (MARC-LGPRO) is transferred to the material master from the  MRP    data if it is filled.                                                 
    2. The system overwrites this value with the issue storage location from the bill of material (RC29P-LGORT, STPO-LGORT) if it is     filled.                                                               
    3. If the operation to which the component is assigned in production  order contains a work center with supply area, the storage    location is transferred from this supply area (PVBE-LGORT).     However, this transfer is only carried out if storage location  data (MARD) is maintained for this storage location for the    material.                                                                               
    The logic of the supply area determination:                              
    Priority of supply area determination for WM staging is as follows :     
    1. Supply Area of Work Center               (highest priority)   If no supply area defined look to                                     
    2. Supply Area in item of Bill of material  (second priority)   If no supply area defined look to                                     
    3. Material Master View MRP2                (third priority)         If no supply area defined -> Error message LP 099                                                                               
    I hope this helps in sorting the issue.  
    Regards,
    Mauro

  • Regarding Error Message in RunTime Workbench

    Hi All,
    Could you please tell me how to resolve the following error.
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: SOAP: response message contains an error Application/UNKNOWN/APPLICATION_ERROR - application fault
    While doing testing in the Integration engine. This is JDBC to SOAP scenario.
    Regards,
    Sai

    Hi Sai,
    I think as per the error message, the WebService is sending back the response.
    Probably you have to use JDBC adapter as Synchronous to capture the respons eof WebService.
    But generally JDBC sender is used to be Async,and I think you have used it the similar way.
    You need to build the Async to Sync Bridge for JDBC to SOAP communication.
    Please refer below links for more details
    http://help.sap.com/saphelp_nw04/helpdata/en/43/65d4dab39b0398e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/45/20d251c20a0732e10000000a155369/content.htm
    The above links are focused for JMS adapter but you could be able to use these Adapter modules for other types of adapters also.
    AF_Modules/RequestResponseBean  &
    AF_Modules/ResponseOnewayBean
    I think the abouve modules need minumum SP 16 onwards
    Either way it can be achivable with BPM also
    Thanks
    Swarup

  • Regarding error message BTE_01

    Hi Sap Experts
    Please help me for following error. I never seen before
    one of my user is trying to post GR using t-code MB1C and getting following error message
    BTE_01: Account 21000027 must be posted as group account 21000000 with trading partner.
    Message no. /SIE/SF_FI_CL_01106
    How can i slove it.
    thank you

    If you are doing it like this.
    message id 00 type 'E' number 001 with 'This is the error'.
    then you will get the behavior that you are seeing.
    If you do it like this.... then it will be what you want.
    message e001(00) with 'This is the error'.
    Regards,
    Rich Heilman

  • Regarding Error Message Deletion

    Hi All,
      We have lots of Fault Messages at R/3(application Error Messages) in our present client. SO when we delete this client and create a new client, will these application errors will alos be deleted or will these errors be persistent. ours is WAS 6.20.
    Thanks and Regards,
    Sundar

    Hi,
    YOu can backup table SNAP and try to restore it in new client if possible.
    THanks
    Amit lal

  • Regarding error message

    hi,
    When I created a simlple XL Reporter and clicked on save, then later after closing it i try to open the same file it is showing this error message:
    An error occured while trying to open (filename) . type mismatch.
    How to rectify this. It was not like this before.
    thanks in advance
    regs priya

    Hi Priya,
    Did you use any special characters in your file? Sometimes using special charaters result in file corruption in XL-Reporter.
    Regards,
    Hamsa

  • CR connection to SAP BI Query failed - error message

    Sorry, this forum is better for my question:
    Hallo,
    i get an error message by trying to login to SAP BI (over sap bi query toolbar)
    COM-Ausnahme in CExtToolbar::GetRemoteFileCookie() abgefangen. HR=0x90000001
    COM-Ausnahme in CExtToolbar::InitOpenSaveDialog() abgefangen. HR=0x90000001
    COM-Ausnahme in CExtToolbar::InitializeGlobalData() abgefangen. HR=0x03c9afe7
    Login faild with normal connection-wizard, too.
    I have no problems with Bex Analyzer or other BO-tools on this system.
    I can access with CR to queries of another SAP BW-System.
    Has anybody an idea?
    CR Version 12.2.3.467
    SAP Integration SP2 & Patch 02
    TIA
    Stefan

    CrystalReports-TraceFile:
    ========================================================================================================
    Trace file opened at , SAP-REL 710,0,0 RFC-VER U 3 880476 MT-SL
    resize I/O buffer to 16000 bytes
    >>>>   OPEN  
    UUID: ab_drvstate create uuid {C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
    0
            { }_{ }_0-
            __0
    >>>> <unknown>    : EXT  <ac: 2> L 192.168.168.11 >>> 50579148 (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
    >TS> Fri Jan 08 12:05:43 2010
            { }_{ }_0-
            __0
    >>> RfcOpenEx ...
    Got following connect_param string:
       CLIENT=800 LANG=DE CODEPAGE=1100 ASHOST=192.168.168.11 SYSNR=00 USER=shergert PASSWD=******* TRACE=1
    Send RFCHEADER: 01/LIT/IEEE/SPACE/1100
    Send UNICODE-RFCHEADER: cp:1100/ce:IGNORE/et:5/cs:2/rc:0x00000023
    UUID: send_rfcuuid {C045FCDE-7D4C-F1F8-9568-00164191FA4E}
    DT ERROR> ab_dtrfcSendInfo (rc: 1        { }_{ }_0-
    1
    >>> Logon check: calling RFCPING
    >>> RfcCall ...
    *> RfcCall
      FUNCTION RFCPING
            handle = 1
            parameter   = <NULL>
            tables      = <NULL>
    UUID:  RfcCallNew send the uuid to the partner {C045FCDE-7D4C-F1F8-9568-00164191FA4E}
    >>>> <unknown>    : EXT  <ac: 3> L 192.168.168.11 >>> WRITE (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
            __1
    000000 | D9C6C3F0 F0F0F0F0 F0F0F0E3 01010008 |ÙÆÃððððððððã....|
    000010 | 01010101 01010000 01010103 00040000 |................|
    000020 | 060B0103 0106000B 01010000 01050200 |................|
    000030 | 00002301 06000700 1E310039 0032002E |..#......1.9.2..|
    000040 | 00310036 0038002E 00310037 0038002E |.1.6.8...1.7.8..|
    000050 | 00320034 00200000 07001800 5A310039 |.2.4. ......Z1.9|
    000060 | 0032002E 00310036 0038002E 00310037 |.2...1.6.8...1.7|
    000070 | 0038002E 00320034 00200020 00200020 |.8...2.4. . . . |
    000080 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    000090 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    0000a0 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    0000b0 | 00200020 00200000 18001100 02450000 |. . . .......E..|
    0000c0 | 11001200 08370031 00300020 00001200 |.....7.1.0. ....|
    0000d0 | 13000837 00310030 00200000 13000800 |...7.1.0. ......|
    0000e0 | 40690077 006E0062 00320038 00200020 |@i.w.n.b.2.8. . |
    0000f0 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    000100 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    000110 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    000120 | 00000800 0601003C 0075006E 006B006E |.......<.u.n.k.n|
    000130 | 006F0077 006E003E 00000000 00000000 |.o.w.n.>........|
    000140 | 00000000 00000000 00000000 00000000 |................|
    000150 | 00000000 00000000 00000000 00000000 |................|
    000160 | 00000000 00000000 00000000 00000000 |................|
    000170 | 00000000 00000000 00000000 00000000 |................|
    000180 | 00000000 00000000 00000000 00000000 |................|
    000190 | 00000000 00000000 00000000 00000000 |................|
    0001a0 | 00000000 00000000 00000000 00000000 |................|
    0001b0 | 00000000 00000000 00000000 00000000 |................|
    0001c0 | 00000000 00000000 00000000 00000000 |................|
    0001d0 | 00000000 00000000 00000000 00000000 |................|
    0001e0 | 00000000 00000000 00000000 00000000 |................|
    0001f0 | 00000000 00000000 00000000 00000000 |................|
    000200 | 00000000 00000000 00000000 00000000 |................|
    000210 | 00000000 00000000 00000000 00000000 |................|
    000220 | 00000000 00000000 06051400 10DEFC45 |.............ÞüE|
    000230 | C04C7DF8 F1956800 164191FA 4E051401 |ÀL}øñ.h..A.úN...|
    000240 | 30000A44 0075006D 006D0079 00013001 |0..D.u.m.m.y..0.|
    000250 | 11001053 00480045 00520047 00450052 |...S.H.E.R.G.E.R|
    000260 | 00540001 11011700 10369D4D 071EB1B2 |.T.......6.M..±²|
    000270 | 4FB3B81A 7E5E6C37 16011701 14000638 |O³¸.~^l7.......8|
    000280 | 00300030 00011401 15000244 00011505 |.0.0.......D....|
    000290 | 01000101 05010136 002500FF 02540D12 |.......6.%.ÿ.T..|
    0002a0 | 00020000 00300D12 006C15C0 45FCDE7D |.....0...l.ÀEüÞ}|
    0002b0 | 4CF1F895 68001641 91FA4E00 00000101 |Lñø.h..A.úN.....|
    0002c0 | 36050200 00050200 0B000637 00310030 |6..........7.1.0|
    0002d0 | 00000B01 02000E52 00460043 00500049 |.......R.F.C.P.I|
    0002e0 | 004E0047 00010205 140010DE FC45C04C |.N.G.......ÞüEÀL|
    0002f0 | 7DF8F195 68001641 91FA4E05 14FFFF00 |}øñ.h..A.úN..ÿÿ.|
    000300 | 00FFFF00 00000000 00000000 00000000 |.ÿÿ.............|
    >>>> <unknown>    : EXT  <ac: 4> L 192.168.168.11 >>> FLUSH(WRITE) (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
            __1
    <* RfcCall : returns 0:RFC_OK
    >>> RfcListen ...
    >>>>   FLUSH(WRITE) (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
    1
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>>> Listen/WaitForRequest (counter = 27)
    >>>> <unknown>    : EXT  <ac: 6> L 192.168.168.11 >>> LISTEN (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
            __1
    000000 | 01010008 01010101 01010000 01010103 |................|
    000010 | 00040000 020B0103 0106000B 04010003 |................|
    000020 | 01030200 00002301 06001600 04313130 |......#......110|
    000030 | 30001600 07000F31 39322E31 36382E31 |0......192.168.1|
    000040 | 36382E31 31200007 0018002D 3139322E |68.11 .....-192.|
    000050 | 3136382E 3136382E 31312020 20202020 |168.168.11      |
    000060 | 20202020 20202020 20202020 20202020 |                |
    000070 | 20202020 20202020 20001800 11000133 |         ......3|
    000080 | 00110012 00043730 31200012 00130004 |......701 ......|
    000090 | 37303120 00130008 00206977 73617031 |701 ..... iwsap1|
    0000a0 | 5F495731 5F303020 20202020 20202020 |_IW1_00         |
    0000b0 | 20202020 20202020 20200008 00060080 |          ......|
    0000c0 | 3C007500 6E006B00 6E006F00 77006E00 |<.u.n.k.n.o.w.n.|
    0000d0 | 3E000000 00000000 00000000 00000000 |>...............|
    0000e0 | 00000000 00000000 00000000 00000000 |................|
    0000f0 | 00000000 00000000 00000000 00000000 |................|
    000100 | 00000000 00000000 00000000 00000000 |................|
    000110 | 00000000 00000000 00000000 00000000 |................|
    000120 | 00000000 00000000 00000000 00000000 |................|
    000130 | 00000000 00000000 00000000 00000000 |................|
    000140 | 00060130 00085341 504D5353 59310130 |...0..SAPMSSY1.0|
    000150 | 05140010 DEFC45C0 4C7DF8F1 95680016 |....ÞüEÀL}øñ.h..|
    000160 | 4191FA4E 05140500 00000500 04150002 |A.úN............|
    000170 | 30300415 04160001 58041604 17000333 |00......X......3|
    000180 | 34310417 04110017 43414C4C 5F46554E |41......CALL_FUN|
    000190 | 4354494F 4E5F4E4F 545F464F 554E4404 |CTION_NOT_FOUND.|
    0001a0 | 11040300 1743414C 4C5F4655 4E435449 |.....CALL_FUNCTI|
    0001b0 | 4F4E5F4E 4F545F46 4F554E44 04030402 |ON_NOT_FOUND....|
    0001c0 | 002D4465 72204675 6E6B7469 6F6E7362 |.-Der Funktionsb|
    0001d0 | 61757374 65696E20 22522220 69737420 |austein "R" ist |
    0001e0 | 6E696368 7420766F 7268616E 64656E04 |nicht vorhanden.|
    0001f0 | 02FFFF00 00FFFF00 00000000 00000000 |.ÿÿ..ÿÿ.........|
    <* RfcListen : returns 0:RFC_OK
    >>> RfcReceive ...
    Received RFCHEADER : 01/LIT/IEEE/SPACE/1100
    Received UNICODE-RFCHEADER : cp:4103/ce:IGNORE/et:3/cs:2/rc:0x00000023
    UUID: ab_rfccheck_uuid compare uuid's {C045FCDE-7D4C-F1F8-9568-00164191FA4E}
    Error in program 'Dummy': ======> 敄⁲畆歮楴湯扳畡瑳楥刢u2022獩⁴楮档⁴潶桲湡敤
    >>>> <unknown>    : EXT  <ac: 7> L 192.168.168.11 >>> FREE abrfcio.c 3440 (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
            __1
    >>>>   CLOSE abrfcio.c 3144 (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
    __1
    ==== Delta 0   0 LOG DROPPED
    Trace file opened at , SAP-REL 710,0,0 RFC-VER U 3 880476 MT-SL
    *> RfcReceive
            handle = 1
            parameter   =
    Error in program 'Dummy': <* RfcReceive : returns 3:RFC_SYS_EXCEPTION
    <<< RfcOpenEx failed
    <<<<<
    Edited by: StefanHGT on Jan 8, 2010 1:59 PM

  • Regarding error message from a transaction

    Hello all,
          I have a scenario where i need to collect all the error message from a trasaction and display it in a pop up.
          i am calling a function module and inturn calling transaction 'FB08' using bdc. i may get one or more error message. if there are more than one messages from my function module then i need to display this messages in a popup.
        Currently i am displaying one message using 'message ID' syntax at the bottom. what should i do to display error messages in a popup if there are more message
    Thanks,
    Raju N.

    use following fm.  
    CALL FUNCTION 'COPO_POPUP_TO_DISPLAY_TEXTLIST'
          EXPORTING
          TASK             = 'DISPLAY'
            titel            = 'Creation Log'
        IMPORTING
          FUNCTION         =
          TABLES
            text_table       = i_documents_log.

  • Regarding error message in a different locale

    Hi
    I have 2 applicaions .
    one contains task flow containing 1 jsff having one input text required property set to true.
    other contains page template having 2 links to switch language based on locale.
    If I use another adf application and import task flow it works well.
    but if I import task flow into webcenter portal application as adf jar file and insert TF as region then it gives error message always in english and ok button in appropriate locale.
    If I use another adf application and import task flow it works well.
    can you suggest some solution for this.
    JDEV - 11.4

    Yes I am using default error messages generated by adf framework . for ex. required="true"
    for changing locale my code is:
      public void setLocaleEnUS() {
        // change the locale
        Locale newLocale = new Locale("en", "US");
        FacesContext fctx=FacesContext.getCurrentInstance();
        fctx.getViewRoot().setLocale(newLocale);
        setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
      public void setLocaleZhHK() {
        // change the locale
        Locale newLocale = new Locale("zh", "TW");
        FacesContext fctx=FacesContext.getCurrentInstance();
        fctx.getViewRoot().setLocale(newLocale);
        setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
      }

  • Regarding error message in A.Pack

    I have been using A.Pack for ever to encode my audio aif file to AC3 and now I got an error message taht says.... the file cannot be used becasue of an OS Error of type -50 occured.
    What does it mean and what can i do to fix it? I am using my 733 powermac
    Thank you in advance.

    A long shot ....
    Is the input file over 2GB in size?? I seem to recall that A.Pack can't handle big files - and you have to break them up into smaller chunks.
    Anyway, please describe the source file(s) length(s), duration(s), sample rate et c. in case something alse becomes clear.

  • Regarding error messages &submit

    Hi have a customised transaction zc10 which is a report with the selection screen. if we enter the fields
    and execute it will update co01 record by record manualy. previously this is executed record by record and
    it displays error messages.but now i have written a cal transaction for this zc10 so that all the reocrds
    can be updated but now i want to get the error messages to be diplayed by new program which are being displayed
    when zc10 is executed how can i write the submit and get those error messages of zc10  into my new program???

    Hi,
    use
    EXPORT it_messages TO MEMORY ID 'MEMORY_ID'.
    SUMBMIT PGM2. in the first program. (bdc program.).
    in second program.
    IMPORT it_messages FROM MEMORY ID 'MEMORY_ID'.
    Guru.

Maybe you are looking for

  • I need a diagnosis:

    I recently bought a macbook pro 15" with retina display.  I was previously using an Iomega external hard drive with my Imac, and the connection worked. I plugged the external HD into the new lap top, and it worked for about an hour. Then it stopped w

  • Error while installing RCU

    Hi All , I m trying to install OBIEE 11g with SQL server 2005. First i tried to install RCU but i m getting the following error at the final step. RCU-6083:Failed - Check prerequisites requirement for selected component:MDS Please refer to RCU log at

  • In alv , how can i  display message like 'NO records in the table'in spool

    When there are no any records , i have to display a message in spool like 'No records exist'. how can i do this?/ Thanks, Suresh.

  • Manage UME  field into xml form builder show view

    Hi all, is possible to manage all UME user fields into show XMLForm? I find some problem to add user field on show view , like phone number, city, address,... I can only manage the following field: username, First name, e-mail Thanks in advance Enzo

  • QE389AA ABC & HP Laptops

    Hi, I have a HP ENVY 15t (Brand new, just got it one day ago)  with Windows 8.1 Pro Product # G0T95AV and a HP wireless TV Connect 2.0 QE389AA ABC.  I am not able to get the two item talking to each other. The HP wireless TV connect works seamless wi