How to show error message on page #NOTIFICATION_MESSAGE#?

Hi,
Is it possible to show error message on a page, where apex substitutes #NOTIFICATION_MESSAGE# at page template, with a javascript call? My requirement is to report error messages which i get from ondemand process, these on-demand processes were called from my javascript code. If any error message is returned by on-demand process, as of now, I'm reporting the error message to user by javascript based alert dialog box, but it would much better if i could keep the error message reporting by my application in a consistent manner. So any suggestion please?
-Krishna

Hi Roel,
Thanks, jumping in for help.
I tried your given code, i found that the page html source doesnt has any element with a name '#messages'. As per my understanding, its the apex engine which checks for any error, if found it shows it by adding an element id '#messages', but here on my requirement its not the apex engine which has detected the error, its my functional logic which wants to report a message. On a normal and error free page condition, we usually dont find '#message' element. I'm curious on how apex inbuilt engine is reporting an error to a page?

Similar Messages

  • How to show error message using java.awt?

    How to show error message using java.awt?
    Which is the class corresponding to the JOptionPane?
    Or I need to use Frame ?

    No, JOptionPane is swing!
    You would have to create your own frame, put your message in it, then show it.

  • How to show error message in a report program

    Hello Guys,
    I am making a report using smartforms. I am successful in showing data  but problem is if if i put a value in parameters that does not exist is database, the smartform runs and related fields shows as empty fields. But the form is running. I want to show error message if the parameter values dose not matches with the database values. The message will show as Document not exists
    So i used related error msg here like
    if sy-subrc ne 0.
              message e357.
               endif.
    But it is not working for passing values to smartform. It works if i use in classical report. Plz help me on this issue.
    Thanks,
    Rosaline.

    >
    Rosaline. wrote:
    > Thanks all for reply.  Should i have to use message before call function 'SSF_FUNCTION_MODULE_NAME' ? I tried it but not working.
    >
    >
    if it_final[] is not initial.
    >*             if sy-subrc ne 0. ---> "Remove this condition check, it not required
    >            Message e000(8i) with 'Parameter value not found'.
    >            endif.
    > *            endif. ---> "remove this
    >
    Hi,
    Sy-subrc doesnt need to be validated here, remove that If condition and check again.
    Regards,
    Karthik D

  • How to show error message next to the field?

    Hi All,
    I am writing my own form handler and I am trying to show form field errors without using errormessageforeach droplet for learning purpose.
    I am able to show to the fields errors but I want to show them next to the fields.
    How can i achieve this functionality?
    Regards,
    Prateek

    PrateekG wrote:
    Hi All,
    I am writing my own form handler and I am trying to show form field errors without using errormessageforeach droplet for learning purpose.
    I am able to show to the fields errors but I want to show them next to the fields.
    How can i achieve this functionality?
    Regards,
    Prateek
    You can use JQuery/JavaScript to validate for errors and div to show error after field like below:
    <dsp:input type="text"  bean="MyFormHandler.cashierId"  />
         <dsp:valueof bean="MyFormHandler.errorMap.firstname"/>
    <div id="firstNameError">Your error message will goes here<div>
    -RMishra

  • How to show error message to user as I want?

    Hello.
    1)I write application for library in Java. I want to show down message to user as "Not this book in library"
    integrity constraint (LIBRARY.BOOK_USER_B_FK) violated - parent key not found
    2) Can I change message text for user ? If can, how?
    Thanks

    String query = insert into book_user user_id, book_id , out_date, in_date values( 2011005 , 123456 , to_date('14.4.2011','dd.mm.yyyy') , to_date('14.4.2011','dd.mm.yyyy') )
    k = insert.update(query);
    if(k == 0){
    JOptionPane.showMessageDialog(this,Errors.getError1() ,"Book", WIDTH);
    }else{
    JOptionPane.showMessageDialog(this, k + " it is ok" ,"Book", WIDTH);
    *public class Errors {*
    private static String error1;
    *public static String getError1() {*
    return error1;
    *public static void setError1(String error1) {*
    Errors.error1 = error1;
    public int update(String query) {
    try {
    ods = new OracleDataSource();
    ods.setURL(read.readUrl());
    ods.setUser(Common.getUser());
    ods.setPassword(Common.getPassword());
    conn = ods.getConnection();
    stmt = conn.createStatement();
    a = stmt.executeUpdate(query);
    conn.commit();
    conn.close();
    } catch (SQLException e) {
    System.out.println("excetion_update + " + e.getMessage());
    Errors.setError1(e.getLocalizedMessage());
    catch (IOException w){
    w.getMessage();
    return a;
    I am new to Java, sorry this codes:((
    Thanks

  • How  to  show  error  message ?

    I have an awt frame in which i have a textfield and button and i want to show a popup when the button is clicked and the textfield is empty.With JPanel i can show it by showing message dialog JOptionPane.showMessageDialog(null, "hi ","Empty",JOptionPane.ERROR_MESSAGE);
    How to do it with awt.frame
    i know its simple but i am confusedThanks in advance

    Sorry about that! I see that you wanted an AWT response rather than Swing. The method could look like this for the AWT:
         private void display()
              Frame frame = new Frame("Error!");
              frame.setLayout(new FlowLayout());
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);}
              frame.setSize(200, 75);
              Label label = new Label("You must enter a value!");
              frame.add(label);
              frame.show();
         }

  • Best Practices Question: How to send error message to SSHR web page.

    Best Practices Question: How to send error message to SSHR web page from custom PL\SQL procedure called by SSHR workflow.
    For the Manager Self-Service application we’ve copied various workflows which were modified to meet business needs. Part of this exercise was creating custom PL\SQL Package Procedures that would gather details on the WF using them on custom notification sent by the WF.
    What I’m looking for is if/when the PL\SQL procedure errors, how does one send an failure message back and display it on the SS Page?
    Writing information into a log or table at the database level works for trouble-shooting, but we’re looking for something that will provide the end-user with an intelligent message that the workflow has failed.
    Thanks ahead of time for your responses.
    Rich

    We have implemented the same kind of requirement long back.
    We have defined our PL/SQL procedures with two OUT parameters
    1) Result Type (S:Success, E:Error)
    2) Result Message
    In the PL/SQL procedure we always use below construct when we want to raise any message
    hr_utility.set_message(APPL_NO, 'FND_MESSAGE_NAME');
    hr_utility.raise_error;
    In Exception block we write below( in successful case we just set the p_result_flag := 'S';)
    EXCEPTION
    WHEN APP_EXCEPTION.APPLICATION_EXCEPTION THEN
    p_result_flag := 'E';
    p_result_message := hr_utility.get_message;
    WHEN OTHERS THEN
    p_result_flag := 'E';
    p_result_message := hr_utility.get_message;
    fnd_message.set_name('PER','FFU10_GENERAL_ORACLE_ERROR');
    fnd_message.set_token('2',substr(sqlerrm,1,200));
    fnd_msg_pub.add;
    p_result_message := fnd_msg_pub.get_detail;
    After executing the PL/SQL in java
    We have written some thing similar to
    orclStmt.execute();
    OAExceptionUtils.checkErrors (txn);
    String resultFlag = orclStmt.getString(provide the resultflag bind no);
    if ("E".equalsIgnoreCase(resultFlag)){
    String resultMessage = orclStmt.getString(provide the resultMessage bind no);
    orclStmt.close();
    throw new OAException(resultMessage, OAException.ERROR);
    It safely shows the message to the user with all the data in the page.
    We have been using this construct for a long time for all our projects. They are all working as expected.
    Regards,
    Peddi.

  • How to update Ipad 2 from IOS 4.3.5 to IOS 5. Itunes won't let me do it because it keeps showing error messages asking me to check if my network is active.

    how to update Ipad 2 from IOS 4.3.5 to IOS 5? Itunes won't let me do it because it keeps showing error messages asking me to check if my network is active.

    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 7.1.2. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    You can no longer update to iOS 6.x, or down grade the iOS.
    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and antivirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 7.x, the next update can be installed via wifi (i.e., not connected to your computer).
    Tip 2 - If you're updating via wifi, place your iPad close to your router to preclude getting a corrupted download.
    How to Upgrade to iOS 7
    The iOS 7.0 update requires around 2.5 GB of storage space, so if your iPad is almost full, you may need to clear up some space. You can check your available space in Settings -> General -> Usage.
    There are two ways to upgrade to iOS 7: You can use your Wi-Fi connection, or you can connect your iPad to your PC and update through iTunes. We'll go over each method.
    To upgrade using Wi-Fi:
    Note: If your iPad's battery is under 50%, you will want to plug it into your charger while performing the update.
    Go into the iPad's Settings.
    Locate and tap "General" from the menu on the left.
    The second option from the top is "Software Update". Tap this to move into the update settings.
    Tap "Download and Install". This will start the upgrade, which will take several minutes and will reboot your iPad during the process. If the Download and Install button is grayed out, trying clearing up some space. The space required by the update is mostly temporary, so you should gain most of it back after iOS 7 is installed.
    Once the update is installed, you may have to run through the initial steps of setting up your iPad again. This is to account for new features and settings.
    To upgrade using iTunes:
    First, connect your iPad to your PC or Mac using the cable provided when you purchased your device. This will allow iTunes to communicate with your iPad.
    You will also need the latest version of iTunes. Don't worry, you will be prompted to download the latest version when you launch iTunes. Once it installs, you may be asked to setup iCloud by logging into your iTunes account. If you have a Mac, you may be prompted on whether or not you want to enable the Find my Mac feature.
    Now you are ready to begin the process:
    If you upgraded iTunes earlier, go ahead and launch it. (For many, it will launch automatically when you plug in your iPad.)
    Once iTunes is launched, it should automatically detect that a new version of the operating system exists and prompt you to upgrade to it. Choose Cancel. Before updating, you will want to manually sync your iPad to make sure everything is up to date.
    After canceling the dialog box, iTunes should automatically sync with your iPad.
    If iTunes doesn't automatically sync, you can manually do it by selecting your iPad within iTunes, clicking on the File menu and choosing Sync iPad from the list.
    After your iPad has been synced to iTunes, select your iPad within iTunes. You can find it on the left side menu under Devices.
    From the iPad screen, click on the Update button.
    After verifying that you want to update your iPad, the process will begin. It takes a few minutes to update the operating system during which time your iPad may reboot a few times.
    After updating, you may be asked a few questions when your device finally boots back up. This is to account for new settings and features.
     Cheers, Tom

  • How to print error messages in browser?

    When I visit a jsp file in browser, there's some errors in the jsp file, so the browser returns
    The page cannot be displayed
    There is a problem with the page you are trying to reach and it cannot be displayed.
    I want the detail error messages, so I can debug my problem. How to print error message in browser or find the message in some log file?

    Hi Kanaraja,
    Thanks for your answer. I need to get certain information from the list. So, I use LIST_To_ASCII FM. However, may I know the ascii_tab should be type to what? And after this FM, do I have to use another FM to display the ascii list?
    data ABAPLIST type ABAPLIST OCCURS 0.
    SUBMIT  RPCALCU0 VIA SELECTION-SCREEN
    with PNPXABKR = 'US'
    with PNPTIMRA = 'X'
    with PNPPABRP = '10'
    with PNPPABRJ = '2003'
    with PNPPERNR-LOW = '100750'
    with PNPPERNR-LOW = '109202'
    with PNPPERNR-LOW = '100255'
    with PNPABKRS-LOW = 'US'
    with SCHEMA = 'ZUSP'
    with RADI_EDT ='X'
    with EDT_VARI = 'CUS&SAP_US'
    with TST_ON = 'X'
    EXPORTING LIST TO MEMORY and RETURN.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject       = ABAPLIST
    EXCEPTIONS
       NOT_FOUND        = 1
       OTHERS           = 2.
    CALL FUNCTION 'LIST_TO_ASCI'
      EXPORTING
        list_index         = -1
      TABLES
        listasci           = asci_tab
        listobject         = ABAPLIST
      EXCEPTIONS
        empty_list         = 1
        list_index_invalid = 2
        OTHERS             = 3.
    IF sy-subrc NE '0'.
      WRITE:/ 'LIST_TO_ASCI error !! ', sy-subrc.
    ENDIF.

  • How to show warning message in am

    How to show warning message in am but not Stop , it still can go ahead.
    Thank you very much.

    jamras ,
    If i got you correct you wanna show user a list fo warnings after that have occured in some method in AM, and show them to user collectively, and the processing of the page should not stop in the above. What you need to do for it, is instead of throwing warning message in AM, collect all warnings in a arraylist or vector. when you navigate back to CO, iterate through this arraylist/vector and for each use pagecontext.putDialogmessage(oaexception).In this way you will be able to show all warning messages on page and your processing will not stop!
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to Customize Error message in JXL

    Hi All,
    I want to customize error message in JXL. I.e. When we apply number validation to a cell and if you enter invalid data MS-Excel shows error message saying that "The value you entered is not valid". But I want to customize this message to "Data should be a decimal number". Can anyone help me how to acheive it. Thanks in Advance.
    Thanks
    Venkat.

    Thx alot...!! for all your valuable replies.
    And, I found a way to achieve my requirement in a declarative way.
    I just created an entity validator on EmployeeEO.
    - Rule_Type: Key Exists
    - Rule Definition:
    - Validation Target Type: Entity Object
    - Association Name : <Select Assiociation created > "EmpDeptFK"
    - Failure Handling:
    - Error Message: "Invalid Deparment ID {0} Entered. Please enter a valid Department ID."
    - Message Token for "0": Department ID
    And It fulfilled my requirement.

  • How to give error message for the screen element text field when wrong i/p

    How to give error message for the screen element text field when wrong i/p
    when wrong input given
    eg. 
    I have a text box with SBOOK-CARRID
    so when user give wrong entry in text box i.e LG
    then I should give some error stating that the the input is invalid or not available ,
    now it showing the error of standard messages,
    i want manual message to be displayed when error comes.
    Thank you,
    Regards,
    Jagrut Bharatkumar Shukla

    Hi all,
    Thank you for your valuable reply,
    but the thing is that its a screen field,
    i.e text box not a selection screen
    i created in screen layout
    with name sbook-carrid
    now i want to get error message display if wrong i/p is given
    thank you.
    Regards,
    Jagrut bharatkumar Shukla,

  • How to display error message in abap

    How to dispaly error message in report?
    i have to check the range bewteen two days and if it is not in range have to display error message only once.
    next time if i press the execute button report will get executed without showing the warning message.
    i am calculating the days between two dates, i am displaying the error message but if i press the execute button i will not allow me to execute the report.it again shows me the error message.i have to skip this in 2nd time.
    can any one  suggest what to do with this?

    hello suman,
    i am using select-option in my report. And i have to check the difference between two dates in select option input box( low-value and high-value). if it is greater then suppose 10 then i have to display warning message at once and then if click on execute button , the report should get executed without showing any warning messages in report.
    here i am attaching my source code.please take a close look and tell me where should i have to make change.
    SELECT-OPTIONS :s_bedat FOR ekko-bedat.
    AT SELECTION-SCREEN ON s_bedat.
      IF NOT s_bedat IS INITIAL.
        PERFORM bedat_validate.                       " Perform for Purchasing Document Date Validation
      ENDIF.
    FORM bedat_validate .                        " Form for Purchasing Document Date Validation
      DATA  : diffr TYPE i.
      CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'
        EXPORTING
          i_datum_bis                   = s_bedat-high
          i_datum_von                   = s_bedat-low
      I_KZ_EXCL_VON                 = '0'
      I_KZ_INCL_BIS                 = '0'
      I_KZ_ULT_BIS                  = ' '
      I_KZ_ULT_VON                  = ' '
      I_STGMETH                     = '0'
      I_SZBMETH                     = '1'
       IMPORTING
         e_tage                        =  diffr
    EXCEPTIONS
      DAYS_METHOD_NOT_DEFINED       = 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.
      ELSE.
        IF diffr GT 31.
          MESSAGE s009(zerrormsg) WITH text-000 DISPLAY LIKE 'W'.
          LEAVE TO LIST-PROCESSING.
        ENDIF.
      ENDIF.
    ENDFORM.                    " BEDAT_VALIDATE

  • Show error message when Install SM7 in step 4 execute Service

    Hi All
    Show error message when Install SM7 in step 4 execute Service.
    Anyone can help me fix the problem pls!
    Regards
    Kevin
    Start the setup task 'Determination of SID and InstanceNumber for Diagnostics agent' ...
    Information for SAPInst:
    sid=SMD
    number=98
    2009.06.08 11:16:59
    Task completed with status 0
    INFO 2009-06-08 11:17:00.0
    Execute step initSystem of component |NW_Onehost|ind|ind|ind|ind|0|0|SA_Integrated|ind|ind|ind|ind|7|0
    INFO[E] 2009-06-08 11:17:00.250
    FSL-02077  File system export (share) saploc does not exist.
    INFO 2009-06-08 11:17:00.484
    Execute step initED of component |NW_Onehost|ind|ind|ind|ind|0|0|SA_Integrated|ind|ind|ind|ind|7|0
    INFO[E] 2009-06-08 11:17:00.718
    FSL-02077  File system export (share) saploc does not exist.
    INFO[E] 2009-06-08 11:17:05.265
    FSL-01027  Account user="hk-is-000818\smdadm" does not exist.
    INFO 2009-06-08 11:17:05.609
    Execute step createOSUser of component |NW_Onehost|ind|ind|ind|ind|0|0|SA_Integrated|ind|ind|ind|ind|7|0
    INFO[E] 2009-06-08 11:17:05.875
    FSL-02077  File system export (share) saploc does not exist.
    INFO[E] 2009-06-08 11:17:08.187
    FSL-01027  Account user="hk-is-000818\smdadm" does not exist.
    INFO[E] 2009-06-08 11:17:10.531
    FSL-01027  Account user="hk-is-000818\smdadm" does not exist.
    INFO[E] 2009-06-08 11:17:12.859
    FSL-01027  Account user="hk-is-000818\smdadm" does not exist.
    INFO[E] 2009-06-08 11:17:15.156
    FSL-01027  Account user="hk-is-000818\smdadm" does not exist.
    WARNING[E] 2009-06-08 11:17:20.281
    FSL-01002  Unable to create account hk-is-000818\smdadm. HRESULT=0x80005009
    INFO 2009-06-08 11:17:20.562
    Execute step initOS400Parameters of component |NW_Onehost|ind|ind|ind|ind|0|0|SA_Integrated|ind|ind|ind|ind|7|0
    INFO 2009-06-08 11:17:20.781
    Execute step initING_DI of component |NW_Onehost|ind|ind|ind|ind|0|0|SA_Integrated|ind|ind|ind|ind|7|0
    INFO 2009-06-08 11:17:22.312
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\ORA\CENTRAL\AS\summary.html.
    INFO 2009-06-08 11:17:28.828
    Execute step ntpatch of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|1|0|NW_Update_DLLs|ind|ind|ind|ind|3|0
    INFO 2009-06-08 11:17:29.093
    Node C:\WINDOWS\system32 already exists.
    INFO 2009-06-08 11:17:31.0
    Execute step runChecksStep of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|3|0
    INFO 2009-06-08 11:17:32.390
    Execute step createAccounts of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_Users_Create_Do|ind|ind|ind|ind|5|0
    INFO 2009-06-08 11:17:33.171
    Nothing to do. User privileges are an empty string.
    INFO 2009-06-08 11:17:33.203
    Nothing to do. User privileges are an empty string.
    INFO 2009-06-08 11:17:33.250
    Nothing to do. User privileges are an empty string.
    INFO 2009-06-08 11:17:33.281
    Nothing to do. User privileges are an empty string.
    INFO 2009-06-08 11:17:33.328
    Nothing to do. User privileges are an empty string.
    INFO 2009-06-08 11:17:33.375
    Nothing to do. User privileges are an empty string.
    INFO 2009-06-08 11:17:33.421
    Nothing to do. User privileges are an empty string.
    INFO[E] 2009-06-08 11:17:35.703
    FSL-01027  Account user="hk-is-000818\SAPServicePAS" does not exist.
    WARNING[E] 2009-06-08 11:17:40.796
    FSL-01002  Unable to create account hk-is-000818\SAPServicePAS. HRESULT=0x80005009
    WARNING[E] 2009-06-08 11:17:40.796
    MUT-03025  Caught ESyException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2009-06-08 11:17:40.843
    FCO-00011  The step createAccounts with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_Users_Create_Do|ind|ind|ind|ind|5|0|createAccounts was executed with status ERROR .

    hi Subhash
    tkx it work
    but I got another error when install afterwards. do u know how can fix , many tkx
    Kevin
    WARNING 2009-06-09 20:39:02.421
    Execution of the command "D:\oracle\product\10.2.0\db_1\bin\lsnrctl start LISTENER" finished with return code 1. Output:
    WARNING[E] 2009-06-09 20:39:02.437
    CJS-00095  Error return code. DIAGNOSIS: Return code 1 of executable D:\oracle\product\10.2.0\db_1/bin/lsnrctl indicates an error. SOLUTION: See log file lsnrctl.log for details.
    WARNING[E] 2009-06-09 20:39:02.437
    CJS-00095  Error return code. DIAGNOSIS: Return code 1 of executable D:\oracle\product\10.2.0\db_1/bin/lsnrctl indicates an error. SOLUTION: See log file lsnrctl.log for details.
    ERROR 2009-06-09 20:39:02.468
    FCO-00011  The step StartListener with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_CreateDB|ind|ind|ind|ind|0|0|NW_OraDBCheck|ind|ind|ind|ind|0|0|NW_OraDBMain|ind|ind|ind|ind|0|0|NW_OraDBStd|ind|ind|ind|ind|3|0|NW_OraClient|ind|ind|ind|ind|3|0|NW_OraNetworkSrv|ind|ind|ind|ind|1|0|StartListener was executed with status ERROR .

  • Show error message with multilingual in ADF Jdeveloper 10g 10.1.2

    Hi
    I want show error message with multilingual in my application, but i don't know how to do.
    Can you give me some solution.
    I live in vietnamese.
    Thank a lot.

    When i using code
    ResourceBundle bundle = ResourceBundle.getBundle("MyResources",Locale.ENGLISH);
    String key = "hello";
    String s = bundle.getString(key); // Hello
    key = "bye";
    s = bundle.getString(key); // Goodbye
    then there is error follow
    java.util.MissingResourceException: Can't find bundle for base name MyResources, locale en
         at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:804)
         at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:773)
         at java.util.ResourceBundle.getBundle(ResourceBundle.java:538)
         at mypackage1.Application1.main(Application1.java:21)
    Can you show where error or you have some code about that issue, you can show me

Maybe you are looking for

  • How to get MMS working

    I have an iphone for my wife and myself. Both are with Telus that says it suports MMS sending but nothing i do seems to work. It is enabled in the menus, a camera icon is beside the message bar and no RED ! is by the pictures i have sent. I have used

  • Savings and Check account as payment form in web channel for B2C

    Hi We have a requirement to handle a Payment Form with a Savings Account or Check account, any idea how we can handle this in the Web shop?. Our concern is where  we can store the require information in the Sales Order in this scenario? Maybe we  can

  • Zen micro with playforsure and removable d

    if u have the playsforsure firmware installed on your zen micro, can you still use the removable disk function on computers without windows xp. also, can you still charge it on computer without windows xp?

  • Delivery date in RFQ mandatory?

    Hi All, per default, the delivery date field is mandatory when creating an RFQ (ME41). Is it possible to change that setting? If you don't enter a date, the following error message appears: "Please enter deliv. date later than deadline for subm. of b

  • Strange "INavigatorContent" error compiling in 4.0

    I've recently decided to try an upgrade to 4.0.  The only error I still can't work out is this one: "The children of Halo navigators must implement INavigatorContent" I seem to be getting it on all my ViewStacks that have validators.      <mx:ViewSta