Replacing message text

Hi,
We have configured Appraisals. we have a requirement where the seeded messages that appear during the transactions i.e confirmation message or notification message or error messages to be replaced with a more user friendly text. can someone help me how to do this without any impact of upgrades.
Thanks for your time
Edited by: user12123028 on 29-Jul-2011 00:55

Hi, thanks for the reply. but these are not instructions on the pages. these messages are displayed when we commit the transaction. For example when you submit the changes to an appraisal after sharing with employee it says the appraisal has been shared with Appraisee. my question is about such messages.
Thanks

Similar Messages

  • After soak test update, I get error messages repeatedly. The majority are "unfortunately, messaging has stopped", but you can replace messaging with "android os", or any other process, as it happens with more than just messaging. I have had numerous peopl

    After soak test update, I get error messages repeatedly. The majority are "unfortunately, messaging has stopped", but you can replace messaging with "android os", or any other process, as it happens with more than just messaging. I have had numerous people call and ask why I didn't reply to their texts...and I look, but have not received any new texts. YES, I have restarted phone. I have cleared data as well as cache on all apps. I have downloaded the vzw messaging app, which seems silly, since it happens with several different processes and apps, but all to no avail. I am missing texts from my employer, from my family. This did happen, but rarely, before this "soak test". It is now Kitkat version 19.6.3.obake_verizon.en.US. THIS is when I started having problems...like 50 times a day kind of problems! I have seen hundreds of posts all over the internet over the past 3 days. Does no one know how to fix this??? Shouldn't there be a way to revert phone to a pre-update state? and no, hard reset did NOT work!!!! I have been with verizon for well over 15 years, but I have not upgraded my lines and will not in July either. This is ridiculous. It's not like my games aren't working, it is my messaging and "android os"...my lifeline at work!

    kristinaf333,
    Oh no, I am sorry to hear your messages are not working since the software update. I greatlly appreciate doing all that troubleshooting to try and get the messaging application back in business. I know how much I rely on my messages so I can understand the urgency to get this resolved. Have you had a resolution ticket opened since you started experiencing issues with your messages? Does this happen with all contacts or just some? Please provide additional information to ensure we get to the bottom of this for you.
    KarenC_VZW
    Follow us on Twitter @VZWSupport

  • PO by email "Replacement of Text symbol"

    Hi All,
    We have activated PO by email & for email subject in outlook we have done following settings.
    In the output type "Replacement of Text we have kept programme "SAPMM06E" & Form routine "TEXT_SYMBOL_REPLACE" .
    In the title we have kept "&EKKO-EBELN& &LFA1-NAME1&" PO number & the Vendor Name in the mail subject.
    Now the problem is some time system is giving PO number correct but vendor name not as per the PO vendor.
    PO is create with 5710000001 XYZ vendor name & the message subject will come 5710000001 ABC vendor.
    Waiting for reply.
    Thanks in advance
    Samir

    Hi Samir,
    In the title replace the exisitng one with &EKKO-EBELN& &EKKO-LIFNR& - &AM07M-NAME1&
    Just give a try.
    As u have referrred the table LFA1 without vendor in PO , therefore it might be displaying the first vendor name in the table.
    Regards
    Ramesh Ch

  • About Replacement Path, Text Variables & Cusomer Exit?

    Hi
    Please explain along with examples youwhen we use Replacement Path
                                                   Text Variables and
                                                   Customer Exit
    Please search the forum before posting a thread
    Edited by: Pravender on Apr 18, 2011 3:48 PM

    Hi,
    1. Customer EXIT :
    Business Scenario:
    The business department wants to check if the orders from the customers for a  certain week (e.g. 6 weeks from now) are already transmitted into their system. Therefore they run a report with a variable, that is calculated automatically.
    Note: Of course this is not the only suitable solution, but it will show you how the exit works.
    Step by Step Solution:
    A.You should create a variable on the info object 0CALWEEK like this:
     1.Technical Name: WS_FWEEK
    2.Description: Workshop Future Week
    3 Interval
    5.Mandatory variable entry
    6.Processing: Customer Exit
    7.NOT ready for input
    B.Call transaction CMOD for the definition of the customer exit.  
    C.Create a new project, maintain the short text and assign a development class.  
    D.Go to Enhancement Assignments and assign RSR00001. Press the button components to continue.  
    E.Double-click on EXIT_SAPLRRS0_001.  
    F.For documentation place the cursor an RSR00001 and use the menu GoTo => Display documentation.   
    G.Then double-click on ZXRSRU01.  
    H. If the include does not exist, you have to create it; assign a development class and a transport request
    Enter this code:
    INCLUDE ZXRSRU01                                        *
      data: l_idx like sy-tabix,
            workdate(8) type d,
            futureweek(6) type c.
      DATA: L_S_RANGE TYPE RSR_S_RAGESID.
    case I_vnam.
    when u2018WS_FWEEKu2019.
    if i_step = 2          u201C after pop-up
    Calculate Current day plus 6 weeks:
      workdate = sy-datum  + 42 .
    Calculate the week of this day
      CALL FUNCTION 'DATE_GET_WEEK'
        EXPORTING
          DATE               = workdate
        IMPORTING
         WEEK               = futureweek
    EXCEPTIONS
      DATE_INVALID       = 1
      OTHERS             = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      l_s_range-low = futureweek.
    l_s_range-high =
      l_s_range-sign = 'I'.
      l_s_range-option = 'EQ'.
      append l_s_range to l_t_range.
      p_subrc = 0.
    ENDIF.
    ENDCASE.
    I.Save and activate the codie 
    J.Activate the project. (Very important!)
    K. Define a query using the above created variable.
    L.For displaying the variable values in the executed query you also may define two text variables. These should, if necessary, be able to show the lower and the upper value calculated by the customer exit.
    2 Replacement Path :
    Example for filling variable values depending on an other variable /
    Deriving one variable value from another variable
    Business scenario.
    A query should show in one column the value for one period. The period should be entered by the user. In the second column the accumulated vale from the beginning of the year to the period of the first column should be displayed. The InfoCube contains only the InfoObject 0CALMONTH (Month/Year) and not single InfoObjects for period and year.
    Solution:
    For this scenario we need four variables: two variables for the column text and two variables for the period values. One of these period variables is defined as a variable with a customer exit
    Step by Step Solution:
    Create an input variable u201CMONTHu201D (you need this specific information for the coding example below). The variable is based on the InfoObject 0CALMONTH. Set the following attributes:
    Single Value
    Ready for input
    Mandatory variable entry 
    Create a variable  u201CCUMMONTHu201D (you need this specific information for the coding example below) with a customer exit as a processing type. The variable is based on the InfoObject 0CALMONTH. Set the following attributes:
    Interval
    NOT ready for input!
    Mandatory variable entry
    Create two text variables. Both variables use the u201CReplacement Pathu201D as processing type. The first text variable is filled with the text from the u201Cfrom valueu201D. The second is filled with the text from the u201Cto valueu201D.
    Enter this code
    INCLUDE ZXRSRU01                                        *
    DATA: L_S_RANGE TYPE RSR_S_RAGESID.
    DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT.
    case I_vnam.
    when u2018CUMMONTHu2019.
    if i_step = 2          u201C after pop-up
    LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
              WHERE VNAM = u2018MONTHu2019.
         CLEAR L_S_RANGE.
    l_t_range-low = loc_var_range(4).  u201Cgetting current year
    l_t_range-low+4(2) = u201801u2019 u201Csetting 1st period in cur. year
    l_t_range-high = loc_var_range-low u201Chigh value=input value
    l_t_range-sign = 'I'.
    l_t_range-option = 'BT'.
    append l_s_range to e_t_range.
    exit.
    endloop.
    endif.
    endcase.
    Save and activate the code.
    Activate the project.
    Define a query containing all the variables.
    Regards
    CSM Reddy

  • Replacing the text

    Hello All,
    I need your help regarding replacing the text with some other text. I am trying to replace the text '\\' with '\'. But i am not able to get the correct result.
    I am having string value like   '\\Computername\Path\comp_name\\domain\\location' i want to replace the text '\\' with '\' only for 2nd and 3rd occurance.
    Replace \\domain\\ with \domain\ I have tried with below query...
    SELECT REGEXP_REPLACE('\\Computername\Path\comp_name\\domain\\location' ,
           '(\\){2,}', '\')
           AS Expression
      FROM dual;i am getting the below result for above query.
      \Computername\Path\comp_name\domain\location But i want the output like below..
    \\Computername\Path\comp_name\domain\location I am using Oracke 11g vesion.
    Please help me on this .
    Thanks a lot for your help.

    Hi,
    sunitha2010 wrote:
    ... small doubt--Is there any difference between these two queries?Let's call this Query 1:
    SELECT  REGEXP_REPLACE ( str
                     , '\\\\'    -- 2 backslashes, escaped.  See note below
                     , 1 + INSTR ( str
                     )     AS expression
    FROM    table_x
    ;and Let's call the query below Query 2:
    select
    REGEXP_REPLACE
    ('\\Computername\Path\comp_name\\domain\\location', '\\\\', '\\',2 )
    as Expression
    from
    dual
    ;Yes, there is a difference.
    Query 1 leaves the first occurrence of '&#92;&#92;' intact, regardless of where that is in the string.
    Query 2 ignores the 1st character, but otherwise changes all occurrences of '&#92;\' into a single '\'.
    You'll see the difference if you add anything to the very beginning of the test string, for example
    'X\\Computername\Path\comp_name\\domain\\location'I mentioned this in my first message:
    Frank Kulash wrote:
    ... I assume the 1st occurrence won't always be at the beginning of the string...If the first occrence always is at the beginning of the string, then you don't need regualr expressions at all. You can say:
    SELECT  SUBSTR (str, 1, 1)
         || REPLACE ( SUBSTR (str, 2)
              )     AS expression
    FROM    table_x;This will be more efficient than regular expressions.

  • 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

  • Movement of message text in Display item

    Hello Dears,
    How i can blink message text in Display item and movement of message text from right to left and left to right in the Display item please share with me your valuable knowledge it is urgent.
    advance thanks.

    Hi,
    A couple of options. Create a timer and write a pl/sql procedure which will do all those things for you, like changing background/foreground colors of your text/display item and replacing text imitating its movement. Or use image item instead with animated gif or something.
    Regards,
    Andrew Velitchko
    BrainBench MVP for Oracle Developer
    http://www.brainbench.com

  • Output Types Replacement of text symbols: program, FORM routine needed

    Hello,
    I'm searching for a program and/or FORM routine that will replace &EKKO-EBELN& and &EKKO-LIFNR& (from Mail title and texts) .
    Example: Hochland Rahmenvertrag &EKKO-EBELN& / &EKKO-LIFNR&
    Replaced with: Hochland Rahmenvertrag 4600012345 / 712888
    I have problems filling the eMail subject when creating a Outline agreement (Apllication EV)...
    For purchase orders it's working without FORM routine (Apll. EF) !!!
    SAP provides this (empty) fields in transaction NACE (or NACT).
    Output type > Detail
    General Data > Replacement of text symbols
    appreciating any hints in this topic
    regards
    Jörg
    from SAP F1 context help:
    Program for creating or changing an output text
    Use
    In order to analyse parameters in titles of e-mails or faxes, you have to store a special program and a form routine in the field FORM routine. System fields like SY-UNAME or SY-DATUM are are excluded from this: They will be automatically analysed by the system.
    Example
    On New Year's Day 2000, you send the purchase order 4711 by fax. The title of the corresponding output type is "Purchase order no. VBAK-VBELN on SY-DATUM" (put a "&" before and after the fields). In the outbound message you therefore have the output "Purchase order no. 4711 on 01/01/2000". The field VBAK-VBELN has been filled with global data by a form routine.

    shital phadake wrote:
    > here are some hints
    > PR - SAPMM06B - Include MM06BFTE_TEXT_EDITIEREN - ?????
    > PO - SAPMM06E - Include MM06EFTE_TEXT_EDITIEREN - Form text_symbol_replace
    Great - these where the hints i was searching for
    NACE ...
    program = SAPMM06E
    form routine = TEXT_SYMBOL_REPLACE
    ...now the eMail subject is filled with PO-number and supplier-number as demanded ... and all just using SAP standard
    thx to you guys assisting me
    special thx to shital phadake
    Jörg

  • How to make numbers in message text input  fields left aligned?

    Hi Friends
    I have completed one of my task .but getting result right side of the field.
    how to make numbers in message text input  fields left aligned?
    Thanks
    Aravinda

    Hi ,
    Sorry for late replay i am trying this alos not set that page....
    pageContext.forwardImmediatelyToCurrentPage(null, true, null);
    and one more that kff field working is fine for ex display any text pled displayed properly and only problem is not set the value and HrSitKeyFlex6 and HrSitKeyFlex7 fields are perfectly get the values but not pront HrSitKeyFlex8 that only my issue....
    Regards,
    Srini

  • How to change reject call SMS message text

    Hello everyone
    Some time ago I bought a Nokia N9 and one feature I use frequently is reject calls sending a message.
    In other Nokia phones (symbian) you can change the message text in options section, but in this phone I can find how to change it.
    Do anyone know how to change this message?
    Thanks in advance

    Hi Amit,
    This can be done easily, if it showing the data of a view object then you can change the value of view attribute.
    Suppose a column in VO I say rank fetches value as 1,2,3 then in vo query to append L1,L2....
    Suppose I have quary like select rank from xx_table then I can change it to select 'L'||rank from xx_table.
    I hope this will resolve your problem.
    Regards,
    Reetesh Sharma

  • Gmail message text box does not show up when I click on message to read it. Text will appear quoted if I click in Reply box.

    When I open Gmail, I get the usual list of messages. When I click on a message to read it, everything appears as usual except the box with the message text in it. To see that text, I have to click in the Reply box, and then I'll see the original message text quoted.
    This is true on three different Gmail accounts. I've not changed any Gmail settings. I have enabled and disabled various extensions and User Styles that affect Gmail, and turned off Greasemonkey, without effect.
    Yesterday I did update Java 7 update 10, but Gmail was still working after that. I did install several new extensions at that time, but I tried disabling them and restarting, and the problem persisted.
    Please help. Thanks.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I cannot get my messages/text messages to work om my Hi.  I am sending this thru my iPad.  Respond and let me know you got it.  Fun fun fun.  .  I did go and try to another Apple ID different from my iPhone but it still will not work.  Can anyone help me?

    I cannot get my messages/text messages to work om my Hi.  I am sending this thru my iPad.  Respond and let me know you got it.  Fun fun fun.  .  I did go and try to another Apple ID different from my iPhone but it still will not work.  Can anyone help me?

    chicx wrote:
    This is the third time of writing this on your Apple Support Communities!
    Not with your current user id.
    Far too much uneccesary information in your post, which only confuses things, a vast amount!
    Let's start with iTunes.
    Have you updated iTunes to 11.1.5, because the previous version did appear to have an issue about seeing iPods?
    With iTunes 11.1.5 installed, look in Edit/Preferences/Devices, (or use the ALT key, followed by the E key and then the F key) and make sure that the box named Prevent iPods, iPhones and iPads from syncing automatically does not have a tick in the box.
    Once you have doen those two things, check to see if the iPod is seen by iTunes.
    chicx wrote:
    By the way, what does IOS mean? (I thought IO stood for operating system, but am flummoxed by the S on the end.
    Really?
    OS stands for Operating System. (In computer speak, IO means Input/Output.)
    iOS originally stood for iPhone Operating System, but it now refers to the iPod Touch and iPhone. The iPod Classic, which you have listed in your profile as your iPod, does not use iOS.
    I assume that you have been listening to the Podcast in your iTunes on the computer as you cannot transfer it to your iPod. It's what I'd do.

  • 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 Can I replace newScale Text Strings with Custom Values?

    How Can I replace newScale Text Strings with Custom Values?
    How can I replace newScale text strings with custom values?
    All  newScale text is customizable. Follow the procedure below to change the  value of any text string that appears in RequestCenter online pages.
    Procedure
    1. Find out the String ID of the text string you would like to overwrite by turning on the String ID display:
    a) Navigate to the RequestCenter.ear/config directory.
    b) Open the newscale.properties file and add the following name-value pair at the end of the file:res.format=2
    c) Save the file.
    d) Repeat steps b and c for the RmiConfig.prop and RequestCenter.prop files.
    e) Stop and restart the RequestCenter service.
    f) Log  in to RequestCenter and browse to the page that has the text you want  to overwrite. In front of the text you will now see the String ID.
    g) Note down the String ID's you want to change.
    2. Navigate to the directory: /RequestCenter.ear/RequestCenter.war/WEB-INF/classes/com/newscale/bfw.
    3. Create the following sub-directory: res/resources
    4. Create the following empty text files in the directory you just created:
    RequestCenter_0.properties
    RequestCenter_1.properties
    RequestCenter_2.properties
    RequestCenter_3.properties
    RequestCenter_4.properties
    RequestCenter_5.properties
    RequestCenter_6.properties
    RequestCenter_7.properties
    5. Add the custom text strings to the appropriate  RequestCenter_<Number>.properties file in the following manner  (name-value pair) StringID=YourCustomTextString
    Example: The StringID for "Available Work" in ServiceManager is 699.
    If you wanted to change "Available Work" to "General Inbox", you  would add the following line to the RequestCenter_0.properties file
         699=General Inbox
    Strings are divided into the following files, based on their numeric ID:
    Strings are divided into the following files, based on their numeric ID:
    String ID  File Name
    0 to 999 -> RequestCenter_0.properties
    1000 to 1999 -> RequestCenter_1.properties
    2000 to 2999 -> RequestCenter_2.properties
    3000 to 3999 -> RequestCenter_3.properties
    4000 to 4999 -> RequestCenter_4.properties
    5000 to 5999 -> RequestCenter_5.properties
    6000 to 6999 -> RequestCenter_6.properties
    7000 to 7999 -> RequestCenter_7.properties
    6. Turn off the String ID display by removing (or commenting out) the line "res.format=2" from the newscale.properties, RequestCenter.prop and RmiConfig.prop files
    7. Restart RequestCenter.
    Your customized text should be displayed.

    I've recently come across this information and it was very helpful in changing some of the inline text.
    However, one place that seemed out of reach with this method was the three main buttons on an "Order" page.  Specifically the "Add & Review Order" button was confusing some of our users.
    Through the use of JavaScript we were able to modify the label of this button.  We placed JS in the footer.html file that changes the value of the butt

  • Is there a way to send a message with a photo attached using imessages. I am not able to send a photo to one of my contacts because I am sending the contact a message text messages. I don't want to send contacts text messages. I want to send them iMe

    Is there a way to send a message with a photo attached using imessages. I am not able to send a photo to one of my contacts because I am sending the contact a message text messages. I don't want to send contacts text messages. I want to send them iMessages.

    Kolyei, sorry for the late reply.
    Have your brother create a contact in his phone for himself. Inside his own contact, have him add his phone number and his iCloud address.
    Settings > Messages > Send & Receive Have your brother select both his phone number and email addresses where he would like to receive iMessages.

Maybe you are looking for

  • DVD encoding using transcode results in out-of-sync audio

    I am trying to encode my DVDs for easy viewing on my computer. I am trying to do this with transcode, but I am having a few problems. Firstly, I use lsdvd and tccat to find and rip the desired content in raw form from the DVD to a VOB file. Once I ha

  • I upgraded to ios 5 on my 4 but the voice has changed to a male voice on auto speak... how do i get the female back?

    the voice has changed since i upgraded the software on auto speak text correctiions, to a very dull sounding male is there a way i can get the female back?  i know on iPhone 4S i can choose to have say australian english, but on the 4 it doesnt seem

  • ITunes permissions simply won't repair!

    I've clicked repair permissions about 10 times, and the same errors keep popping up. Get ready for tons of unrepaired permissions: Repairing permissions for “Macintosh HD” Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/

  • AIR-CT5508 wont upgrade to 7.6

    Hi, I wanted to see if anyone has had issues with upgrading to 7.6 images on their AIR-CT2504 or AIR-CT5508.  I have one unit in the lab that refuses to update and I had a customer call me today with the exact same issue.  Maybe someone from TAC has

  • Syncing different libraries and tailoring content for iOS devices.

    Hi guys, got a couple of iTunes and iOS Questions. First a little background info: I have: - A 16gb iPhone 4s - A 32gb iPod Touch (Probably 1st gen. I got it 2nd hand). I am considering: - a 16gb or 32gb iPad (Wifi only) I used to be a PC user, but h