HTML picture code generator

I have
null

Sorry my computer crashed there and I can't log back into my account.....anyway as I was going to say. I appologise for that first comment mess up.
well I've finished a program that generates html code for people on websites like myspace who don't know how to code in xhtml, and I'm just making it open source for people to use and if anyone would like to improve on this or change something, add something or what ever I would like to see what you come up with =D
Or if you just like to comment on my code, I've just started to learn java so any bad habbits that I have I want to try and get rid of them now :P
* SimpleFrame class
* @date 18/06/06
import javax.swing.*;
public class SimpleFrame extends JFrame {
     public void showIt()
          this.setVisible(true);
     public void showIt(String title)
          this.setTitle(title);
          this.setVisible(true);
     public void showIt(String title,int x,int y)
          this.setTitle(title);
          this.setLocation(x,y);
          this.setVisible(true);
* Main Class
* @date 18/06/06
import java.awt.*;
import javax.swing.*;
public class Main extends SimpleFrame {
     Panel panel = new Panel();
     public static void main(String[] args)
          Main main = new Main();
          main.showIt("html picture code maker");
     // Labels, TextFields and Buttons
     private JLabel info = new JLabel(" Welcome to the html picture code generator");
     private JLabel name = new JLabel(" Name of picture:");
     private JLabel link = new JLabel(" Link:");
     private JLabel height = new JLabel(" Height of picture (e.g. 200) :");
     private JLabel width = new JLabel( " Width of picture (e.g. 200) :");
     private JTextField nameText = new JTextField();
     private JTextField linkText = new JTextField();
     private JTextField heightText = new JTextField();
     private JTextField widthText = new JTextField();
     // Buttons at the bottom of the page
     private JButton more = new JButton("More");
     private JButton finish = new JButton("Finish");
      * Adding JLabels, TextFields and Buttons to constructor
     Main(){
          Listener listener = new Listener(this);
        // Setting size and colour
          this.setBackground(Color.WHITE);
          this.setPreferredSize(new Dimension(400,400));
          // Setting Layout
          BorderLayout borderLay = new BorderLayout();
          this.setLayout(borderLay);
          this.setLayout(new GridLayout(0,1));
          this.setLocation(200,200);
          // Adding Labels, TextFields and buttons
          this.add(info);          
          this.add(name);          
          this.add(nameText);
          this.add(link);
          this.add(linkText);
          this.add(height);
          this.add(heightText);
          this.add(width);
          this.add(widthText);
          //this.add(more);
          this.add(finish);
          pack();
          // Adding listeners to the buttons
          more.addActionListener(listener);
          finish.addActionListener(listener);          
      *  Method to get the Name of the picture
      *  entered into the text field
     public String getName()
          return nameText.getText();
      *  Method to get the Link of the picture
      *  entered into the text field
     public String getLink()
          return linkText.getText();
      *  Method to get the Height of the picture
     public String getPicHeight()
          return heightText.getText();
      * Method to get the Width of the picture
     public String getPicWidth()
          return widthText.getText();
* Listener Class
* @date 18/06/06
import java.awt.*;
import java.awt.event.*;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintWriter;
import javax.swing.*;
public class Listener extends JFrame implements ActionListener{
     Main main;
     Listener(Main p){main = p;}
     public void actionPerformed(ActionEvent e)
          String actionCommand = e.getActionCommand();
          if(actionCommand.equals("Finish"))
               addToFile();
               leave();
      * Method that prints out all the html code
      * to the txt file
     public void addToFile()
          PrintWriter outputStream = null;
        try
            outputStream =
                new PrintWriter(new FileOutputStream("html.txt"));
        catch(FileNotFoundException e)
            System.out.println("Error opening the file");
        outputStream.println("<img src=\"" + main.getLink()+ "\""
                  + "alt=\"" + main.getName() + "\""
                  + "width=\"" + main.getPicWidth()
                  + "\"" + "height=\""
                  + main.getPicHeight() + "\"/>");
        outputStream.close();
      * Method to leave the program
     public void leave()
          ButtonListener buttonListener = new ButtonListener();
          getContentPane().setLayout(new BorderLayout());
          JLabel label = new JLabel(" Thank you for using my program :)");
          //label.addMouseListener(this);
          add(label, BorderLayout.CENTER);
          JPopupMenu m = new JPopupMenu("Menu");          
          m.addSeparator();          
          label.setComponentPopupMenu(m);               
          pack();
          setLocationRelativeTo(this);
          JButton ok = new JButton("Close");               
          this.add(ok);     
          ok.addActionListener(buttonListener);          
          this.setLayout(new GridLayout(0,1));
          this.setSize(260, 200);
        this.setVisible(true);     
        this.setTitle("HTML");
        this.setLocation(300,300);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
     public void mouseExited(MouseEvent m){     
    public void mouseEntered(MouseEvent m){     
    public void mousePressed(MouseEvent m){     
    public void mouseReleased(MouseEvent m){     
    public void mouseClicked(MouseEvent m){
* ButtonListener Class
* @date 18/06/06
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class ButtonListener implements ActionListener{
     public void actionPerformed(ActionEvent e)
          String actionCommand = e.getActionCommand();
          if(actionCommand.equals("Finish"))
               System.out.println("Test");
          else if(actionCommand.equals("Close"));
               System.exit(0);
}

Similar Messages

  • Automatic html code generated in {module_case} output

    Does anyone know a work around for the automatic spacing and carriage return that BC system generates when the {module_case} is displayed?  I have BC form that is transferring this data from BC to a third party site and the extra code being generated :
    %0D = Carriage Return
    %0A=line feed
    Is killing the callback method of the form
    Screenshot of how form looks on screen
    http://screencast.com/t/aSw3pywL
    Screenshot of backend with extra return
    http://screencast.com/t/4xfESLGpu
    Screenshot of extra code generated
    http://screencast.com/t/NmlCxbGgiEC

    In struts my string pritns like this
    var abc = new Array(["A", "B"]);
    I pass this string to JSP. and in the outputted html,
    all double quotes are replaces by its equivalent ASCII &#034;
    :(

  • HTML code generated by JSF compatibility

    IS it correct that HTML code generated by JSF is not AA compatible and also cannot work properly without Javascript. Can any one site some references supporting/opposing the same.

    Don't know, I'm pretty sure it does. Though, I've never used MyFaces. MyFaces is OSS and done by apache. Google it and you can find out more about it.
    CowKing

  • Can't compile the HTML-Java Wizard generated file.

    I have created a java file using HTML-Java Wizard.
    when compiling the java file it gives an error
    method getDeclaredMethod(java.lang.String,null) not found in
    class in java.lang.class
    can anyone tell me how can I remove the error ?
    waiting for your early reply in this regard.
    Thanks
    null

    Thanks, My problem has been solved.Now it is working.
    Initially I was using wrong classes.zip file in myclasspath.The
    Correct one is in %JDEVELOPER_HOME%\java\lib. The size of that
    file is 9.48 MB.
    Regards
    -- Sujit
    JDeveloper Team (guest) wrote:
    : Sujit,
    : I assume that you have access to the OAS jars needed to compile
    : this file (refer to the "Building Java Applications for OAS"
    : guide in the helpsystem for details).
    : Also, try deleting the dependecy files in your
    : myclasses/your_package directory .
    : Regards,
    : Sujit Hazra (guest) wrote:
    : : Hi,
    : : The error is still there.
    : : I have tried as you suggested.That brought me the code of
    : : java.lang.Class and also found that method as you
    : mentioned.This
    : : means my libraries are properly installed.
    : : The following code is taken from the HTML-Java Wizard
    generated
    : : file:
    : : private HtmlPage makePage() {
    : : HtmlPage hp = new HtmlPage(new java.io.File(filepath +
    : : java.io.File.separator +
    filename));
    : : for(int i=0;i<WRB_tags.length;i++) {
    : : try {
    : : hp.setItemAt(WRB_tags[0], new SimpleItem(
    : : this.getClass().getDeclaredMethod(
    : : "get"+WRB_tags[i][2],null).invoke(this,null)));
    : : catch (java.lang.Exception ex) {
    : : hp.setItemAt(WRB_tags[i][0],
    : new(SimpleItem(WRB_tags[i][1]));
    : : return hp;
    : : I didn't change anything on that.What else should I do?
    : : waiting for your early reply in this regard.
    : : Thanks
    : : - Sujit
    : : JDeveloper Team (guest) wrote:
    : : : Sujit,
    : : : Test this:
    : : : Bring up JDeveloper
    : : : Press Ctrl / - Control key and the Slash key
    : : : Type in java.lang.Class
    : : : This brings up the code for java.lang.Class
    : : : If it does not, then somehow your libraries
    : : : are not properly installed for JDeveloper to find
    : : : (see IDEClassPath ).
    : : : Otherwise, there you should see many methods including:
    : : : public Method getDeclaredMethod(String p0, Class[] p1)
    : : : throws NoSuchMethodException, SecurityException {
    : : : // implementation not available
    : : : Also note: Your spelling for Class should be
    : : : java.lang.Class
    : : : - JDeveloper Team
    : : : You can browse the class
    : : : Sujit Hazra (guest) wrote:
    : : : : I have created a java file using HTML-Java Wizard.
    : : : : when compiling the java file it gives an error
    : : : : method getDeclaredMethod(java.lang.String,null) not found
    : in
    : : : : class in java.lang.class
    : : : : can anyone tell me how can I remove the error ?
    : : : : waiting for your early reply in this regard.
    : : : : Thanks
    null

  • View the html source code of an apex page

    Hi everyone,
    I search to how I can view the html source code of an apex page and to be able to modify it. That's why viewing the html source code from the browser when the application is running doesn't arrange me.
    Has anyone an idea how it can this be possible?
    Best regards,

    Khadija Khalfallah wrote:
    Hi everyone,
    I search to how I can view the html source code of an apex page and to be able to modify it. That's why viewing the html source code from the browser when the application is running doesn't arrange me. What do you mean?
    Do you want to be able to pull up the HTML source generated by Apex, modify that copy, and then feed it back into Apex with the chagnes you made? If so you can't. Apex generates the HTML through its tools and you have to modify the generation routines to get different HTML.
    Do you merely want to look at the generated HTML? In Internet Explorer all you have to do is right click on the page and choose View Source to open a window with the HTML source in an editor. I sometimes find it useful to save a page and manually edit the copy to immediately see the effects of certain changes to the underlying HTML and/or Javascript without permanantly making the change in Apex.

  • What is wrong with the idl code generated by packager.exe?

    Hello everybody,
    I am trying to figure out what is wrong with the idl code generated by packager.exe. In the evaluation for the bug posted at http://developer.java.sun.com/developer/bugParade/bugs/4964563.html it says that the IDispatch interface is not exposed correctly and thus early binding of java objects is not possible using the current activex bridge implementation.
    As I am no idl expert I have no idea what that means. However, I managed to dig out the idl code generated by packager.exe for the following example bean:
    package test;
    public class MyBean
         protected int value;
         public MyBean()
         public void setMyValue(int _value)
              value = _value;
         public int getMyValue()
              return value;
         public MyBean getSelfReference()
              return this;
    }The corresponding idl code generated by packager.exe is
    uuid(81B0BF63-2A55-11D8-A73E-000475EBF021),
    version(1.0)
    library MyBean
    importlib("Stdole2.tlb");
    dispinterface MyBeanSource;
    dispinterface MyBeanDispatch;
    uuid(81B0BF64-2A55-11D8-A73E-000475EBF021),
    version(1.0)
    dispinterface MyBeanSource {
    properties:
    methods:
    uuid(81B0BF65-2A55-11D8-A73E-000475EBF021),
    version(1.0)
    dispinterface MyBeanDispatch {
    properties:
    [id(4097)]
    int myValue;
    methods:
    [id(32768)]
    VARIANT_BOOL equals(IDispatch* arg0);
    [id(32769)]
    IDispatch* getClass();
    [id(32770)]
    int getMyValue();
    [id(32771)]
    IDispatch* getSelfReference();
    [id(32772)]
    int hashCode();
    [id(32773)]
    void notify();
    [id(32774)]
    void notifyAll();
    [id(32775)]
    void setMyValue(int arg0);
    [id(32776)]
    BSTR toString();
    [id(32779)]
    VARIANT wait([optional] VARIANT var0, [optional] VARIANT var1);
    uuid(81B0BF62-2A55-11D8-A73E-000475EBF021),
    version(1.0)
    coclass MyBean {
    [default, source] dispinterface MyBeanSource;
    [default] dispinterface MyBeanDispatch;
    };Does anyone know what is wrong with this code and maybe how to fix the idl code? Generating the dll should then be easy (I already tried several variations of the idl code but as my idl knowledge is limited it didn't really do what I wanted).

    Then the question is why it does work with visual controls (even if you set them to non-visible)?

  • How to highlight HTML source code in JEditorPane

    I used JEditorPane to display the HTML source code. Now I want to highlight some part of the HTML code.
    e.g. change the font or color of the second line in this piece of HTML code.
    I tried to highlight the text in HTML way, e.g.
    JEditorPane jep=new JEditorPane():
    jet.setContentType("text/html");
    jet .setText("<html><i>display styled text</i></html>");
    but it didn't work at all. As the text I want to highlight is alreay a part of the HTML code.
    I have to sort it out ASAP. as the deadline of my project is coming...
    any advice is appreciated.
    Thanks so much..:)

    "In order to display the original html source code (not the effect made by HTML code ) i n JEditorPane,
    i can't use editorPane.setContentType("text/html"): As it will try to render the webpage with this piece of HTML code..
    e.g. here is the piece of html code i want to display in JEditorPane:
    <HTML><HEAD><TITLE>Department of Computer Science Home Page</TITLE>
    <META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
    <META content="MSHTML 6.00.2737.800" name=GENERATOR>
    </HEAD>.........</HTML>
    what i want to do is to highlight "Department of Computer Science Home Page" by setting it bold or italic."
    Not really sure what you're saying here, but it sounds like you mean that you want the HTML itself to change. If that's it just:
    <HTML>
    <HEAD>
      <TITLE>Department of Computer Science Home Page</TITLE>
      <META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
      <META content="MSHTML 6.00.2737.800" name=GENERATOR>
    </HEAD>
    <BODY color='blue' bgcolor='white'>
      <tr>
       <td bgcolor=yellow>Department of Computer Science Home Page</td>
      </tr>
    </BODY>
    </HTML>FWIW HTH, B4N
    ~Bill

  • How can I install ODM Java Code Generator in Jdeveloper 9051?

    Hi, I need to install ODM extension in Jdeveloper 9051 but the html file with the instructions is in blank.
    Someone know how?
    Thanks
    Javier

    Install
    Download ODMJDevExt.zip and extract the contents to <JDeveloper10G Home>\jdev\lib\ext (<JDeveloper10G Home>/jdev/lib/ext on UNIX), where <JDeveloper10GHome> is the directory where JDeveloper is installed, and launch Oracle JDeveloper 10g (9.0.5.1).
    Note: ODM Java Code Generator is certified with Oracle JDeveloper 10g (9.0.5.1) only. Go to the http://otn.us.oracle.com for the Oracle JDeveloper 10g (9.0.5.1) download.
    You must use Oracle 10g Release 1 (10.1).
    If you patch the database beyond 10.1 release, be sure to update the odmapi.jar in <JDeveloper10G Home>\jdev\lib\ext (Windows) or <JDeveloper10G Home>/jdev/lib/ext (UNIX) to match the version that was installed in your database.

  • How to run the code generator

    I urgently need to know how to run the code generator using creator. Can anyone assist? I cant find any tips in the forums.

    I am following the procedure to create a new custom component (or extend an existing component) available at http://developers.sun.com/prodtech/javatools/jscreator/reference/techart/2/writing_custom_components.html.
    Part of the procedure says: you need to use the JSC to run the code generator based on sun-faces-config.xml metadata.

  • How to display Report tile html Title on generated report

    Hi
    Could you please give some idea to display Report tile <html Title> on generated report?
    I am not using CrystalReportViewer to export my report
    reportClientDocument = new ReportClientDocument();
    reportClientDocument.setReportAppServer(ReportClientDocument.inprocConnectionString);
    reportClientDocument.open(reportName, OpenReportOptions._openAsReadOnly);
    reportClientDocument.getDatabaseController().setDataSource(
    POJOList, Class.forName(CLASSNAME), TABLE_ALIAS, TABLE_ALIAS);
    byteArrayInputStream = (ByteArrayInputStream) reportClientDocument
    .getPrintOutputController().export(ReportExportFormat.PDF);
    Currently its displaying struts action name as title.
    We are using crystal reports 2008
    Thank you

    Try the following extract of code to set the title:
    SummaryInfo newSummaryInfo = new SummaryInfo(reportClientDocument.getReportDocument().getSummaryInfo());
    newSummaryInfo.setTitle("<new reportName>");
    reportClientDocument.modifySummaryInfo(newSummaryInfo);
    reportClientDocument.save();
    reportClientDocument.close();
    I hope this helps.
    Regards.
    - Robert

  • Html picture viewer

    hi apple list,
    hoping someone could help - trying to create an html picture viewer in iweb - i have tried artotems script - but that is designed to publish directly to dot mac - can anyone tell me how to modify this to publish to folder and upload to a remote site - thanks so much

    Robert:
    That code from artotems site can be used on a non-Mac server. You just need to upload the follder of image files to your server and set the URL for the various pictures to their location on your server. He has
    src="http://web.mac.com./your iDisk/docs/yourimage1.jpg" width="100" height="75"
    You will need to change it to something like:
    http://yourserver_name/account_name/imagename.jpg
    What he's using is a javascript base viewer. This demo page has a couple similar viewers with the code used. It's done with an HTML snippet and iFrame code. My examples require clicking on the thumbnail to view the larger version unlike artotems version. Again the demo is written for a MobileMe account but all you need to do is upload the javascript folder to your server and link it to the iFrame code with the correct URL.
    Happy New Year

  • Code generated in FB 4 for php zend service

    I am trying the data generation stuff for php in FB 4
    I used to use amfphp and my class would look like this
    <?php
    error_reporting(E_ALL);
    require('DB_CONSTANTS.php');
    class AudioService{
        var $connection;
        function AudioService(){
            $this->connection = mysql_connect(DB_SERVER, DB_USER, DB_PASS);
            mysql_select_db(DB_NAME, $this->connection) or die(mysql_error());
        function checkResetPasswordKey($key){
            if (!eregi("^[0-9a-zA-Z]{50}$",$key)) {
                throw new Exception('Bad key');
            /* Verify that user is in database */
            $q = "SELECT * FROM tbusers WHERE forgotPassKey = '$key' AND
    now() < forgotPassExpiry";
            $result = mysql_query($q, $this->connection);
            if (!$result) {
                $message  = 'Invalid query: ' . mysql_error() . "\n";
                $message .= 'Whole query: ' . $query;
                throw new Exception($message);
            if ((mysql_numrows($result) < 1)) {
                //throw new Exception('Your ');
            return $result ;
    ?>
    however in the code generated like FB 4 it looks like this, I wanted to know what advantages this has over my method.
    Thanks
    <?php
    class service {
        /*var $username = "nik";
        var $password = "tat0W";*/
        var $username = "root";
        var $password = "";
        var $server = "localhost";
        var $port = "";
        var $databasename = "nikk";
        var $tablename = "contactlist";
        var $connection;
        public function __construct() {
              $this->connection = mysqli_connect(
                                      $this->server, 
                                      $this->username, 
                                      $this->password,
                                       $this->databasename
            $this->throwExceptionOnError($this->connection);
         * Returns all the rows from the table.
         * Add authroization or any logical checks for secure access to your data
         * @return array
        public function getAllTbrawcontactlist() {
            $stmt = mysqli_prepare($this->connection, "SELECT * FROM $this->tablename");       
            $this->throwExceptionOnError();
            mysqli_stmt_execute($stmt);
            $this->throwExceptionOnError();
            $rows = array();
            mysqli_stmt_bind_result($stmt, $row->id, $row->email, $row->dateCreated, $row->wantsEmails);
            while (mysqli_stmt_fetch($stmt)) {
              $rows[] = $row;
              $row = new stdClass();
              mysqli_stmt_bind_result($stmt, $row->id, $row->email, $row->dateCreated, $row->wantsEmails);
            mysqli_stmt_free_result($stmt);
            mysqli_close($this->connection);
            return $rows;
        private function throwExceptionOnError($link = null) {
             if($link == null) {
                $link = $this->connection;
            if(mysqli_error($link)) {
                $msg = mysqli_errno($link) . ": " . mysqli_error($link);
                throw new Exception('MySQL Error - '. $msg);
    ?>

    I am by no means an expert; furthermore, I do not know PHP, I use ColdFusion. But what I am about to say applies just the same.
    "however in the code generated like FB 4 it looks like this, I wanted to know what advantages this has over my method".
    Advantages? None, and probably some disadvantages. I have qualms about this "data-centric" paradigm. Just to do some fun testing, I created two little projects:
    Using the data-centric features of FB 4,
    http://www.timos.com/FB4/CartoonTestREL/CartoonTest.html;
    Resulting SWF size: 65 KB.
    Using a service I coded, a cusom component based on mx:UIComponent,
    http://www.timos.com/FB4/ToonTestREL/ToonTest.html;
    Resulting SWF size: 54 KB.
    These both have View Source enabled, so you can see the differences.
    Anytime you use a program to generate code, that code will almost always be much larger than if you code by hand.
    Look at the diference between the generated value objects and my single AS class. I have not run the profiler, so I don't know how many milliseconds' difference there is between how fast these run, but I suspect #2 is faster.
    You can go from here.
    Best regards,
    Carlos

  • HTML 5 code having a jquery slider is working in safari 4 (also other browsers). Its not working in safari 5.

    HTML 5 code having a jquery slider function is working in safari 4. It is also working in IE9, IE8, Firefox 13. In Safari 5, it is not loading. Also CSS is not loading correctly. Its showing failed to load 

    HTML 5 code having a jquery slider function is working in safari 4. It is also working in IE9, IE8, Firefox 13. In Safari 5, it is not loading. Also CSS is not loading correctly. Its showing failed to load 

  • Warning codes generated in UCCHECK   - Technical Upgrade - 4.0b to ECC 6.0

    Hi SDN'ers ,
    I am currently working on Technical Upgrade project from 4.0 b system to ECC 6.0 system . I am facing a
    problem relating to the analysis of the warnings displayed whehn we run the UCCHECK for the client inventory by
    checking the "Display lines that cannot be analyzed statically" option under the Selection-screen block
    "Statements that cannot be analyzed statically" .Based on the warning codes generated during UCCHECK, they can
    be classified into 12 different categories given below in the list ( Viz. ABB,MESSAGEG!C,MESSAGEG!D......MESSAGEG!P).The same are given below in the end
    I want to know
    - Which are the warning codes which need resolution so that the program does not encounter any runtime
    errors or during Integration testing ?
    - Do all the offset related errors (For example ;variable A = B+offset(length)
    or  variable A+offset(length) = B ) need resolution so that the program gives no runtime error.
    - Also, do all statements where length is calculated using STRLEN also need changes ? I have seen offset length related warnings come under MESSAGEG!M warning code.
    The objective of this is to make sure that the upgraded system ECC 6.0 in Australia ,when rolled out to
    non-English speaking geographies in APAc such as Malaysia,Japan or China would only need translations and no ABAP Coding effort even when using languages such as Japanese which have double byte characters.
    S.No.     Error Code     Message
    1     ABB     Syntax Check Aborted
         ABB Total     
    2     MESSAGEG!C      check at runtime. at runtime.
               statement because of untyped or generic operands. It can only carry out this
              The system could not perform a static convertibility check on the current
         MESSAGEG!C Total     
    3     MESSAGEG!D      out this check at runtime. It can only carry out this check at runtime.
               to a table line because of untyped or generic operands. It can only carry out
              The system could not perform a static check on convertibility from a work area
         MESSAGEG!D Total     
    4     MESSAGEG!E      check at runtime. at runtime.
               defined by a "DATA" statement. .
               statement because of untyped or generic operands. It can only carry out this
              Field "ELEMENTN" is unknown. It is neither in one of the specified tables nor
              The system could not perform a static comparability check on the current
         MESSAGEG!E Total     
    5     MESSAGEG!F      operand "<FELD1>" for the current statement. .
         MESSAGEG!F Total     
    6     MESSAGEG!G      current statement on incompletely typed operand "<DATA>". .
         MESSAGEG!G Total     
    7     MESSAGEG!H      for the incompletely typed operand "<S>". . - - - - - - - - -
              The system cannot perform a static check on a character-type field data type
         MESSAGEG!H Total     
    8     MESSAGEG!I      incompletely-typed operand "<A>" in the current statement. .
              The system cannot perform a static check on a character-type data type for the
         MESSAGEG!I Total     
    9     MESSAGEG!J      "<%_1_SYSINI>" in the current statement to check whether the operand can be
              The system cannot perform a static check on incompletely-typed operand "VALUE"
         MESSAGEG!J Total     
    Early response wil be highly appreciated.

    Hi Karthik
    >
    > 1) SPDD adjustments are done in which phase? PREPARE or UPGRADE?
    >
    SPDD is done in Upgrade ->Phase ACT_700
    > 2) Are here special cases where the adjustments need to be done before running the UPGRADE phase?
    >
    At ACT_700 phase stop the upgrade and take a backup of the DB and the PUT<DIR> before starting the SPDD activity.
    Make sure there are no pending tp request.  Either release them or delete them.
    All phase need to be completed successfully in PREPARE, before starting UPGRADE
    Cheers
    Shaji
    Edited by: Shaji Jacob on May 5, 2008 9:23 PM

  • Warning codes generated in UCCHECK

    Hi SDN'ers ,
    I am currently working on Technical Upgrade project from 4.0 b system to ECC 6.0 system . I am facing a
    problem relating to the analysis of the warnings displayed whehn we run the UCCHECK for the client inventory by
    checking the "Display lines that cannot be analyzed statically" option under the Selection-screen block
    "Statements that cannot be analyzed statically" .Based on the warning codes generated during UCCHECK, they can
    be classified into 12 different categories given below in the list ( Viz. ABB,MESSAGEG!C,MESSAGEG!D......MESSAGEG!P).The same are given below in the end
    I want to know
    - Which are the warning codes which need resolution so that the program does not encounter any runtime
    errors or during Integration testing ?
    - Do all the offset related errors (For example ;variable A = B+offset(length)
    or  variable A+offset(length) = B ) need resolution so that the program gives no runtime error.
    - Also, do all statements where length is calculated using STRLEN also need changes ? I have seen offset length related warnings come under MESSAGEG!M warning code.
    The objective of this is to make sure that the upgraded system ECC 6.0 in Australia ,when rolled out to
    non-English speaking geographies in APAc such as Malaysia,Japan or China would only need translations and no ABAP Coding effort even when using languages such as Japanese which have double byte characters.
    S.No.     Error Code     Message
    1     ABB     Syntax Check Aborted
         ABB Total     
    2     MESSAGEG!C      check at runtime. at runtime.
               statement because of untyped or generic operands. It can only carry out this
              The system could not perform a static convertibility check on the current
         MESSAGEG!C Total     
    3     MESSAGEG!D      out this check at runtime. It can only carry out this check at runtime.
               to a table line because of untyped or generic operands. It can only carry out
              The system could not perform a static check on convertibility from a work area
         MESSAGEG!D Total     
    4     MESSAGEG!E      check at runtime. at runtime.
               defined by a "DATA" statement. .
               statement because of untyped or generic operands. It can only carry out this
              Field "ELEMENTN" is unknown. It is neither in one of the specified tables nor
              The system could not perform a static comparability check on the current
         MESSAGEG!E Total     
    5     MESSAGEG!F      operand "<FELD1>" for the current statement. .
         MESSAGEG!F Total     
    6     MESSAGEG!G      current statement on incompletely typed operand "<DATA>". .
         MESSAGEG!G Total     
    7     MESSAGEG!H      for the incompletely typed operand "<S>". . - - - - - - - - -
              The system cannot perform a static check on a character-type field data type
         MESSAGEG!H Total     
    8     MESSAGEG!I      incompletely-typed operand "<A>" in the current statement. .
              The system cannot perform a static check on a character-type data type for the
         MESSAGEG!I Total     
    9     MESSAGEG!J      "<%_1_SYSINI>" in the current statement to check whether the operand can be
              The system cannot perform a static check on incompletely-typed operand "VALUE"
         MESSAGEG!J Total     
    Early response wil be highly appreciated.
    10     MESSAGEG!K      "<F_YEAR>" in the current statement to check whether the operand can be
              The system cannot perform a static check for incompletely-typed operand "WINY2"
         MESSAGEG!K Total     
    11     MESSAGEG!M      .
               at runtime. .
               check will take place at runtime. .
               entries for operand "<F_SOURCE>(2)". This check will take place at runtime. .
               entries for operand "<F_SOURCE>+2(2)". This check will take place at runtime.
              The system cannot perform a static check on the validity of the offset/length
         MESSAGEG!M Total     
    12     MESSAGEG!P      out this check at runtime. at runtime.
               statement because of untyped or generic operands. The system can only carry
              The system could not perform a static compatibility check on the current
         MESSAGEG!P Total     
         Grand Total

    Hi Monica,
                 as bhaskar said no need to worry about warnings.
    warnings will not lead to dump. only runtime errors will lead to dump.
    if the system is unicode, remediate the objects without errors.
    we can observe mainly,
    open dataset, structure incompatibilty, offset, in byte or char mode etc
    thanks
    vinod

Maybe you are looking for

  • Ideas for a new kernel patchset

    Hi, I'm not much satisfied with the kernel patchsets currently available for Arch, so I'm planning a new patchset (well... it was ready when it was 2.6.20.7 based, but now I'm making a new 2.6.21 based one). These would be the planned patches: genpat

  • GPP Scheduled Task Fails in Group Policy Modeling depending on DC

    We have multiple domain controllers running at a 2003 functional level. We have 1 DC running Server 2003 x86 SP2 and the rest run Server 2008 (maybe R2) I created a GPO that includes a Scheduled Task Group Policy Preference under Computer Configurati

  • ZEN Agent install without admin rights

    Hi all, Sorry to re-visit something I've seen a number of posts on, but I can't seem to get things to work as I've been lead to believe they should. We have a handful of systems that do not have any instance of the ZEN agent installed, a mix of NT an

  • SAP Friends....pl do help...

    Hi SAP folks, please solve the following threads. I will appreciate you..... 1.User created 1 vendor master record and 2 payment methods. He will assign 1 payment method at co.code level and another payment method at pur.organization level to that ve

  • I need help with reconfiguring present network\router e4200v2

    The current e4200v2 router and cable modem are in the basement on one end of the house. I am buying a new router and want to locate it on the main floor to improve connections. I want the new router to be the wifi and DHCP server. So can I use the e4