Messages not displaying in ECC6

hi all,
in 4.7 messages are displaying with out message class, but after upgradation to ecc6 those messages are not displaying instead "no vendor specified" is displaying...
if the message class is not assigned to the message than system is taking default message class "00" and displaying first message "001"  i.e "no vendor specified" ...
do v need to do any customization ? because max messages are with out message class, changing all messages in all programs are very dificult...
what can v do ?
kindly suggest..
thanks

>
sap abap wrote:
> Dear Christine,
>  
> thanks for your valuable solution... i have implemented impicit enhancement and cleared the default message id and message number... like this the actual message is displaying but along with 000 number in front of the message..
>
> hw can i restrict this dummy number....
>
>
> thanks
Now, there you have me.  I did the same thing in our test upgrade system and couldn't find any way of removing the dummy number, apart from replacing the default id and number with a custom message id and number pointing to a blank message (as I mentioned in my last post) ..... but then that had the effect of reducing the length of the message to the standard message length so removing the main reason why I didn't use a message class in the first place ie I wanted to display a longer message.
We have our proper upgrade system in place now, so I'll be taking another look at this.  I haven't checked OSS again yet but it is possible there that is now a SAP note to fix this.  If not, I'll have another look at implicit enhancements.
......   I've just searched these forums using "no vendor specified" and there are some useful posts proposing solutions which I'm going to have a look at.
Edited by: Christine Evans on Nov 3, 2008 11:57 AM

Similar Messages

  • HT1687 why is my voicemail messages not displaying ?

    why is my voicemail messages not displaying ?

    Voice mail, including visual voice mail, is a carrier feature. Contact your carrier and ask them.

  • Email messages not displaying since Marverick installation

    Since I installed Maverick this morning I am having countelss problems particularly with Apple Mail
    1) Smart mailboxes: it takes forever to display content
    2) Messages not displaying: some old email messages appear suddently as blank messages, not text, headers or anything. Even when trying to display message as "raw source" nothng happens. Absolutely BLANK
    3) Gmail: "All mail" folders from Gmail disapeared after upgrade
    I restarted the computer, I restarted Apple Mail several times and still have the same problems.
    Any suggestions? If not, how do I downgrade to the previous OS version?
    Thanks,
    SB

    Is this with a specific account or all three accounts?
    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Has any of this been tried?

  • Iphone 4s has anyone had a problen with text messages not displaying

    has anyway had a problem with text messages not displaying?

    helplessmom,
    We want to make sure all of your messages show up for you! What issues are you having with them? Do they come to the phone at all? Is it only messages from certain people having issues or all?
    AndrewT_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Error message not displayed in a pop up

    Hi ,
    I have a pop up screen in my web dynpro  with a input field and two buttons.
    i have a error message written in the WDDOBEFOREACTION method of my pop up window. But the message is not displayed on the window. But If the same is written in the event handler of the button click it is triggered.
    Please help me to display the message with the code in WDDOBEFOREACTION method  .
    The code is as below
    lo_nd_bp_data = wd_context->get_child_node( name = wd_this->wdctx_bp_data ).
    * get element via lead selection
      lo_el_bp_data = lo_nd_bp_data->get_element( ).
    * get single attribute
      lo_el_bp_data->get_attribute(
        EXPORTING
          name =  `BP_NUMBER`
        IMPORTING
          value = lv_bp_number ).
      CHECK lv_bp_number IS NOT INITIAL.
      IF zcl_rms_webdynpro_texts=>check_for_victim_bp( i_bp_number = lv_bp_number ) = abap_true.
    * get message manager
        DATA lo_api_controller     TYPE REF TO if_wd_controller.
        DATA lo_message_manager    TYPE REF TO if_wd_message_manager.
        DATA: lv_p1 LIKE syst-msgv1.
        lo_api_controller ?= wd_this->wd_get_api( ).
        CALL METHOD lo_api_controller->get_message_manager
          RECEIVING
            message_manager = lo_message_manager.
        lv_p1 = lv_bp_number.
    * report message
        CALL METHOD lo_message_manager->report_t100_message
          EXPORTING
            msgid                     = ZMSG_CLS
            msgno                     = '222'
            msgty                     = 'E'
            p1                        = lv_p1
            cancel_navigation         = abap_true
            enable_message_navigation = abap_true.
      ENDIF.
    Edited by: SAP LEARNER on Jan 5, 2012 1:37 PM

    have a error message written in the WDDOBEFOREACTION method of my pop up window. But the message is not displayed on the window. But If the same is written in the event handler of the button click it is triggered.
    strange..
    wddobeforeaction will trigger then event handler wil trigger then wddoafteraction will trigger.
    Did you put a break point in wddobeforeaction?
    Regards
    Srinivas

  • Error message not displayed - Downloading files in a table

    Hi!!!
    I'm following the guide to download files onDemand in a table, you can find that guide at:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0e10426-77ca-2910-7eb5-d7d8982cb83f
    If found a problem with the guide: What would happen if there's an error while downloading or somenthing else? There the author doesn't explain how to show an error in the view.
    What I'd like to do is to show a error message in the view where the table is.
    I tried to add some code, but it doesn't finally show the error message.
    I have a method that generates the file and returns the path of the file in the context, so I can read it. It return boolean (true if the file was generated, false on the contray). That method is called executeZgav_Sf_Formulario_Sv_Input(nroEmpleado, nroViaje, morei, datosEspejo); and is working fine.
    I also have a static class that reads a file and returns the byte[] called: ManejoArchivos.getByteArrayFromResourcePath(wdContext.currentOutput_FormularioSVElement().getP_Path(), true);
    But if for example, the parameters are incorrect and the file cannot be generated, the method is supposed to show an error but is not displayed on the screen.
    I have some code after that which validates if the file could be read or not and returns the bytes of a prewritten PDF file with an error message.
    Added code:
              byte[] r = null;
              boolean continuar =
                   this.executeZgav_Sf_Formulario_Sv_Input(nroEmpleado, nroViaje, morei, datosEspejo);
              if (continuar)
                   try {
                        r =
                             ManejoArchivos.getByteArrayFromResourcePath(
                                  wdContext.currentOutput_FormularioSVElement().getP_Path(),
                                  true);
                   } catch (FileNotFoundException e) {
                        wdComponentAPI.getMessageManager().reportMessage(
                             IMessageData.ARCHIVO_NO_ENCONTRADO,
                             null,
                             true);
                   } catch (IOException e) {
                        wdComponentAPI.getMessageManager().reportMessage(IMessageData.PROBLEMA_IO, null, true);

    Hi Alejandro,
    Try This.
    try
    catch (FileNotFoundException e) {
    wdComponentAPI.getMessageManager().reportException("Given FileNotFoundException : "+e.getMessage(),true);
    catch (IOException ex) {
    wdComponentAPI.getMessageManager().reportException("Given IOException : "+ex.getMessage(),true);
    Re: How to display which exception Is Raised?
    Regards,
    Mithu

  • Samsung Continuum Issues - Picture messages NOT displaying embedded images + Android 2.2?

    I recently purchased the samsung continuum a few months ago and have had a difficult time with the following two issues:
    The phone is NOT rooted.
    (1) Picture Messages are not displaying as embedded images in my message notifications. All i see is "Message Size and the word downloading.  The picture is only 10K, so it should download relatively fast.  The image does not appear in my gallery either.  Please help?  Where is the image and why can't i see it in my message.According to the notes in SCH-I400.DL17, this issue should have been resolved.     
    (2) How come the Contiuum has not received an update to Android 2.2?  The Fascinate and Continuum were both released at the same time and the Fascinate received the update.
    Here is my phone specs:
    Phone information:    
    Hardware version:  i400.0.6 
    Firmware version:  2.1-update1 
    Baseband version:  S:i400.0.6V.DL17 
    Kernel version 2.6.29 
    Build number:  SCH-I400.DL17    

    I don't understand how the Fascinate has Android 2.2, but is discontinued and the Continuum is still being sold new. What is up with that Verizon? I like the Continuum but would like to see it upgraded.  I still have over a year till I can get a new phone too. Very confusing.
    Sorry I can't help you with the picture messages as I don't have a solution.

  • Error Message not displaying full error msg in screen

    Hi Frds,
    Need to display the error message as my specified words.... . I have created a message class also... even though its not displaying mesage properly
    My Message i passed here . R&D Material already exists.........

    Hello Kabil,
    If you use '&' then your message will be truncate in Status bar message. Best option would be use 'and' instead of '&' the your problem will be resolved.
    Cheers,
    Vadamalai A

  • Messages not displayed in WebAccess

    Had a user report this morning that all of his messages in his Mailbox and Cabinet are not displaying. Sent Items and Trash are displaying fine. I did a Find and he does have messages in his Mailbox but they do not display. Any suggestions?

    isutton,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Messages not displaying in Outlook 2013

    I recently purchased a new computer and installed my Office 2013 software on it. Outlook does not display any message at all in the Inbox. All subfolders display correctly and they appear in the Inbox when I use OWA.  Creating a new Outlook profile
    did not help. A profile under another account which has delegate rights to mine displays their inbox but not mine. Also, new message will show up in the Unread mail section in my favorites which is the only way to see new messages. After reading them, the
    only way to see them again is through OWA. The Outlook profile is not cached.

    Hi,
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • HTML messages not displaying

    Not sure if this is the correct place to post this, but can't find a palce for apple mail.
    so here's my problem:
    Apple mail is not displaying some HTML email messages correctly.
    Most messages are fine, but some come through as text and html code.
    I have tried deleting the email account from apple mail and starting over with a new mailbox with no success.
    The same email will display fine on other computers, webmail and iOS devices, but incorrectly on my Macbook Pro.
    This was a problem in Snow Leopard, and has continued in Lion.
    Anyone have a solution?
    thanks

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • JSF Error Message not displaying/popping up in clickToEdit table

    I have an entity object validation rule which displays a message when the validation fails. I have set the Validation Failure Severity as an Informational Warning. I do want to user to continue if he is happy to do so. Everything works fine when testing in the model project.
    Now, in the ViewController project when I add the View Object to a page as a af:table component the Warning message only comes up if the tables Behavior/EditingMode property is equal to editAll AND if the inputText Behavior/AutoSubmit property is false. It actually seems like this is the only time the validation is performed…
    If I change the tables Behavior/EditingMode property to be clickToEdit the warning message does not come up anymore?
    If I change the inputText Behavior/AutoSubmit property equal to true, then the warning messagewill not come up in ether of the editAll or clickToEdit table. A orange border will be displayed in the editAll table, but no message?
    What is the difference, and how can I get the warning message to be displayed when the table is clickToEdit table?
    I am using JDeveloper 11.1.1.3 PS2
    Thanks

    Hi
    Just to mention. It seems this issue was a bug in 11.1.1.3, and it is fixed in 11.1.1.4...
    I still don't know how to get around the problem in 11.1.1.3, but atleast it is working in the latest version.

  • Imqadmin: No. of messages not displayed correctly in durable subs screen

    This question applies to the standalone platform edition of Message Queue v3.5 SP2 running on solaris.
    I have a number of durable subscribers connecting to a topic. Each & all subscriber have a selector set to filter the data.
    From imqadmin I can select the topic and bring up the broker destination properties. If I happen to have messages that have not been consumed (I halt my consumer code to test this), the count on the "basic" screen shows the current and correct number of messages waiting.
    If I drill down and go to the Durable Subscriptions screen, the number of messages for the durable subscriber with the relevant selector is always 0... and doesn't seem to reflect that there are messages that haven't been consumed. (Even though my code does see the data come in when I reconnect the consumer).
    Is this a bug in the imqadmin display or is there a reason why it can't display the message count correctly at the durable sub screen for consumers with a selector set?

    I don't think I'm seeing the same bug... in my app the producer and consumer are both active.
    Relevant information for this test:
    1) My producer and consumer are both active at the same time.
    2) My consumer is using a transacted session and it is also consuming messages synchronously
    3) I produce 250 messages and send them to my destination (a topic)
    4) For this test I force the consumer to fail on its handling of the data. Say it was trying to handle 50 messages - it rollsback the session and tries again. Therefore leaving 250 messages still in the topic.
    The result is that when I display the destination properties screen using imqadmin:
    1) The current number of messages count is displayed correctly as 250.
    2) However, the count for the durable subscriber with the correct selector is still showing 0.
    Once I allow the consumer to resume its work, all 250 messages are handled correctly by that consumer only and the count (in 1) is shown as 0.
    So the producer, consumer process works fine but the imqadmin gui seems a little confused.

  • Why error messages not displaying in installed AIR app?

    Hi!
    Help me please understand how AIR handle errors. When I run air application from the Flex Builder and have some code that
    generates an error, a window appears with the error description, such this:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at MyApp/genError()[C:\FlexProjects\MyApp\src\MyApp.mxml:10876]
        at MyApp/___MyApp_Button92_click()[C:\FlexProjects\MyApp\src\MyAppmxml:10880]
    So I can see where error is occur and handle it. But when I release build the same app, run it, click the button that generate error, nothing happens, no error messages etc. So users can not catch bug even if it happens and can't reported it ...

    Thanks Ted!
    I will make every effort to debug errors at development time, but can not be 100% sure that they can all be found immediately. Can I set in the compiler option some parameter to 'true' for displaying error messages or something like that?

  • Messages not displaying content of old conversations

    Earlier today the Messages app hung and I had to force quit it. Now, none of my old conversations are displaying. I have searched around and followed Lincs and Ralph Johns' suggestions in this thread, but nothing has fixed the problem.
    To recap my attempts:
    1. Trying in a new user account replicated the problem
    2. Trying in Safe Mode replicated the problem.
    3. All the database files under ~/Library/Messages show Read/Write permissions for my user account.
    4. I have also repaired permissions from Disk Utility.
    5. I even tried to follow the steps in this thread, but either I didn't understand what I was supposed to do or it it's pertinent to this issue since it didn't yield the same results in the steps 2, 6 and 9.
    I would really appreciate your help with this issue.

    Hi,
    Messages can store different "messages" dependent somewhat on the type there are in two places.
    Saved Chats  (See Preferences > General section an Save on Close)
    These are in ~/Library/Containers/com.apple.iChat/Data/Library/Messages/Archive.
    This will save All type of Messages whether they are iMessages or other types (AIM, Jabber, Yahoo or Bonjour).
    If they are iMessages they are stored Automatically in three .db items in ~/Library/Messages.
    Both methods will add older chats to the top of the Chat window when you scroll up/back in time of the chat.
    For me it has not done very well at retaining links to old chats prior to the Change to Yosemite (for me it start from this time).
    So...
    Moving to a different Account is not likely to help in this case as you have no History there either in the Chat.db items or the Archive folder.
    Same with Safe Mode.  However if you do it on your regular Mac User account and it does not help it points to some possibles.
    Re 3.
    I take it you stopped here as you expected them to be iMessages ?
    AS well as your account showing and having Read and  Write permissions did you use the little cogwheel icon and see if your Owned the file ?
    Also did you display the Path Bar (Finder > View Menu > Show Path Bar) and check the Messages Folder's ownership and Read and Write permission ?
    Right Click the icon for the Folder and then select Get Info.
    Re 4.
    Repairing permissions does not touch anything in your Home Folder (Little House icon).
    This is why you have to check manually.
    Re 5
    Running  /Applications/Messages.app/Contents/MacOS/Messages -errorLogLevel 7 in Terminal Starts up the App and creates a log whilst doing so.
    It pauses once all of the Accounts are logged in at a point with some ComNAT info (open ports and the like).
    It does repeat itself regarding BDW (Bandwidth) and the Mic and Camera that are in use and whether it can Audio Chat 1-9 people of Video 1-3 and so on.  At the very top it lists the picture size it will be using in Video chats.
    Michael Singletary found if you ran the log method of opening the app you could see if the record count was wrong.
    You may have an incomplete saved item in the /Library/Containers/com.apple.iChat/Data/Library/Messages/Archive depending if the app was trying to save an Chat as it hung.
    If you did not get:-
    Confirm that an error similar to this appears: 2013-10-27 15:59:16.465 Messages[666:507] Chat history path /Users/username/Library/Containers/com.apple.iChat/Data/Library/Messages/Archiv e Status: 3 totalExpected: 162740 countProcessed: 29344, forcing an import.
    Or something very similar then you don't have that issue.
    If you have not had that many new iMessages or other type of Messages since the issue I would use Time Machine to replace the Chat.db items to something only slightly earlier and the same for the Archive folder.
    Navigate to one of the folders to start from (like the Archive folder for instance)
    Use the Time Machine icon in the DOCK.
    It will change to the galaxy background the current window for the folder with what looks like stacked windows behind it.
    Move back in time  until it is indicated that the item is different.
    Highlight the file/folder and then use the Restore Button.
    Repeat for the other items in /Library/Messages.
    9:51 pm      Wednesday; March 11, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

Maybe you are looking for

  • Remote restart for a Mac using FileVault 2 encryption?

    Does anyone know of a way to perform a remote restart for a Mac using FileVault 2 encryption?  I have some remote Macs for which I'd like to enable full disk encryption with FileVault, but would prefer not to make a physical trip to those machines wh

  • Acrobat standard 8 and Adobe Reader X

    Good afternoon all, I am having an issue with users who are using Adobe Reader X who want to digitally sign PDF's. From researching this I found that I have enable the Reader usage rights on the document which can be done from Acrobat. All the forums

  • Configuration related PP order closing.

    Hello all SAP Controlling Expert, I would like to know, is there some configuration of CO module that related to PP order completion status process? Such as  if PP order status is ...... CO Process can be continued or can not continued. Thanks in adv

  • Design issue : how to replace ftp

    Hi, I was given a task to replace an existing application which uses FTPClient to send a file from one server to another one. The main reason for replacemtn is because we want to close the port that is currently use by that ftp. In the future only po

  • Regarding type of file

    hi,     which function module is used to know type of file(like DAT,TXT,ASCII...). Thanks & Regards, Rajani.