Need to convert original language to EN in SAPscript

Hi all
I have copied a standard form and need to convert the language to EN but when I go to Utilities the option of convert original language is disable.
How can I go for it.
Regrds
Mona

Hi,
Goto SE71 of your script and identify the original language in header details.
Now goto SE71, form name with original language and click change, usually if you check the radio button trnslate to all languages it is available in all languages... now if you want the form to be avialable in only few languages, click radio button to individual languages and click arror language selelction and select ES... and EN now form will be available in EN and Spanish...save and activate.
Or
Go to se71->changeform->form menu->copy from.
u will find the option to change langauage.
Regards,
Satish
Edited by: Satish Panakala on Apr 17, 2008 12:51 PM

Similar Messages

  • Original language in SAP Script

    Hi,
    I copied a standard form from client 000 into a Z form. How can i set its orginal languages as english ?

    Go to the "DE" version of your "Z" form.   Click utitlies,  convert original language. 
    Regards,
    Rich Heilman

  • I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    The application Acrobat provides no language translation capability.
    If you localize the language for OS, MS Office applications, Acrobat, etc to the desired language try again.
    Alternative: transfer a copy of content into a web based translation service (Bing or Google provides a free service).
    Transfer the output into a word processing program that is localized to the appropriate language.
    Do cleanup.
    Be well...

  • Need to convert language from English to Thailand

    Hi Gurus,
    Can any one let me know the procedure of language conversion,
    like i need to convert the available statement in report from English to Thailand.
    Is their any function module to convert, please let me know.
    thanks
    balu.

    Hi,
    Do you want text in Thailand , when your logon language is English that to dynamic text ? is it so.
    If not  I think  you can do this using Translation  .
    Mintain text-elements and then GOTO -> Translation.
    When you logon in that particular language then it will be displayed in that language only.
    Regards,
    Rajitha.

  • Need to convert JApplet to JFrame

    I need to write code for where I have 60 balls bouncing around inside a window. The client will then be able to select a button and it will pull out a ball with the number 1-60 written on it. The user will be able to do this up to 7 times. Each time it is done the past numbers that have already appeared can not reappear. What I am stuck on right now is geting my balls into a JFrame. Can anyone give advice or show how to. I currently have my 60 balls running in a JApplet. Here is the JAVA code and the HTML code. Thanks!
    Here is the JAVA code
    import java.awt.*;
    import java.applet.*;
    import java.util.*;
    import javax.swing.*;
    class CollideBall{
    int width, height;
    public static final int diameter=20;
    //coordinates and value of increment
    double x, y, xinc, yinc, coll_x, coll_y;
    boolean collide;
    Color color;
    Graphics g;
    Rectangle r;
    //the constructor
    public CollideBall(int w, int h, int x, int y, double xinc, double yinc, Color c){
    width=w;
    height=h;
    this.x=x;
    this.y=y;
    this.xinc=xinc;
    this.yinc=yinc;
    color=c;
    r=new Rectangle(150,80,130,90);
    public double getCenterX() {return x+diameter/2;}
    public double getCenterY() {return y+diameter/2;}
    public void alterRect(int x, int y, int w, int h){
    r.setLocation(x,y);
    r.setSize(w,h);
    public void move(){
    if (collide){  
    double xvect=coll_x-getCenterX();
    double yvect=coll_y-getCenterY();
    if((xinc>0 && xvect>0) || (xinc<0 && xvect<0))
    xinc=-xinc;
    if((yinc>0 && yvect>0) || (yinc<0 && yvect<0))
    yinc=-yinc;
    collide=false;
    x+=xinc;
    y+=yinc;
    //when the ball bumps against a boundary, it bounces off
    if(x<6 || x>width-diameter){
    xinc=-xinc;
    x+=xinc;
    if(y<6 || y>height-diameter){
    yinc=-yinc;
    y+=yinc;
    //cast ball coordinates to integers
    int x=(int)this.x;
    int y=(int)this.y;
    //bounce off the obstacle
    //left border
    if(x>r.x-diameter&&x<r.x-diameter+7&&xinc>0&&y>r.y-diameter&&y<r.y+r.height){
    xinc=-xinc;
    x+=xinc;
    //right border
    if(x<r.x+r.width&&x>r.x+r.width-7&&xinc<0&&y>r.y-diameter&&y<r.y+r.height){
    xinc=-xinc;
    x+=xinc;
    //upper border
    if(y>r.y-diameter&&y<r.y-diameter+7&&yinc>0&&x>r.x-diameter&&x<r.x+r.width){
    yinc=-yinc;
    y+=yinc;
    //bottom border
    if(y<r.y+r.height&&y>r.y+r.height-7&&yinc<0&&x>r.x-diameter&&x<r.x+r.width){
    yinc=-yinc;
    y+=yinc;
    public void hit(CollideBall b){
    if(!collide){
    coll_x=b.getCenterX();
    coll_y=b.getCenterY();
    collide=true;
    public void paint(Graphics gr){
    g=gr;
    g.setColor(color);
    //the coordinates in fillOval have to be int, so we cast
    //explicitly from double to int
    g.fillOval((int)x,(int)y,diameter,diameter);
    g.setColor(Color.white);
    g.drawArc((int)x,(int)y,diameter,diameter,45,180);
    g.setColor(Color.darkGray);
    g.drawArc((int)x,(int)y,diameter,diameter,225,180);
    public class BouncingBalls extends Applet implements Runnable {
    Thread runner;
    Image Buffer;
    Graphics gBuffer;
    CollideBall ball[];
    //Obstacle o;
    //how many balls?
    static final int MAX=60;
    boolean intro=true,drag,shiftW,shiftN,shiftE,shiftS;
    boolean shiftNW,shiftSW,shiftNE,shiftSE;
    int xtemp,ytemp,startx,starty;
    int west, north, east, south;
    public void init() {  
    Buffer=createImage(getSize().width,getSize().height);
    gBuffer=Buffer.getGraphics();
    ball=new CollideBall[MAX];
    int w=getSize().width-5;
    int h=getSize().height-5;
    //our balls have different start coordinates, increment values
    //(speed, direction) and colors
    for (int i = 0;i<60;i++){
    ball=new CollideBall(w,h,50+i,20+i,1.5,2.0,Color.white);
    /* ball[1]=new CollideBall(w,h,60,210,2.0,-3.0,Color.red);
    ball[2]=new CollideBall(w,h,15,70,-2.0,-2.5,Color.pink);
    ball[3]=new CollideBall(w,h,150,30,-2.7,-2.0,Color.cyan);
    ball[4]=new CollideBall(w,h,210,30,2.2,-3.5,Color.magenta);
    ball[5]=new CollideBall(w,h,360,170,2.2,-1.5,Color.yellow);
    ball[6]=new CollideBall(w,h,210,180,-1.2,-2.5,Color.blue);
    ball[7]=new CollideBall(w,h,330,30,-2.2,-1.8,Color.green);
    ball[8]=new CollideBall(w,h,180,220,-2.2,-1.8,Color.black);
    ball[9]=new CollideBall(w,h,330,130,-2.2,-1.8,Color.gray);
    ball[10]=new CollideBall(w,h,330,10,-2.1,-2.0,Color.gray);
    ball[11]=new CollideBall(w,h,220,230,-1.2,-1.8,Color.gray);
    ball[12]=new CollideBall(w,h,230,60,-2.3,-2.5,Color.gray);
    ball[13]=new CollideBall(w,h,320,230,-2.2,-1.8,Color.gray);
    ball[14]=new CollideBall(w,h,130,300,-2.7,-3.0,Color.gray);
    ball[15]=new CollideBall(w,h,210,90,-2.0,-1.8,Color.gray);*/
    public void start(){
    if (runner == null) {
    runner = new Thread (this);
    runner.start();
    /* public void stop(){
    if (runner != null) {
    runner.stop();
    runner = null;
    public void run(){
    while(true) {
    Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
    try {runner.sleep(15);}
    catch (Exception e) { }
    //move our balls around
    for(int i=0;i<MAX;i++)
    ball[i].move();
    handleCollision();
    repaint();
    boolean collide(CollideBall b1, CollideBall b2){
    double wx=b1.getCenterX()-b2.getCenterX();
    double wy=b1.getCenterY()-b2.getCenterY();
    //we calculate the distance between the centers two
    //colliding balls (theorem of Pythagoras)
    double distance=Math.sqrt(wx*wx+wy*wy);
    if(distance<b1.diameter)
    return true;
    return false;
    private void handleCollision()
    //we iterate through all the balls, checking for collision
    for(int i=0;i<MAX;i++)
    for(int j=0;j<MAX;j++)
    if(i!=j)
    if(collide(ball[i], ball[j]))
    ball[i].hit(ball[j]);
    ball[j].hit(ball[i]);
    public void update(Graphics g)
    paint(g);
    public void paint(Graphics g)
    gBuffer.setColor(Color.lightGray);
    gBuffer.fillRect(0,0,getSize().width,getSize().height);
    gBuffer.draw3DRect(5,5,getSize().width-10,getSize().height-10,false);
    //paint our balls
    for(int i=0;i<MAX;i++)
    ball[i].paint(gBuffer);
    g.drawImage (Buffer,0,0, this);
    Here is the HTML code
    <html>
    <body bgcolor="gray">
    <br><br>
    <div align="center">
    <applet code="BouncingBalls.class" width="1000" height="650"></applet>
    </div>
    </body>
    </html>

    In the future, Swing related questions should be posted in the Swing forum.
    First you need to convert your custom painting. This is done by overriding the paintComponent() method of JComponent or JPanel. Read the Swing tutorial on [Custom Painting|http://java.sun.com/docs/books/tutorial/uiswing/TOC.html].
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    Don't forget to use the [Code Formatting Tags|http://forum.java.sun.com/help.jspa?sec=formatting], so the posted code retains its original formatting.

  • Need to convert over video 100 files to iPod quality files

    i have over 100 .mov files that i need to convert to mp4 in order to play on my Palm Treo 700p...
    each original file is approx 78 to 81 megs... about 39 to 40 minutes of video. i am converting ONE file now and it told me it would take about 1 hour 55 minutes to convert it to the "convert to iPod" preset
    at that rate, it will take forever to convert all these files... is there a faster way? or better settings to use in quicktime?
    they don't have to be extremely high quality, they are lessons for bible classes i am taking, but i'd like the audio to be decent and for the video to be clear and not fuzzy...
    thanks for any help you can provide.

    I have both VisualHub and MPEG Streamclip.
    At the moment, I only use VisualHub to handle a few quirky .mpg files which MPEG Streamclip had problems with (data breaks that aren't fixed) and FLV file conversion (because I don't have the new beta version of S'clip, which supports FLV).
    But as Rick said, MPEG Streamclip works wonders for pretty much everything else. I still would recommend that first before VisualHub.
    Steve

  • Need to Convert PDF to doc in Russian, why programm do not recognice it?

    Need to Convert PDF to doc in Russian, why programm do not recognice it?

    Hi alsu22,
    The OCR system that converts documents does not recognize any cyrillic languages, such as Russian.  If the text is already renderable (selectable), you may want to try converting your document without the OCR function enabled. You can find steps here: http://forums.adobe.com/docs/DOC-3062
    -David

  • Explicit cast needed to convert java.* to to oracle.*

    Hello,
    I am trying to compile and run the following JSP but keep getting the "Incompatible type for = Explicit cast needed ..." error. The JSP and oracle procedure code are as follows:
    <%@ page language="java" import="java.sql.*" %>
    <%@ page import="oracle.jdbc.driver.*" %>
    <HTML>
    <HEAD>
    <TITLE>
    SimpleQuery JSP
    </TITLE>
    </HEAD>
    <BODY BGCOLOR=EOFFFO>
    <TABLE BORDER=1 BGCOLOR="C0C0C0">
    <TH BGCOLOR="white"> <I>Node ID</I> </TH>
    <%
         Connection con = null;
    OracleCallableStatement cstmt= null;
         ResultSet rs = null;
    try {
              String SYSTEM_DB_DRIVER =
    "oracle.jdbc.driver.OracleDriver";
    String SYSTEM_DB_URL =
    "jdbc:oracle:thin:@myserver.com:1521:";
    String SYSTEM_DB_FILE = "CONN_STRING";
    String SYSTEM_DB_USER = "UNAME";
    String SYSTEM_DB_PASSWORD = "PASSWD";
              Class.forName(SYSTEM_DB_DRIVER);
    con = DriverManager.getConnection(SYSTEM_DB_URL +
    SYSTEM_DB_FILE, SYSTEM_DB_USER, SYSTEM_DB_PASSWORD);
              cstmt = con.prepareCall("call eaicl_p_requirement.open_rule_dtl(?,?)");
              cstmt.registerOutParameter(1, OracleTypes.CURSOR);
    <<I think I have to pass the p_product_id_in here but not sure how>>
              cstmt.execute();
              rs = ((OracleCallableStatement)cstmt).getCursor(1);
              while(rs.next())
              {%>
         <TR>
         <TD ALIGN=CENTER> <%= rs.getString(1) %> </TD>
         <TD ALIGN=CENTER> <%= rs.getInt(2) %> </TD>
    </TR>
              <%}
                   rs.close();
    cstmt.close();
    con.close();
    catch(Exception e)
    %>
    </TABLE>
    </BODY>
    </HTML>
    The Oracle PL/SQL package.procedure it is calling is:
         PROCEDURE open_rules_dtl (
              prc_rules_dtl_out          OUT     rc_fetch_rule_dtl,
              p_product_id_in          IN          NUMBER )
         IS
              vrc_rules_dtl               rc_fetch_rule_dtl;
         BEGIN
              OPEN vrc_rules_dtl FOR
                   SELECT
                        r.rule_id,
                        r.rule_name,
                        r.rule_objective,
                        r.rule_description,
                        r.clearance_requirement,
                        r.rule_type
                   FROM
                        eaicl_rule r
                   WHERE
                        r.is_old = 'N' AND
                        r.product_id = CHR( p_product_id_in )
                   ORDER BY
                        r.rule_name
              prc_rules_dtl_out := vrc_rules_dtl;
    END open_rules_dtl;
    I keep getting the following error on the webserver:
    [05/Dec/2001:16:56:02] info ( 632): JSP: JSP1x compiler threw exception
    org.apache.jasper.JasperException: Unable to compile class for JSPC:\iPlanet\Server4\https-wacc\config\..\ClassCache\_jsps\_ss_test5_jsp.java:84: Incompatible type for =. Explicit cast needed to convert java.sql.CallableStatement to oracle.jdbc.driver.OracleCallableStatement.
              cstmt = con.prepareCall("call eaicl_p_requirement.open_rule_dtl(?,?)");
              ^
    I'm not sure how to fix it. I also need to pass the p_product_id parameter to the procedure.
    Hope someone can point me in the right direction. Thanks.

    Here's how you do an explicit cast:cstmt = (OracleCallableStatement)con.prepareCall("call eaicl_p_requirement.open_rule_dtl(?,?)");

  • How do I convert Russian-language PDF to .RTF or .DOCX?

    I purchased a subscription before learning that Russian was not a conversion language choice. I need to convert a long document, but now am stymied. What can I do?

    I am running Adobe Reader X and am trying to save a large PDF file as a .TXT file. I use Save As, Text and place the file in the desired folder. I end up with a .txt file containing 0 bytes. Do I not have the correct Reader version? Or is there something else at play here.
    BTW, thank you for your quick responses!!
    Bill

  • Change object original language in ESR?

    Hello,
    I've imported a third party software component in my ESR. It has a preconfigured integration for it's own tool with SAP ECC. There are a lot of mappings, data types, BPMs, etc...
    The problem is when I open for example a Message Mapping I get the following warning:
    Original language Spanish for current object collides with permitted display or editing languages EN; contact your system administrator.
    This happens because the developer has created the objects in his own PI in Spanish, but I want to have them in English.
    I've tried to copy the object to generate a new one in English, but the copy still conserves the language issue... How can I solve this?

    Hi,
    You don't have to export the objects again. You can open the objects in edit mode in ESR, then select the object menu -> properties. Here you can set language English. You would need to do this for all objects though. When you save and activate the original language for the objects should be updated.
    Br,
    Kenneth

  • Do we need to convert Chinese/Japanese properties to Unicode?

    Dear friends,
    I am new to this Internationalization concept. I have a web application and I am looking forward to implement Internationalization.
    To make my app support muti-language, I am using Locale & Resource bundle to find properties files based on Country and Language. I have different properties files based on countries. This works fine when there are unicode characters and no special characters in the property file.
    For eg. the application doesn't displays Chinese/Japanese characters with System.out.println at all. It displays something weird symbols..
    P.S : I haven't converted Chinese/Japanese properties files to Unicode with native2ascii tool?
    An important question for me is,
    1) Do we need to convert Chinese/Japanese or any non-unicode related properties files with native2ascii tool?
    2) Is there any other way to read such properties files without converting them with native2ascii tool?
    3) We have made fixed UTF-8 format policy for the app. Is there any way to read those properties file with UTF-8 mechanism without need to convert the properties files?
    4) If anyone has quick example code for displaying Chinese/Japanese characters from properties file, then that would be a great help.
    Thanks a million. Any help would be highly appreciated.
    sachin

    System.out.println display depends on the system locale. If you are running on a US English system, Chinese and japanese will not display correctly in the console.
    Your properties file questions:
    1) Do we need to convert Chinese/Japanese or any non-unicode related properties files with native2ascii tool? yes
    2) Is there any other way to read such properties files without converting them with native2ascii tool? - no
    3) We have made fixed UTF-8 format policy for the app. Is there any way to read those properties file with UTF-8 mechanism without need to convert the properties files? no

  • Text maintenance only possible if you logon in original language message

    Hi,
        I am trying to change the descrption of a role in transaction PFCG and I am getting the following message "Text maintenance only possible if you logon in original language DE".
        Can someone let me know what needs to be done.
    Thanks

    Hi Shiv,
    Have you seen OSS note 854311...it may help you here.

  • Do i need to convert my Nikon D 800 video to Pro res files to work in FCP X?

    Do i need to convert my nikon D 800 video footage from H.264 to Pro res to work in Final cut pro X?

    You can import your footage directly to FCP X.
    FCP X can work with the native footage. Inside FCP X you can create "Optimized Media", which is in ProRes 422.
    You may not need to, depending on the edits you make (how many effects, etc). Since you can create optimized media at any time, I suggest you try it. If FCP X is slow editing your original media, optimize.

  • How can I buy films in languages other than German in Germany? Quite disappointed, i would line to watch films in Original language and not dubbed in strange ways...

    How can I buy films in languages other than German in Germany? Quite disappointed, i would like
    to watch films in Original language and not dubbed in strange ways...

    You are at the mercy of the content owners/copyright holders. They decide what the Apple can sell in each iTS.
    MJ

  • Need to convert to .img file

    I have an image, currently in .bmp format, but can be changed to .jpg or .tiff. I need to convert it to .img. I'm running CS6 on a Mac.

    Are you sure you don't mean img in the file name?
    Some cameras create file name like: img001.jpg, img002.jpeg, etc.
    Googling .img points to some type of image in AutoCAD?
    I find it hard to believe that AutoCAD cannot work with .jpg or tiff.
    .JPG is pretty universally accepted by all applications that deal with images.
    Who is asking you for an image with the .img file extension and what are they planning to do with it, (use in what application)?

Maybe you are looking for

  • Getting Exception of MessagingException

    Hi All, I am developing Email Application which retrieve the emails from the Gmail Account. But I am getting the Exception: 1) javax.mail.MessagingException: Connect failed;  nested exception is: java.io.IOException: Couldn't connect using "javax.net

  • DVD-RW Media

    Just attempted to back-up my iTunes inventory to DVD-RW media. The drive takes in the disc, then spits it out a moment later. The media is DVD-RW 4X. Is this the incorrect spec for my super drive? The iMac is 15" G4, 800 Mhz. The super drive is pione

  • How to link to file in new window?

    I'm building a portfolio site. Right now, I know that I can open a new window when linking to an external page or even one of my own pages. However, I want to link to files that will open a new window instead of reloading the current page. For exampl

  • Weird Thing Just Happened When Creating a Ringtone

    After the switch was flipped "on" for creating ringtones, I decided to try it out. I had at least 25 songs that had the bell next to it, but when I decided to cancel on the 1st ringtone I tried to create, all those songs lost the bell icons. Now I ha

  • IMP - EXP and storage parameters

    Hi All, I am planning to import few tables from one database to another database using our good old import-export (even when I am on 10g). Tables which I am importing do not exist in the target database. So, when I create them from the export dump, I