Change warning message to info message

Hi experts,
How to change message no. VL248 from warning type to info type? It seems this message no. is NOT in OVM1.
Pls advise. Thx.

Hi
When the warning message is thrown pls double click that message then you will get the message no like message class V1 no 023 like that
Note down that
In t code OVAH you can convert from warning to error of message classes V4 (all SD that is sales related messages)
In t code OVM1 you can convert from warning to error of message classes VL (all SD that is distribution related messages)
But your message class and message no should lie in the lists of messages given in these t codes
The messages in these t codes SAP has given for us for customizing that is mainly V4 and VL
Any thing other than these message classes like V1 etc has to done thro development only
This has to be done thro development only not possible thro customization
Go to SE91
1.Input the message class V1/VL
2..Input the message no say 061 in no and execute
3.select the message no and click on where used list (ctrlshiftF3)
4.select the box programming and deselect all others
5. Then a list of programs where this error message is used will appear
6.Double click description on the right side of your screen
7.Here you can see the codings written for this message 061 which can be changed to warning to error
Note
The best way to do it is with ABAPer only
Not recommended to change the standard settings
Regards
Raja

Similar Messages

  • User exit for change warning message to Error message in va01

    hi,
    I want to change  a warning message to as a Error Message in VA01 t-code,
    how can i proceed for this. where i need to change
    ( without changing standard code)
    thanks in advance.

    *& Report  ZUSEREXIT                                                   *
    report zuserexit no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.

  • Can we change warning message appearing in contract to error message

    Hai Guys,
    One of our clients' requirement is to make the warning message which appear as "Date 31.07.2011 is in the past
        Message no. V1437" while giving a past date in valid from field of contract creation (VA41). I would like to know if there is any standard setting for this.
    Thanks in advance
    Sidhu
    Edited by: Gino12 on Aug 2, 2011 4:51 PM
    Edited by: Sidhu12 on Aug 2, 2011 4:51 PM

    Hi,
    Since this message begins with 'V1..', there is no standard way to change it. The only way to do so is:
    Go to SE91
    u2022     input V1 in Message Class
    u2022     input 437 in Number and execute.
    u2022     select the message number and click on "Where-Used List"
    u2022     Only select 'programs'
    u2022     Open the program
    u2022     You can see the codings written for the error message as W437 which may be changed to E437.
    This is not recommended by SAP

  • Change of Warning Message to Error Message

    Hi
    I need to change warning message RP900 to an error message. could anyone tell me how to change the same.
    thanks
    SG

    Hi Sri,
    Yes it's a table which will be executed from the T-code: SM30.
    Regards
    Sheetal

  • Change warning to error message in Confirmation (CN25)

    Hi All,
    Please advice how to change warning message to error message . I have network activity and fill the work value = 30 HA. but it seems that users can still posting the confirmation more than the value inputted.
    100% of planned time already recorded - please check
    Message no. RU254
    Application Area : RU , Message 254 , program SAPLSHL2
    Cheers,
    Nies.

    Hi,
    Try out, in the below mentioned path.
    SPRO>Production Planning for Process Industries>Process Order> System Modifications>Define System Message attributes.
    Select System Messages--> Click on New Entries and mention your message number with application area.Maintain the message as error.
    Just check whether you are able to make it an error.
    But when I tried your scenario I got a different Message number BU011.

  • Making a warning message to Error in VA01 transaction

    Hi All,
    I have a requirement to change warning message to error while creating order with reference to a quotation using VA01 transaction .
    Message :  'Reference document was only valid until &'
    Message No: 009
    Message Class: V2.
    Right now standard SAP gives warning message and allows to create order eventhough the quotation is invalid but instead I want  the system to give hard error and stop creating the order.
    I have checked transaction OVAH and OVM1 but they are of no use.
    If anyone has any ideas please let me know.
    Thanks in advance.
    Sonali.

    Hi Sonali,
    1. In VOFM, Data Transfer -> Orders, copy routine 051 into new one (e.g. 901).
    2. In this newly created routine add following statements along with the existing statements form 051.
    IF cvbak-bnddt < sy-datum.
       MESSAGE E247 WITH '051'.
    ENDIF.
    3. In transaction VTAA, choose target is S/O and source it Quotation. In Data Transfer routine at header level put 901.
    This will stop creating S/O form Quotation which are expire.
    Regards,
    Mandar

  • Update (0 new / 0 changed) Warning received Message Missing Update Finished

    The FULL load is running for long time and after some time it fails with processing Overdue. ( It is loading directly into datatargets no PSA as this is Daily FULL load to cube, deleting the previous request) The job overview is successfully finished in source system.
    While load running in details tab under processing..
    1)Data Package 6 ( 7407 Records ) : Missing messages -->
    2)Update ( 0 new / 0 changed ) : Warning received
    3)Message Missing: Update Finished for Cube
    4)Processing end : Missing messages .
    When clicked on helpnode on each step:-
    1)Data Package
    A data packet is either sent with transfer method IDoc or PSA to BI. You have the option here of viewing the data received and of editing it where necessary, of posting the data packet in simulation, and of canceling in simulation, and, if it has not yet been posted successfully, of starting the update manually.
    2)Update
    See also Data packet processing steps
    By this the persistent saving of data is understood in its final target object
    3)Processing Message
    see also Data Packet Processing Steps
    Single message from the processing of a data packet. Some messages contain references to application logs or other requests. The monitor then allows corresponding jumps.
    4)Processing End
    see also Data packet processing steps
    If the processing of a data packet has been finished then any error messages for each process in the step up until this point are delivered to the monitor and to the called program (in the case of transferring by IDoc thus to the IDoc management). If no errors arose then a success message is logged per process.
    Messages from source system
    see also Processing Steps Request
    These messages are sent by IDoc from the source system. Both the extractor itself as well as the service API can send messages. When errors occur, several messages are usually sent together.
    From the source system, there are several types of messages that can be differentiated by the so-called Info-IDoc-Status. The IDoc with status 2 plays a particular role here; it describes the number of records that have been extracted in a source system and sent to BI. The number of the records received in BI is checked against this information.

    Hi
    Try to transport the request again and check...
    Perform the consistency test with 'RSRV'...
    Check notes in this link if they could help u....UNCAUGHT_EXCEPTION
    Regards
    Gaurav

  • How to change Error Message into warning message

    Dear Friends,
    I am getting an error
    The qty stored that was entered is adjusted
    Message no. XU 040
    at the time of GRN. I am maintaining batch specific Unit of Measure.
    Please tell me how to change this error message in to a warning message.
    Thanks
    Prashant Atri

    Hello Prashant,
    This is satndard SAP messagge which is maintained in customizing;
    SPRO>>Logistics - General>>Batch Management>>Define Attributes of System Messages
    Here you can convert this messages to warning message. I urge you to please check with abaper as this may be hardcoded message and it may have implications on valuation and posting.
    In the above IMG path you can do the changes
    Br,
    Tushar
    Edited by: Tushar Patankar on Jan 1, 2011 5:36 PM

  • Change error message to warning message

    Hi Experts,
    How can we change error message to warning message.
    Eg: T-code : SE91 shows the message. If i want to change message class PG, message no 26 error to warning what will be the process.
    Regards
    Ratan

    Hi Ratan,
    Message class PG is used in the below mentioned Standard SAP Methods and Includes, So it is not suggested to change the SAP standard code.
    Regards,
    Raja Sekhar

  • Change Error Message to Warning Message in GL account

    Hi Experts,
                      I want to Change Error Message to Warning Message In the GL Account - FH142.
    What is the Transcation Code for this.

    Hi,
    Go to transaction code OBMSG and give application area as FH and create new condition for the message 142.
    SAP will support such kind of changes.
    Regards,
    Sankar

  • Change of error message into warning message

    While doing FBZP i have found the following error.
    Clearing acct only allowed for an outgoing bill of exch.pmnt
    Message no. F3029
    I am not able to go further, the above message is coming.
    I want to make the error message into warning message.
    Please suggest, how to overcome

    Hello BSR,
    The Error message F3029 is raised when the clearing account (T042I-VKONT) is filled but the payment method in question is not defined as "Bill/exchange".
    I assume that the field is not changable at the moment. You may make necessary changes (delete the entry or delete the specified account) with the instructions below.
    1. Go to Tcd: FBZP -> Click [Pmt methods in country]
    2. Select the entry for the erroneous country(?)/payment method
    3. Change Payment method classification to 'Bill/ex' and save
    Now you should be able to change "Set Up Bank Determination for Payment
    Transactions" table.
    If you still want to use this payment method, please change back to the original classification after making necessary changes in T042I.
    I believe this information would help you in resolving the reported issue.
    Best Regards,
    Vanessa Barth.

  • Change of Message status from Error message to Warning message

    Hello,
    I would like to know the configuration details of changing the status of a message class from Error message to warning message.
    Thanks
    Manish

    Hi,
    You can do it via OBA5 transaction; enter the application code, and put an entry for the message setting the flag to warning. Keep in mind, that not for every message it could be done.
    Regards,
    Eli

  • Change error message to warning during pricing condition upper limit check.

    Hi All,
    I have a header condition ZFMN to which maximum amount that can be entered is set to $5000. When I enter the amount greater than this, it gives me error message.
    Could we change it to warning message?

    During Creation of PO when you click PO Check, What Include you are using.
    Cann't you use the BADI ME_PROCESS_PO_CUST and write the code whatever you want in PO_CHECK,
    There during Check you use any FM POP_TO_CONFIRM OR POP_TO_INFORM or show any information Message too.
    Try it once.
    Thanks
    Arbind

  • BOMBOS interface "warning" message after changes saved in the BOM.

    Hello,
    We our client is facing an issue, regarding BOM change / Modification in CS02.
    After any modifications saved in the BOM (transaction CS02), in SLG1 transaction system gives u201Cwarning messageu201D as given below.
    1.     Entry already exists in the work list
    For components, system is giving following message.
    2. Item material PPA_FORM_NU001 (Material number) is not assigned to a specification
    We found one note for this u2013 u201Csapnote_0000893616_BOMBOS_Specification not foundu201D, this note is already applied in the program by SAP at 2005.
    Because of this note, program creates the message in SLG1.
    We also found that, in the IMG customization >>>
    Environment Health & Safety > Product Safety > Bill Of Material Transfer > Specify Environment parameter & condition for the parameter u201CBOMBOS_WL_DIALOGu201D parameter value is u201CXu201D. If we remove this value, then system gives error message in the SLG1.
    We want to know,
    1.     Why we have such entries in SLG1?
    2.     What is the goal of this standard BOMBOS interface?
    3.     What is the impact of this warning message in the process of the transaction?
    4.     To solve this, is there any solution?
    Please confirm us.
    Thanks in advance.
    Edited by: Hemant Baviskar on Apr 27, 2009 11:25 AM
    Hello, Can any body help me on this?
    Thanks

    Hello,
    To rectify this issue, please refer the SAP Note - sapnote_0000683420 and make the changes accordingly.
    Thanks
    Best Regards

  • Issuing a warning message while changing the payment terms in FB02

    Hi Gurus,
    The requirement is as follows:
    For a particular payment terms meant for customer only when we change the payment terms in FB02, the system should give an warning message.
    For example - A customer has the payment terms 0001in his master data and thus in the accoutning document as well after releasing billing to accounting. An user wants to change the payment terms to 0070 being in FB02. As and when he puts the payment terms 0070, the system should give an warning meesage saying 'bla bla bla ........' or the same message at the time of saving the document.
    How to make this possible. Please help.
    Rgds,
    BABA

    Mr. Tiwari,
    This is the standard feature of SAP!!!  You get below messages
    1)
    Net due date on 05.10.2007 is in the past
    Message no. F5149
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    You do this in Customizing as follows: Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation.
    2)
    Net due date on 05.10.2007 is in the past
    Message no. F5149
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    You do this in Customizing as follows: Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation.
    Terms of payment changed; Check
    Message no. F5231
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    You do this in Customizing as follows: Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation.
    Regards
    Santosh Hegde

Maybe you are looking for