Changing message text for univariate discrepancies

Is it possible to edit the message text for univariate discrepancies? As per my knowledge, they are generated at the system level and programmers cannot change them. I was wondering if there is a workaround.
Thanks

Hi,
You could try going to Installation Codelists>> "Discrepancy Messages" and change the respective message for each of the univariate discrepancies(Data Type, DVG, Length ...etc).
Note: Installation codelists control Oracle Clinical behavior installation-wide; that is, across an installation of multiple Oracle Clinical databases, so tread wisely after due consultation with your department.
Regards,
Naveen

Similar Messages

  • Changing message text for short dumps

    Hi, we have users running open transactions and finally core dumps with message:
    TSV_TNEW_PAGE_ALLOC_FAILED
    Short text                                                              
        No more storage space available for extending an internal table.    
    What happened?                                                          
        You attempted to extend an internal table, but the required space was
        not available.                                                      
    Is there a way to customize the message a bit to give more helpful information?
    Thanks,
    Jonathan.

    Jonathan,
    I am not an expert in BASIS, so I cannot say if it is possible to change the texts for these messages.  I am a bit surprised that you think  " No more storage space available for extending an internal table" is not adequate.  In addition, I am a more than a bit surprised that you are implicitly expecting to get dumps, so much so that you want to make the messages more user-friendly.
    Runtime errors are not a tool to remind users that they have performed an impermissable activity.  When a dump occurs, you pray that SAP will properly roll back all data to a consistant, pre-error state.  I assure you, that this will not always happen in a complex environment.  A runtime error is normally considered a very serious event.  In most companies, it is the goal to never have a runtime error, and someone is usually charged with running these down and eliminating them.  And that 'someone' is not a user.
    Anyhow, you might want to try one of the many ABAP forums, one of the experts there may be able to assist you in changing these texts.
    Sorry I couldn't be of more assistance,
    DB49

  • Change Message Control for Customer Master data

    Hi Friends,
    I have to choose/populate a message when the user is about to create an already existing customer.
    In SPRO --> Financial Accounting --> Accounts Receivable and Accounts Payable --> Customer Accounts --> Master Data --> Preparations for creating customer master data --> "change message control for customer master data" ...
    OK...
    When u click this it goes into Change View "message control by User" Overview screen wherein u can insert new messages and texts and the type of message ....
    Now .....
    I want to display the 145th message (F4 help of the Message column) ..... it picks up the text "Customer found with same address;check"..... with Online mesasage type 'I' and batch type 'I' and with standard type '-' ..
    I want to have the same message with message types 'E','E', and 'I' respectively.......
    How is this possible (or) what should i do to meet my requirement :-|
    Expecting ur answers
    Thanks in advance ........
    Cheers,
    R.Kripa.

    Hey yes it is not possible (as of now
    I ve met the requirement by just using message statement in the program itself ............
    My requirement is met but still if anyone knows about this do answer / reply
    Thanks
    Cheers,
    R.Kripa.

  • IW32: Error getting message (Text for order header not maintain in lang.EN

    Hello All,
    We just starting getting this message in IW32 and IW33 stating (Text for order header not maintained in language EN) then all the pre-existing description test disappeared.
    We have not done any configuration change in this particular system.
    Can anyone help to resolve this.
    Thanks

    Hi,
    As with most SAP messages it is always a good idea to trust what it is saying.
    The system is telling you that KG has not been created in the English language.
    Go to transaction CUNI to check the settings.
    Select the Unit of measure for "MASS" (from the drop down list) and check the entries for UOMs.
    KG should be there and should have an English description (the message said it was not there for EN)
    If it is there and set up correctly then there might have been something else in the UOM field? You didn't enter " KG" did you (a blank character then  KG?)
    Steve B

  • Change the Text for a Perspective in Balance Scorecard

    I am trying to change "Short Text" and "Long Text" for an existing perspective in our Strategy Management system [SEM-BW 6.0 and BI 7.0].  I get the following error "Invalid call sequence for interfaces when recording changes".  I have looked up OSS and found 533611 to be relevant, but it is for SEM-BW 3.1B and we are on 6.0.  Does anyone else have this problem?
    Detailed "Long Text" for the error:
    Message no. TK425
    Diagnosis
    The function you selected uses interfaces to record changes made to your objects in requests and tasks.
    Before you save the changes, a check needs to be carried out to establish whether the objects may be changed. This check must be performed before you begin to make changes.
    System Response
    The function terminates.
    Procedure
    The function you have used must correct the two Transport Organizer interfaces required. Contact your system administrator.

    Hello Arun,
    U could do the translation in Tcode Se63.
    U follow the procedure
    Translation >Shorttext>Screen Painter--> Screen Painter Text.
    There u will see the all the text use for that transaction.
    You can make the traslation there.
    If useful reward.
    Vasanth

  • How to change Alt text for the Popup Key LOV Image in Apex  3.2.1.00.10

    we are using Application Express version is 3.2.1.00.10
    There is an icon to click on to popup the lov search box, the alt text for that image is currently "popup Lov"
    would it be possible to change the text to something more meaningfull e.g. "Lookup Person name" or "search Directory for Person names" .
    I have tried by updaing them
    from
    Shared Components>Templates> Popup List of Values Template > Popup Icon Attr --> width="13" height="13" alt="Popup Lov"
    (under Popup List of Values)
    to
    alt="#CURRENT_ITEM_NAME#"
    it didn't work.
    your respone will help getting accessability sign off

    Venu,
    Try adding title = "Lookup Person name" to the Image Attributes of your icon or button.
    Jeff

  • How to change message text encoding in multiple e-mail messages?

    Hello!
    I'm newcomer in AppleScript. I have imported a lot of email messages from mbox.
    The problem is that some of messages are displayed in correct russian encoding (KOI8-R) but
    other messages displayed with incorrect encoding. So i need manually set their encoding
    via mail menu to Cyrillic (Windows) to be able to read them. I got about 1000 of those messages.
    Is there any possibility to mark those messages in mail and then run AppleScript to change
    their encoding automatically?
    something like that (that script is not working one):
    tell application "Mail"
    set selectedMessages to selection
    if (count of selectedMessages) is equal to 0 then
    display alert "No Messages Selected" message "Select the message you want to get the raw source of before running this script."
    else
    set message text encoding to "Cyrillic (Windows)"
    end if
    end tell
    Thanks!

    I was able to get it to work on all selected emails using this script:
    (Note I changed the encoding to "Simplified Chinese (EUC)")
    using terms from application "Mail"
    tell application "Mail"
    set theMessages to selection
    tell message viewer 1
    repeat with themessage in theMessages
    set selected messages to {themessage}
    activate application "Mail"
    tell application "System Events" to ¬
    tell menu item "Simplified Chinese (EUC)" of menu 1 of ¬
    menu item "Text Encoding" of menu 1 of ¬
    menu bar item "Message" of menu bar 1 of ¬
    application process "Mail" to if (exists) then click
    end repeat
    end tell
    end tell
    end using terms from

  • How to change the text for the tabs of a tabstrip control dynamically

    Hi Guys,
        I am having two screens in a transaction.
    1. 1st screen has material number as an input and submit push button
    2. 2nd screen has two tabs in a tabstrip control.
        I want to display material description and plant number as heading for the two tabs based on the material number entered by the user in the 1st screen. Means i want to change the text dynamically. Is there any possible way? If it is there please help me. Very urgent...
    Thanks in advance
    James.

    Hi,
    If you set the "Output field" attribute for a pushbutton/tab, you can also set its text dynamically in the ABAP program. To do this, you must create a field in the ABAP program with the same name as the pushbutton/tab. You must then assign the required text to the field before the screen is displayed.
    For example define a global field in your program called MATNUM(20) and use this as the name for the material number tab on the tabstrip. Then you can assign a text MATNUM = 'Material Number' and this will appear as the tab title. Don;t forget to set the "Output field" attribute on the tab.
    Hope it helps

  • Display a warning message (text) for document up/download in cFolders

    Hello,
    We are working in the development system of cProjects Suite 3.1 on the cFolders application. Lets say there is a collaboration which contains a folder which in turn contains a document. On clicking the document name the document details are displayed. Under the window "Current
    Version" the following text message is displayed:
    "To display the file of the current version, click the hyperlink. To edit the file of the current version, choose "Checkout" if you want to change it online, or download if you want to change it locally"
    We want to change the message text as follows:
    "To display the file of the current version, click the hyperlink. To edit the file of the current version, choose Checkout. Using the "Upload" button will result in overwriting the latest version"
    Kindly suggest the means to achieve this.
    Best Regards
    Deepak Umrankar

    if the doc is checked out
    Then
       it will use this OTR text 
       CFX_UI/INFO_DOC_DE_CONTINUE_EDIT_APP
    ELSE
       CFX_UI/INFO_DOC_DE_EDIT_APP

  • Change message text generated from Sourcing Cockpit

    Hi,
    This is the scenario where the Buyer completes the Shopping Cart (complete requirement) from the Sourcing Cockpit. After this, the Shopping Cart is removed from the Sourcing Cockpit and also the system sends an email notification to the requestor of the Shopping Cart stating that the purchase department cannot procure the item.
    We changed the text (Template with headers) to meet our business requirement using the transaction SE61 and document BP_SOCO_APP_ITEM_COMPL_MAIL while keeping the variables &SC_ITEM& and &SC& in the text.
    Now we notice that the changed text is appearing in the notification ,but the variables are not appearing now ( i.e the Shopping Cart number and the Shopping Cart line item are missing in the new message). These variables were appearing in the standard .
    Do we have to anything else.
    Thanks
    Sukumar

    Hello Ahmad
    I think you need to modify the standard FM CRM_INCOMPLETENESS_CHECK to archive the requirement.
    In this FM line 301, the field name which is used in the message is filled.
    I hope this could be helpful.
    Best regards,
    Maggie

  • How to show the message text for constraint violations

    Hi all,
    In a batch procedure a primary key is violated (ORA-00001). For the primary key, a message is recorded in the TAPI and the message table.
    How to show the enduser a proper message text instead of the ORA-00001.
    We are using Designer 6 with Headstart 2.1.2.
    Thanks in advance,
    Joep

    Joep,
    If you try to insert the record by calling the ins procedure of the Table API, you will see that it will result in an ORA-20998 message, which means that the error message details reside in the CG$ERRORS plsql message table. These messages can be extracted e.g. with the messages.sql script, shipped with headstart.
    If you do not want to rewrite your direct DML (insert into [table name] ...) in the complexer calls to the TAPI services, you might want to user VAPI's for it. In fact, this is one of the major advantages of using VAPI's.
    The CDM guidelines volume, chapter 6 states that:
    <I>The front end no longer needs to trap declarative constraint
    errors (Primary Key, Unique Key, Not Null and Check
    Constraint violations) and replace them with a user-friendly
    error. The View API issues DML statements through the TAPI
    and the TAPI traps all declarative constraint errors, and puts
    user-friendly message on the stack, in the preferred language of
    the user! Fore more information, see the section, Completeness
    of Rule Violations Reported in Front End, in this chapter.</I>
    So the only thing you need to do is generate VAPI's, and trap the ORA-20998 message (qms$errors.qms$exception) in an exception handler, where you retrieve the user friendly messages from the message stack!!
    Regards, Marc

  • Change iCal's default email message text for invitations?

    Does anyone know how to modify the default text strings in the e-mail message that iCal generates for invitations? The default text is pretty useless, especially for Outlook users who receive an .ics attachment rather than a "link below."
    If I knew where the text strings were stored, I could go in to change them.
    Thanks

    Hi russcus,
    See my post here:
    http://discussions.apple.com/message.jspa?messageID=7298048#7298048
    You may also be interested in my donationware application iCal Reply Checker, that allows you to edit the reply email on an email by email basis.
    Best wishes
    John Maisey
    As I sell software on my site and ask for donations, the Apple Discussions Use Agreement requres that I state that I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • How can I change the text for 'Return' and 'Back' links

    Hi everybody,
    How can I change text of standard links 'Return' and 'Back' that appear at the report bottom when user drills down?
    I need to change it in Hebrew interface.
    Thanks in advance,
    Alex

    You have to Customize the viewmessages.xml file. The original file path for English Language is
    oraclebi\web\msgdb\l_en\messages\viewmessages.xml.
    and The entries for back and return are
    <WebMessage name="kmsgEVCLinkBack"><HTML>Back</HTML></WebMessage>
    <WebMessage name="kmsgEVCLinkReturn"><HTML>Return</HTML></WebMessage>
    For more details, about language cusotmization read oracle documentation, page no 197.
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/b31766.pdf
    - Madan

  • How to change heading text  for parameter field of type date

    Hi,
        After creating a parameter field with the type " Date Time" when I open the report for entering the parameter then it displays  the given parameter with the following text:
    " Please enter Date in format "yyyy-mm-dd". "
    I want to change it to some other text like as:
    " You have to enter the date and time in format yyyy-mm-dd . "
    Is there any way by which I can change this given header to some other text.
    Let me know if anyone needs some more information in this regard so as to solve my given query soon.

    Hi Garrett,
                  Well first of all I can change only the prompt text that is user defined. I cannot change any parameter as of now whose type is let suppose Date. Since in this case the Business Object itself shows the text which is something like this " Please enter Date in format "yyyy-mm-dd". " .
       Here I want to change this given text to some other format like " You have to enter the date in the format yyyy-mm-dd" or in any other manner.
    Also the current Crystal Report version which I am using is 11.0.0.1282.

  • Reporting one message-text for several errors

    hy,
    I have a table binded to context. The table hase several rows and columns. The user can edit the values in table-cells. Now I want to make a plausibility-check for all values in the table. And if there are for example 5 errors I want to mark the error-cells red. Therefore I wrote
    msgMgr.reportContextAttributeMessage(
            element,
         attrinfo,
         IMessageZABComp.TEST,
         new Object[] ,
         false
    for every error-field. My problem is that there are 5 error-messages shown in the message-area, but I want to show only one error-message "please correct your input !". How can I do this ? How can I put out only one message in the message-area, though there are several errors ?
    Florian

    hi florian ,
    can you elaborate on the situation. if you define any message inside the message pool and display it using
    Msgmngr.reportcontextattributeMessage(elemnt,attributeinfo,IMessage<compname>.test,new Object [] ,false) , it'll only display the error message with id 'test' only once. just check if you are writing this code inside a loop.
    regards,
    rahul.

Maybe you are looking for

  • Only one account per mac

    Originally, i'd used my intel macmini with my music match login and everything worked fine. Then i created a new user for my wife and her different music match login on the macmini. Finally, I have tried to setup my 2011, 15" MacPro laptop to be my m

  • Error saving column settings with ORA-01403: no data found Error

    Hi I have a region with multi row report updatable. When I am trying to change the query I am getting below error. Anybody let me know what will be the problem. ORA-01403: no data found Error saving column settings Regards Kiran

  • Problem creating vector mask with Pen Tool

    Using Photoshop CS5, Mac OS 10.6.8 I'm trying to create a simple vector mask using the pen tool to create a curved line at the top and bottom of a photo. Here's what I'm doing: 1. Create a new layer and select it. 2. Select Pen tool. 3. Choose "work

  • Why do I have to add the Schema name to a table created under SYSTEM.

    The TABLE was created under the SYSTEM account & PSW and accessed under SYSTEM & PSW.

  • 802.1x not working

    I am trying to setup 802.1x on a 2960 running 12.2.53 SE2. Here is the configuration of the interface: interface GigabitEthernet1/0/9 switchport access vlan 205 switchport mode access switchport nonegotiate authentication event fail action authorize