MESSAGE HANDLER OF CLASS  if_hrpa_message_handler IS NOT WORKING

WE HAVE WRITTEN THIS CODE AS BELOWS INSIDE BL BADI....THE ERROR MESSAGE IS GETTTING POPULATED IN THE MESSAGE_LIST BUT DOESN'T GET DISPLAYED WHILE CHECKING AND SENDING THE FORM FROM THE FRONT END.
THE BELOW CODE IS JUST A SAMPLE CODE IN OUT BADI METHOD THERE ARE SEVERAL VALIDATIONS ON THE FAILURE OF EACH OF THEM A ERROR MESSAGE SHOULD GET TRIGERRED FROM THE FRONT END.MESSAGE_HANDLER IS ALREADY AVAILABLE INSIDE INITIAL COMPUTATIONS SO THERE IS NO REASON TO CREATE OBJECT BADI MESSAGE HANDLER
[[ IF sy-uname = 'PGOSH' OR SY-UNAME EQ 'CGHOSH'.
   DATA badi_message_handler   TYPE REF TO cl_hrpa_message_list.
     DATA message_handler        TYPE REF TO if_hrpa_message_handler.
     DATA is_ok   TYPE boole_d.
    CREATE OBJECT badi_message_handler.
      message_handler = badi_message_handler.
        message-msgid = 'ZHPA'.
        message-msgty = 'E'.
       message-msgno = '010'.
       message-msgv1 = c_none_plans. "'Invalid Plan'(z09).
         CALL METHOD message_handler->add_message
            EXPORTING
              message = message
              cause   = space . "message_handler->ERROR . "infotype_specific . "unknown.
              is_ok = 'X' ."space.
         badi_message_handler->add_messages( message_handler ).
         RAISE error_with_message.
  ENDIF.]]
PLS PROVIDE YOUR INPUTS REGATRDING THE REASION WHY THE CODE IS NOT GETTING TRIGERRED.
Edited by: PRIYANKUSH GHOSH on Jun 18, 2010 4:01 PM

Moderator message - Welcome to SCN.
Please do not use all caos in your posts. It makes it hard to read..
Also, Please read Please read "The Forum Rules of Engagement" before posting!  HOT NEWS!! and How to post code in SCN, and some things NOT to do... and [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers] before posting again.
Rob

Similar Messages

  • Why cant I add contacts on the iphone4? the mail contacts calendars button unders settings, the contacts button, the add a contacts button under message and the phone button will not work to add a contact.

    Why cant I add contacts on the iphone4? the mail contacts calendars button unders settings, the contacts button, the add a contacts button under message and the phone button will not work to add a contact.

    Have you attempted a restore?

  • I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries)

    I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries).
    Thank you for your help! - I did try looking for all available specs about Keynote on the Apple iTunes website, and found nothing that could help me. HELP!

    1
    Close all iWork applications
    2
    Uninstall Keynote; this must be done with an application remover tool to delete the installation properly. Appcleaner is known to work correctly for this purpose, it is free and can be downloaded from here: Appcleaner Download
    3
    empty the trash
    4
    shutdown the Mac and restart. After the start up chime, hold down the shift key until the apple logo appears
    let the Mac complete the start up procedure completely, it will take longer than usual as the hard drive is being repaired
    5
    Reinstall Keynote by logging into the Mac App Store using download / install

  • Why does iTunes keep giving me bogus error messages.  "Your internet connection is not working, check your connection and try again."  My internet is working fine.  iTunes is not working and will not allow me to download tunes.

    why does iTunes keep giving me bogus error messages.  "Your internet connection is not working, check your connection and try again."  My internet is working fine.  iTunes is not working and will not allow me to download tunes.

    This my sound too simple, but I just kept clikning on the arrow next to the selected music and it finally "Kicked" in.
    I live in Europe ,So Be persistent and don't give up !  Aug. 2013

  • OIM Event handler resistered and Imported but not working

    hi,
    I am using OIM 11g in windows 32 bit envoirnment.
    I have registered a pre precess event handle and also imported it into oim but it's not working. pls find below details.
    DB Entry of MDS_PATHS Table
    1     LastNameEventHandlers.xml     197     196     /tiks/LastNameEventHandlers.xml          DOCUMENT     5          143     http://www.oracle.com/schema/oim/platform/kernel     eventhandlers     1          1          UTF-8     3558973303                    0     0
    DB Entry of plugins table
    2 com.holcim.hssa.eventhandler.LastNmPreProcessEventHandlers     oracle.iam.platform.kernel.spi.EventHandler     1.0     LastNamePreProcessEventHandlers     1
    need tio know where does the eventhandlers goes D:\ORCL_HOME\Oracle_IDM1\server\features this path or else,
    but it's not working

    The eventhandler
    <eventhandlers xmlns="http://www.oracle.com/schema/oim/platform/kernel" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.oracle.com/schema/oim/platform/kernel orchestration-handlers.xsd">
    <action-handler class="com.holcim.hssa.eventhandler.LastNmPreProcessEventHandlers" entity-type="User" operation="CREATE" name="LastNmPreProcessEventHandlers" stage="preprocess" order="FIRST" sync="TRUE"/>
    </eventhandlers>
    The Plugin
    <oimplugins>
    <plugins pluginpoint="oracle.iam.platform.kernel.spi.EventHandler">
    <plugin pluginclass="com.holcim.hssa.eventhandler.LastNmPreProcessEventHandlers" version="1.0" name="LastNamePreProcessEventHandlers"/>
    </plugins>
    </oimplugins>
    The handler
    package com.holcim.hssa.eventhandler;
    import java.io.PrintStream;
    import java.util.HashMap;
    import oracle.iam.platform.context.ContextAware;
    import oracle.iam.platform.kernel.spi.PreProcessHandler;
    import oracle.iam.platform.kernel.vo.*;
    public class LastNmPreProcessEventHandlers
    implements PreProcessHandler
    public LastNmPreProcessEventHandlers()
    methodName = "";
    System.out.println("LastNmPreProcessEventHandlers called of NamePreProcessEventHandlers 16 ");
    public boolean cancel(long arg0, long arg1, AbstractGenericOrchestration arg2)
    System.out.println("cancel called");
    return false;
    public void compensate(long arg0, long arg1, AbstractGenericOrchestration arg2)
    System.out.println("getParamaterValue called");
    public EventResult execute(long processId, long eventId, Orchestration orchestration)
    System.out.println("EventResult execute called of LastNmPreProcessEventHandlers 16 ");
    methodName = "execute";
    HashMap parameters = orchestration.getParameters();
    System.out.println((new StringBuilder("Parameters ")).append(parameters).toString());
    String operation = orchestration.getOperation();
    System.out.println((new StringBuilder("Pre Process Operation ")).append(operation).toString());
    if(operation != null && operation.equalsIgnoreCase("create"))
    String firstName = getParamaterValue(parameters, "First Name");
    if(firstName != null && !firstName.trim().isEmpty() && !parameters.containsKey("Middle Name"))
    orchestration.addParameter("Middle Name", firstName.substring(0, 1));
    return new EventResult();
    public BulkEventResult execute(long arg0, long arg1, BulkOrchestration arg2)
    System.out.println("BulkEventResult called of LastNmPreProcessEventHandlers 16 ");
    return null;
    public void initialize(HashMap arg0)
    System.out.println("initialize");
    private String getParamaterValue(HashMap parameters, String key)
    System.out.println((new StringBuilder("getParamaterValue")).append(key).toString());
    String value = (parameters.get(key) instanceof ContextAware) ? (String)((ContextAware)parameters.get(key)).getObjectValue() : (String)parameters.get(key);
    return value;
    private String methodName;
    Also have a question where does it goes after export
    D:\ORCL_HOME\Oracle_IDM1\server\features or elsewhere?

  • Manifest class-path does not works

    Hi,
    We use Jrockit 1.4.2 (latest) on Solaris.
    We found that manifest class-path does not seems to work, we got classdef not found messages.
    If we change the JVM to sun 1.4.2 that everything works perfectly.
    Manifest:
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.5.2
    Created-By: 1.4.1_02-b06 (Sun Microsystems Inc.)
    Implementation-Title: com.clarify.igb.common.ejbserver
    Implementation-Version: 12.5.000
    Implementation-Vendor: Amdocs Inc.
    Specification-Title: ClarifyCRM Business Object Infrastructure
    Specification-Version: 12.5.000
    Specification-Vendor: Amdocs Inc.
    Class-Path: ClfyShared.jar ClfyCbo.jar ClfyClient.jar ClfyWebInf.jar C
    lfyiSupport.jar ClfyUtil.jar jdom.jar ClfyCommon.jar ClfySales.jar Cl
    fymOrder.jar ClfyiAdmin.jar ClfyBilling.jar ClfyBillingManager.jar Cl
    fyEmailProcessor.jar
    What can be the problem?
    Regards.,
    LJ

    Hi Jaejun,
    a.jar should also have a MANIFEST.MF Class-Path refering to b.jar.
    HTH
    Regards,
    Slava Imeshev
    "Jaejun Lee" <[email protected]> wrote in message
    news:3e541ede$[email protected]..
    >
    I meant <CRLF> not <CR> only.
    Thank you.
    "Jaejun Lee" <[email protected]> wrote:
    Ravinder Pal <[email protected]> wrote:
    I have read all message posted in this regard but my problem still
    remain.
    Please read the context to give me some pointers.
    myapp.ear contains
    - myejb.jar contains
    - manifest with Class-Path a.jar b.jar
    - a.jar (Internal)
    - b.jar (Some external Vendor)
    Problem: Call from a.jar classes which reference b.jar classes doesraise
    a ClassNotFoundException.
    Thanks.
    I have a similar problem with WebLogic 7.0 sp1.
    I have to verify this.
    Dose WebLogic support MANIFEST.MF Class-Path in development-mode.
    Indeed, I just put a.jar and b.jar in application directory.
    I put Class-Path: b.jar<carrage-return> in MANIFEST.MF of a.jar.
    But, a.jar cannot find classes in b.jar.
    Do I have to make EAR?

  • Messages on iPhone 4 (iOS 5.1.1) to Messages 8.0 on OSX Mavericks not working

    Hello All,
    I have a very specific issue with my wifes iPhone 4 on iOS 5.1.1 using Messages to send to my MacBook Pro (MBP) on OSX Mavericks with version 8.0 of Messages.
    I find that when ever she sends me a SMS via Messages going over Apples iCloud, that I don't get the message on the MBP and it shows with a red ! on her iPhone.
    I have tested a number of different situations,
    1) At the moment, both my iPhone 4 (iOS 7.1) and MBP (Messages 8.0) are setup to receive via my mobile number.
    When I send a test SMS from her iPhone to my mobile number, the SMS makes it to my iPhone, but not on the MBP Message, and she has a red ! on the SMS on her iPhone, I can try to resend the SMS a number of times and it never makes it to my MBP.
    2) I then logged out of iMessage on the MBP Message, so only my iPhone is setup to get SMS via iCloud.
    When I send a test SMS from her iPhone to my mobile number, the SMS makes it to my iPhone and all further SMS sent now work and there is no more red ! on her iPhone.
    3) I then logged back into iMessage on the MBP and setup Messages to use my email address only.
    I then send a SMS from her iPhone to my email address, the SMS makes it and I get it on the MBP Messages. I send a second SMS and that works too.
    I then send a third SMS and that fails, there is now a red ! on the iPhone and no message on the MBP. After numerous re-sends and additional SMS to the same email address, I don't get anymore messages to the MBP.
    When looking at the syslog on the MBP, the only logging I have at the time of the SMS' being set are:
    Apr 17 11:35:41 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100165 created
    Apr 17 11:36:39 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100166 created
    Apr 17 11:36:51 joshuas-mbp.gateway com.apple.SecurityServer[15]: Killing auth hosts
    Apr 17 11:36:51 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100165 destroyed
    Apr 17 11:37:55 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100167 created
    Apr 17 11:37:56 joshuas-mbp.gateway com.apple.SecurityServer[15]: Killing auth hosts
    Apr 17 11:37:56 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100166 destroyed
    Apr 17 11:39:33 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100168 created
    Apr 17 11:39:33 joshuas-mbp.gateway com.apple.SecurityServer[15]: Killing auth hosts
    Apr 17 11:39:33 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100167 destroyed
    Apr 17 11:40:21 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100169 created
    Apr 17 11:40:47 joshuas-mbp.gateway com.apple.SecurityServer[15]: Killing auth hosts
    Apr 17 11:40:47 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100168 destroyed
    Apr 17 11:41:05 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100170 created
    Apr 17 11:41:33 joshuas-mbp.gateway com.apple.SecurityServer[15]: Killing auth hosts
    Apr 17 11:41:33 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100169 destroyed
    Apr 17 11:44:00 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100171 created
    Apr 17 11:44:01 joshuas-mbp.gateway com.apple.SecurityServer[15]: Killing auth hosts
    Apr 17 11:44:01 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100170 destroyed
    Apr 17 11:44:38 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100172 created
    Apr 17 11:44:48 joshuas-mbp.gateway com.apple.SecurityServer[15]: Killing auth hosts
    Apr 17 11:44:48 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100164 destroyed
    Apr 17 11:45:09 joshuas-mbp.gateway com.apple.SecurityServer[15]: Killing auth hosts
    Apr 17 11:45:09 joshuas-mbp.gateway com.apple.SecurityServer[15]: Session 100171 destroyed
    Is anyone aware of a know issue with iOS 5.1.1 on iPhone 4 that has issues sending message via iCloud to Messages on OSX?
    I am not able to reinstall iOS 5.1.1 as it's not allowed anymore, I can't upgrade to iOS 6.1.x as that is not allowed either.
    I don't want to upgrade to iOS 7.1 as it's slow as anything on an iPhone 4 and Apple should have left iOS 6 as the last version for iPhone 4
    Thanks
    Josh

    Thank you for the comment and the link.
    Unfortunately what you have said is not very helpful and untrue. I have not caused the issues here, there seems to be a bug or design issues here between iOS 5.1.1 and Message 8.0 on OSX. That is what I am asking about.
    Maybe what you may mean by your response is that by not upgrading to iOS 7.1, it will not be fixed.
    But you can't say 100% that upgrading to iOS 7.1 is the fix, as you don't know 100% what the issue/bug/fault is.
    As an aside, I am looking for a solution apart from updating from iOS 5.1.1 to iOS 7.1.
    I do run iOS 7.1 on my iPhone 4 and have disabled as much as possible and it's still not as good as iOS 6 for speed and regret the upgrade.

  • Messages on Macbook Pro Screen Share not working

    Hi so on messages my friend is trying to share her screen with me and it is not working. When i added her it isnt letting me share my screen or ask to share hers. do we both need to have the same account type? how do i get it to work? and do i put in her email as the username? I have an aim account and she has a gmail. what is bonjour and do we need it to work?any insight is appreciated

    Try Sytem Preferences -> Sharing
    Enable (check) Screen Sharing on both computers.

  • Messages on my macbook pro is not working. it will not let me iMessage from my computer or FaceTime. how do i fix that?

    i was able to use messages on my macbook for a while and now my phone does not connect to my computer so i cannot message or facetime from my computer. both wifi is connected to my phone and computer so why is it not working?

    Log out, log back in, and try again.

  • Can not fine symbol... class SwingWorker is not working...

    Hi ,
    my code is like this. I am using netbeans ide 5.5.
    package concurrency;
    import java.util.List;
    import java.util.Random;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.GridBagLayout;
    import java.awt.GridBagConstraints;
    import java.awt.Insets;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    import javax.swing.SwingUtilities;
    import javax.swing.border.Border;
    import javax.swing.BorderFactory;
    import javax.swing.*;
    public class Flipper extends JFrame
    implements ActionListener {
    private final GridBagConstraints constraints;
    private final JTextField headsText, totalText, devText;
    private final Border border =
    BorderFactory.createLoweredBevelBorder();
    private final JButton startButton, stopButton;
    private FlipTask flipTask;
    private JTextField makeText() {
    JTextField t = new JTextField(20);
    t.setEditable(false);
    t.setHorizontalAlignment(JTextField.RIGHT);
    t.setBorder(border);
    getContentPane().add(t, constraints);
    return t;
    private JButton makeButton(String caption) {
    JButton b = new JButton(caption);
    b.setActionCommand(caption);
    b.addActionListener(this);
    getContentPane().add(b, constraints);
    return b;
    public Flipper() {
    super("Flipper");
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Make text boxes
    getContentPane().setLayout(new GridBagLayout());
    constraints = new GridBagConstraints();
    constraints.insets = new Insets(3, 10, 3, 10);
    headsText = makeText();
    totalText = makeText();
    devText = makeText();
    //Make buttons
    startButton = makeButton("Start");
    stopButton = makeButton("Stop");
    stopButton.setEnabled(false);
    //Display the window.
    pack();
    setVisible(true);
    private static class FlipPair {
    private final long heads, total;
    FlipPair(long heads, long total) {
    this.heads = heads;
    this.total = total;
    private class FlipTask extends SwingWorker<Void, FlipPair> {
    @Override
    protected Void doInBackground() {
    long heads = 0;
    long total = 0;
    Random random = new Random();
    while (!isCancelled()) {
    total++;
    if (random.nextBoolean()) {
    heads++;
    publish(new FlipPair(heads, total));
    return null;
    @Override
    protected void process(List<FlipPair> pairs) {
    FlipPair pair = pairs.get(pairs.size() - 1);
    headsText.setText(String.format("%d", pair.heads));
    totalText.setText(String.format("%d", pair.total));
    devText.setText(String.format("%.10g",
    ((double) pair.heads)/((double) pair.total) - 0.5));
    public void actionPerformed(ActionEvent e) {
    if ("Start" == e.getActionCommand()) {
    startButton.setEnabled(false);
    stopButton.setEnabled(true);
    (flipTask = new FlipTask()).execute();
    } else if ("Stop" == e.getActionCommand()) {
    startButton.setEnabled(true);
    stopButton.setEnabled(false);
    flipTask.cancel(true);
    flipTask = null;
    public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    new Flipper();
    Though this code is taken from java.sun.com.
    but this code is not working.. It shows :
    Compiling 1 source file to F:\ ...\FlipperProject\build\classes
    F:\....\FlipperProject\src\concurrency\Flipper.java:73: cannot find symbol
    symbol : class SwingWorker
    location: class concurrency.Flipper
    private class FlipTask extends SwingWorker<Void, FlipPair> {
    F:\.......\FlipperProject\src\concurrency\Flipper.java:79: cannot find symbol
    symbol : method isCancelled()
    location: class concurrency.Flipper.FlipTask
    while (!isCancelled()) {
    F:\.....\FlipperProject\src\concurrency\Flipper.java:84: cannot find symbol
    symbol : method publish(concurrency.Flipper.FlipPair)
    location: class concurrency.Flipper.FlipTask
    publish(new FlipPair(heads, total));
    F:\.......\FlipperProject\src\concurrency\Flipper.java:74: method does not override a method from its superclass
    @Override
    F:\.......\FlipperProject\src\concurrency\Flipper.java:89: method does not override a method from its superclass
    @Override
    F:\......1\FlipperProject\src\concurrency\Flipper.java:105: cannot find symbol
    symbol : method execute()
    location: class concurrency.Flipper.FlipTask
    (flipTask = new FlipTask()).execute();
    F:\............\FlipperProject\src\concurrency\Flipper.java:109: cannot find symbol
    symbol : method cancel(boolean)
    location: class concurrency.Flipper.FlipTask
    flipTask.cancel(true);
    7 errors
    BUILD FAILED (total time: 4 seconds)
    please help...

    try right-clicking on the source and select fix imports.

  • System poerties class path is not working

    I am using reflection to call my class's main method.
    For that i am loading a class by Class.forName method and then calling main method.
    if i am using set classpath="path to be used" command on command prompt then it finds the class, loads it and calls the main method.
    but
    if i am setting the class path by System class
    i.e. System.setProperty("java.class.path", "path to be used") then it is not able to find the class and gives me exception "java.lang.ClassNotFoundException".
    i have also cross checked whether the class path is set properly by calling method System.getProperty("java.class.path"); it returns me the same class path which i had set by calling
    System.setProperty("java.class.path", "path to be used")
    Can you please some one help me to solve this problem where i am missing any step or we can't do this way?
    or you can tell me the alternate way by which i can set the class path dyanamically.

    i want to call the class main method, for that i am sending runtime the class name, and classpath of jar files,
    Problem is with the class path.This work by setting classpath by command promopt's command set classpath. But then every time i have to change the classpath by using set classpath command. i dont want this approch so i am trying to do with System.setProperties("java.class.path","path to be used") but not worked give me exception class not found. please refer the following code.
                                                        System.setProperty("java.class.path", classpath);
                   Class product= Class.forName("className");
                   Class classArray[] = {String.class};
                   Object argsArray[] = {"parameterst to method"};
                   Method mainMethod = product.getMethod("main", classArray);
                   mainMethod.invoke(null, argsArray);With this code it gives me exception class not found.

  • Classes.zip can not work?

    i am working in the environment of linux server plus oracle816,and i also connect to the server via jdbc on my 98 desktop.
    unfortunately, right now, i only can connect to oracle server via local jdbc-odbc bridge,
    both thin and oci echo
    thead "main" error, noclassNOtfound,
    although the classes12.zip has been set in the classpath.
    i do not know whether need to do something on the calsses12.zip.
    ps: one of the classes12.zip i download it from otn for NT,(there is no linux driver), the other one i found it from the $oracle_home/jdbc/lib. they all can not work.

    Hi
    It would be much easier to understand if You told
    • How many movies - You want to include on the DVD
    • The duration in time on each of them
    • in what format they was recorded eg .H264, .mpeg4, streamingDV (as on miniDV tapes etc (.avi or .mov or .wmv are containers not formats)
    • What theme did You use - with or without animation+sound
    • use of audio other than .aiff 16-bit 48kHz - eg .mp3 or .wma etc (I don't)
    If Your intention exceed 2 hour of movie + menu then I would consider
    a. Save as a DiskImage - to see that the project runs OK
    b. If still to large and a reduced quality is no problem - Burn this DiskImage by using Roxio Toast™ 11 Pro as it has a function - fit onto a DVD (at the cost of quality)
    or
    Cut up Your project into 2 parts and to two DVDs (As DL-DVD doesn't work for You)
    Why formats of video and audio - some types don't work in iDVD OK and iDVD not able to burn is often one indication to this.
    I feed iDVD only
    • video - streamingDV from miniDV tapes
    • photos - .jpg
    • audio - .aiff 16-bit 48kHz or 44.1 from Audio CDs - NEVER directly from iTunes but via an Audio-CD first (burned in iTunes)
    Yours Bengt W

  • Message tone, music, lock/keyboard sounds not working...tried everything =[

    Hey all, iPhone 4s has gone mental!
    I have read through many posts on sound not working and i have tried everything, previous back ups, complete restore, clean out the headphone port, hard restore, also the volume buttons on the side when pressed will show ringer but no volume adjustment bar pops up =/ and the change volume with buttons is 'on'
    unless my headphones are plugged in nothing works, except my ringtone.
    any other suggestions to fix this would be massively appreciated =]
    Cheers all

    same with me
    what we should do??

  • Class.newInstance() does not work the same way in Java 5.0

    We upgraded our development environment to RAD 7, and I am experiencing an interesting problem with the code below which worked perfectly with the previous version.
    Class cloneClass = fromObject.getClass();
    Object toObject = null;
    toObject = cloneClass.newInstance();
    I am using an open source hashtable called OrderedHashtable that uses the key-value lookup capabilities of a hashtable and order preserving capablities of a vector. It stores the objects in a hashtable and stores the keys in a vector.
    fromObject in the code above is a key (String) that I retrieve from the OrderedHashtable and clone it using the code above. But with java 1.5 , the cloneClass.newInstance of this String object returns an empty string.
    I guess there is a work around where I can check if the cloneClass is an Instance of String and just do fromObject.toString(), but I was curious to know if there was a change in the way class.newInstance() works in Java 1.5

    >
    fromObject in the code above is a key (String) that I retrieve from the OrderedHashtable and clone it using the code above.No. How could that code possibly clone a String? Where are you telling it what the new String's contents should be?
    (HINT: Nowhere.)
    I guess there is a work around where I can check if the cloneClass is an Instance of String and just do fromObject.toString(), but I was curious to know if there was a change in the way class.newInstance() works in Java 1.5No, it has not changed.

  • Messages on my MacBook Pro is not working after factory reset, how can I enable it?

    I just recently (yesterday) got my MacBook Pro Mid-2012 restored after having a few issues with it. So it is totally "clean."
    Today I tried to open Messages which worked previously, but it wouldn't let me send a message to anyone (who I could message before the restore) and if I was able to send a message it would show an "Message Can't Be Sent" symbol next to it. I went to Messages > Preferences > Accounts > and saw that my account was enabled but my email used is in a grey font and it will not let me add my iPhone number.
    I have signed in and out, deactivated and reactivated the account and I still cannot message anybody.
    Please help guide me into fixing this, I have looked at other boards and it doesn't really help me with my predicament. How can I send a message?
    Also in the Messages menu, "My Status" is grey and I can't click anything and as well with the "Log In" option. If this can help developing an idea of what might be wrong.

    It won't send it to other emails, but it will for phone numbers. Not sure why, but if you can help with sending to other iMessage emails I would appriciate it :-)

Maybe you are looking for

  • DPM 2012 upgrade to 2012 SP1

    I'm trying to update my DPM 2012 server to DPM 2012 SP1 (with UR3).To install SP1, i need the DPM 2012 UR3 (KB2751230) installed, however each time i get "The DPM installation Failed" [Log Extract] MSI (s) (4C:70) [14:25:51:688]: Product: Microsoft S

  • Mail 5.0 How To List The Name Of Recipient In Sent Mail Folder Apple Mail instead of sender name

    I am using hotmail on Mail 5.0 using Lion operating system. Sent folder shows sender name only. How could i cange that to recpient name?

  • Adobe Standard 9 Freezes when working in PDF File.

    System: Dell T3500 Xeon Processor with XP Pro 64-bit.  6Gb Ram. MS Office 2007. Mozilla Firefox and Thunderbird. Quickbooks Pro 2009. Adobe Standard 9. Linksys Network Magic software. Hardwired to Linksys WRT54G2 wireless router. The only program tha

  • Multi-Lingual JSP Reports

    Hi, Can I use the customize xml functionality for providing multi-lingual capability for JSP reports? I have been able to replace report fields labels with foreign language/customized labels for PDF and 6i-style HTML reports. How should one go about

  • DB13 Jobs getting failed

    Hi Basis Gurus, In our Development BW 3.5 system the DB13 jobs (Check DB and updatestats) are getting failed since 15 days. In DB13 when i clicked on the Check DB and updatestats the system is prompting message as "No action log is found for this act