Changing Text in Document

Hi All,
I want to change the text for all line items of a particular document. For eg Document No is 1000000010
Entry is
Dr GL 120030
Dr GL 120040
Dr GL 120050
Dr GL 120060
Dr GL 120080
Cr Vendor X
Now narration or text to be put in all line items of Doc No 100000010 as "Bills Submitted for the month of July 2010"
Can anyone tell me how to do this with one go, instead of editing everyline and putting text.
Regards,
Vrinda D

You can not change all the lines of same document involving different account type simultaneously in standard solution.
However you can change all the G/L line items simultaneouisly from transaction FBL3N using mass feature (Environment > Mass Change > New Values).
Also you can develop a BDC or LSMW (for transaction FB09) to update the line items with the required text. But it is useful only when data volumn is high, not for one two documents.
Regards,
Gaurav

Similar Messages

  • Using external XML document to update / change text fields inside of published captivate output.

    Hello
    I currently have a project where the client has requested to have the ability to update the text fields inside the project at a later date.
    This is due to the nature of the content changing rather rapidly, i would like to set this up so the client can manage this them selfs.
    What would the best way to do this be?
    I'm thinking XML, an external XML sheet were by Captivate imports the text from this XML sheet and then displays it within the specific text fields contained within the captivate output.
    This way the client would just update the external XML document(cut and paste the text in) and then the text would be dynamically updated in the published Captivate document.
    any help would be amazing !
    Thanks in advance
    Nick

    Hi Lieve
    But isn't this thread more about an end user having an ability to change text after the Captivate has been published and delivered? I could see where that might be useful if making changes then publishing to create a new output. But I'm interpreting that the situation here is that a Captivate project has been published and delivered, and some mechanism is desired that allows the recipient to modify an external XML file to influence changes in the already compiled Captivate output.
    Cheers... Rick

  • Changing text direction for Hebrew lines within a document.

    We are new to Creative Cloud.  We need to be able to chnage text direction within an In Design document.  We looked up how to do it, and while the directions were clear (clicking on change character direction from the character options menu), our character options menu does not include changing text direction as one of the options.  We just joined the creative cloud a few weeks ago and have the most updated version; what do we need to do?

    Do you have the CC Desktop Appliction installed (It's sort of a command central for CC)? If not, get it at https://creative.adobe.com/
    The icon should be near the top right corner.

  • How can I change text to a document?

    how can I change text to a document?

    Hi littleei54,
    I'm not sure that I follow. Would you like to edit text in a PDF (that requires Acrobat)? Or, do you want to convert a text file to PDF? Please provide a little more information and we will get you pointed in the right direction.
    Best,
    Sara

  • Can't change text once I've finalized it!

    I've been using Photoshop for years, so I know all the basics.  And I've never run into this before.  I created a document with text boxes and images.  Everything was fine to that point.  But when I went back to re-word the text boxes and change text color, I could not do it.  I tried everything:  be sure that layer is selected, be sure I have the type tool enabled, and click somewhere in the existing text.
    Nothing doing.  No matter what I did, it insisted on starting a new text layer.  I could not access the text itself to change it.
    I could transform it or move it but it will not let me change the text itself or the text color.
    I'm using the PS cloud version and running Windows 7.
    I ran into this a few weeks ago, and rebooting my computer solved the problem -- or so I thought.  Apparently it didn't solve it permanently.
    Help, please!  This was due yesterday and my client is understandably not amused.
    Thanks.

    Now I can change text in any text box except the one titled "spinetext", which is highlighted in the layers panel.  Obviously I'm doing something wrong, but I've designed a lot of these covers, and never had trouble changing the spine text before.
    I finally had to recreate that layer in a new document and import it into this one -- but the text remains unchangeable in this layer.
    (For what it's worth, "Layer 1" is the template, which I turn off when I have inserted all the elements, so it has nothing to do with this layer.)
    Thanks for your help!

  • How to change Text to Number in Excel 2013

    Hi,
    I imported and parsed a large CSV file (75000 rows) with 4 columns as numbers. They arrive in Excel as text with a "." as decimal separator. In Excel options, I set the decimal separator to "." but data remains as text. I could edit and
    enter each cell to convert it as number but I have 4 x 75000 cells...
    Any idea ?
    Thanks for your help

    Hey Wlid1966,
    This simple action, I've included some links that explain you step by step:
    http://www.extendoffice.com/documents/excel/582-excel-change-text-to-number.html
    http://www.extendoffice.com/documents/excel/671-excel-change-number-to-text.html
    http://www.accountingweb.com/article/three-ways-convert-text-based-numbers-values/222008
    Please Mark This As Answer if it helps to solve the issue
    Tzuri Ben Ezra | My Certifications:
    CompTIA A+ ,Microsoft MCP, MCTS, MCSA, MCITP
    |
    FaceBook: Tzuri FaceBook | vCard:
    Tzuri vCard | 
    Microsoft ID:
    Microsoft Transcript 
     |

  • Change Text on Tab of Tabbed Panel When it's Open.

    I posted this on the DW board but it was suggested I try here.
    I am using a tabbed panel to hide and reveal a page of text on this page: www.imagesandwords.org.uk/Don/pages/essay.php
    The reason I am using the tabbed panel to reveal the page is to try to keep every page looking the same throughout the site.
    When the panel is open the text in the tab still says, "More" and I wonder if there is a way to make it say, "Hide" or something when it's open.  Although it isn't uploaded yet my last task was to put tiny up and down arrows in the tab so that helps with a down arrow on closed and an up arrow on open.
    As well as the question about changing the text on the tab, is there anything wrong with using the tabbed panel like this?  I guess it might be clunky if the user has javascript turned off but I''m thinking of putting up a .pdf for download once the content is dealth with.
    Kind regards
    Martin

    Hi Martin,
    The error is very genuine and need to be fixed.
    You know what the problem is...
    We are calling same funtion from a span that is inside a div which is again calling the same funtion. So the innerHTML is not getting updated correctly.
    So what we need to do is to duplicate our JS funtion and call name it as say....cchange()
    /* for the Tab/DIV based click*/
    function change(){
    var temp=document.getElementById('moreContent').innerHTML;
    if(temp=='More...'){
    document.getElementById('moreContent').innerHTML='Hide...';
    if(temp=='Hide...'){
          document.getElementById('moreContent').innerHTML= 'More...';
    /* for the span/text based click*/
    function cchange(){
    var temp=document.getElementById('moreContent').innerHTML;
    if(temp=='More...'){
    document.getElementById('moreContent').innerHTML='Hide...';
    if(temp=='Hide...'){
         document.getElementById('moreContent').innerHTML= 'More...';
    and in our HTML it becomes
    <div class="CollapsiblePanelTab" onclick="change();"><span id="moreContent" onclick="ccchange();">More...</span> </div>
    This should finally do the required icing on cake
    Regards,
    Vinay

  • Changing text colour in Pages for ios...button missing

    I'm trying to find a way to change text colour in a document, -all available information states that there is a button, with an i on it (info button) to adjust settings such as font colour, that button is mysteriously absent for me.
    The toolbar would need to look like the screenshots in this article for me to follow the instructions to format text colour: http://www.topappreviews101.com/pages-ipad-app-5.html
    My buttons look like the ones in the screenshot here: http://www.ipadou.com/nouveautes-des-applications-apple-apres-la-keynote
    I do have various formatting option with the buttons I have on mine, but not any that will allow me to format the text colour i.e the instructions available to me tell me to press a nonexistent button.
    am I going mad/has something recently change/is there anything I can do about it?!
    Any help would be much appreciated.

    I could not get your links to show me what you were looking for, but I just opened pages and figured out how to change font color.   I am using the most current version of pages for its, so I don't know if this works on older versions.
    If I screw the instructions up, simply open a document in pages, touch the wrench then help, and search for color.  Then look in the style section.
    Anyway.   Highlight the text you want to be in a different color.  Touch the paintbrush looking icon in the tool bar.  The touch style.  Then touch the name of the font. ( or change the font). A color setting will appear.  Pick what you want.

  • Applescript freezes upon first run when getting 'text of document 1 of application "Safari" '

    I'm working on an applescript that searches the text of a Safari web page for specific text.  The script  freezes / hangs / times out ONLY during the "first run".  By "first run"  I mean the first time the script is run after a period of time has passed. If the script is run a 2nd, 3rd, or 4th time, etc soon thereafter it works perfectly.  If you then wait an extended period of time again, the script freezes exactly as if it were a "first run".  This appears to be independent of whether Safari is open or closed, i.e. the script freezes even if Safari remains open between the last working run and the "first run".
    Details:
    A web page is opened.  I subsequently confirm the page is fully loaded with the following code set-up as a handler:
    tell application "Safari"
         repeat with i from 1 to 15
         if (do JavaScript "document.readyState" in current tab of window 1) is "complete" then
                             exit repeat -- page loading is complete, exiting loop     
         else
                             delay 1
         end if
         end repeat
         if i is greater than or equal to 15 then return false
         if i is less than 15 then return true
    end tell
    The Applescript event log confirms loading is complete and returns a value of true.  I can see the page is fully loaded, and in testing it is fully functional. All is good.
    I then search the text of the fully loaded web page for specific text.  It is this next step where Applescript hangs, but ONLY on the "first run":
    set searchTerm to "find this"
    if text of document 1 of application "Safari" contains (searchTerm as string) then
         -- do stuff
    end if
    The event log shows that applescript starts to "get every text of document 1" and even returns the initial text of the web page but hangs.  Applescrpt returns the following error: "Safari got an error: AppleEvent timed out.  Error -1712".  If I rerun the script at this point the full text of the web page is immediately displayed in the event log, and the script continues succesfully to the end.  The "IF" statement is not the issue per se because I get the same error if I remove the IF and instead set a variable to the value of 'text of document 1 of application "Safari".
    Bottom line - Applescript seems to hang while returning the text of the fully loaded web page, but ONLY on "first run". Any ideas?
    Note:  I've run this directly as an applescript and as a service via Automator.  Same result. I also tried putting the computer to sleep briefly, wake and rerunning the script.  This does not repeoduce the problem so while extended gaps in use cuases the problem, it does not appear that going to sleep during this time is sufficient to cause the issue.

    Thank you twtwtw, very helpful!
    I tried fiddling around with the name of the input variable(s): $@, $0, and $1, and although I could get it to work somewhat, the hangup was always on high ASCII characters like …, —, °, etc…  (They were called “high ASCII” in the old days, perhaps they are called something else now.)
    Checking the long list of output encodings via iconv --list, and trying a bunch of them didn’t work for me.
    But the real trick that worked for me was to do as you said and to change the “Pass input” menu to “to stdin.”
    However, using -t ASCII was suboptimal for high ASCII, so I changed it to -t UTF-8-MAC and it works perfectly now, all the wild international characters and punctuation are maintained! Hooray!  However, upon further testing, removing the pipe to iconv, it seems it’s not needed.
    So this is the final command:
    awk 'BEGIN{print "<ul>"} {print"<li>"$0"</li>"} END{print "</ul>"}'
    So for now this is the whole recipe to create Contextual Menu Items for the Services menu that replaces text snippets with HTML code surrounding them.
    1. Create a new Automator Service document.
    2. Check the box “Output replaces selected text.”
    3. Choose Actions, under Library choose Utilities, then drag Run Shell Script to the working area of the window.
    4. Set the Pass input menu to “to stdin.”
    5. Paste in the command (above).
    6. Save it; I prefix my HTML CMIs with HTML (space space), so this one is, “HTML  unordered list.”
    7. Begin using it. :-)
    Since it took me a while to cobble together the other ones I made, I should probably share them.  Once I get the time to bring over the other “involved” ones I’ll see if I can find out where is the best place to do that.
    Thank you both, red_menace, and twtwtw for your help!

  • I accidentally "formatted" a text edit document, and didn't want to save it - but that's no longer an option How do I retrieve the previous version?

    I created a list of emails on a text edit document that can be easily inserted into an e-blast.  I accidentally did something that cause most of them to form a narrow column - up/down rather than right/left, if that makes sense.   With the very annoying way documents are automatically saved, I'm now stuck with this.  How can this format be un-done?

    Well, you need to try to remember what it is you did. If you have not closed the document or saved it manually since you did the formatting, then it should show up under the Undo. If it is not showing there, then it may have been a setting you changed. Did you change your margins? In the ruler on top, where are the left and right margin indicators? Is the right on really far over toward the left?
    GB

  • Can Spotlight search for text inside documents?

    I just lost a vital email -- detailed instructions for something I want to do, from a friend. And I don't know where I put it (overlapping possibilities exist within my filing structure).
    SHHHH: Windows used to let me search for specific text, inside documents, not just file or folder titles. Can I do that in OSX.8.2?

    Use the Find command or its shortcut:
    to get here:
    and then change the dropdown for Kind to Contains:

  • Change the Accounting document fields cost center and profit center

    Dear Experts,
    User has posted document with wrong profit center
    For that we subjected that he can go to the profit center actual posting T.Code 9ke0 but with that he can only change the Profit center document with that there is no accounting side updating
    I have tried with Document Change Rules, Line Item for fields cost center and profit center  in that while configuring I did not get any error message,
    But in the document I am unable to changing the same fields cost center and profit center  
    Can any body please guide me to resolve the issue?
    Essentially I want to change the Accounting document fields cost center and profit center   
    Thanks in Advance,
    Wiswanath

    Hello,
    Once the documents are posted in FI module, the system doesn't allow anybody to change the cost objects (cost center, profit center, internal order). The only fields you can change through FB02 transaction are the Line item text (BSEG-SGTXT) and the assignment (BSEG-ZUONR).
    If you want to get a change to the cost object to be reflected from FI to CO, you should reverse the FI documents with wrong cost objects and post new documents with correct cost center, profit center.
    Hope it helps you.
    Cheers,
    Daniel.

  • How to listen and obtain caret positions of changed text in JTextPane?

    Hi,
    I have a JTextPane that displays text with some styles on particular words in the text. For example, I highlight words with red color if they are in my dictionary file. I use regular expression to find matches, replace them with their corresponded definitions, and call setCharacterAttributes to add styles to the definitions. I store all start and end caret positions of the matched words/definitions in a vector. So, I can redisplay styles of all previous matches.
    The problem is that I'd like to be able to edit the text of some previous matches. So, with those changes all caret positions that I already store in the vector need to be updated.
    How can I obtain caret positions of changed text in JTextPane?
    How can I know that a user is currently changing text in the JTextPane?
    How can I get style of text such as color that is being changed?
    Thank you very much.

    Thank you very much, camickr, for your reply.
    I think that I might not know the right way to handle JTextPane and Document object.
    What I have done are:
    - Add style to JTextPane using, for example,
    Style targetCurrentMatchStyle = this.targetWindowTextPane.addStyle("Red", null);
    StyleConstants.setForeground(targetCurrentMatchStyle, Color.red);//For highlight - Then, I use regular expression (Pattern and Matcher) to find a match in text. For each match, I get start and end position from matcher.start() and matcher.end().
    if(matcher.find(start)){
    String term=matcher.group();
    int start=matcher.start();
    int end = matcher.end();
    //find definition for the matched term.
    String definition=mydictionaryHash.get(term);
    //Store caret positions in lists
    startPositionList.add(start);
    matchedLength=lengthList.add(definition.length());
    //Add changed to text in textpane
    StringBuffer sb=new StringBuffer();
    matcher.appendReplacement(sb, definition);
    matcher.appendTail(sb);
    //Get translated text from StringBuffer after replacement
    String translatedText=sb.toString();
    targetWindoTextPane.setText(translatedText);
    //Update start position for next search
    start=start+definition.length();
    //Add style to matched regions below.
    }- From the lists of start positions and matched lengths, I use the following code to add "Red" color to the matched text regions including all previously matched.
    for(int i=0;i<startPositionList.size();i++){
    this.targetWindowTextPane.getStyledDocument().setCharacterAttributes(
    startPositionList.get(i),
    lengthList.get(i),
    this.targetWindowTextPane.getStyle("Red"),
    true);
    }My issue is that I'd like to be able edit previously matched regions and update all positions of the matched regions stored in the lists.

  • I need to modified or changes in Ordering Document of Sales order

    Dear All,
    Currently i have a task to modified the changes in Ordering Document of Sales Order where
    Products
    You have ordered the products described below for use in the U.S., and not for resale, unless otherwise specified.
    Currency Used On This Document........
    Changes required in U.S. ----- Pakistan
    Please advice how can i do this.

    How does one remove the following text from the Ordering Document that is generated from Sales Order Preview and Print?
    "Products
    You have ordered the products described below for use in the U.S., and not for resales unless otherwise specified"

  • BAPI change for Budget document

    Hello gurus,
    Could you help me - do you know any BAPI for changing a budget document?
    Thanks,
    Nataļja.

    For example, if I want to change an information in the  "text" field, then save it.
    Nataļja

Maybe you are looking for

  • Processing one file at a time in Biztalk

    We are changing the way we're processing files in that where we used to receive hundreds of small files throughout the day, we are now going to have these files batched into larger files that get dropped to our incoming Biztalk directory. I'm concern

  • Creative Cloud problems since Mavericks update

    Hi Has anyone else had problems using Adobe Creative Cloud since upgrading to Mavericks? I have a Mac Pro at work and everything runs smoothly on that but my 2nd license on my home iMac doesn't work properly. Photoshop won't open and constantly freez

  • JOb is not crating output files in background

    hello experts, Developer has developed one program & output of which is stored in some shared location. when the program is ran from SE38/SA38, the output file is created But when this program is scheduled as background job, the output is not creatd

  • Porting Oracle 7 related application to Oracle 10

    Hello fellas, Currently I am trying to port an application from a legacy workstation that uses oracle 7 DB to SunBlade1500 which uses Solaris 9 and Oracle 10 database. Unfortunately, I faced alot of problem during object linking process, and most of

  • Inconsistent cache even though SXI_CACHE says cache contents are uptodate

    Hi all, The status of SXI_CACHE says contents are up-to-date, but the cache is still inconsistent. For example, I cant see the  sender agreement, sender communication channels, but I am able to see the reciever agreement, etc. All the configuration o