Remove quoted text from reply to discussion thread

Hi again,
I have read about a dozen threads online about how to achieve this. Problem is, none of them work for me.
When I add the script to my CEWP and hit save, it looks like SharePoint strips out the code I have just put in, leaving an empty content editor again.... What is going on?

No luck.
I tried the three scripts again, this time using a link to the source file (.html) rather than placing the code directly in a CEWP. To be clear, I am trying to add this code (CEWP) at this location:
 http://SiteCollection/Site/Lists/ListName/NewForm.aspx?ContentTypeId=0x0107
Nothing happens. Quoted text is still there.

Similar Messages

  • How can i remove JUNK TEXT from APEX

    Hi ,
    In our project Apex has integrated with oracle apps,every time we will open apex front end from oracle application(EBS).so we have two kinds of instances 1) development and other is production
    every time we export the apex application from developement instance and import in production instance . after imported into production * we got JUNK TEXT like "TEXT:TEXT" in apex front end* so how can i remove JUNK TEXT from APEX
    Apex 4.0.0.00.46 version
    please somebody help on this issue
    Help would be appreciated
    Regards
    Narender B

    Hi,
    It is not clear what you are seeing here. Also we don't know how you have integrated Apex with EBS. My guess is you have linked an Apex page to the EBS menu and when you click on the menu link you see the additional text on the Apex page.
    You need to give details of how you have integrated Apex with EBS and where and when this additional text is being displayed for me to give you any help on this issue.
    Rod West

  • How can I remove ASCII text from a field when I use it in a query

    How can I remove ASCII text from a field when I use it in a query?
    I am running a select statement on a table that appears to have ASCII text in some of the fields. If I use these fields in the where statement like the code below nothing returns:
    SELECT FIELD1 FROM TABLE1 WHERE FIELD1 IS NULL
    But the field looks empty if I do a straight select without the where clause. Additionally, one of the fields has text but appears to be padded out with ASCII text, which I need to strip out before I can use this field in a where or join statement. I have tried using a trim, ltrim, rtrim, to_char, nvl, decode and nothing works. When I use excel to run the same query it looks as if these ASCII fields are boxes.
    I have asked our DBA team to see what they can do to prevent these from going into the table, but in the mean time I still need to run this report.
    Do you have any suggestions?

    Can you provide an example? I've been trying (for
    example) "select translate(' test one', ascii(' '),
    'X') from dual" with no luck.
    Thank you.To replace space, you should query like this:
    select translate(' test one', chr(32), 'X') from dual instead of select translate(' test one', ascii(' '), 'X') from dual Thanks,
    Dharmesh Patel

  • How do you remove automated text in reply?

    Hi there,
    When replying to an email, Mail inserts the following text above the original text message:
    "On Nov 25 2007, John Dough replied:"
    Does anyone know how to remove this text so that it doesn't get automatically inserted? other than deleting it manually, of course...
    Thanks,

    Not sure if this is different for Leopard or will even work at all in Leopard, but it's worth a look:
    http://www.hawkwings.net/2005/09/28/apple-mail-hacking-the-reply-string/

  • HT1688 My phone's iMessages are being sent to a the intended addressee. However in addition to him, his father's email account just recently started receiving our texts last night. How can we stop him from receiving our texts and replying in our thread?

    I've tried turning iMessage on and off, his son has deleted his iCloud account in suspiscion that that was the cause of the problem, etc.
    We've been texting for months without problem. This morning his son texts me, "Good morning," and then his father replies into our thread, "Good morning to you too!" I checked my contact, and I never had his father's email account before nor was his email a part of his son's contact. Please help me to stop him reading our messages. Thank you.

    You don't necessarily need to change the Apple ID for iMessage, in Settings > Messages > Received At > On each device have them uncheck any number/email that does not belong to that device

  • Removing Blinking Text from video footage

    Hi Helpers:
    I recently recorded a service at my church where we have three mounted cameras.  One of the cameras was malfunctioning and the word "Backup" is blinking in the top 1/3 of the frame for the entire service.  As luck would have it the malfunctioning camera is the only one that can capture faces as people enter during the mass procession.
    I knew this was happening while recording but couldn't remedy the situation at that time.  I was able to frame most lf my shots so that the vital subject of the angle is below the blinking text in case I need to crop the video (which unfortunately will result in a blurry picture from that camera).
    Is anyone aware of a way that I can use Premiere (CS4) to somehow remove the blinking text or perhaps other options aside from cropping? 
    It is a 50/50 blink cycle (12 frames on and 12 frames off) so there are a lot of frames that are good if there is some way to normalize the picture.  There are so many cool tools and features in PS and Premiere that I want to think there is something that can help me.
    Thanks in advance for any ideas or assistance you have !!
    Ned

    Ned,
    Welcome to the forum.
    Unfortunately, if the camera has "burned in" the "backup" message, the best solution would be to use the Fixed Effects>Motion>Scale, and probably Motion>Position to effectively crop out that message, by the Frame Size. Just Scale up to the minimum to get that message off-screen (Positioning if necessary), and living with a slight bit of quality degradation. Scale to the minimum to get that message off-screen.
    Now, depending on the background, surrounding the message, you might be able to use AfterEffects, and its Clone Tool, to clone some of that background, over the message, but this will require a bit of work, especially if there is much camera movement.
    Good luck,
    Hunt

  • Remove garbage text from fields SQL server 2000

    I have a SQL server db that just got hacked. I am using
    CFQUERYPARAM in all my queries, but somehow still got hacked. It
    corrupted data and I know I can do a restore, but I don't want to
    lost anything. How can I, for example, remove all garbage
    characters to the right of a valid file name?
    For example: poppies.png"></title><script src="
    http://sdo.1000m
    Only poppies.png is valid - the rest I need to remove. How
    can I do this with a ColdFusion query? The double quote marks keep
    throwing off anything I attempt.

    Hi There, To clean up your data, you can select the records
    with text you don't want in your database. Then loop through the
    tables infected and run update query like this one below :
    <cfloop example condition>
    <cfquery name="UpdCleanDB" datasource="#Request.DSN#"
    username="#Request.user#" password="#Request.pass#">
    UPDATE TableName
    SET InfectedColumnName
    = REPLACE(InfectedColumnName,'"></title><script
    src="
    http://sdo.1000m','')
    WHERE InfectedColumnName like
    '%"></title><script src="
    http://sdo.1000m%'
    </cfquery>
    </cfloop>
    Either run this T-SQL on Sql Query Analyzer to clean your
    data. Remember to Secure your application by setting the code below
    into your Application.CFM file:
    <!---SQL injection attack --->
    <cfif FindNoCase("EXEC(", CGI.Query_String) OR
    FindNoCase("EXEC(", CGI.Script_Name) OR FindNoCase("EXEC(",
    CGI.Path_Info)>
    <cfabort>
    <cfelseif FindNoCase("CAST(", CGI.Query_String) OR
    FindNoCase("CAST(", CGI.Script_Name) OR FindNoCase("CAST(",
    CGI.Path_Info)>
    <cfabort>
    </cfif>
    Hope that is well.
    Regards,
    Ortneil Kutama
    Developer
    Zimbabwe
    Text

  • Remove Header text from a sales order, created with reference to quotation

    Hi all,
    I have a sales order(in VA01) which is created with reference to quotation (in VA21).
    If header text (Notes for logistics, Note for responsible person, Header text Doc & Declaration) in texts tab is maintained in the quotation they are getting copied in Sales Order which is NOT the requirement.
    I need suggestions on how to disable the text that is getting copied.
    Any pointers would be of great help.
    Regards,
    Vamsee Priya.

    Hi Nilesh,
    I created a routine in vofm and this solved my problem.
    Now, I'm having a similar problem where I'm creating an Invoice(through transaction VF01) giving the delivery document number and document type (Invoice F2).
    we are maintaining Header text in Order through which the above mentioned delivery document number is created and this header text should get copied in the Invoice.
    For this, I went into Transaction VOTXN, from there selected billing header, from here kept a break point for the routine BEDINGUNG_PRUEFEN_001 through which the text will get copied.
    Now, when I'm creating the Invoice this routine is getting executed, but still the text is not getting copied.
    Any pointers on this would be of great help.
    Also at the end of your previous mail, you are telling about SPRO - text assignment. Can you please let me know how to I should navigate to this text-assignment??
    Thanks and Regards,
    Vamsee Priya.

  • Remove Header Text from ME51N screen

    Hi,
    In ME51N, the screen is divided into 3 sections (Header, Item Overview, Item Detail).  Does someone know how to remove (or hide) the Header section?
    Thanks,
    Giscard

    Hi,
      You can create a screen variant from SHD0 transaction and disable the header button,
    Hope this helps,
    Rgds,

  • How to remove text from JTable ...........

    AOA
    How to remove the text from cells of JPanel. Just to refresh the GUI.
    regards

    How to provide meaningful subject?
    The subject of this thread does not match what you are asking in the body.
    To set the value of a cell in a JTable, you can simply call setValueAt().
    Read the API to find the method parameters.

  • Kill a thread and remove the element from the vector

    Hi All
    I have attached each Vector element to a thread which I later want to kill and remove that element from the Vector.
    Thread.join(milliseconds) allows this functionality to let the thread die after n milliseconds.
    However, I want to delete this element from the Vector now.
    Can someone please throw some light on this?
    Here the code I have written for this:
    try
         System.out.println(counter);
         int xCoord = generator.irand(25,200);     // X-coord of AP
         int yCoord = generator.irand(25,200);     // Y coord of AP
         listMN.addElement(new MobileNode((int)mnId,new Point2D.Double(xCoord,yCoord)));
         listMNcoords.addElement(new Point2D.Double(xCoord,yCoord));
         for(int i=0;i<vnuBS.returnBSList().size();i++)
              if(vnuBS.returnBSListCoords().get(i).contains(xCoord,yCoord)&&(vnuBS.returnBSList().get(i).getChannelCounter()<=3)&&(vnuBS.returnBSList().get(i).getChannelCounter()>0))
                   double c = exponential() * 10000;
                   long timeToService = (long)c;
                   System.out.println("BS "+vnuBS.returnBSList().get(i).id+" is connected to MN ");
                   vnuBS.returnBSList().get(i).reduceChannelCounter();
                   System.out.println("Channel Counter Value Now: "+vnuBS.returnBSList().get(i).getChannelCounter());
                   mobileNodesThread.addElement(new Thread(listMN.elementAt(mobileNodeCounter)));
                   mobileNodesThread.elementAt(mobileNodeCounter).setName(mobileNodeCounter+"");
                   mobileNodesThread.elementAt(mobileNodeCounter).start();
                   mobileNodesThread.elementAt(mobileNodeCounter).join(100);
    //                              System.out.println("Died");// thread dies after join(t) milliseconds.
                   System.out.println("ListMN getting generated : " + mobileNodesThread.get(mobileNodeCounter));
              else if(vnuBS.returnBSListCoords().get(i).contains(xCoord,yCoord)&&(vnuBS.returnBSList().get(i).getChannelCounter()<=0))
                   listMN.remove(this.listMN.lastElement());                         //dropcall
                   System.out.println("Removed "+mnId);
                   removeCounter++;
                   mnId = mnId--;
                   mobileNodeCounter--;
              mnId = mnId+1;
         Thanks a lot.

    I'm not sure if what you are trying to accomplish is correctly implemented.
    The method join does not kill the thread. It will wait for the specified time for the thread to exit. If you want the thread to run for a specified ammount of time, develop the run method of that thread with that in mind. Do not try to kill it from the outside, but let it terminate itself (gracefull termination).
    Now for your question regarding the vector (you should probably be using ArrayList nowadays): I would implement the observer pattern for this job. Make the threads post an event on the interface when they are done, let the main thread register itself with the threads and synchronize the method that handles the events. In that method you can remove the object from your list.
    I'm not sure if you want to use thread anyhow, could you tell us what it is that you are trying to accomplish?

  • Removing predictive test from N95

    HI
    Can someone tell me how to remove predictive text from my boss new nokia n95 please when he is texting someone as he is in the dark ages
    thanks

    press the # key until the abc is not underlined anymore
    The best way to get a quick response is to use the boards. Please do not be offended if I don't answer emails immediately.

  • How to remove oneself from discussion thread

    how do you remove yourself from a discussion thread? i asked a question 6 months ago and i still get updates, i have checked my profile and every alert question i have selected no. ***?

    Read here:
    https://discussions.apple.com/static/apple/tutorial/email.html

  • Discussion thread removed, Why?

    Hi
    Yesterday I created a discussion thread, regarding the new advertising standards authority legislation, to which a number of people did present there opinions and thoughts.
    Today all traces of this thread have been removed, it does not appear in any history or my list of discussions created, this points to the thread having been removed. I am therefore left wondering why?
    The tread was not meant to offend, (and did not do so as far as I can ascertain) but generate thoughts and opinions on such legislation, more legislations are to come and simply ignoring them is I think not a valid argument, but definitely something worthy of at least a discussion on the forum, as they will in some way affect almost everyone. If anyone, (possibly a moderator) can please explain why this discussion was removed I would be grateful.
    Paula Z

    Hi
    First, thank you David for clearing this up for me, as I can now post a reply to a few of the points that where raised in the original thread for those interested.
    After some research/questions into what the legislation means for those of us involved in designing/developing web sites, I have received the following information -
    It is not the intention of the ASA, (Advertising Standards Authority) to interfere with legitimate web sites offering legitimate services or products, but to stop those sites advertising services or products that are not regarded as 'genuinely deliverable', (e.g. SEO sites claiming that you will be on the first page of Google, or that having a web site will increase your sales) pirated items, (software, video, etc) or counterfeit goods, (offering products that are not genuine or as advertised).
    Stop the abuse of email marketing campaigns that the targeted person has not signed up to, or has no way of stopping. (similar to that of mail-shots or telephone cold-calling).
    Ensure that all concerned with any form of advertising or offer of services on the internet, act in a considerate and responsible manner to all users of the internet.
    Now to the other points, and these are the result of the 'lack of action' within the web design/development community as a whole to implement changes themselves, notification of possible legislation was indicated by the European community commission 4years ago regarding this, (note: I remember this notification, and I did write about it in a reply to a thread 2 years ago) -
    What constitutes a professional web designer/developer - No official training or qualifications are to be required, nor are any to be expected. But it is to be expected that anyone offering these services should at least have a good understanding and be able to implement to a satisfactory standard, the lessons of the 'Web Standards Curriculum' as appropriate to the services offered. This are now offered, (free of charge) by both Opera at - http://www.opera.com/company/education/curriculum/, and Firefox at - http://www.drumbeat.org/p2pu-webcraft. An Open university course in modern web design/development that includes html5/css3, PHP/MySQL is also now available, a degree in 'media studies' alone is NOT regarded as a qualification or experience in web design/development.
    Professional bodies - Membership to any professional organization is not seen as a qualification, though it is hoped that the community will adopt and enforce via 'peer pressure/user groups' or similar, a professional 'Code of Practice' that can be seen as a standard to which the community as a whole will aspire to uphold.
    Other government departments are also to receive powers to protect the consumer over the coming years. One such is the OFT, (office of fair trading, which does now have the powers required) which is to ensure that action is taken to uphold current legislation regarding the availability of services as defined in the disability's discrimination act and other legislation, they have the powers to remove a web site completely, and enforce a court order that stops the site owner(s) trading under another name, (action will also be taken against anyone who knowingly assisted such infringements of the law).
    O/K, that's the main points I think, any questions, and please Osgood_ no abusive language as I can already hear it from here .
    Paula Z

  • How can I remove the 'Qty' text from individual product descriptions?

    I didn't know if this was possible or not... I've recently taken the reins of handling an ecommerce site that had been published before I got on board. My boss wants me to remove the 'Qty:' description from some products because the image shown for some products is a misleading description of the actual quantity available (i.e. there is a picture that shows a stack of conveyors parts, and it says 'Qty: 1' to represent one 'stack' of conveyor parts - this confuses customers into thinking there's only one individual conveyor part available however). To avoid any confusion he requested that I remove the 'Qty' text from similar images. I see that you can change the 'In Stock' amount of a particular product underneath the 'Inventory' tab of the 'Products' menu, but I didn't know if it was possible just to remove the quantity description altogether without just typing the quantity in at zero. This is likely a strange question but I didn't know where else to ask! I would appreciate any help or advice Thank you

    Hi ewhelhalu,
    I just figured out a way to do it, but it's a little weird and complex, and I have no idea what the consequences for editing this .plist string might be. I'm thinking it'll be OK, but you never know what might happen when you screw around with Apple's intentions.
    So if you have the Developer Tools on your install of OS X, you can use the Property List Editor to edit the Dock files. (If you don't have this program, you can use a program like [Pacifist|http://www.charlessoft.com> to selectively install stuff from your Leopard disk).
    The file you're interested in is within Macintosh HD > Users > Your Username > Library > Preferences, and it's called com.apple.dock.plist. Open that up with Property List Editor, and open the arrow drop-down next to "Root." The lines you're looking for are "persistent-apps" (the left side of your Dock) and "persistent-others" (the right side). If you open the drop-down arrows, you'll see there are numbers below each. The numbers correspond to your Dock items, from left to right.
    If you click on drop-arrows by the numbers, a sample hierarchy looks like this: 0 > tile-data > file-label. It's the "file-label" string that you want to edit. Just make it ("it" being the name of the icon under the "value" column) blank, save the file, go into Terminal and type "killall Dock" without the quotes, and your Dock icon should appear without a name. You'll have to do this for all of them.
    I should insert the usual caveats here about backing up beforehand and making sure that you have a copy of the .plist file before you start tweaking it so that you can replace it if things go wrong. And perhaps someone with more knowledge of Terminal or third-party apps than I have will come along and suggest a simpler solution. But that's the only one I have.
    Hope that helps!
    —Hazy

Maybe you are looking for