Modifying a standard message error.

Hi,
I would like modifying the message error "Transaction ME2O is locked (in transaction SM01)"
as the following:
"Transaction ME2O is locked"
Is possible doing this?
Best regards

Hi,
Yes it's possible but not recommended.
Transaction SE91
Message class: S#
Message number: 348
Regards,
Gary

Similar Messages

  • Modify a standard message

    HI,
    In SRM, BBP_PD "047" call message BP 603/604.
    I would like to change this standard message text, in this case what to you preconise me?
    Modify directly BP 603/604?
    Customizing action? which one? does one exist?
    Thank you for your help.
    Mathieu

    Hi,
    You can change this message into a warning message in SPRO > Cross-Application Basic Settings > Message Control > Influence Message Control
    You may need to add the same message into table BBPC_PDMSG if it's not there already.
    Related threads:
    Re: How to disable message BBP_PU 361 ?
    Re: Define type custom message.

  • I am using Acrobat XI Pro and tried to install the current update. I got this error message: "Error 1328.Error applying patch to file C:\Config.Msi\pT64b3.tmp It has probably been updated by other means1 and can no longer be modified by this patch. For mo

    I am using Acrobat XI Pro and tried to install the current update. I got this error message: "Error 1328.Error applying patch to file C:\Config.Msi\pT64b3.tmp It has probably been updated by other means1 and can no longer be modified by this patch. For more information contact your patch vendor." tried uninstalling and reinstalling and still get the error. Searched for C:\Config.Msi\pT64b3.tmp and cannot find the path or the file

    For AA XI, you only need the 11.0.09 patch. Download from http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows (Use "MAC" if a MAC is used).

  • Error message: Errors occurred during installation before ITunes could be configured. Your systerm has not been modified. To complete the installation, run the installer again.

    Trying to install iTunes and keep getting the following error message: "Errors occurred during installatino before iTunes could be configured. Your system has not been modified. To complete the installation, runthe installer again.
    This message appears everytime I try to install iTunes. Help!

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • How to search for a standard sap error message

    Hi all,
        I want to know where exactly we need to search for a standard sap error message ( For example like STACK_NO_ROLL_MEMORY).
        I am searching the same in sap market place/oss note search...but don't see what I am looking for ...
       Could you please help on the same ?
    Thanks,

    Hi Shravan,
    Normally system throws up an error when it reaches the threshold point. Normally the threshold / critical points are arrived at by considering the SAP recommended values and what is the sytem configuration you have got.
    In true project scenario because of budget constraints we might not be able to have ideal system configuration which SAP recommends , in that case we have to tune to the system perform at an optimum level considering various aspects
    In yr case memory parameters should have been set at level , but for yr job it needed more memory which it could not allocate and throwed an error.
    hope i have answered yr question .
    Regards
    Balaji

  • Is it Advicable to modify standard message class?

    Hi Experts,
    I need a small confirmation.Is modifying standard message class is having any restrictions?
    Currently in SE91 message class number 002 i need to modify text .Is it ok to directly do and transport or need to take any extra precautions?
    Regards
    sas

    Hi Thomas,
    Thanks for the suggestion.
    Actually message class name: HRTIMOOREC.
    In that one message always shows what ever leave action is it shows as  'Number of days leave 5. Apply sick leave for HR'.
    Requirement is just to remove 'Apply Sick Leave for HR'.
    so that it wont confuse the clients who are applying for some other leaves..so request is to just modify
    that number 001.
    So in general need to modify SAP programs we required Access keys here its not required i guess...
    Now Thomas is there any things need to taken care or general Message class how we do the same and Transfer? Thanks
    Regards
    sas

  • How to modify display label in error message raised from capi?

    How to modify display label in error message raised from capi?
    qms_transaction_mgt.process_rule_violation
    ( p_br_name => 'BR_PBR_DEL006'
    , p_msg_code => 'PMS-00417'
    , p_display_label => display_label
    , p_table_name => 'pan_project_members'
    , p_table_rowid => get_rowid
    regards,
    marcel

    When you mean which columns are displayed, this is actually quite easy.
    Display_label will display by default the unique key columns, or if no unique key exists, the primary key. To overrule this behaviour, you have to specify the columns you want to display by assigning them a 'descriptor sequence'.
    For example, to display the ename on EMP warnings, assign descriptor sequence 10 to the EMP.ENAME column and regenerate the CAPI package.
    Jeroen van Veldhuizen

  • Translation for Standard BAPI error messages

    Hi All,
    We are calling a standard BAPI in our report program. This BAPI has return table of type BAPIRET2.
    When i logon in Spanish Language, still the BAPI returns error messages in English.
    Any pointers to get the messages from Standard BAPI's in Logon language.
    Thanks,
    Best regards,
    Prashant

    Hi,
    Since these messages are Standard SAP  Messages, i assume that SAP would maintain the translations for them.
    If i go to message class & check translations for these standard messages, i dont see the translations.
    Are we expected to manually maintain translations for Standard SAP Messages ?
    I feel SAP would be providing translations for Standard SAP message.
    Best regards,
    Prashant

  • Can we modify the standard AOL Message with custom Message in Seeded Page?

    Hi,
    I have a requirement to change AOL Message with custom Message in Seeded Page.
    In a seeded OAF page when a user clicks on a submit button a standard AOL Processing Message is populated.
    I Need to change the Standard Message and call Custom Message.
    Did controller extension and found that both the messages are populating.
    called the code after super and tried to call before super also.
    Did any one face this issue and resolved it. Kindly provide the solution.
    Regards
    Chaitanya

    Hi Gyan,
    I have tried by extending a sample custom controller.
    Below is the code of TestCO calling create message
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
          OAApplicationModule am = pageContext.getApplicationModule(webBean);
          if (pageContext.getParameter("Test") != null)
              OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_CREATE_CONFIRM",    null,
              OAException.CONFIRMATION, null);
              pageContext.putDialogMessage(confirmMessage);
      }Then I extending the TestCO to XXTestCO and it is calling Update Message
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
          super.processFormRequest(pageContext, webBean);
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
        }got below Confirmation
    Confirmation
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    Employee (&EMP_NAME) has been updated.
    Tried below approach also calling the message before super class
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
          super.processFormRequest(pageContext, webBean);
        }got below Confirmation
    Confirmation
    Employee (&EMP_NAME) has been updated.
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    My requirement is to print only the message which I have kept in Extended controller i.e. Update message
    Regards,
    chaitanya

  • Standard portlet error message

    Hi all!
    I have a portal which uses WSRP portlets. Sometimes an errors related to portlet execution occures. This causes the message "Error: Could not get markup. The cookie or session is invalid or there is a runtime exception." to appear.
    I want to replace the message above with something more user-friendly.
    Is there a way to do that in 10.1.4? Or it should be done in provider or portlet configuration?
    Thanks

    Hi,
    There must be one jsp (or you can also use writer object to print content from your doView method ) which is going to be render in your view mode of portlet.
    jsp file name could be anything.
    Just have a look into JSR 168 Portlet Specification.
    Thanks
    <Neeraj Sidhaye/>
    http://ExtremePortal.blog.co.uk

  • Apple ID issue - Cannot modify a standard question

    I cannot order books/prints from iPhoto as I have been unable to set up my Apple ID account in iPhoto. I have tracked the problem down to the fact that I am unable to update my profile password question/answer. I have tried to do this via myinfo.apple.com and the apple store account settings, and I get the following error:
    Cannot modify a standard question
    Earlier this year, this message was accompanied by the error number -20148.
    Has anyone else had this problem?
    I have spent over 10 hours on the phone with Apple Care and they have been unable (unwilling) to help fix this problem (which seems to be that the Apple ID database is corrupt).
    Also, has anyone else experienced being brushed off by Apple Care with a problem they were unable to solve?

    If all else fails can you just create a new account? You may be thwarted by your email address however as that's usually part of the account info that Apple looks at for duplication. it's worth a try however. If you have a .Mac account you could create an alias email name and use it.
    OT

  • From where do we see OSS notes and message errors...

    hi,
    From where do we see OSS notes and message errors details if the error number is provided??
    Thanks & Regards

    *OSS* are online sap support notes. These notes are available online for solving critical problems in sap system.We may use the already existing notes or may add our own quaries.
    In order to apply any OSS note, you have to be authorized by your company and be assigned an OSS ID and password.
    For any SAP standard program modification, you are required to login to OSS and request for a repair program Access key.
    Access the SAP Support Portal:
    *http://service.sap.com/*
    - Keys and Requests
    -- Request license key
    --- Follow the Steps 1 to 5 of the License keys for SAP Business Suite
    Follow this step to obtain the Program Access key:
    Menu Path: System -> Services -> SAP Service (Transaction code OSS1)
    Login in with your OSS ID and Password
    Click the Registration button
    Click Register Object
    Double click R/3 Value Contract
    Fill in the Object Registration for Installation:
    For e.g.
    PGMID/Object/Name: R3TR FUGR MIGO
    SAP release: 46C
    Finished, click the Register button
    Select the Key number and use the Copy and Paste short key to copy the Access key
    You are now able to modify the SAP standard program.
    Finished the modification, do remember to transport it to the production system after all the necessary testing.
    http://www.sap-img.com/basis/what-are-sap-notes.htm
    http://www.sap-img.com/basis/oss-notes.htm
    http://www.sap-img.com/basis/manually-applying-the-oss-note.htm
    Regards,
    Ashok

  • Message "Error in connection:No result set, result attempts = 100" on VC

    Hi,
    I am using a JDBC datasource to retrieve, update, insert and delete information from a SQL Server database using executing store procedures from VC.
    The selection of the data is perfect but for the deletion, insert or update of any data using store procedures I always get the following message:
    "Error in connection:No result set, result attempts = 100"
    At the end the information is modified in the database but I get error.
    Here is an example of one of my store procedure:
    CREATE PROCEDURE [dbo].[DelData]
         @id uniqueidentifier
         -- Add the parameters for the stored procedure here
    AS
    BEGIN
         -- SET NOCOUNT ON added to prevent extra result sets from
         -- interfering with SELECT statements.
         SET NOCOUNT ON;
        -- Insert statements for procedure here
         delete from data     
           WHERE Rowid=@id;
    END
    Let me know if somebody knows the reason of this and if there is something that I am doing wrong.
    Thanks,
    Zareh

    Hi,
    when you SELECT data, you get a result. So your connection gets a result set. When you DELETE, INSERT,... you have no result, because you didn't select data. So your connection can't get any result sets.
    best regards,
    Christian

  • Error messag -'Error while determining ref.mov.type for WM via Table 156S:'

    Hi Guys,
    I am currently facing some issues with respect to the deliver creation.
    The scenario is somthing like this.
    I have assigned a FOC Item category to an Consignment Issue order type.
    The system is able to determine the Item category successfully.
    However when the delivery is created it throws an error message
    'Error while determining ref.mov.type for WM via Table 156S: 903/X/X/W/L/X/'
    Not sure why this occurs.
    All the settings seem to be set.
    If any one of you can help me out it would be great.
    Thanks.
    Regards,
    Pandi

    Dear Pandiraj
    The standard process is that consignment issue order should be created with reference to Proforma invoice.  Having said that I dont understand why you have assigned a FOC item category to issue order.  Not sure, whether this will work.  Also I feel that you should explain in detail the process for which you are configuring this.
    thanks
    G. Lakshmipathi

  • How to modify a standard OAF page in version R12

    Dear all,
    I have a requirement to modify a standard OAF page(can't implement by personalization),and my EBS version is R12,but i have not the source java code of the page,I try to decomplie the class file by a sofeware named 'YingSoft' , as the r12's jdk is 1.6,will have some errors.
    So,anybody know how to accomplish or have other decompile software?
    thanks,
    Ming Tao.

    Hi Ming,
    I use Java Decompiler (JD) in it works fine for me. Also, I guess you know it already, but just in case, there is a detailed explanation on how to extend standard OAF pages in the OA Framework Developer's guide and how to deploy the changes.
    Regards.

Maybe you are looking for

  • Keeping songs on shuffle no longer in i-tunes library?

    Hi - just bought ipod shuffle and have put cd's into i-tunes library then onto i-pod. Then I have been deleting cd's from i-tunes library as I don't need them there. Then have put another cd into i-tunes but when I transfer this one, others that I ha

  • Connecting two macs with eathernet

    I plugged in My eathernet cable with the eathernet ports of both computers and then rebooted both computers. and nothing happened. Does anyone know what the procedure is to get these computers talking to each other? Thanks Morrie

  • Need Help Centering Page Content

    Hi, I have added a white box behind my main page content but the content is not centered within the box. It seems to be on the left. There are a number of different style sheets and I need to find out which style is affecting how the content is posit

  • Planning book: Data views

    Hello: I am defining a planning book and I want to have the same data views (total demands and total receipts) of standard pl.book 9ASNP94, data view SNP94(1), can anyone help me design this. My planning area is a copy of 9ASNP02. Thanks in advance.

  • Which jinitiator for w98 and win xp ?

    hi all , i am deplying my forms6i on the web using oracle9ias . the application works fine with w98 client where in it does not seem to be working with winxp client. i think there is problem with jinitiator. can somebody tell me which version of orac