Subject Text replaced with Accounting Text in Notification Creation

Friends,
We have created some custom notification types with some screens modification. Now when I am creating a notification and add some text in Subject tab and then add some text in accounting tab (custom tab) text then after clicking again in subject text the text of accounting tab is displayed. Why so? but when I save the notification and display the text in both tabs are displayed correct.
Can some one let me know what is missing??

Your comment about retrieving a previous version of the file from Time Machine reminded me of something... it may be a clue to what happened. A little history to the document: I created this file and was working on it for a while but forgot to save it. As often happens when you forget to save a file... the program crashes! But when I reopened PS, there was the rescued file... only a few recently made changes were missing. I continued to work on the project to get it back to the point before the crash (can't remember if that involved text editing). I saved it and closed the file for the day. I didn't notice any problems until  the next day when I tried to edit the text. I have a feeling this might be part of the problem.
I will use your suggestion to see if I can retrieve a copy of the file before the program crashed. Perhaps we've stumbled upon something.

Similar Messages

  • HTML tags displayed with the text in "Notification" area

    We want to display an HTML formatted message in the "notification" area, but the HTML tags are being escaped and thus are displayed along with the text. We are using Application Express 2.2.1.00.04. The application has been handed off to us to support and we have no experience with APEX. So I hope I am explaining this correctly.
    The process to display the message is as follows:
    After submission, a page validation fires, which is of type "function returns boolean": "return some_function('P100_MESSAGE',2nd_arg);".
    In "Error Message" is "&P100_MESSAGE."
    The function returns true when the validation is successful. When validation fails, it returns false, setting 'P100_MESSAGE' to some error message - for example: "<li>Phone number is not numeric</li><li>Email address is not valid</li>".
    Our template has this in the body definition:
    #NOTIFICATION_MESSAGE##SUCCESS_MESSAGE##BOX_BODY#
    As I understand it, #NOTIFICATION_MESSAGE# will be replaced with the value of 'P100_MESSAGE'.
    I've displayed 'P100_MESSAGE' on my page to confirm its contents and it is rendered correctly with bullets. But the notification area does not show bullets. It displays the text and the HTML tags.
    Is there anything obvious we can do to fix this problem? Thanks

    I 've changed P100_MESSAGE to text field, text field (disabled, saves state), text field (disabled, does not save state), and textarea, display as text, etc. It is originally set to Hidden type (because it is only to be displayed in the notification area). But changing it to various types makes no difference as to how it is displayed in the notification area. Of course, when it's not hidden, then it's also displayed on the page, among to other page elements,which is not acceptable.
    Thanks-
    -j

  • All of the photos in my text messages have disappeared and been replaced with a question mark image. Where did they go?

    I updated my ios two or three weeks ago, but suddenly beginning this morning all of the photos in my text messages have disappeared. They have been replaced with question mark placeholders. I can't access any videos/photos that either I have sent or others have sent to me. I did nothing to instigate this change (no software updates, etc.) and have already tried resetting my phone multiple times.
    Thank you!!
    -Cait

    I have the same condition on my iPhone only. I also have an iPad, a Macbook Air and an iMac that share the same iCloud account. Messages with photos seem to work fine on all devices except my iPhone.  All of a sudden all the photos in my iPhone message streams have disappeared and been replace by question mark placeholders. I rebooted all devices, shut down messages, and rebooted, restarted, with no luck. Very bizarre and extremely frustrating. Any suggestions?

  • When i open emails, the text is replaced with question marks and boxes

    i have a macbook pro and when i open email attatchments which are mainly bodys of text, the text is replaced with question marks in boxes, any ideas as to how to help this or even fix it completely!?

    It means the text is a font not supported by whatever you are using

  • Greek Text Not Displaying Properly (Characters being replaced with different ones)

    Hi,
    I am using Adobe Photoshop CS3. I have a spreadsheet of Greek translations. When I copy and paste the text into Photoshop, certain characters are missed out or replaced with an incorrect one. I have tried downloading fonts that support the Greek character set, but still no luck. If I paste this text into any other applications (Word, explorer etc) the text displays properly. I was wandering if there is a setting or anything in photoshop that I need to change? It seems to be an issue with this application only.
    Many thanks,

    Have you tried to set your system language to a European setting, e.g. Ireland or UK? Seems like an issue with incorrect Unicode conversion. Also turn off OpenType features for automated glyph replacement in the menu of the Character palette...
    Mylenium

  • [CS2][JS] Search text & replace with inline Image

    I am working with a large layout with many entries. There is a text "placeholder" that I need to search for and replace with an inline image in that exact spot.
    I need to apply an Object Style to that image.
    There is a loop above this for each find/replace to perfom
    I have supplied samples to show what the variables will hold
    The following assumes that an Objectstyle named "image" exists
    //places the image
    app.changePreferences = null;
    findName = "OR-00014500-24-0000-1";
    fileName = "Ads:OR-00014500-24-0000-1:OR-00014500-24-0000-1.eps"
    myFinds = app.search(findName)
    for (j = myFinds.length - 1; j >= 0; j--) {
    app.select(myFinds[j]);
    app.place(fileName, false,{appliedObjectStyle:"image"});
    This doesn't apply the style to the placed object and I have tried many different ways to apply this in the properties.
    Any help would be appreciated.

    I've seem to hit another hurdle....
    The code works well for searching and replacing the images. It applies the style to the image, but these images are not inline they are anchored. I ended up with a nice stack of images in the same corner.
    Ok... I need to then apply styles based on the images that have been placed already..
    This works well for cycling through the pages and with a bit more will change the style...
    myDoc = app.activeDocument;
    pagecount = myDoc.pages.length;
    for ( page=0; page < pagecount; page++){
    if (myDoc.pages.item(page).textFrames.length != 0){
    app.select(myDoc.pages.item(page).textFrames.item(0));
    piccount = app.selection[0].rectangles.length;
    if (piccount != 0){
    for ( bob=0; bob < piccount; bob++){
    app.select(myDoc.pages.item(page).textFrames.item(0));
    app.select(app.selection[0].rectangles.item(bob));
    // Get geometric bounds
    // alert(app.selection[0].geometricBounds);
    // Get object Style
    // alert(app.selection[0].appliedObjectStyle.name);
    // Do more here....
    I can't use this though :(
    I need to determine how many images have already been placed on the page before placing the image in the search and replace....
    myFinds = app.search(replaceName)
    for (j = myFinds.length - 1; j >= 0; j--) {
    app.select(myFinds[j]);
    myStory = myFinds[j].parent;
    myIndex = myFinds[j].index;
    //This will change using a series of Case Switches
    // Here is where I need to find the page and run the previous script or something like it myStyle = app.activeDocument.objectStyles.item("image");
    app.place(fileName, false);
    myStory.characters[myIndex].pageItems[0].applyObjectStyle(myStyle);
    app.select(myStory.characters[myIndex].pageItems[0]);
    //alert(app.selection[0].appliedObjectStyle.name);
    What I need to do is kind of combine the two....
    But I can't seem to get the current page of the selected image....
    I could use the page by page script, but it moves the character anchor point of images and pushes them to the next page. This throws off the pretty layout I'm going for.
    What am I doing wrong here ?

  • Find text and replace with image - Help needed

    Hi,<br /><br />We need to place the images as inline in the appropriate places.<br /><br />texttexttext<<test1.eps>>texttexttexttexttexttext<<test2.eps>>texttexttexttexttexttext< <test3.eps>>texttexttexttexttexttext<<test4.eps>>texttexttexttexttexttext<<test5.eps>>text texttext<br /><br />This code is helpful for placing a single image at a time, we are unable to place all the images in one shot, can anyone help me out.<br /><br />I am not a programmer.<br /><br />-----------<br />var myDoc = app.activeDocument; <br />app.findPreferences = app.changePreferences = null; <br />var math=document.search("test.eps"); <br />for (i=math.length-1; i >=0; i--)<br />{ myDir = Folder.selectDialog(); <br />AllGraphics = Folder(myDir).getFiles('test.eps') <br />for (i=0; i<math.length; i++) { app.select(anil1[i]); <br />     myDoc.place(AllGraphics[i],false); } }<br />-----------<br /><br />Note: I have taken this code from forum and we have made some changes on this.<br /><br />Kavya

    Jongware,<br /><br />I try running it but gives errors:<br /><br />Error Number: 55<br />Error String: Object does not support the property or method 'changePreferences'<br />Line: 24<br />Source: app.findPreferences = app.changePreferences = null;<br /><br />This is the code I used<br /><br />// Find text and replace with image for InDesign CS3 <br />// http://www.adobeforums.com/webx?128@@.3bbf275d.59b6f012<br />var heyItsAnArray = new Array ( <br /><br />   "it contains this line!", <br /><br />   "as well as this one", <br /><br />   "or even more!", <br /><br />   "test.eps" ); <br /><br />for (arrayCount=0; arrayCount<heyItsAnArray.length; arrayCount++) <br /><br />{ <br /><br />   replaceImg (heyItsAnArray[arrayCount]); <br /><br /> } <br /><br />function replaceImg (name) <br /><br />{ var myDoc = app.activeDocument;  <br />     app.findPreferences = app.changePreferences = null;  <br />     var math=document.search(name); <br />     for (i=math.length-1; i >=0; i--)  <br />     { myDir = Folder.selectDialog();  <br />          AllGraphics = Folder(myDir).getFiles(name)  <br />          for (i=0; i<math.length; i++) { app.select(anil1[i]); <br />               myDoc.place(AllGraphics[i],false); <br /><br />               } <br /><br />          } <br /><br />     }<br /><br />Michael

  • How to get subject text and Reference Object both Screens at the Header lev

    Dear Experts ,
                    I am getting only Notification Header Screen ( Subject Text, Notification system and User Status) at the Header of Notification and different Tabs under that screen.
                    I want Subject Text and Reference Object screens at header Level so that any screen Tab selected at a time I can see the Subject and Reference Object of the Notification.
                    Pls tell me is there any way so I can Include 2 screens( Subject and Reference Object at the Header Level.)
    With best regards,
    Narendra

    Narendra,
    You can't in the standard system.
    Only the tabs are configurable.
    PeteA

  • Nokia N97 - No Text Message Notification and a Few...

    I love my nokia n97, but i'm rapidly falling out of love with it, i have owned it since the end of august and this is the first time i have really hit a major problem with it.
    The main problem being is, that the phone no longer gives me a text message notification or noise in that it being on the home screen it does say "1 new message" and i have to constantly have my inbox open to see when i have a new message and constantly check it all the time, for a person who is texting constantly this is probably one of the most annoying problems. If it makes any odds its using the mass memory.
    I called the support line and have tried the following:
    - Upgraded the firmware (no effect)
    - Hard reset the phone (without the backed up data on it, the text message notification works, after placing data back on it, problem comes along again)
    - Cleared cache (no different)
    - Hard reset the phone and restored data on phone without the settings (this has worked for a while, less than a day, and is now playing up again)
    Along with a few other problems that have started which i am confused whether it is the actual application or my phone that is the issue with this:
    Facebook - No longer works proberly, freezes regulary, excessively slow at loading any content up.
    AccuWeather - Can never find my location through gps and sometimes unable to load data for a pre-set location.
    -At points through the day i do get error messages too that don't really make much sense, "cannot retrieve data" "error" and "internal error, reset phone"
    Also when hard resetting the phone the second time round, originally built in applications disappeared so i had to re-download them through Ovi Store again.
    Other problems include phone basically freezing regulary mainly on startup, and start up time being long before it lets me push a button, and loading content for the homescreen, the 3 widgets and the speed-dail take excessively longer than they use tooo.
    My phone is suppose to be getting 'repaired' within 48 hours, is this true? I got told by a friend that his took 2 weeks+.
    Or a replacement and how does this work and who is responsible for giving me a replacement. (Nokia, t-mobile, mobilephonesdirect?)
    Could all these problems be linked back to a faulty sim card?
    What on earth has happened to my phone, is this fixable, isit a software bug that cannot be sorted, why has this happened, why now, i have never run into any problems before?
    Is there something in the data, i can't think of anything, if so what?
    This problem started totally randomly?
    Isit somesort of weird memory issue?
    If i was to get a new phone, will i not run into the same problem again, what happens if i do? Do they keep replacing it or fixing it all the time?
    Sorry for a long post, hope someone here can help......

    N97 is going back in again today for them to confirm it is un-repairable and then they are going to send me out a new one.
    The guy said it was a software issue which was caused by t-mobile putting their own software on the phone, which is absolutely stupid, if operator's software is going to cause a phone to malfunction, then don't let it on!!!

  • From and subject text is missing in listview (imap)

    Hi all,
    I have just setup mail 3.0 and all messages+folders are downloaded correct. But messages are missing the From and Subject text in the list view, the place where text normally is written is just blank so I can not see whom the email is from and what it's about.
    Once I click on a message it opens up perfectly in the message view and all details are available (from, to, date, etc...). Got damm wired
    I'm running with IMAP through a danish host called Azero and I think they are running with Merak Mail Server (http://www.icewarp.com/Products/MerakEmail_ServerSoftware/)
    I hope somebody can help me.
    Cheers,
    Jesper

    so this is strange... i tried the exact same process on 3 machines with the same mail account set up. on the first machine, i selected the mailbox, went to Mailbox>Rebuild. Mailbox rebuilt without any issues, all old mail that was missing From/Subject fields were fixed and all new mail comes through without any issues.
    I tried the same thing on two other machines with Merak IMAP accounts on them and on one machine, ALL previous mail that had been correctly displaying From/Subject fields had those fields deleted but date received displayed just fine. I could also click on the blank line and the message would display correctly in the Mail window's preview pane below the list view.
    On the third and final machine, rebuilding the mailbox wiped the mailbox COMPLETELY. Folders displayed but they were empty.
    I'm submitting a support ticket to Merak as soon as I'm done typing this
    .//chris

  • Email to Text Message Notification

    I'm trying to set up a text message notification for an "emergency" email account as my company is closed between Christmas and New Year's Day and I'm running into an issue with sending messages to Sprint customers, which is really weird.
    I can successfully send the stock message that I have to customers @txt.att.net and @vtext.com for AT&T and Verizon customers, but when I try to send a message to @messaging.sprintpcs.com my message status says that everything went successfully, but the text is never received. Now to pile on the weird... I can create a plain new email message and copy and paste the Sprint text message address from the same rule that I'm trying to create and the message successfully goes to the phone. So to recap, email to text by a rule doesn't work, but email to text by a stand-alone message goes through without a problem. Everything seems to be tied to the email to text being generated automatically and on the Sprint network only. Sprint is pointing me to something with how the message is getting sent from GroupWise because a manual message will successfully go through but not the automatic ones. Has anyone ever heard of something like this?

    Could be this switch 'realmailfrom' is needed, TID 10100683
    Cheers Dave
    Dave Parkes [NSCS]
    Occasionally resident at http://support-forums.novell.com/

  • Text/Email notifications won't clear

    I was having issues with my text/email notifications not clearing on the dock and was told I had to do a factory reset. So i did that and I was still having the problem after i set my phone up again. I found that once I went into the Developer Options and chose the option "Do not keep Activities," so I unchecked that box and it fixed the problem once i got a new message or restarted the phone and haven't had that problem since.

    I don't have all the things that you list.
    I have:
    Actions
         Receive email notifications (or not)----which I chose & hope that that works.
         Bookmark this
    I have already checked 'no' to all emails, which is NOT what I want. If there are more comments to my questions, I would like to see them, but there is no option for that. I have 2349 emails, certainly not related to MY question.  (And I am NOT shouting... trying to make a point.
    How can I keep up with what is going on in the Apple Support Community if I say NO to all of the emails?
    And why can't we copy or cut & paste here????? If one copies or cuts it won't allow paste. It gives only options ot insert links & such???
    How do you people keep up with this community IF you don't get a gazillion emails?
    Thanks.

  • Put Fixed guide line in long text of Notification: IW21

    Hi,
    I have an requirement where I need to put some fixed guide line in the notification long text whenever notification order gets created.
    For an example below guidelines need to be incorporated automatically in the long text of notification whenever they get created
    Ex:
    Long Text Template as follows:
    Detailed description of fault:
    What caused the fault?
    Action taken to date:
              Who:
    Suggested Repair / resourcec:
    Please suggest how can I implement this requirement?
    Appreciate your help in advance.
    Thanks,
    Jay.
    Moderator message : Duplicate post locked. Continue with original thread.
    Edited by: Vinod Kumar on Sep 14, 2011 11:29 AM

    Hi,
         Check the user exit :- QQMA0025 PM/SM: Default values when adding a notification
    For wiring into longtext i think u can update via WRITE_TEXT
    You should also ensure that this information  should not be changed
    regards
    pushpa

  • From: text overlapping Subject: text in Mail

    I'm having a display issue in Mail app: text in the From: line is offset to the point that it completely overlaps the Subject: line, leaving the From: line empty, and the Subject: line garbled with two lines of text superimposed. It's like the baseline of the From: line is permanently shifted down for some reason. All other text displays correctly.
    This applies to incoming messages and sent messages. The To:, cc:, and From: fields in outgoing messages are not affected while they're being composed. (But they are affected once the message has been sent.)
    I searched around the forums and couldn't find a description of this problem. Has anyone else run into this?

    Thanks, I just tried that, no luck. I had already tried regular power off and reboot. It just goes off randomly, sometimes after just one word or if I am lucky I am able send out a short message before it goes off. It goes off typing in any of the apps.

  • Update long text in notification

    Hi experts,
    I try to update (add next entry) to the long text in notification header. I tried with BAPI 'BAPI_ALM_NOTIF_DATA_ADD' to fill table NOTFULLTXT, but it seems that it can only add an entry and not append another one (one entry already exists). In 'BAPI_ALM_NOTIF_DATA_MODIFY' there is no table NOTFULLTXT. Could you advice me how to do it? Thank you in advance.
    BR
    Paul

    Just found something. Have a look at class CL_ILM_BE_WOC, Method NOTIF_TEXT_UPDATE, as they do this here.

Maybe you are looking for

  • Related to creation of new company

    sir i am using the sap b1 2005b business one model in  my  existing company   i have 25 user  and i want create new company and transfer  this  25 user to new company so what is the procedure  for that and how to  link that liscen copy to new company

  • IPhone 5C 'no service' - is it worth taking it in for repair?

    I made the mistake of getting an iPhone 5C in February, mistake because this phone is obviously a lemon based on the amount of people who are having the "no service" problem with it. Even though I am in a strong signal area, I cannot reliably connect

  • There is no messages in my Inbox, but counter near it still show (10).

    There is no messages in my Inbox, but counter near it still show (10), I even check on server there is no messages. Mail work properly, but it is annoying to see counter near Inbox, in doc counter work perfectly. This problem is appear 2 days ago, an

  • Language Files

    I only use my Mac in English US.  I see there a tone of Language Files with each CS 5 app.  Can I safely delete these?  I know in previous versions of CS for mac doing so caused problems.  Is this still the case?

  • FILE Communication Channel

    Hi Guys, I am doing a scenario File to SOAP where XI pick up the flat file from FTP and does content conversion and sends it ti SOAP receiver.In file communication channnel what Quality of service do I use(EO,EOIO,BF) and why? Thanks