Replace the text in DUTCH language to ENGLISH in sap-scripts

1)In a layout am having a text say "posisdvnsdb" in dutch language i know the form name print prog name and the window name.
how can i find whether it is hardcoded or getting the text from print program by looking at the script editor
solution required urgently

Hello,
If you know thw window name then check the text editor. If the text is hardcoded inside the window.
Else check any std. text is called inside the window
Starting with /: INCLUDE.
Cheers,
Vasanth

Similar Messages

  • Text is broken in two pages is sap script

    hi all,
    the text is broken in two pages is sap script also total is also breaking. how to fix the problem?
    sanjay

    Hi,
    First in your window goto the text elements. There choose goto->change editor. Now you will be getting a line editor. Here you have to specify protect endprotect and write your code within it.
    Regards,
    Deepthi.

  • Replace the text numbers string in a txt file using C++.. Help Me..

    Read a Document and replace the text numbers in a txt file using c++..
    For ex: 
    Before Document: 
    hai hello my daily salary is two thousand and five and your salary is five billion. my age is 
    twenty-five. 
    After Document: 
    hai hello my daily salary is # and your salary is #. my age is #. 
    All the text numbers and i put the # symbol.. 
    I am trying this code: 
    #include <iostream>
    #include <fstream>
    #include <string>
    using namespace std;
    ifstream myfile_in ("input.txt");
    ofstream myfile_out ("output.txt");
    string line;
    void find_and_replace( string &source, string find, string replace ) {
    size_t j;
    for ( ; (j = source.find( find )) != string::npos ; ) {
    source.replace( j, find.length(), replace );
    myfile_out << source <<endl;
    cout << source << endl;
    int main () {
    if (myfile_in.is_open())
    int i = 0,j;
    //string strcomma ;
    // string strspace ;
    while (! myfile_in.eof() )
    getline (myfile_in,line);
    string strcomma= "two";
    string strspace = "#";
    find_and_replace( line , strcomma , strspace );
    i++;
    myfile_in.close();
    else cout << "Unable to open file(s) ";
    system("PAUSE");
    return 0;
    Please help me.. Give me the correct code..

    Open the file as a RandomAccessFile. Check its length. Declare a byte array as big as its length and do a single read to get the file into RAM.
    Is this a simple text file (bytes)? No problem. If it's really 16-bit chars, use java.nio to first wrap the byte array as a ByteBuffer and then view the ByteBuffer as a CharBuffer.
    Then you're ready for search/replace. Do it as you would in any other language. Be sure to use System.arraycopy() to shove your bytes right (replace bigger than search) or left (replace smaller than search).
    When done, a single write() to the RandomAccessFile will put it all back. As you search/replace, keep track of size. If the final file is smaller than the original, use a setLength() to the new size to avoid extraneous data at the end.

  • 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.

  • PE 13 crashes due to incompatible video driver detected. Running on Win 7 SP1 with ATI 540v video card/driver.  Deleting bad driver file in adobe program data does not fix the problem,  it simply replaces the text file and crashes again.  My video driver

    PE 13 crashes due to incompatible video driver detected. Running on Win 7 SP1 with ATI 540v video card/driver.  Deleting bad driver file in adobe program data does not fix the problem,  it simply replaces the text file and crashes again.  My video driver is just fine.  Any help out there?

    rb
    Your video card driver may be fine for something, but just not compatible with Premiere Elements 13/13.1.
    For those with the display card error, the answers include
    a. assure your video card/graphics card driver version is up to date according to the web site of the manufacturer of the card -
    if necessary consider a driver roll back.
    b. determine in Device Manager/Display Adapters if the computer is using 2 cards instead of 1
    c. delete the BadDrivers.txt file
    the rationale for that deletion is found in post 10 of the following older post...principle applies to 13 as well as 9.
    Re: Premiere Elements 9 Tryout Serious Display Problem
    Have you looked for computer ATI card settings that might be more compatible with Premiere Elements 13/13.1?
    When is the program crashing - just opening a new project or rather crashing if editing a particular video format at the Timeline level?
    ATR

  • To replace the Text like "History,Back" with Images in Page Title bar

    Hi All,
    My requirement is to change the Text like "History,Back Forward" Texts with the Images in the Page Title bar.Under theme editor I dont have an option to replace with Image.
    I checked with the com.sap.portal.navigation.pagetoolbar.par file.I am not getting exactly where to replace the Text with Images.
    Please let me know if I am referring to the correct par file and where to make changes.
    Regards
    Akshaya
    Edited by: Akshaya Bhat on Jun 9, 2009 2:58 PM

    Hi,
    It depends if the WDJ application has made another navigation.
    History saves any navigations made by the user (TLN/DTN,etc) or navigation done by applications in code (wdDoNavigate, EPCM.doNavigate).
    So it can go back to previous view , or previous iview the user was at...
    Regards,
    Tal.

  • How to translate std. ABAP report in german language to English in SAP

    Dear All,
    How to translate std. ABAP code in German language to English in SAP ?

    Hi,
    code does not need to be translated.
    Data elment descriptions, documentation, text elements, etc. can be translated in the transaction se63.
    Also you can translate almost each single object in the editor in the menue  goto-translation.
    Regards,
    Gianpietro

  • How to create a FSV with the text groups in spabish and English

    Hi gurus,
    could you help me with a issue. I want to know where i can add the text in english in the groups of the fse2 , because i have tha configuration with spanish text but when i execute the f.01 with the language EN the system do not give text in English. So could you help me?
    best regards!

    I just tried it with our FSV, system language is EN and i executed the report in DE. I could see german texts but not on the FS items.
    I dont know, if that is possible because these are custom texts/input fields from you as compared to the system text converted to the required language on the report header and other layout fields
    If you want the FS items to also show text in 2 languages, i recommend creating another FSV in the alternate language and using it.

  • Few of the text in Tibetan language subtitle is not showing correctly

    Dear frds, I am working on 2 hours project which consist of 3 language i.e. English, Russian and Tibetan. Both English and Russian is showing correct while importing in Encore DVD 2 but few of the text which is in Tibetan Subtitle is not showing correctly. I have choosen the font correctly still few of the text is not correct format.
    Is there any way to correct my Tibetan language text either by disabling speeling or grammer check or something else ???
    Or is there any other way to import the subtitle is Picture format ???
    Will be thankful for your kiind help. I stuck my project, please help me...

    did you get a solution to this?
    We had Encore cs3 and that didn't handle Tibetan well.
    Did you use Encore Cs6 to get Tibetan to work ?

  • 5310 (no dutch language) only english

    I hava a nokia 5310 but after a updat is everything in english!!!
    and T9 with sms only english. What must i do??
    please can somebody help me?
    thanks adam1411

    take your phone to the Nokia care point center to install dutch language pack.
    NOKIA means:Night Of King In Alone

  • How to find and replace the text present in the url

    I have a column of type NCLOB with some text having url's in between as shown below:
    ========================================================================
    This text is for testign purpose.This text is for testign purpose.
    <A PL/SQL <U PL/SQL </U> </A>
    Thsi text is also for testign purpose.This text is for testign purpose.
    <A http://forums.oracle.com> <U oracle metalink> </U> </A>
    This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.
    ========================================================================
    Requirement:
    ========
    Requirement is to implement the find and replace functionality.
    I just need to check whether the search text is present in the url or not?
    Suppose if search for orcale.com, since its part of the url so the search should be successful otherwise search should be unsuccessful.
    Here I can give you the hint like, always the url lies between the anchor tags *(<A </A>).*
    Tahnks in Advance.

    I had I think a similiar question the other day thay I Frank and Michaels answered for me.
    not sure if I totally have what you want but.
    WITH t
            AS (SELECT '<A PL/SQL <U PL/SQL Thsi text is also for testign purpose.This text is for testign purpose.
    <A http://forums.oracle.com> This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.
                          txt
                  FROM DUAL)
    SELECT REGEXP_SUBSTR (REGEXP_REPLACE (txt, '(.*<A)|(</A>.*)'), 'oracle.com')
      FROM tthe first part the regexp replace part gets the text between a start and end point you mentioned that would be <A and </A>
    the regexp substr just looks for the phrase oracle.com in the text between those two points.
    Edited by: pollywog on Oct 6, 2010 8:26 AM

  • Replacing the text in a file

    I am having sql loader control file. In that, the value for INFILE is 'C:/MYDATA_<YYYY>_<MM>_<DD>.txt'. The filename changes daily based on sysdate.
    Since there is some limitation in sql loader, I am planning to run the PL/SQL scheduled program in apps which will read the control file and replace the infile with the correct file name (exa: MYDATA_2010_09_23.txt).
    The control file <test.ctl> is:
    LOAD DATA
    INFILE 'c:/mydata_<yyyy>_<mm>_<dd>.txt'
    BADFILE 'c:/mydata_<yyyy>_<mm>_<dd>.bad'
    DISCARDFILE 'c:/mydata_<yyyy>_<mm>_<dd>.dsc'
    APPEND
    INTO TABLE interface_stg
    FIELDS TERMINATED BY '|' TRAILING NULLCOLS
    A_DATE DATE "YYYY-MM-DD",
    USER_NAME,
    DESCRIPTION,
    NAME
    Please help me to achieve this.
    Thanks in advance.

    ok. In that case, write a Shell script, in which you can generate the file_name as per current date and pass it to SQLLDR command that you use in shell script.
    Now register the Shell Script as an executable in oracle applications, and schedule the concurrent program as per your requirements which becomes automated with no manual interventation.
    Edited by: AP on Sep 23, 2010 9:23 AM

  • Can I edit/replace the text of a business card I scanned as a pdf?

    I'm using PSE 9 on Windows XP with SP3.
    My wife and I are in an organization called Love on a Leash which brings dogs to people in
    hospitals, nursing homes, assisted living facilities, etc. They have a very nice business card
    that we can use on the visits. I scanned in the card for our chapter leader into Acrobat.
    Then I opened that pdf in PSE. All I really need to do is change the name, e-mail and
    phone number and we would be set. But I thought before I started hunting and pecking I'd
    post to see if there was an easy/best way to accompish that task.
    Thanks for any help or advice.

    Hey, I tried that and that worked great.
    I hadn't used the Clone Stamp tool before.
    Thanks for the tip.
    I also found a way to duplicate the color (I think).
    When I started the Text Tool, I clicked in the box in the tool bar that has a bubble that says 'Set the text color'.
    That brings up the Select the color window.
    From there I can navigate out to my card image and the pointer changes to the Eyedropper.
    There I can pick up a drop of the color that I need. Another problem solved!

  • Text getting overwritten in first page of SAP Script

    Hi All,
    My Requirement:
    1. I have a SAP Script which has a main window which prints the internal table data
    2. I have created a instance of Mainwindow to display watermark.
    3. Now, everything seems to be fine while displaying the watermark/foreground text.
    Problem is:
    4. If the data exceeds 15 records(i.e, end of the main page), 16th record starts printing from the top of the main window again.
    5. This continues till the end of the 30th record(i.e., it is Overwriting all the first 15 records) and the 31st records is getting printed in the 2nd page.
    6. FYI, I have maintained the header in such a way that 2nd Page should be triggered after the first.
    7. Also, I have called the windows in the correct order
    What could be the problem? Is it because, I have created an instance of main window to display the text. If that is the case, how to resolve this ??? Any thoughts on this would be highly appreciated

    Hello Richa,
    I tried creating a variable window and inserted a Watermark on it.The thing is, Watermark is not getting displayed.I tried both the ways calling the watermark before displaying the text and after displaying the text.
    Hello Ravi,
    See to display the watermark, I created an instance of mainwindow by using
    So, this main window which is an instance of the actual main window will have the same co-ordinates.
    I think, this has got nothing to do with that. But, there is something that is missing out here.
    Hello Rajani,
    I tried using Protect and End Protect. But, it didnot work
    Hello Sarves,
    I tried creating a variable window exactly the size of the main window and then placed the variable window back of the main window. But, I am not able to see the watermark in the preview.
    If I am missing something, please let me know.
    Thanks in advance........

  • Standard Text not starting on current page in sap script

    Hi all,
           I have a sapscript which displays a dynamic table. After that table I have included the standard text.
    Ideally this standard text should display immediately after the table. But this is not happening. After the table, entrire page is left blank, and standard text starts from the next page.
    How can i display standard text immediately after the table.

    Hi,
        Try with calling PROTECT and ENDPROTECT using function module CONTROL_FORM in driver program.
    CALL FUNCTION 'CONTROL_FORM'
              EXPORTING
                command = 'PROTECT'.
            PERFORM item_dynamic_table.
            PERFORM item_standard_text.
            CALL FUNCTION 'CONTROL_FORM'
              EXPORTING
                command = 'ENDPROTECT'.
    Call the TEXT elements in corresponding performs.
    Regards
    Bala Krishna

Maybe you are looking for