Urgent: SE75 ( text id change)

HI Gurus,
In SE75 can we change savemode of any text id.
For eg, I wish to change the savemode of text id DOC_ITEM to dialog (D) from update (V).
But this isnt allowing me to change since its hard coded to update(V).
This problem I am facing while running invoice printing thru Tcode FB70.
Please come up with ur valuable inputs.
Thanks a lot..

Hi Hema,
Thanks a lot for your valuable inputs.
Cant see Supplier Relationship Management in SPRO.
Is this a setting to be done by functional consultant?
Moreover this is an issue relating to Finance.
Pls do guide me.
Thanks again,
Himayan

Similar Messages

  • Folder action to find and replace text and change line feeds

    I want to use a folder action to find and replace text and change Mac carriage returns to DOS line feeds inside text files.
    The text to be replaced is: "/Users/wim/Music/iTunes/iTunes Music/Music" (without the quotes)
    This text has to be removed (i.e. replaced by an empty string)
    The text occurs many times within each file.
    The files are playlists exported from iTunes in the M3U format (which are text files). They contain Mac carriage returns. These need to be changed to DOS line feeds.
    I have found the following two perl commands to achieve this:
    To find and replace text: perl -pi -w -e 's/THIS/THAT/g;' *.txt
    To change carriage returns to line feeds: perl -i -pe 's/\015/\015\012/g' mac-file
    I know that it's possible to make a folder action with Automator that executes a shell script.
    What I want to do is drop the exported playlists in M3U format in a folder so that the folder action will remove the right text and change the carriage returns.
    My questions are:
    Is it possible to make a folder action that executes command line commands instead of shell scripts?
    What is the correct syntax for the two commands when used in a folder action shell script? Especially, how do I escape the slashes (/) in the string to be removed?
    Thanks for your help

    Ok, I've include an applescript to run a shell command. The applesript command quoted form makes a string that will end up as a single string on the bash command line.  Depending on what you want to do, you may need multiple string on the bash command lines.  I've included some information on folder actions.
    It is easier to diagnose problems with debug information. I suggest adding log statements to your script to see what is going on.  Here is an example.
        Author: rccharles
        For testing, run in the Script Editor.
          1) Click on the Event Log tab to see the output from the log statement
          2) Click on Run
        For running shell commands see:
        http://developer.apple.com/mac/library/technotes/tn2002/tn2065.html
    on run
        -- Write a message into the event log.
        log "  --- Starting on " & ((current date) as string) & " --- "
        --  debug lines
        set desktopPath to (path to desktop) as string
        log "desktopPath = " & desktopPath
        set unixDesktopPath to POSIX path of desktopPath
        log "unixDesktopPath = " & unixDesktopPath
        set quotedUnixDesktopPath to quoted form of unixDesktopPath
        log "quoted form is " & quotedUnixDesktopPath
        try
            set fromUnix to do shell script "ls -l  " & quotedUnixDesktopPath
            display dialog "ls -l of " & quotedUnixDesktopPath & return & fromUnix
        on error errMsg
            log "ls -l error..." & errMsg
        end try
    end run
    How to set up a folder action.
    1) right click on folder. click on Enable folder actions
    2) Place script in
    /Library/Scripts/Folder Actions Scripts
    3) right click on folder. click on attach folder action
    pick your script.
    Create a new folder on the desktop & try.
    You can put multiple folder actions on a folder. There are other ways of doing this.
    Here is my test script:
    on adding folder items to this_folder after receiving dropped_items
        repeat with dropped_item_ref in dropped_items
           display dialog "dropped files is " & dropped_item_ref & " on folder " & this_folder
        end repeat
    end adding folder items to
    How to  make the text into an AppleScript program.
    Start the AppleScript Editor
    /Applications/AppleScript/Script Editor.app
    In Snow Leopard it's at: /Applications/Utilities/AppleScript Editor
    Copy the script text to the Applescript editor.
    Note: The ¬ is typed as option+return.  ption+return is the Applescript line continuation characters.
    You may need to retype these characters.
    Save the text to a file as an script and do not check any of the boxes below.

  • Is there a way to have hardware acceleration without the text font change? + Eye straining firefox!

    Is there a way to have hardware acceleration without the text font change? I remember there was a way to go into settings before and getting hardware acceleration to work without the font change. Unfortunately I lost ALL my previous setting when uninstalling the beta ver Nightly and clicking delete settings :(.
    Also, I fixed a problem before where firefox was visually eye straining to me, I think it was some settings in anti-alias tuner, but I cant seem to find the right settings that puts less strain on my eyes, anyone know? Thanks ahead. Currently using FF7.

    Try to toggle some Boolean gfx.font_rendering prefs on the about:config page to disable some features.<br />
    Filter: gfx
    Others to try:
    * set gfx.direct2d.disabled to true to disable Direct2D
    *Anti-Aliasing Tuner: https://addons.mozilla.org/firefox/addon/anti-aliasing-tuner/

  • Dynamic Text and changing Text in AS3

    I have a Dynamic Text box in my Library.  I drag it to my main stage and give it a name..it is now a movieclip. The name is 'mcAdmin'.  I added an event listener for MOUSE_OVER.  I want the text to change color, but for now I'm just trying to change the text; however, it's not displaying the change in text I want.  I do a trace, and the change is in there on the output window, but it is not displayed as such.  How can I :
    1) use AS3 to change the font color of the text
    2) use AS3 to change the text and have it display?
    function onMouseOver_txtAdmin(e:MouseEvent):void
    Mouse.cursor="button";
    //Current mcAdmin text is 'Administration'
    //I want to change the color of Administartion on Mouse_Over
    //but to test if I can get to anything, I'm just trying to change the text.
    mcAdmin.text="Hello";
    trace(mcAdmin.text);
    mcPPMB.alpha=.5;
    mcASB.alpha=.5;
    mcISO.alpha=.5;
    mcEA.alpha=.5;
    mcAdmin.alpha=1;
    mcAdmin.scaleX=1.25;
    mcAdmin.scaleY=1.25;
    Thanks.

    1st
    give the textfield a name, if it hasn't already (sounds like you put it in a movieclip).
    to change the text set the text property of your text field
    like this
    myTextField_txt.text = "here is the text";
    or if it is inside a movieclip
    myClip_mc.myTextField_txt.text = "here is the text";
    To change the color you would need to put a TextFormat on it. To keep the same fontsize, font etc. you could first get the TextFormat from your existing Textfield, change the color of the TextFormat and set it on the TextField.
    // get the Textformat of the first character
                var TF:TextFormat = myTextField.getTextFormat(0,1)
    // set the font color
                TF.color = 0xff0000;
    // put it on the whole text
                myTextField.setTextFormat(TF)

  • TEXT DETERMINATION (Text id changes)

    Dear All, We would like to see the text id changes in the sales order header ,Please advice how see the changes (date ,time user id).

    Dear Ravi
    Text changes information is wont be recorded in sap only Finding way is as per Bojja Gee explained
    That is only the way  But please check this link also Reports for 'Texts' in Sales Order Header and Item Level - Toolbox for IT Groups
    Text Tables are STXH  ( Header) And STXL ( Item )  but directly we cant see please check that link , if you want Please Take ABAPER Help
    Thanks a lot

  • Newbie question on text label change according to program

    I managed to get the property of the gauge scale (range) changes according to the different measurements selected.BUT the thing is I could not get the text label change and display as differrent measurements is selected. Pls advise

    Thanks Kim"
    I managed to do it. Yes,the name label cannot be changed but the caption text is possible when selected.
    I did it by right-clicking the property node in the REAR(block) diagram. I click on the property and set the caption text. It works now.
    Include here a .jpeg file for other newbies!
    Attachments:
    pic1.jpg ‏51 KB

  • Best Practices for Text That Changes During Sequence?

    I have been using creating videos like the one here, in which text shows up every so often over the scene:
    Making The Walking Dead Pinball Machine - YouTube
    Thus far, I've been creating a title, duplicating it for each time the text changes, and loading each title into the sequence at the time I want it to appear. Is there a simpler way to create text that changes throughout a sequence, so I don't have to worry about each overlay having slight differences in position or other attributes?
    Just curious if there's an easier workflow for putting text over video.
    Thanks!

    You can also save yourself a few steps by duplicating the title through the Timeline by ALT+dragging it to the new location (which creates not only a new track item but also an independent new project item), then double-clicking the new track item to open it in the Titler for editing. But this refinement in your workflow has no bearing on the stated concern re: "differences in position or other attributes"--that's entirely a function of the changes you make within the Titler.

  • A script that can be used to track text content changes in indesign?

    Is there a possibility a script that can be used to track text content changes in indesign. My Indesign software's version is CS3. As you can see below, I have deleted some texts and added some. I did it in another software.
    I have been searched for a long time. Because of my poor English, I still can't come up with any Object Model related to the script yet.
    Here is some idea of mine:
    Use the script tracking my revising texts. When I  add some new texts, the texts will be underlined. When I delete some texts, the position of the first character of the removed text will be added a small red triangle or something.
    Thanks in advance.

    Hidden dragon, what does that mean?
    I can't comprehend fully what you said.
    Is IDML short for Indeisgn Markup Language?
    I think you are telling me that I can open the Indeisgn document by using the software InCopy. Then I have change some contents. InCopy will help me tracking the revision.
    getZinger. Do I get your point?

  • I have an Iphone 4s and mini ipad..I downloaded the app, vz messages..I cannot personalize my texts, fonts, change backgrounds and ringtones????

    I have an Iphone 4S and mini ipad.  I download the app, vz messages...I cannot personalize my texts..change fonts, backgrounds and ringtones..Why not?

    Gina your post was very helpful to me as well. I recently Traded In my Apple IPad 3 WIFI Only Device for a Verizon Wireless Apple IPad Mini Pre-Order. This is actually my very first WIFI + Cellular IPad Purchase. The Price was Finally Affordable.

  • Chnage in Header text when changing the customer

    Dear Experts,
    When i change the customer in sales quotation all the text in header text fields remove. i want to retain this text while change the customer. Can anybody help me who can i retain the Header Text when i change the customer.
    Best regards,

    Hi,
    Even it is the document text which is maintained by you in quotation,will be changed if you change the sold-to-party.
    The text that is maintained either at the Header level or at the item level will be changed if you change the sold-to-party.
    It is the standard setting in SAP.
    Because Sold-to-party is the key field which controls the whole document.So if you change the sold-to-party means every thing will be redetermined.So that the text will be changed.
    For maintaining the text as not changeable,in standard there is no setting.I think with ABAP coding it may be possible.
    Ask you ABAPer to check whether there is any thing that will be used to check this text.
    Regards,
    Krishna.

  • Highlighting the text by changing the "character fill color" with double-spacing?

    Highlighting the text by changing the "character fill color" doesn't seem to go well with double-spacing.
    Has anyone been aware of this issue?
    Try double-spacing the text you highlighted. What's up with this?
    This is so annoying and frustrating. I've been trying to do both of them for like 2-3 hours.
    You CAN do both, of course, but if you double-space the highlighted text, it just creates this huge highlighted part (it highlights the space between the two lines!) below the actual text.
    Anyone help me pleeeeeeeease.

    In Pages v5.2.2, taking Baskerville Regular 12 pt, and double-spacing it with character fill color does produce a nasty effect. With View > Show Rulers, I looked where the lines of text lined up on the vertical scale.
    Then I changed the Spacing selector from Lines to Between. Now, just the text had the character fill color, but the line height had increased visually downward. With the between setting, line height is changed to points, and indicates 27 pt. If you adjust this value to 16 pt, the second line of double-spacing will realign with where it was before the between change, while retaining discrete line character fill color.
    Before: Spacing set to Lines, and 2.0 - Double.
    After: Spacing set to Between, and 16 pt

  • How can I detect when a text field changes in Cocoa-Applescript?

    I'm working on an application where I have one text field, and below it, a "Send" button. When the button is pressed, is sends whatever is typed in the field to all the user's Skype contacts. I have to prevent the user from sending a blank message to all contacts, so I have to change the button's setEnabled. I've been using an NSTimer to check every second, which works, but it lags my application hugely. Is there any handler that is run whenever text is added or deleted? Perhaps something like:
    on myTextFieldDidChange_(aNotification)

    A specific text field is not used in the handler call - the delegate method is called for all text fields.  In the case where you have several text fields, you can get the notification's object, for example:
    on controlTextDidChange_(aNotification) -- a text field changed, so check it out
      set thisTextField to aNotification's object() -- the current control being changed
      set theText to thisTextField's stringValue()
      log theText
      -- whatever
    end controlTextDidChange_
    Note that you need to connect the text field's delegate outlet to your AppDelegate (or whatever class you are using for the delegate).

  • URGENT! text/SMS/iMessage problem

    I am in UK and I am using my iPhone 4S IOS 5.1 to text my girlfriend who is visiting Finland
    She has a 3Gs with IOS 5.1.
    Problem is she is receiving those messages sent as texts (green) but NOT those messages sent as iMessages (blue)
    They seem to change format randomly. I don't get to choose the format.
    Is there a way I can make sure every message is sent as a text? (not an iMessage)
    thanks
    Pete

    Thank you Allan
    Pete

  • Editing text captions changes the Duration setting

    HI,
    I edited a text caption in the Text Caption dialog and closed
    it with the OK button. The duration (Text Caption dialog >
    Options tab > Timing > Display for:) changed although I
    didn't change it. Has anyone had this problem? I looked at the help
    file but didn't find any information.
    Thanks,
    MochaLM

    Hi Rick,
    I sent my reply, but it looks that it didin't get sent, so
    I'm writng this again. Thank you so much for your quick response!!
    I unchecked Calculate Caption Timing, and the problem is resolved.
    You're great! Thanks so much
    !

  • Dynamic action on text box change does not working

    i have a page with following components.
    a report that has and edit link.
    a text box to catch the primary key from report link when it is clicked
    a number of elements (text boxes, check boxes and LOVs) which are used as data entry form.
    Now my design is that user enter values save them and no sooner did they save, the report depicts new
    values. if user want to edit any record, they click on edit link and the data entry form elements
    should now bring all those values from DB on page. i m successful to pick primary key and bring
    it in a hidden text box and wrote a dynamic action on its change event that will bring values from
    DB and set all page elements. but but but.........the change event doesnt work. it only work
    when focus is lost from the text box...!! offcourse user wont want to click in that "hiddent" text
    box and then click some where else to bring values in page data entry form......
    help is humbly requested from forum or if any other solution approach is to be used easier than
    one i m using, would be appreciated.
    thanks in advance for reading my bore question :)

    bundles of thanks for reply. i m going to elaborate.
    1. My page no is 3.
    2. Hidden Item name is P3_EDIT_ACTIVITY_ID
    3. Data entry form, hidden item and the report are on the same page.
    4. on the edit link of report, i have used following settings.
        Target: Page in this application
         Page: 3
         and i set hidden item as follows......
         Item 1   P3_EDIT_ACTIVITY_ID         Value #ACTIVITY_ID#
       well, when i click the link on report it does bring Activity_Id in the hidden box (which is not yet hidden for debugging purpose)
    Next i wrote Dynamic action which fires on the change event of P3_EDIT_ACTIVITY_ID and run PL/SQL code with in it which is as follows
      declare
      Dept varchar(50);
    begin
       select my_dept into Dept from activity_main ACTIVITY_ID = :P3_EDIT_ACTIVITY_ID;
       :P3_Dept := :Dept;          (i did use :P3_Dept := Dept also but this wont work)
      insert into testdynamic (stamp) values (Dept);  (I did this to check whether correct value is brought from DB, yes it works correctly, correct Dept is being inserted in stamp column)
    end;
      i have created another true action to check when the dynamic action is fired. its very simple alert. and the problem is, it only fires when focus is lost from the P3_EDIT_ACTIVITY_ID. i mean, when u keep changing value inside the text box, nothing happens, when u go outside, the alert is fired and so the pl/sql procedure. but the line
        :P3_Dept := :Dept;       OR      :P3_Dept  := Dept;         arent working which is the actual requirement.
      I m not using set value here as i have to set a lot of values on page not one. further. plz let me get rid of this lost focus thing as i want the form to be populated with correct values related to P3_EDIT_ACTIVITY_ID as the user click on any edit_link in the report.
    Thanks for persistence. i hope i have provided all the details.
    looking forward.

Maybe you are looking for

  • OIDSchemaException: Unable to provision user using OID Java API

    Hello, I'm new to OID and am writing java code for User provisioning in OID. I went through the documents available and found that I have to have my Application Registered and Provisioning Configuration done for User Provisioning. Hope I did that cor

  • HT4221 My ipad photos and video are not in any order.

    I have a series of photos and videos that I am using Sync Photos, and it loads them in completely absurd orders, different each time I've attempted. It does not follow the naming convention nor the dates in the order it has. My first sync, the photos

  • Server Error in '/' Application. (while opening sharepoint 2010 intranet portal )

    Hi All,  i am facing a error while opening the my SharePoint 2010 internet portal  "HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review th

  • Need calrification " am not getting error or success message anywhere "

    Dear All, PI PIcks and Arcives the file successfully but i cant find any error or success message in channel monitiring , Moni or Message Monitoring since i am aware that i am passing XML file and doing FCC in sender channel. Pls Explain me why PI Pi

  • Velocity demo: error running the import scripts

    I tried to install velocity demo, when I run import scripts (mydemo_schema.dmp) I get the following error: IMP-00010: not a valid export file, header failed verification IMP-00000: Import terminated unsuccessfully Did someone test it successfully ? O