Facing error in compiling

What does this error mean???
registerForm.java:189: reached end of file while parsing
} ->
1 error
Here the coding of that error
+++++++++++++++++++++
import javax.swing.JOptionPane ;
import java.awt.*;
import java.applet.*;
import java.lang.StringBuffer;
import java.io.IOException;
import java.io.*;
import java.sql.*; //allows sql calls to the database
public class registerForm //extends Applet implements ActionListener
     //private DataPanel myDataPanel;
     private Connection dbconn;
     private static int numPeople=0;
     private static String info;
          public static void getlinkDB()
               try
                    String url = "jdbc:odbc:registerDB"; //make this match your data source name
                    Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );
                    dbconn = DriverManager.getConnection( url );
                    //info="Connection successful\n";
                    catch ( ClassNotFoundException cnfex ) //yes 3 catches
                         JOptionPane.showMessageDialog ( null,"ClassNotFoundException: " + getMessage());
                         //info=info+"Connection unsuccessful\n" + cnfex.toString();
                         catch ( SQLException sqlex )
                              JOptionPane.showMessageDialog ( null, sqlex.printStackTrace());
                              //info=info+"Connection unsuccessful\n" +sqlex.toString();
                              catch ( Exception excp )
                                   JOptionPane.showMessageDialog ( null, excp.printStackTrace());
                                   //info=info+excp.toString();
class AppletPanel extends Applet implements ActionListener
               Font reFont;
               Label labelform;
               Label labelUser;
               Label labelPassword;
               Label labelName;
               Label labelIC;
               Label labelEmail;
               TextField txtUser;
               TextField txtPassword;
               TextField txtName;
               TextField txtIC;
               TextField txtEmail;
               Button btnSubmit;
               Button btnReset;
          public void init()
               setLayout(null);
               reFont = new Font("Arial",Font.BOLD,20);
               labelform = new Label("Please fill up the form");
               labelform.setFont(reFont);
               labelUser = new Label("Username");
               labelUser.setFont(reFont);
               labelPassword = new Label("Password");
               labelName = new Label("Full Name");
               labelIC = new Label("IC Number");
               labelEmail = new Label("Email");
               txtUser = new TextField("");
               txtPassword = new TextField("");
               txtPassword.setEchoChar('*');
               txtName = new TextField("");
               txtIC = new TextField("");
               txtEmail = new TextField("");
               btnSubmit = new Button("Submit");
               btnReset = new Button("Reset");
               labelform.setBounds(20,20,300,50);
               labelUser.setBounds(20,90,120,30);
               labelPassword.setBounds(20,130,120,30);
               labelName.setBounds(20,170,120,30);
               labelIC.setBounds(20,210,120,30);
               labelEmail.setBounds(20,250,120,30);
               txtUser.setBounds(150,90,250,30);
               txtPassword.setBounds(150,130,250,30);
               txtName.setBounds(150,170,250,30);
               txtIC.setBounds(150,210,250,30);
               txtEmail.setBounds(150,250,250,30);
               btnSubmit.setBounds(190,300,100,30);
               btnReset.setBounds(300,300,100,30);
               add(labelform);
               add(labelUser);
               add(labelPassword);
               add(labelName);
               add(labelIC);
               add(labelEmail);
               add(txtUser);
               add(txtPassword);
               add(txtName);
               add(txtIC);
               add(txtEmail);
               add(btnSubmit);
               add(btnReset);
               btnSubmit.addActionListener(this);
               btnReset.addActionListener(this);
          public void actionPerformed(ActionEvent event)
                         String User=""; //must initialize to ""
                         String Pass="";
                         String Name="";
                         String IC="";
                         String Email="";
                         Object source=event.getSource();
                         User=txtUser.getText().trim();
                         txtUser.setText(User);
                         Pass=txtPassword.getText().trim(); //removes addtional characters
                    txtPassword.setText(Pass); //sets fields in their places
                    Name=txtName.getText().trim();
                         txtName.setText(Name);
                         IC=txtIC.getText().trim();
                         txtIC.setText(IC);
                         Email=txtEmail.getText().trim();
                         txtEmail.setText(Email);
                         if (source.equals(btnSubmit))
                    try {
                    Statement statement = dbconn.createStatement();
                    if ( !User.equals( "" ) && !Pass.equals( "" ) && !Name.equals( "" )
                              && !IC.equals( "" ) && !Email.equals("") )
                    String temp = "INSERT INTO register" +
                    "VALUES ('"+User+"', '"+Pass+"', '"+Name+"', '"+IC+"', '"+Email+"')";
                    //txtInfo.append( "\nInserting: " +
                    //dbconn.nativeSQL( temp ) + "\n" );
                    int result = statement.executeUpdate( temp );
                    if ( result == 1 )
                    {    //does a query to see if insertion successful
                              JOptionPane.showMessageDialog ( null,"Insertion successful");
                    else
                    JOptionPane.showMessageDialog ( null,"Insertion failed" );
                    txtUser.setText( "" );
                    txtPassword.setText( "" );
                    txtName.setText( "" );
                    txtIC.setText( "" );
                    txtEmail.setText( "" );
                    else
                    JOptionPane.showMessageDialog ( null,"Please Fill Up the Form Then Press Submit" );
                    statement.close();
                    catch ( SQLException sqlex )
                    JOptionPane.showMessageDialog ( null,"InsertData: " + sqlex.getMessage() );
                         //txtFirst.setText("Entry already exists -- reenter");
          }

I got the that error fixed but others error pop up haha.....
registerForm.java:21 invalid method declaration; return type required
public getlinkDB()
^
import javax.swing.JOptionPane ;
import java.awt.*;
import java.applet.*;
import java.lang.StringBuffer;
import java.io.IOException;
import java.io.*;
import java.sql.*;  //allows sql calls to the database
public class registerForm //extends Applet implements ActionListener
        //private DataPanel myDataPanel;
        private Connection dbconn;
        private static int numPeople=0;
        private static String info;
          public getlinkDB()
               try
                    String url = "jdbc:odbc:registerDB";  //make this match your data source name
                    Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );
                    dbconn = DriverManager.getConnection(url);
                    //info="Connection successful\n";
               catch ( ClassNotFoundException cnfex )           //yes 3 catches
                    JOptionPane.showMessageDialog ( null,"ClassNotFoundException: " + getMessage());
                    //info=info+"Connection unsuccessful\n" + cnfex.toString();
               catch ( SQLException sqlex )
                    JOptionPane.showMessageDialog ( null, sqlex.printStackTrace());
                    //info=info+"Connection unsuccessful\n" +sqlex.toString();
               catch ( Exception excp )
                    JOptionPane.showMessageDialog ( null, excp.printStackTrace());
                    //info=info+excp.toString();
class AppletPanel extends Applet implements ActionListener
               Font reFont;
               Label labelform;
               Label labelUser;
               Label labelPassword;
               Label labelName;
               Label labelIC;
               Label labelEmail;
               TextField txtUser;
               TextField txtPassword;
               TextField txtName;
               TextField txtIC;
               TextField txtEmail;
               Button btnSubmit;
               Button btnReset;
          public void init()
               setLayout(null);
               reFont = new Font("Arial",Font.BOLD,20);
               labelform = new Label("Please fill up the form");
               labelform.setFont(reFont);
               labelUser = new Label("Username");
               labelUser.setFont(reFont);
               labelPassword = new Label("Password");
               labelName = new Label("Full Name");
               labelIC = new Label("IC Number");
               labelEmail = new Label("Email");
               txtUser = new TextField("");
               txtPassword = new TextField("");
               txtPassword.setEchoChar('*');
               txtName = new TextField("");
               txtIC = new TextField("");
               txtEmail = new TextField("");
               btnSubmit = new Button("Submit");
               btnReset = new Button("Reset");
               labelform.setBounds(20,20,300,50);
               labelUser.setBounds(20,90,120,30);
               labelPassword.setBounds(20,130,120,30);
               labelName.setBounds(20,170,120,30);
               labelIC.setBounds(20,210,120,30);
               labelEmail.setBounds(20,250,120,30);
               txtUser.setBounds(150,90,250,30);
               txtPassword.setBounds(150,130,250,30);
               txtName.setBounds(150,170,250,30);
               txtIC.setBounds(150,210,250,30);
               txtEmail.setBounds(150,250,250,30);
               btnSubmit.setBounds(190,300,100,30);
               btnReset.setBounds(300,300,100,30);
               add(labelform);
               add(labelUser);
               add(labelPassword);
               add(labelName);
               add(labelIC);
               add(labelEmail);
               add(txtUser);
               add(txtPassword);
               add(txtName);
               add(txtIC);
               add(txtEmail);
               add(btnSubmit);
               add(btnReset);
               btnSubmit.addActionListener(this);
               btnReset.addActionListener(this);
          public void actionPerformed(ActionEvent event)
                         String User="";     //must initialize to ""
                         String Pass="";
                         String Name="";
                         String IC="";
                         String Email="";
                         Object source=event.getSource();
                         User=txtUser.getText().trim();
                         txtUser.setText(User);
                         Pass=txtPassword.getText().trim();  //removes addtional characters
                        txtPassword.setText(Pass);          //sets fields in their places
                        Name=txtName.getText().trim();
                         txtName.setText(Name);
                         IC=txtIC.getText().trim();
                         txtIC.setText(IC);
                         Email=txtEmail.getText().trim();
                         txtEmail.setText(Email);
                         if (source.equals(btnSubmit))
                        try
                              Statement statement = dbconn.createStatement();
                              if ( !User.equals( "" ) && !Pass.equals( "" ) && !Name.equals( "" )
                                        && !IC.equals( "" ) && !Email.equals("") )
                                     String temp = "INSERT INTO register" +
                                        "VALUES ('"+User+"', '"+Pass+"', '"+Name+"', '"+IC+"', '"+Email+"')";
                                        //txtInfo.append( "\nInserting: " +
                                        //dbconn.nativeSQL( temp ) + "\n" );
                                  int result = statement.executeUpdate( temp );
                                  if ( result == 1 )
                                  {    //does a query to see if insertion successful
                                        JOptionPane.showMessageDialog ( null,"Insertion successful");
                                 else
                                     JOptionPane.showMessageDialog ( null,"Insertion failed" );
                                     txtUser.setText( "" );
                                     txtPassword.setText( "" );
                                     txtName.setText( "" );
                                     txtIC.setText( "" );
                                     txtEmail.setText( "" );
                                else
                                  JOptionPane.showMessageDialog ( null,"Please Fill Up the Form Then Press Submit" );
                               statement.close();
                            catch ( SQLException sqlex )
                               JOptionPane.showMessageDialog ( null,"InsertData: " + sqlex.getMessage() );
                                  //txtFirst.setText("Entry already exists -- reenter");
     }

Similar Messages

  • Facing Error while installation of netweaver 7.02 on win2k3

    Hi Guys,
    I m facing error during installation on my win2k3 server machine, please help on this , error and log is below.
    An error occurred while processing option SAP NetWeaver 7.0 including Enhancement Package 2 > SAP Application Server ABAP > MaxDB > Central System > Central System( Last error reported by the step :Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log, import_monitor.log.). You can now:
    Choose Retry to repeat the current step.
    Choose View Log to get more information about the error.
    Stop the option and continue with it later.
    Log files are written to C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/.
    TRACE 
    2014-06-19 05:58:38.992 [iaxxclib.cpp:188]
    CLib::load()
    Opened sylib721.dll
    TRACE 
    2014-06-19 05:58:38.992
    exe dir is C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sapinst_exe.1176.1403175501
    TRACE 
    2014-06-19 05:58:39.480
    MessageLib initialized successfully.
    INFO  
    2014-06-19 05:58:39.492 [synxcpath.cpp:815]
    CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Documents and Settings\Administrator\Local Settings\Temp\sapinst_exe.1176.1403175501\dev_sap_kernel_test_19_Jun_2014_05_58_39.
    INFO  
    2014-06-19 05:58:39.504 [synxcfile.cpp:416]
    CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
    lib=syslib module=syslib
    Removed file C:\Documents and Settings\Administrator\Local Settings\Temp\sapinst_exe.1176.1403175501\dev_sap_kernel_test_19_Jun_2014_05_58_39.
    TRACE 
    2014-06-19 05:58:39.504 [syxxclogbook.cpp:209]
    PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)
    lib=syslib module=syslib
    Initialized SAP kernel tracing to file C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sapinst_exe.1176.1403175501\dev_sap_kernel
    INFO  
    2014-06-19 05:58:39.515 [synxcpath.cpp:815]
    CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Documents and Settings\Administrator\Local Settings\Temp\sapinst_exe.1176.1403175501\dev_sap_kernel_test_19_Jun_2014_05_58_39.
    INFO  
    2014-06-19 05:58:39.515 [synxcfile.cpp:416]
    CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
    lib=syslib module=syslib
    Removed file C:\Documents and Settings\Administrator\Local Settings\Temp\sapinst_exe.1176.1403175501\dev_sap_kernel_test_19_Jun_2014_05_58_39.
    TRACE 
    2014-06-19 05:58:39.527 [syxxclogbook.cpp:209]
    PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)
    lib=syslib module=syslib
    Initialized SAP kernel tracing to file C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sapinst_exe.1176.1403175501\dev_sap_kernel
    TRACE 
    2014-06-19 05:58:39.562 [iaxxclib.cpp:188]
    CLib::load()
    Opened C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sapinst_exe.1176.1403175501/iaguieng721.dll
    TRACE 
    2014-06-19 05:58:39.725 [iaxxgenimp.cpp:918]
    CGuiEngineImp::init()
    receiving and sending on port 21200
    TRACE 
    2014-06-19 05:58:39.865 [syxxccuren.cpp:31]
    CSyCurrentProcessEnvironmentImpl::setEnvironmentVariable(const iastring & 'SAPINST_JRE_HOME', const iastring & 'C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/sapinst_exe.1176.1403175501/jre')
    lib=syslib module=syslib
    Environment variable SAPINST_JRE_HOME set to value 'C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/sapinst_exe.1176.1403175501/jre'.
    TRACE 
    2014-06-19 05:58:41.905
    exe dir is C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/sapinst_exe.1176.1403175501
    INFO  
    2014-06-19 05:58:42.55 [synxcpath.cpp:815]
    CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\x.
    INFO  
    2014-06-19 05:58:42.55 [synxcfile.cpp:416]
    CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
    lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\x.
    TRACE 
    2014-06-19 05:58:42.215 [iaxxclib.cpp:188]
    CLib::load()
    Opened C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sapinst_exe.1176.1403175501/iakdblib721.dll
    TRACE 
    2014-06-19 05:58:42.215
    SAPinst build information:
    abi version : 721
    make variant: 720_REL
    build  
    : 1128529
    compile time: Jan 20 2010 03:41:04
    TRACE 
    2014-06-19 05:58:43.337 [iaxxgenimp.cpp:469]
    CGuiEngineImp::showDialog()
    showing dlg diProductChoice
    TRACE 
    2014-06-19 05:58:43.337 [iaxxgenimp.cpp:488]
    CGuiEngineImp::showDialog()
    <dialog sid="diProductChoice">
    <title>Welcome to SAP Installation Master</title>
    <dialog/>
    TRACE 
    2014-06-19 05:59:00.582 [iaxxclogintimeout.cpp:102]
    CLoginTimeout::run()
    Login in progress
    TRACE 
    2014-06-19 05:59:00.902
    Connection request to guiengine backend by host 192.168.2.4
    TRACE 
    2014-06-19 05:59:01.042
    Protocol version is 3.1
    TRACE 
    2014-06-19 05:59:01.042
    Send connect information
    TRACE 
    2014-06-19 05:59:01.042
    client logged on
    TRACE 
    2014-06-19 05:59:01.142 [iaxxgenimp.cpp:1245]
    CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    TRACE 
    2014-06-19 05:59:34.651 [iaxxdlghnd.cpp:97]
    CDialogHandler::doHandleDoc()
    CDialogHandler: ACTION_NEXT requested
    TRACE 
    2014-06-19 05:59:34.651 [iaxxcdialogdoc.cpp:203]
    CDialogDocument::submit()
    <dialog sid="diProductChoice">
    <dialog/>
    INFO  
    2014-06-19 05:59:34.741 [synxcpath.cpp:815]
    CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\x.
    INFO  
    2014-06-19 05:59:34.741 [synxcfile.cpp:416]
    CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
    lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\x.
    TRACE 
    2014-06-19 05:59:35.502 [iaxxgenimp.cpp:469]
    CGuiEngineImp::showDialog()
    showing dlg diRestartOrCancel
    TRACE 
    2014-06-19 05:59:35.502 [iaxxgenimp.cpp:488]
    CGuiEngineImp::showDialog()
    <dialog sid="diRestartOrCancel">
    Dialog does not contain standard input handler, so the backend is not able to generate a log entry
    <dialog/>
    TRACE 
    2014-06-19 05:59:35.532 [iaxxgenimp.cpp:1245]
    CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    TRACE 
    2014-06-19 06:04:49.283
    current working directory is C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/
    INFO  
    2014-06-19 06:04:49.363 [synxcpath.cpp:815]
    CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\x.
    INFO  
    2014-06-19 06:04:49.363 [synxcfile.cpp:416]
    CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
    lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\x.
    TRACE 
    2014-06-19 06:04:49.403 [syxxcfile.cpp:168]
    CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/dev_sap_kernel, m_realNodeType: 2}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
    lib=syslib module=syslib
    Target file exists and (mode & ISyNode::EXISTING) ==> I will copy/move.
    INFO  
    2014-06-19 06:04:49.403 [synxcfile.cpp:416]
    CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
    lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\dev_sap_kernel.
    TRACE 
    2014-06-19 06:04:49.403 [syxxcnode.cpp:441]
    CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL, ISyNode::CopyMoveMode_t 0x3)
    lib=syslib module=syslib
    Moved C:/Documents and Settings/Administrator/Local Settings/Temp/sapinst_exe.1176.1403175501/dev_sap_kernel to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/dev_sap_kernel
    TRACE 
    2014-06-19 06:04:49.423 [syxxclogbook.cpp:209]
    PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)
    lib=syslib module=syslib
    Initialized SAP kernel tracing to file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\dev_sap_kernel
    TRACE 
    2014-06-19 06:04:52.167
    Running with toplevel file C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL//toplevel.xml
    TRACE 
    2014-06-19 06:04:52.418 [syxxcfile.cpp:130]
    CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst_dev.2.log, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
    lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE 
    2014-06-19 06:04:52.418 [syxxcnode.cpp:441]
    CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst_dev.2.log, ISyNode::CopyMoveMode_t 0x3)
    lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst_dev.log to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst_dev.2.log
    TRACE 
    2014-06-19 06:04:52.458 [syxxcfile.cpp:130]
    CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.2.log, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
    lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE 
    2014-06-19 06:04:52.458 [syxxcnode.cpp:441]
    CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.2.log, ISyNode::CopyMoveMode_t 0x3)
    lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.log to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.2.log
    TRACE 
    2014-06-19 06:04:52.888
    Using custom value info for property SAPINST_MESSAGE_CONSOLE_THRESHOLD.
    TRACE 
    2014-06-19 06:04:52.908
    Running with dialog file C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL//dialog.xml
    TRACE 
    2014-06-19 06:04:53.209
    Running with keydb file C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL//keydb.xml
    TRACE 
    2014-06-19 06:04:54.831 [syxxcfile.cpp:130]
    CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.6.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
    lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE 
    2014-06-19 06:04:54.831 [synxcfile.cpp:516]
    CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.6.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const 
    lib=syslib module=syslib
    Copying file C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.xml to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.6.xml
    INFO  
    2014-06-19 06:04:56.433 [synxcfile.cpp:716]
    CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.6.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const 
    lib=syslib module=syslib
    Copied file 'C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.xml' to 'C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.6.xml'.
    TRACE 
    2014-06-19 06:05:00.229 [kdxxctaco.cpp:219]
    CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE 
    2014-06-19 06:05:00.679 [syxxcfile.cpp:130]
    CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.7.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
    lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE 
    2014-06-19 06:05:00.679 [synxcfile.cpp:516]
    CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.7.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const 
    lib=syslib module=syslib
    Copying file C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.xml to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.7.xml
    INFO  
    2014-06-19 06:05:00.729 [synxcfile.cpp:716]
    CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.7.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const 
    lib=syslib module=syslib
    Copied file 'C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.xml' to 'C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.7.xml'.
    TRACE 
    2014-06-19 06:05:00.739 [kdxxctaco.cpp:252]
    CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    after creating out stream
    TRACE 
    2014-06-19 06:05:01.40 [kdxxctaco.cpp:286]
    CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE 
    2014-06-19 06:05:06.698 [kdxxctaco.cpp:219]
    CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE 
    2014-06-19 06:05:07.19 [kdxxctaco.cpp:252]
    CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    after creating out stream
    TRACE 
    2014-06-19 06:05:07.259 [kdxxctaco.cpp:286]
    CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE 
    2014-06-19 06:05:31.894
    SAPinst was started using commandline: C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sapinst_exe.1176.1403175501\sapinst.exe
    TRACE 
    2014-06-19 06:05:31.894
    SAPinst properties are :
    GUISERVER_DIALOG_PORT=21212
    GUISERVER_HTTP_PORT=4239
    SAPINST_CONTROL_URL=control.xml
    SAPINST_DIALOG_PORT=21200
    SAPINST_DIALOG_URL=dialog.xml
    SAPINST_EXE=SAPINST_EXE
    SAPINST_JSLIB_TRACE=NW,NWUsers,OraCom,NWCTC,ClusterMgt,SystemIdentity
    SAPINST_KEYDB_URL=keydb.xml
    SAPINST_MESSAGE_CONSOLE_THRESHOLD=info
    SAPINST_MESSAGE_URL=.
    SAPINST_PACKAGES_URL=packages.xml
    SAPINST_RESOURCE_URL=resourcepool.xml
    SAPINST_SAVE_INPUT=true
    SAPINST_SCAN_DEVICES=false
    SAPINST_SKIP_DIALOGS=false
    SAPINST_TOPLEVEL_URL=toplevel.xml
    SAPINST_USE_ADVANCED_JS_HANDLING=true
    SELFEXTRACTOR_EXECUTABLE_NAME=C:/Documents and Settings/Administrator/Desktop/AS_ABAP_7_02_SP6_32_bit_Trial_Part_1/NWASABAPTRIAL70206/SAP_NetWeaver_702e_Installation_Master/IM_WINDOWS_I386/sapinst.exe

    Dear Nitin,
    Please provide the below  log for error information.
    import_monitor.java.log, import_monitor.log
    Best Regards,
    Atul

  • Error in compiling Flex application  - After changing my query in BW

    Hi All!!
    I'm facing the following problem:
    I have created a VC model based on a BW Query View... I have changed the query in BW (added a new key figure) and then I've refreshed the Query View in my VC model...
    After the refresh, I get the error "Error in compiling Flex application (1). Consult log file for details" everytime I try to deploy...
    Have you faced a similar problem? Does this mean that I can no longer change any query or view used in VC models???
    Thanks in Advance!
    Cris

    Hi Prachi,
    I've tried all the options you listed and it still doesn't work... I even tried to create a new query as a copy of the first one... and the error persists...
    Any other good idea (the model I´m talking about is really huge.. creating it again from zero would be a nightmare!!!)?
    Thanks in advance,
    Cris

  • Error in compiling Flex application (1). Consult log file for details.

    Dear All,
    when i deploy the application from VC i am facing the below issue.
    Error in compiling Flex application (1). Consult log file for details.
    Please help us.
    Regards,
    Suman

    Hi Juan,
    Please look into the below issue.
    Error in compiling Flex application: java.lang.InternalError: Can't connect to X11 window server using '172.16.12.41:0.0' as the value of the DISPLAY variable.
       at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
       at sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnvironment.java:175)
       at java.lang.J9VMInternals.initializeImpl(Native Method)
       at java.lang.J9VMInternals.initialize(J9VMInternals.java:192)
       at java.lang.Class.forNameImpl(Native Method)
       at java.lang.Class.forName(Class.java:119)
       at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:91)
       at macromedia.fonts.JREFontManager.initializeSystemFonts(JREFontManager.java:242)
       at macromedia.fonts.JREFontManager.createSetForSystemFont(JREFontManager.java:58)
       at macromedia.fonts.CachedFontManager$FontCache.fetch(CachedFontManager.java:109)
       at macromedia.util.LRUCache.get(LRUCache.java:114)
       at macromedia.fonts.JREFontManager.getEntryFromSystem(JREFontManager.java:186)
       at macromedia.swf.builder.tags.FontBuilder.<init>(FontBuilder.java:52)
       at macromedia.css.FontFaceRule.initialize(FontFaceRule.java:82)
       at macromedia.css.StyleDocumentHandler.endFontFace(StyleDocumentHandler.java:36)
       at org.apache.batik.css.parser.Parser.parseFontFaceRule(Unknown Source)
       at org.apache.batik.css.parser.Parser.parseStyleSheet(Unknown Source)
       at macromedia.css.StyleParser.init(StyleParser.java:165)
       at macromedia.css.StyleParser.<init>(StyleParser.java:89)
       at macromedia.css.StyleSheet.parse(StyleSheet.java:71)
       at flex.compiler.parser.MxmlParser$4.end(MxmlParser.java:1123)
       at flex.compiler.parser.MxmlParser.endElement(MxmlParser.java:402)
       at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
       at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
       at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
       at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
       at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
       at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
       at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
       at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
       at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
       at javax.xml.parsers.SAXParser.parse(Unknown Source)
       at javax.xml.parsers.SAXParser.parse(Unknown Source)
       at flex.compiler.parser.MxmlParser.parseDocument(MxmlParser.java:4363)
       at flex.compiler.MxmlLoader.parse(MxmlLoader.java:277)
       at flex.compiler.MxmlLoader.loadComponentType(MxmlLoader.java:178)
       at flex.compiler.MxmlLoader.loadComponent(MxmlLoader.java:204)
       at flex.compiler.CachedComponentLoader.getComponent(CachedComponentLoader.java:197)
       at flex.compiler.CachedComponentLoader.loadDefinition(CachedComponentLoader.java:101)
       at flex.compiler.CachedComponentLoader.getDefinition(CachedComponentLoader.java:263)
       at flex.compiler.CompositeLoader.getDefinition(CompositeLoader.java:54)
       at flex.compiler.linker.Loader.getType(Loader.java:266)
       at flex.compiler.linker.Loader.findType(Loader.java:248)
       at flex.compiler.CompilerPackageManager.loadType(CompilerPackageManager.java:629)
       at flex.compiler.MxmlCompiler.openDocument(MxmlCompiler.java:61)
       at flex.compiler.MxmlCompiler.compile(MxmlCompiler.java:234)
       at flex.tools.Mxmlc.main(Mxmlc.java:166)
    Regards,
    Suman

  • Error when compiling whith gcc in order to create a dynamic librairy.

    Hy all,
    I facing the following error at compilation time :
    ld: fatal: relocations remain against allocatable but non-writable sections
    collect2: ld returned 1 exit status
    The list of commands I have issued are here :
    # env
    PATH=/usr/sbin:/usr/bin:/usr/local/bin
    CC=/usr/local/bin/gccLD_LIBRARY_PATH=/usr/local/lib:/usr/local/ssl/lib
    Tools used under solaris 8 ( all is under /usr/local/bin)
    ANDIrand-0.7-5.8-sparc-1.pkgbc-1.06-sol8-sparc-local
    binutils-2.20.1-sol8-sparc-local => GNU for sparc
    gcc-3.4.6-sol8-sparc-local => GNU for sparclibiconv-1.13.1-sol8-sparc-local
    libintl-3.4.0-sol8-sparc-localm4-1.4.15-sol8-sparc-local
    libsigsegv-2.9-sol8-sparc-localmake-3.82-sol8-sparc-local
    nss_ldap-265openssl-1.0.0a
    rsaref20.tar => library openssl
    # pwd/usr/local/doc/openssl-1.0.0a/demos/engines/rsaref/install
    # ls -ltotal 490
    -rw-r--r-- 1 root other 7056 Nov 17 14:12 desc.o-rwxr-xr-x 1 root other 27520 Nov 17 14:25 dhdemo
    -rw-r--r-- 1 root other 10216 Nov 17 14:25 dhdemo.o-rw-r--r-- 1 root other 1520 Nov 17 14:12 digit.o
    drwx------ 2 3191 40 512 Mar 25 1994 dos-rw-r--r-- 1 root other 47960 Nov 17 14:12 librsaref.a
    -rwxr-xr-x 1 root other 6056 Nov 17 14:32 librsaref.sodrwx------ 2 3191 40 512 Mar 25 1994 mac
    -rw------- 1 3191 40 1217 Nov 17 14:12 makefile-rw-r--r-- 1 root other 2384 Nov 17 14:12 md2c.o
    -rw-r--r-- 1 root other 4740 Nov 17 14:12 md5c.o-rw-r--r-- 1 root other 5420 Nov 17 14:12 nn.o
    -rw-r--r-- 1 root other 2144 Nov 17 14:12 prime.o-rw-r--r-- 1 root other 2400 Nov 17 14:12 r_dh.o
    -rw-r--r-- 1 root other 3436 Nov 17 14:12 r_encode.o-rw-r--r-- 1 root other 7696 Nov 17 14:12 r_enhanc.o
    -rw-r--r-- 1 root other 3160 Nov 17 14:12 r_keygen.o-rw-r--r-- 1 root other 1372 Nov 17 14:12 r_random.o
    -rw-r--r-- 1 root other 804 Nov 17 14:12 r_stdlib.o-rwxr-xr-x 1 root other 51932 Nov 17 14:25 rdemo
    -rw-r--r-- 1 root other 3660 Nov 17 14:12 rsa.o-rw-r--r-- 1 root other 47960 Nov 17 14:25 rsaref.a
    drwx------ 2 3191 40 512 Mar 25 1994 unix
    COMPILATION COMMAND : "the error is at the end" :
    # gcc -o librsaref.so.2 -shared -Wl,-soname,librsaref.so *.o
    ld: warning: option -o appears more than once, first setting taken
    Text relocation remains
    referenced
    against symbol offset in file
    <unknown> 0xb84 dhdemo.o
    <unknown> 0xb88 dhdemo.o
    <unknown> 0xb8c dhdemo.o
    <unknown> 0xb90 dhdemo.o
    <unknown> 0xb94 dhdemo.o
    <unknown> 0xb98 dhdemo.o
    <unknown> 0xb9c dhdemo.o
    <unknown> 0xba0 dhdemo.o
    <unknown> 0xba4 dhdemo.o
    <unknown> 0xba8 dhdemo.o
    <unknown> 0xbac dhdemo.o
    <unknown> 0xbb0 dhdemo.o
    <unknown> 0xbb4 dhdemo.o
    R_GetRandomBytesNeeded 0x22c dhdemo.o
    NN_Zero 0x978 nn.o
    NN_Zero 0xab4 nn.o
    NN_Zero 0x274 prime.o
    PARAMS2 0x540 dhdemo.o
    PARAMS2 0x544 dhdemo.o
    PARAMS2 0x548 dhdemo.o
    PARAMS2 0x550 dhdemo.o
    PARAMS2 0x55c dhdemo.o
    PARAMS2 0x560 dhdemo.o
    PARAMS2 0x580 dhdemo.o
    PARAMS2 0x6a4 dhdemo.o
    PARAMS2 0x6a8 dhdemo.o
    PARAMS2 0x6b0 dhdemo.o
    PARAMS2 0x844 dhdemo.o
    PARAMS2 0x848 dhdemo.o
    <unknown> 0x608 desc.o
    <unknown> 0x60c desc.o
    <unknown> 0x614 desc.o
    <unknown> 0x618 desc.o
    <unknown> 0x65c desc.o
    <unknown> 0x660 desc.o
    <unknown> 0x66c desc.o
    <unknown> 0x670 desc.o
    <unknown> 0x678 desc.o
    <unknown> 0x67c desc.o
    <unknown> 0x9cc desc.o
    <unknown> 0x9d0 desc.o
    <unknown> 0x9d4 desc.o
    <unknown> 0x9d8 desc.o
    <unknown> 0x9dc desc.o
    <unknown> 0x9e0 desc.o
    <unknown> 0x9e4 desc.o
    <unknown> 0x9e8 desc.o
    <unknown> 0x9ec desc.o
    <unknown> 0x9f0 desc.o
    <unknown> 0x9f4 desc.o
    <unknown> 0x9f8 desc.o
    <unknown> 0x9fc desc.o
    <unknown> 0xa00 desc.o
    <unknown> 0xa04 desc.o
    <unknown> 0xa08 desc.o
    DESX_CBCUpdate 0xed4 r_enhanc.o
    DES3_CBCRestart 0xf28 r_enhanc.o
    R_memset 0x134 desc.o
    R_memset 0x144 desc.o
    R_memset 0x304 desc.o
    R_memset 0x314 desc.o
    R_memset 0x4c8 desc.o
    R_memset 0x4d8 desc.o
    R_memset 0x7e8 desc.o
    R_memset 0x7f8 desc.o
    R_memset 0x808 desc.o
    R_memset 0x384 nn.o
    R_memset 0x638 nn.o
    R_memset 0x648 nn.o
    R_memset 0x688 nn.o
    R_memset 0x6d8 nn.o
    R_memset 0x860 nn.o
    R_memset 0x870 nn.o
    R_memset 0x9c4 nn.o
    R_memset 0x9d4 nn.o
    R_memset 0x9e4 nn.o
    R_memset 0x9f4 nn.o
    R_memset 0xa04 nn.o
    R_memset 0xa14 nn.o
    R_memset 0xa24 nn.o
    R_memset 0xa34 nn.o
    R_memset 0xae4 nn.o
    R_memset 0xaf4 nn.o
    R_memset 0xb04 nn.o
    R_memset 0x2a4 prime.o
    R_memset 0x310 prime.o
    R_memset 0x2b0 r_dh.o
    R_memset 0x390 r_dh.o
    R_memset 0x3a0 r_dh.o
    R_memset 0x160 r_enhanc.o
    R_memset 0x170 r_enhanc.o
    R_memset 0x264 r_enhanc.o
    R_memset 0x274 r_enhanc.o
    R_memset 0x284 r_enhanc.o
    R_memset 0x394 r_enhanc.o
    R_memset 0x488 r_enhanc.o
    R_memset 0x550 r_enhanc.o
    R_memset 0x6e8 r_enhanc.o
    R_memset 0x7cc r_enhanc.o
    R_memset 0x8d4 r_enhanc.o
    R_memset 0x9b8 r_enhanc.o
    R_memset 0x9c8 r_enhanc.o
    R_memset 0xb10 r_enhanc.o
    R_memset 0xb20 r_enhanc.o
    R_memset 0xb90 r_enhanc.o
    R_memset 0xce0 r_enhanc.o
    R_memset 0xe04 r_enhanc.o
    R_memset 0xe14 r_enhanc.o
    R_memset 0x458 r_keygen.o
    R_memset 0x468 r_keygen.o
    R_memset 0x478 r_keygen.o
    R_memset 0x488 r_keygen.o
    R_memset 0x498 r_keygen.o
    R_memset 0x4a8 r_keygen.o
    R_memset 0x4b8 r_keygen.o
    R_memset 0x4c8 r_keygen.o
    R_memset 0x4d8 r_keygen.o
    R_memset 0x4e8 r_keygen.o
    R_memset 0x550 r_keygen.o
    R_memset 0x5d0 r_keygen.o
    R_memset 0x14 r_random.o
    R_memset 0xb8 r_random.o
    R_memset 0x1b4 r_random.o
    R_memset 0xc8 rsa.o
    R_memset 0x1d4 rsa.o
    R_memset 0x290 rsa.o
    R_memset 0x390 rsa.o
    R_memset 0x47c rsa.o
    R_memset 0x48c rsa.o
    R_memset 0x6f8 rsa.o
    R_memset 0x708 rsa.o
    R_memset 0x718 rsa.o
    R_memset 0x728 rsa.o
    R_memset 0x738 rsa.o
    R_memset 0x748 rsa.o
    R_memset 0x758 rsa.o
    R_memset 0x768 rsa.o
    R_memset 0x778 rsa.o
    R_memset 0x788 rsa.o
    R_memset 0x798 rsa.o
    DES_CBCRestart 0xf08 r_enhanc.o
    DESX_CBCRestart 0xf1c r_enhanc.o
    DES3_CBCInit 0xe8c r_enhanc.o
    DES_CBCUpdate 0xebc r_enhanc.o
    DES3_CBCUpdate 0xee0 r_enhanc.o
    DESX_CBCInit 0xe7c r_enhanc.o
    DES_CBCInit 0xe6c r_enhanc.o
    <unknown> 0x7dc dhdemo.o
    <unknown> 0x814 dhdemo.o
    seedByte.0 0x224 dhdemo.o
    seedByte.0 0x244 dhdemo.o
    <unknown> 0xab8 dhdemo.o
    <unknown> 0xabc dhdemo.o
    <unknown> 0x28 dhdemo.o
    <unknown> 0x30 dhdemo.o
    <unknown> 0x3c dhdemo.o
    <unknown> 0x44 dhdemo.o
    <unknown> 0x48 dhdemo.o
    <unknown> 0x50 dhdemo.o
    <unknown> 0x54 dhdemo.o
    <unknown> 0x5c dhdemo.o
    <unknown> 0x60 dhdemo.o
    <unknown> 0x68 dhdemo.o
    <unknown> 0x6c dhdemo.o
    <unknown> 0x74 dhdemo.o
    <unknown> 0x80 dhdemo.o
    <unknown> 0x88 dhdemo.o
    <unknown> 0xc8 dhdemo.o
    <unknown> 0xe8 dhdemo.o
    <unknown> 0xf0 dhdemo.o
    <unknown> 0xf8 dhdemo.o
    <unknown> 0x118 dhdemo.o
    <unknown> 0x120 dhdemo.o
    <unknown> 0x130 dhdemo.o
    <unknown> 0x16c dhdemo.o
    <unknown> 0x180 dhdemo.o
    <unknown> 0x204 dhdemo.o
    <unknown> 0x20c dhdemo.o
    <unknown> 0x268 dhdemo.o
    <unknown> 0x270 dhdemo.o
    <unknown> 0x288 dhdemo.o
    <unknown> 0x290 dhdemo.o
    <unknown> 0x2a4 dhdemo.o
    <unknown> 0x2a8 dhdemo.o
    <unknown> 0x2f0 dhdemo.o
    <unknown> 0x2f8 dhdemo.o
    <unknown> 0x310 dhdemo.o
    <unknown> 0x318 dhdemo.o
    <unknown> 0x32c dhdemo.o
    <unknown> 0x334 dhdemo.o
    <unknown> 0x36c dhdemo.o
    <unknown> 0x374 dhdemo.o
    <unknown> 0x3c0 dhdemo.o
    <unknown> 0x3c8 dhdemo.o
    <unknown> 0x3ec dhdemo.o
    <unknown> 0x3f0 dhdemo.o
    <unknown> 0x414 dhdemo.o
    <unknown> 0x41c dhdemo.o
    <unknown> 0x450 dhdemo.o
    <unknown> 0x458 dhdemo.o
    <unknown> 0x470 dhdemo.o
    <unknown> 0x478 dhdemo.o
    <unknown> 0x4d4 dhdemo.o
    <unknown> 0x4dc dhdemo.o
    <unknown> 0x4f0 dhdemo.o
    <unknown> 0x4f4 dhdemo.o
    <unknown> 0x508 dhdemo.o
    <unknown> 0x510 dhdemo.o
    <unknown> 0x524 dhdemo.o
    <unknown> 0x5c4 dhdemo.o
    <unknown> 0x5cc dhdemo.o
    <unknown> 0x5d4 dhdemo.o
    <unknown> 0x5dc dhdemo.o
    <unknown> 0x600 dhdemo.o
    <unknown> 0x604 dhdemo.o
    <unknown> 0x608 dhdemo.o
    <unknown> 0x618 dhdemo.o
    <unknown> 0x650 dhdemo.o
    <unknown> 0x660 dhdemo.o
    <unknown> 0x674 dhdemo.o
    <unknown> 0x678 dhdemo.o
    <unknown> 0x68c dhdemo.o
    <unknown> 0x690 dhdemo.o
    <unknown> 0x6bc dhdemo.o
    <unknown> 0x6c0 dhdemo.o
    <unknown> 0x760 dhdemo.o
    <unknown> 0x764 dhdemo.o
    <unknown> 0x768 dhdemo.o
    <unknown> 0x790 dhdemo.o
    <unknown> 0x82c dhdemo.o
    <unknown> 0x830 dhdemo.o
    <unknown> 0x85c dhdemo.o
    <unknown> 0x860 dhdemo.o
    <unknown> 0x864 dhdemo.o
    <unknown> 0x878 dhdemo.o
    <unknown> 0x898 dhdemo.o
    <unknown> 0x89c dhdemo.o
    <unknown> 0x8c4 dhdemo.o
    <unknown> 0x8d4 dhdemo.o
    <unknown> 0x92c dhdemo.o
    <unknown> 0x930 dhdemo.o
    <unknown> 0x964 dhdemo.o
    <unknown> 0x968 dhdemo.o
    <unknown> 0x9a8 dhdemo.o
    <unknown> 0x9b8 dhdemo.o
    <unknown> 0x9f0 dhdemo.o
    <unknown> 0x9f4 dhdemo.o
    <unknown> 0xacc dhdemo.o
    <unknown> 0xad4 dhdemo.o
    <unknown> 0xad8 dhdemo.o
    <unknown> 0xae0 dhdemo.o
    <unknown> 0xae4 dhdemo.o
    <unknown> 0xaec dhdemo.o
    <unknown> 0xaf0 dhdemo.o
    <unknown> 0xaf8 dhdemo.o
    <unknown> 0xafc dhdemo.o
    <unknown> 0xb04 dhdemo.o
    <unknown> 0xb08 dhdemo.o
    <unknown> 0xb10 dhdemo.o
    <unknown> 0xb14 dhdemo.o
    <unknown> 0xb1c dhdemo.o
    <unknown> 0xb20 dhdemo.o
    <unknown> 0xb28 dhdemo.o
    <unknown> 0xb2c dhdemo.o
    <unknown> 0xb34 dhdemo.o
    <unknown> 0xb38 dhdemo.o
    <unknown> 0xb40 dhdemo.o
    <unknown> 0xb4c dhdemo.o
    <unknown> 0xb54 dhdemo.o
    <unknown> 0xb5c dhdemo.o
    <unknown> 0xb60 dhdemo.o
    SILENT_PROMPT 0x1ac dhdemo.o
    SILENT_PROMPT 0x1f8 dhdemo.o
    SILENT_PROMPT 0xa58 dhdemo.o
    SILENT_PROMPT 0xa5c dhdemo.o
    SILENT_PROMPT 0xbbc dhdemo.o
    SILENT_PROMPT 0xbc0 dhdemo.o
    __iob 0x640 dhdemo.o
    __iob 0x648 dhdemo.o
    __iob 0x6e4 dhdemo.o
    __iob 0x6e8 dhdemo.o
    __iob 0x9a0 dhdemo.o
    __iob 0x9ec dhdemo.o
    __iob 0xa0c dhdemo.o
    __iob 0xa18 dhdemo.o
    __iob 0xa30 dhdemo.o
    __iob 0xa34 dhdemo.o
    __iob 0xa74 dhdemo.o
    __iob 0xa7c dhdemo.o
    __iob 0xb6c dhdemo.o
    __iob 0xb74 dhdemo.o
    __iob 0xbd8 dhdemo.o
    __iob 0xbe0 dhdemo.o
    __iob 0xbec dhdemo.o
    __iob 0xbf4 dhdemo.o
    fprintf 0x78c dhdemo.o
    fread 0x8f4 dhdemo.o
    fread 0x914 dhdemo.o
    putchar 0xa28 dhdemo.o
    puts 0x208 dhdemo.o
    puts 0xa6c dhdemo.o
    puts 0xa9c dhdemo.o
    puts 0xbd0 dhdemo.o
    sscanf 0x2ac dhdemo.o
    sscanf 0x4f8 dhdemo.o
    sscanf 0x528 dhdemo.o
    fgets 0xbf0 dhdemo.o
    memset 0x340 dhdemo.o
    memset 0x484 dhdemo.o
    memset 0x498 dhdemo.o
    memset 0x18 r_stdlib.o
    fopen 0x64c dhdemo.o
    fopen 0x8c0 dhdemo.o
    fopen 0x9a4 dhdemo.o
    R_SetupDHAgreement 0x2dc dhdemo.o
    fflush 0xa78 dhdemo.o
    fflush 0xb70 dhdemo.o
    fflush 0xbdc dhdemo.o
    fputc 0x7a4 dhdemo.o
    printf 0xb64 dhdemo.o
    R_RandomInit 0x21c dhdemo.o
    R_RandomFinal 0x184 dhdemo.o
    fwrite 0x684 dhdemo.o
    fwrite 0x69c dhdemo.o
    fwrite 0x6cc dhdemo.o
    fwrite 0x774 dhdemo.o
    fwrite 0x9dc dhdemo.o
    malloc 0x2b4 dhdemo.o
    malloc 0x2c4 dhdemo.o
    malloc 0x384 dhdemo.o
    malloc 0x394 dhdemo.o
    malloc 0x3a4 dhdemo.o
    malloc 0x578 dhdemo.o
    malloc 0x598 dhdemo.o
    PARAMS2_READY 0x530 dhdemo.o
    PARAMS2_READY 0x534 dhdemo.o
    PARAMS2_READY 0x5e4 dhdemo.o
    PARAMS2_READY 0x5ec dhdemo.o
    PARAMS2_READY 0x7bc dhdemo.o
    PARAMS2_READY 0x7f0 dhdemo.o
    PARAMS2_READY 0x800 dhdemo.o
    fclose 0x6f8 dhdemo.o
    fclose 0x94c dhdemo.o
    fclose 0xa44 dhdemo.o
    sprintf 0xb50 dhdemo.o
    free 0x348 dhdemo.o
    free 0x350 dhdemo.o
    free 0x4a0 dhdemo.o
    free 0x4a8 dhdemo.o
    free 0x4b0 dhdemo.o
    free 0x54c dhdemo.o
    free 0x554 dhdemo.o
    R_ComputeDHAgreedKey 0x43c dhdemo.o
    R_GenerateDHParams 0x5b0 dhdemo.o
    R_RandomUpdate 0x248 dhdemo.o
    NN_DigitDiv 0x550 nn.o
    .udiv 0xf4 digit.o
    .udiv 0x224 digit.o
    .udiv 0x20 r_encode.o
    .udiv 0xc0c r_enhanc.o
    NN_DigitMult 0xc60 nn.o
    NN_DigitMult 0xcdc nn.o
    .umul 0x20 digit.o
    .umul 0x30 digit.o
    .umul 0x44 digit.o
    .umul 0x54 digit.o
    .umul 0x10c digit.o
    .umul 0x120 digit.o
    .umul 0x23c digit.o
    .umul 0x250 digit.o
    <unknown> 0xf0 md2c.o
    <unknown> 0xf4 md2c.o
    <unknown> 0x194 md2c.o
    <unknown> 0x198 md2c.o
    <unknown> 0x1f0 md2c.o
    <unknown> 0x1f4 md2c.o
    MD2Update 0xf8 md2c.o
    MD2Update 0x108 md2c.o
    MD2Update 0x60 r_enhanc.o
    MD2Init 0x24 r_enhanc.o
    MD2Final 0x98 r_enhanc.o
    R_SealUpdate 0xc38 r_enhanc.o
    R_SealUpdate 0xc88 r_enhanc.o
    <unknown> 0x140 md5c.o
    <unknown> 0x148 md5c.o
    MD5Final 0xa4 r_enhanc.o
    MD5Final 0x4c r_random.o
    MD5Final 0x138 r_random.o
    MD5Update 0x144 md5c.o
    MD5Update 0x154 md5c.o
    MD5Update 0x6c r_enhanc.o
    MD5Update 0x40 r_random.o
    MD5Update 0x12c r_random.o
    MD5Init 0x34 r_enhanc.o
    MD5Init 0x30 r_random.o
    MD5Init 0x11c r_random.o
    NN_Sub 0x5c0 nn.o
    NN_Sub 0x9a0 nn.o
    NN_Sub 0x54 prime.o
    NN_Sub 0xd8 prime.o
    NN_Sub 0x144 prime.o
    NN_Sub 0x16c prime.o
    NN_Sub 0x5c r_dh.o
    NN_Sub 0x100 r_dh.o
    NN_Sub 0xcc r_keygen.o
    NN_Sub 0x1a0 r_keygen.o
    NN_Sub 0x2c8 r_keygen.o
    NN_Sub 0x2dc r_keygen.o
    NN_Sub 0x528 r_keygen.o
    NN_Sub 0x640 rsa.o
    NN_Sub 0x660 rsa.o
    NN_Sub 0x674 rsa.o
    NN_Decode 0x3c prime.o
    NN_Decode 0x208 r_dh.o
    NN_Decode 0x22c r_dh.o
    NN_Decode 0x260 r_dh.o
    NN_Decode 0x2dc r_dh.o
    NN_Decode 0x304 r_dh.o
    NN_Decode 0x32c r_dh.o
    NN_Decode 0x3bc rsa.o
    NN_Decode 0x3d4 rsa.o
    NN_Decode 0x3ec rsa.o
    NN_Decode 0x4b8 rsa.o
    NN_Decode 0x4d0 rsa.o
    NN_Decode 0x4e8 rsa.o
    NN_Decode 0x4fc rsa.o
    NN_Decode 0x510 rsa.o
    NN_Decode 0x524 rsa.o
    NN_Decode 0x538 rsa.o
    NN_Add 0x928 nn.o
    NN_Add 0x80 prime.o
    NN_Add 0xac prime.o
    NN_Add 0xec prime.o
    NN_Add 0x118 prime.o
    NN_Add 0x19c prime.o
    NN_Add 0x70 r_dh.o
    NN_Add 0x114 r_dh.o
    NN_Add 0xa0 r_keygen.o
    NN_Add 0xe0 r_keygen.o
    NN_Add 0x174 r_keygen.o
    NN_Add 0x1b4 r_keygen.o
    NN_Add 0x6c8 rsa.o
    NN_Digits 0x2f8 nn.o
    NN_Digits 0x308 nn.o
    NN_Digits 0x478 nn.o
    NN_Digits 0x750 nn.o
    NN_Digits 0xbc4 nn.o
    NN_Digits 0x214 r_dh.o
    NN_Digits 0x26c r_dh.o
    NN_Digits 0x2e8 r_dh.o
    NN_Digits 0x310 r_dh.o
    NN_Digits 0x3f8 rsa.o
    NN_Digits 0x408 rsa.o
    NN_Digits 0x544 rsa.o
    NN_Digits 0x554 rsa.o
    NN_Digits 0x564 rsa.o
    NN_Cmp 0x5e8 nn.o
    NN_Cmp 0xfc prime.o
    NN_Cmp 0x128 prime.o
    NN_Cmp 0x180 prime.o
    NN_Cmp 0x244 prime.o
    NN_Cmp 0x2f8 prime.o
    NN_Cmp 0x33c r_dh.o
    NN_Cmp 0x224 r_keygen.o
    NN_Cmp 0x5b8 r_keygen.o
    NN_Cmp 0x41c rsa.o
    NN_Cmp 0x578 rsa.o
    NN_Cmp 0x624 rsa.o
    NN_Div 0x678 nn.o
    NN_Div 0x900 nn.o
    NN_Div 0x18c r_dh.o
    NN_ModInv 0x29c r_keygen.o
    NN_ModInv 0x310 r_keygen.o
    NN_ModMult 0x718 nn.o
    NN_ModMult 0x730 nn.o
    NN_ModMult 0x7d0 nn.o
    NN_ModMult 0x7e8 nn.o
    NN_ModMult 0x820 nn.o
    NN_ModMult 0x698 rsa.o
    NN_RShift 0x628 nn.o
    NN_Gcd 0x590 r_keygen.o
    NN_ModExp 0x2e8 prime.o
    NN_ModExp 0x1a8 r_dh.o
    NN_ModExp 0x28c r_dh.o
    NN_ModExp 0x36c r_dh.o
    NN_ModExp 0x44c rsa.o
    NN_ModExp 0x5e8 rsa.o
    NN_ModExp 0x614 rsa.o
    NN_Mult 0x6b0 nn.o
    NN_Mult 0x914 nn.o
    NN_Mult 0x284 r_keygen.o
    NN_Mult 0x2f4 r_keygen.o
    NN_Mult 0x6b0 rsa.o
    NN_Mod 0x6c8 nn.o
    NN_Mod 0xa88 nn.o
    NN_Mod 0x98 prime.o
    NN_Mod 0xc4 prime.o
    NN_Mod 0x268 prime.o
    NN_Mod 0x32c r_keygen.o
    NN_Mod 0x348 r_keygen.o
    NN_Mod 0x5a8 rsa.o
    NN_Mod 0x5c8 rsa.o
    NN_LShift 0x4cc nn.o
    NN_LShift 0x4e4 nn.o
    NN_LShift 0x128 r_dh.o
    NN_Encode 0x1c8 r_dh.o
    NN_Encode 0x1dc r_dh.o
    NN_Encode 0x2a0 r_dh.o
    NN_Encode 0x380 r_dh.o
    NN_Encode 0x374 r_keygen.o
    NN_Encode 0x390 r_keygen.o
    NN_Encode 0x3d0 r_keygen.o
    NN_Encode 0x3e8 r_keygen.o
    NN_Encode 0x400 r_keygen.o
    NN_Encode 0x418 r_keygen.o
    NN_Encode 0x430 r_keygen.o
    NN_Encode 0x448 r_keygen.o
    NN_Encode 0x46c rsa.o
    NN_Encode 0x6e8 rsa.o
    NN_AssignZero 0x1c4 nn.o
    NN_AssignZero 0x2ec nn.o
    NN_AssignZero 0x4ac nn.o
    NN_AssignZero 0x4f8 nn.o
    NN_AssignZero 0x610 nn.o
    NN_AssignZero 0x73c nn.o
    NN_AssignZero 0x88c nn.o
    NN_AssignZero 0x8a0 nn.o
    NN_AssignZero 0x64 prime.o
    NN_AssignZero 0x220 prime.o
    NN_AssignZero 0x2c0 prime.o
    NN_AssignZero 0x40 r_dh.o
    NN_AssignZero 0x7c r_dh.o
    NN_AssignZero 0xe4 r_dh.o
    NN_AssignZero 0x160 r_dh.o
    NN_AssignZero 0x48 r_keygen.o
    NN_AssignZero 0xb0 r_keygen.o
    NN_AssignZero 0xec r_keygen.o
    NN_AssignZero 0x184 r_keygen.o
    NN_AssignZero 0x1c0 r_keygen.o
    NN_AssignZero 0x2ac r_keygen.o
    NN_AssignZero 0x508 r_keygen.o
    NN_AssignZero 0x56c r_keygen.o
    NN_AssignZero 0x5a0 r_keygen.o
    NN_AssignZero 0x5f8 rsa.o
    NN_Assign2Exp 0x1c r_dh.o
    NN_Assign2Exp 0xc0 r_dh.o
    NN_Assign2Exp 0x78 r_keygen.o
    NN_Assign2Exp 0x8c r_keygen.o
    NN_Assign2Exp 0x14c r_keygen.o
    NN_Assign2Exp 0x160 r_keygen.o
    NN_Assign 0x374 nn.o
    NN_Assign 0x6fc nn.o
    NN_Assign 0x850 nn.o
    NN_Assign 0x8b0 nn.o
    NN_Assign 0x8c0 nn.o
    NN_Assign 0x938 nn.o
    NN_Assign 0x948 nn.o
    NN_Assign 0x958 nn.o
    NN_Assign 0x968 nn.o
    NN_Assign 0x9b4 nn.o
    NN_Assign 0xa54 nn.o
    NN_Assign 0xa64 nn.o
    NN_Assign 0xa98 nn.o
    NN_Assign 0xaa8 nn.o
    NN_Assign 0xad4 nn.o
    NN_Assign 0x158 prime.o
    NN_Assign 0x30 r_dh.o
    NN_Assign 0xd4 r_dh.o
    NN_Assign 0x244 r_keygen.o
    NN_Assign 0x254 r_keygen.o
    NN_Assign 0x264 r_keygen.o
    NN_Assign 0x57c r_keygen.o
    <unknown> 0x214 prime.o
    <unknown> 0x218 prime.o
    R_GenerateBytes 0x10 prime.o
    R_GenerateBytes 0x23c r_dh.o
    R_GenerateBytes 0x2c8 r_enhanc.o
    R_GenerateBytes 0x2e4 r_enhanc.o
    R_GenerateBytes 0x50 rsa.o
    GeneratePrime 0xa0 r_dh.o
    GeneratePrime 0x144 r_dh.o
    GeneratePrime 0x110 r_keygen.o
    GeneratePrime 0x1e4 r_keygen.o
    R_SealFinal 0xc9c r_enhanc.o
    R_DecodePEMBlock 0x80c r_enhanc.o
    R_DecodePEMBlock 0x838 r_enhanc.o
    R_DecodePEMBlock 0xa08 r_enhanc.o
    R_DecodePEMBlock 0xd28 r_enhanc.o
    R_DecodePEMBlock 0xd94 r_enhanc.o
    R_EncodePEMBlock 0x734 r_enhanc.o
    R_EncodePEMBlock 0x758 r_enhanc.o
    R_EncodePEMBlock 0x978 r_enhanc.o
    R_EncodePEMBlock 0xc50 r_enhanc.o
    R_EncodePEMBlock 0xcc4 r_enhanc.o
    <unknown> 0x698 r_enhanc.o
    <unknown> 0x69c r_enhanc.o
    <unknown> 0xba8 r_enhanc.o
    <unknown> 0xbac r_enhanc.o
    <unknown> 0xbd4 r_enhanc.o
    <unknown> 0xbd8 r_enhanc.o
    RSAPublicDecrypt 0x208 r_enhanc.o
    R_VerifyUpdate 0x8a0 r_enhanc.o
    R_OpenFinal 0xdd8 r_enhanc.o
    R_OpenInit 0xa34 r_enhanc.o
    R_VerifyFinal 0x8c0 r_enhanc.o
    R_DigestInit 0xbc r_enhanc.o
    R_DigestInit 0x150 r_enhanc.o
    R_DigestInit 0x188 r_enhanc.o
    R_DigestInit 0x254 r_enhanc.o
    R_DigestInit 0xb44 r_enhanc.o
    RSAPublicEncrypt 0x35c r_enhanc.o
    R_SignBlock 0x714 r_enhanc.o
    R_SignBlock 0x90c r_enhanc.o
    RSAPrivateDecrypt 0x4e0 r_enhanc.o
    R_memcmp 0x238 r_enhanc.o
    R_memcmp 0x6a4 r_enhanc.o
    R_DigestUpdate 0xd8 r_enhanc.o
    R_DigestUpdate 0x1a4 r_enhanc.o
    R_DigestUpdate 0xb60 r_enhanc.o
    R_SealInit 0x958 r_enhanc.o
    R_OpenUpdate 0xd4c r_enhanc.o
    R_OpenUpdate 0xdb8 r_enhanc.o
    R_DigestFinal 0xfc r_enhanc.o
    R_DigestFinal 0x1d4 r_enhanc.o
    R_DigestFinal 0xb7c r_enhanc.o
    R_memcpy 0x30c r_enhanc.o
    R_memcpy 0x3cc r_enhanc.o
    R_memcpy 0x3f8 r_enhanc.o
    R_memcpy 0x45c r_enhanc.o
    R_memcpy 0x58c r_enhanc.o
    R_memcpy 0x5b8 r_enhanc.o
    R_memcpy 0x620 r_enhanc.o
    R_memcpy 0x6cc r_enhanc.o
    R_memcpy 0xbb0 r_enhanc.o
    R_memcpy 0xbdc r_enhanc.o
    R_memcpy 0xbec r_enhanc.o
    R_memcpy 0x3a4 r_keygen.o
    R_memcpy 0x3b8 r_keygen.o
    R_memcpy 0x10c r_random.o
    R_memcpy 0x18c r_random.o
    R_memcpy 0x98 rsa.o
    R_memcpy 0x1c4 rsa.o
    R_memcpy 0x264 rsa.o
    R_memcpy 0x380 rsa.o
    R_VerifyBlockSignature 0x860 r_enhanc.o
    R_VerifyBlockSignature 0xafc r_enhanc.o
    RSAPrivateEncrypt 0x134 r_enhanc.o
    R_VerifyInit 0x884 r_enhanc.o
    R_SignInit 0x77c r_enhanc.o
    R_SignUpdate 0x798 r_enhanc.o
    R_SignFinal 0x7b8 r_enhanc.o
    memcmp 0x70 r_stdlib.o
    memcpy 0x44 r_stdlib.o
    ld: fatal: relocations remain against allocatable but non-writable sections
    collect2: ld returned 1 exit status
    Best regards.

    did you compile the *.o's with -fPIC ?

  • Oracle Excel Generation 6i Form is showing error while compiling in Form10g

    Hi,
    I generate MS-Excel Report by Oracle form 6i but when I am compiling that form in Oracle Form 10g then it is showing
    error "component 'SERVER_ACTIVE' must be declared" and "component 'GET_INTERFACE_POINTER' must be declared".
    Can anybody help me.

    hi,
    ok, now i have migrated my 6i excel generation form in 10g by migrating tool. but still facing same(below) error at
    compile time.
    Error is - "component 'SERVER_ACTIVE' must be declare
    "component 'GET_INTERFACE POINTER' must be declare.
    Below is function which is showing problem at compile time.---
    FUNCTION get_object_handle RETURN OLE2.OBJ_TYPE IS
    obj_hnd OLE2.OBJ_TYPE;
    BEGIN
    /* If the server is not active, activate the server
    and get the object handle.
    IF not forms_ole.server_active ('spreadsheet') then
    FORMS_OLE.Activate_Server('spreadsheet');
    END IF;
    obj_hnd := FORMS_OLE.Get_Interface_Pointer('spreadsheet');
    --RETURN obj_hnd;
    RETURN NULL; END;
    thanks

  • [SOLVED] Strange error while compiling packages via AUR

    I've been facing this error while compiling packages via AUR. I'm also posting the output of my /etc/makepkg.conf
    Error
    ==> Starting build()...
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether cc supports -O2... yes
    checking for g++... g++
    checking whether the C++ compiler works... yes
    checking for C++ compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for GSTREAMER... yes
    checking for GSTREAMER_GTK... yes
    checking for XOpenDisplay in -lX11... yes
    checking for ncursesw5-config... /usr/bin/ncursesw5-config
    checking for initscr in -lncurses... yes
    checking whether gcc supports -Wall... yes
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating docs/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    fatal: Not a git repository (or any of the parent directories): .git
    CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /tmp/yaourt-tmp-hellknight/aur-gst123/src/gst123-0.2.0/build-aux/missing --run aclocal-1.11 -Wno-portability
    sh: autom4te: command not found
    aclocal-1.11: autom4te failed with exit status: 127
    make: *** [aclocal.m4] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build gst123.
    ==> Restart building gst123 ? [y/N]
    ==> -------------------------------
    ==>
    /etc/makepkg.conf
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
    'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
    'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
    'rsync::/usr/bin/rsync -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/curl
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    #-- Exclusive: will only run on x86_64
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CFLAGS="-march=amdfam10 -mtune=generic -O2 -pipe"
    CXXFLAGS="${CFLAGS}"
    LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
    #-- Make Flags: change this for DistCC/SMP systems
    MAKEFLAGS="-j8"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(fakeroot !distcc color !ccache)
    # A negated environment option will do the opposite of the comments below.
    #-- fakeroot: Allow building packages as a non-root user
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    BUILDENV=(fakeroot !distcc color !ccache)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs libtool emptydirs zipman purge)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries in STRIP_DIRS
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    OPTIONS=(strip docs libtool emptydirs zipman purge)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Options to be used when stripping binaries. See `man strip' for details.
    STRIP_BINARIES="--strip-all"
    #-- Options to be used when stripping shared libraries. See `man strip' for details.
    STRIP_SHARED="--strip-unneeded"
    #-- Options to be used when stripping static libraries. See `man strip' for details.
    STRIP_STATIC="--strip-debug"
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Directories to be searched for the strip option (if strip is specified)
    STRIP_DIRS=(bin lib sbin usr/{bin,lib,sbin,local/{bin,lib,sbin}} opt/*/{bin,lib,sbin})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Source packages: specify a fixed directory where all src packages will be placed
    #SRCPKGDEST=/home/srcpackages
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.xz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:
    Last edited by tarun.hellknight (2011-04-12 15:45:26)

    That's strange... it wasn't installed.. although I had never,ever faced a problem while compiling packages via AUR.. maybe, I should be careful when uninstalling orphans.. thanks for the help..

  • I am facing error while running Quickpay in Fusion payroll that "The input value Periodicity is missing for element type KGOC_Unpaid_Absence_Amount. Enter a valid input value". Any idea?

    I am facing error while running Quickpay in Fusion payroll that "The input value Periodicity is missing for element type KGOC_Unpaid_Absence_Amount. Enter a valid input value". Any idea?

    This is most probably because the Periodicity input value has been configured as "Required" and no value has been input for it.
    Please enter a value and try to re-run Quick Pay.

  • Error on compile - non-static variable can not be referencedfrom static con

    Error on compile happening with addButton?
    Thanks
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JButton;
    import javax.swing.JLabel;
    import javax.swing.JTextField;
    import javax.swing.JFrame;
    public class Log implements ActionListener {
    JButton addButton;
    public static void addComponentsToPane(Container pane) {
    pane.setLayout(new GridBagLayout());
    GridBagConstraints c = new GridBagConstraints();
         c.gridy = 3;
    c.gridx = 0;
         JLabel callsignLabel= new JLabel("Callsign");
    pane.add(callsignLabel, c);
         c.gridy = 3;
    c.gridx = 1;
         JLabel nameLabel= new JLabel("Name");
    pane.add(nameLabel, c);
         c.gridy = 3;
    c.gridx = 2;
         JLabel timeLabel= new JLabel("Time");
    pane.add(timeLabel, c);
         c.gridy = 3;
    c.gridx = 3;
         JLabel dateLabel= new JLabel("Date");
    pane.add(dateLabel, c);
         c.gridy = 3;
    c.gridx = 4;
         JLabel frequencyLabel= new JLabel("Freq ");
    pane.add(frequencyLabel, c);
         c.gridy = 3;
    c.gridx = 5;
         JLabel locationLabel = new JLabel("Country/State");
    pane.add(locationLabel, c);
    c.gridy = 5;
    c.gridx = 0;
         addButton = new JButton("Add");
    pane.add(addButton, c);
         addButton.addActionListener(this);

    Thank you for the reply
    I am new to Java
    What is wrong with the way it is coded?The error message tells you what's wrong: You're trying to reference a non-static variable from a static context.
    If you don't know what that means, then click the link I provided and look at the results from that google search. You might have to go through a few before you find a satisfactory explanation. And after you've done that, if you have specific questions about things you didn't understand there, please post again.

  • Error while compiling model in Visual Composer 7.1.

    Hi,
    I am getting a error while compiling model in Visual Composer 7.1.
    An exception occurred at the server while running the build process, reason: Extension with id com.sap.vc.runtimeproviders.null not found. For more details please refer to the log file.
    Can any one please tell me what the error is?

    Hello
    This problem usually indicates the model Runtime provider is not set properly
    Please goto configure pane and check the RT provider that is et for the model or any other model in the same DC
    Also services usages require this property to be set accordingly
    To make sure the services are set properly please look into the configuration pane when the respective service usage is selected (and check the same)
    Please let me know if this helped or not
    Guy

  • Error in compiling Flex application: 64K byte limit

    Hi experts ,
    While deploying the VC model , i m getting this error :
    Error in compiling Flex application: Error: A function in the code exceeds the 64K byte limit (actual size = '65557'). Since the problem occurs in the compiler-generated deferred instantiation code, please refactor/componentize portions of this document.
          (/usr/sap/NW2/JC00/j2ee/cluster/server0/GUIMachine_Business_Packages/Contribution_Margin_36461/FLEX_COMPILATION_FOLEDR/AAD15VY.mxml:19)
    Failed to compile AAD15VY.mxml
    Could any one help me out in solving this issue ..its urgent ...
    Your suggestions will be rewarded.
    Thanks,
    Pratima

    You have to remove few components from your model to decrease the compiler generated LOC.
    Check the following link for detailed solution:
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=936390
    Taken from SAP Notes:
    <i>Solution
    Doing the following may help:
    1.Divide problematic iViews into a number of nested iViews.
    2.Optimize each model to reduce the number of elements that it
      contains:
      a.Reduce the number of signals by merging signals of the same name.
      b.When your application updates forms with read-only fields, use
        expression boxes and a data store instead of signals.
      c.Minimize the use of animations in your models, including form
        sliding and chart animation effects
      d.Use a data store to store variables, instead of invisible forms.
        To display messages, use a simple text rather than a static dynamic
        expression.
    3.For on-the-spot, temporary workarounds, you can try dragging an empty
      layer onto the Design board. This sometimes solves the problem ad
      hoc, but is not recommended as a best practice.
    </i>

  • Error in compiling flex - 64K limit

    Hi folks,
    I entered a new dimension in the flex compiling error dimension (see error-message below). Can anybody help me? I'm familiar with the 32K-problem ( and do have functional workarounds for that) but this one is a new one for me.
    regards,
    Martin
    Error in compiling Flex application: Error: A function in the code exceeds the 64K byte limit (actual size = '66289'). Since the problem occurs in the compiler-generated deferred instantiation code, please refactor/componentize portions of this document.

    Hi Marcel,
    infortunately I'm not allowed atm to make the model public.
    however, I circeled the problem and found a workaround. It has nothing to do with our "old pal 32K", this time it simply was a (sub-)model too large to get deployed (problem with the to-build XML-pakages.)
    Background on this: It's a nested iview collecting a lot of data from different parts of a highliy complex model to process an RFC. For monitoring reasons I've switched some of the tables to visible and that acutally caused the error. After hiding the colums the error vanished. (actually was replaced by the 32K error. But that's like meeting an old friend, no problem any more....)
    I'm looking forward to sharing the model some time. Would be interesting to get some feedback from the comunity..
    regards,
    Martin
    Message was edited by:
            Martin Wolpers

  • Error in compiling flex compilation

    Hi,
    I recieve following log message after deploying my application:
    Error in compiling Flex application:
    Error: Branch between 8479 and 41869 around line 0 exceeds 32K span.
    If possible, please refactor this component.
    Failed to compile AAD8T3.mxml
    The only thing I know is the iView that has code AAD8T3, so I suppose the error is in it.
    But what is the error and what are the objects it relates to?
    Thanks,
    Yulia

    Hi
    This is solved for Flex2, the up comming version of VC does not have this problem, but release dates for it are not set.
    Jarrod Williams

  • Getting a bad bind variable error while compiling a custom form in R12

    Hi,
    I am getting a bad bind variable error while compiling a custom form.
    I tried setting the forms_path variable and I am still getting the error. Can anyone please suggest what can be done?
    DECLARE
    BEGIN
    IF :parameter.p_line_ship_to = 'T'
    THEN
    IF :SYSTEM.cursor_item = 'LINE.SHIP_TO'
    THEN
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    oe_lines.ship_to ('WHEN-VALIDATE-ITEM');
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    END IF;
    :parameter.p_line_ship_to := 'F';
    END IF;
    END;
    I am getting this error:
    Bad bind variable 'parameter.p_line_ship_to'

    The Parameter is not defined in the form.. But, this form is already been compiled and deployed.. I have to make some changes to the form and tried to compile it, when i am getting this error. Is it possible that the parameter would be defined in some other form or can this error be due to some other reasons?
    Thanks in Advance.

  • We are facing error while executing Bex report.

    Hi Gurus:
    We are facing error while executing Bex report.
    Messge :                                                                          
    u201CQuery 0: Runtime error program state check for conversation 05284411 / CP  with parallel processing via RFC
    Message no. DBMAN428u201D
    The query is based upon Multiprovider (based upon 2 basic cubes).
    Both cubes are partitioned by   info object 0CALMONTH, (valid range - 01.2005 - 012.2010).
    Those cubes are not containing any non-cumulative key figures and Service package level for  SAP NetWeaver BI 7.0 is  u2018SAPKW70012u2019.
    I have checked those cubes in RSRV and carry out following steps:
    "All Elementary Tests -> Transaction Data" and execute the repair "Consistency of the Time Dimension for an Info Cube"
    I have found system inconsistency like u201CRecord with the DIMID 2 contains non-fitting time characteristics u201C
    Detail ERROR:
    Record with the DIMID 2 contains non-fitting time characteristics
    Message no. RSCV053Diagnosis
    The data record of the time dimension table with the described DIMID contains values for time characteristics that do not fit together.
    I have found the u2018 Note 1130450 - Query displays error DBMAN 284; RSRV: Time dimension checku2019  for this but still not sure this will work or not .
    I tested this in dev server , didn't feel useful.
    Could you please let us know what to correct this error.
    Anwser will be rewared.
    Regards,

    >
    Surendra Pande wrote:
    > Anwser will be rewared.
    > Regards,
    Go read the RULES of these forums.

Maybe you are looking for

  • RFC connection error when registering PROGRAM ID.

    Hi, I created a RFC connection of type T. I gave the following parameters -> gateway host: hostname and then ip-address gateway service: sapgwxx Registered program id: xxx It is giving me the following error: Error Details     Error when opening an R

  • Problem with document.form.submit()

    Hi I have a URL like "http://blrkec30386:9080/abcd/MyServlet?Action.Admin.Init=Y&AppSignonBankId=024" when i write this in a plane html file (as given below) ina form and submitt the same it works fine.. but if i include the same to a jsp (environmen

  • Receive IDOC INVOIC even if GR based IV is flagged while creating purchase

    Hi, I created a Purchase order by selecting the flag for GR Based IV. Now I would like to receive Invoice before GR is created through IDOC via EDI. Is there any SAP note to receive and park the IDOC when the GR based IV is selected in PO. Regards, S

  • Why app "ps touch: (adobe photoshop touch) not installed to my iphone?

    Hi, i bought the application " adobe photoshop touch" from Apple iTunes, the money is already disscharged, but the problem is this app not installed to my iphone, and the full message that apperes when i try to installe is: the app PS Touch" was not

  • CNiFieldPointNetworkModule Class reference not find in Measurement Studio 2009

    Hi all, I am having a application on Visual Studio 2003 and Measurement Studio 7.1 . I want to migrate this application on Visual Studio 2005 and Measurement Studio 2009.  My application is using CNiFieldPointNetworkModule class , I am unable to find