A problem from "import" statement

When I was doing some test on "package" and "import" statement, I had a problem.
1 I compiled one class:
package com.sheng.population;
public class A {
     public static int sum (int k, int l) {
          return (k+l);
2 I tried to call the method 'sum' in A:
import com.sheng.population.*;
public class B {
     public static void main(String[] args){
          int i=9;
          int j=100;
          int k = A.sum(i, j);
          System.out.println(k);
Then I got the error message:
"B.java:7: cannot access A
bad class file: E:\newjava\analysis\LDmeasure\A.java
file does not contain class A"
Only after I changed the import statement to "import com.sheng.population.A;" , then it worked.
I just do not know why the '.*' does not work?
Thanks

Let's say your directory structure is "e:\newjava\com\sheng\population\A.class" and "e:\newjava\analysis\LDmeasure\A.java"
If your Classpath is .;e:\newjava and when you compile, your current directory is e:\newjava\analysis\LDmeasure then you have A.java and A.class in your Classpath. When you use "import com.sheng.population.*;" the compiler does not know you mean com.sheng.population.A. The compiler finds A.java and thinks it is the A class that the B class needs. When it tries to compile A.java it finds the class name is com.sheng.population.A which causes the error. When you use "import com.sheng.population.A;" the compiler does not try to use A.java.
If you are keeping the source code in a different directory from the compiled classes, then you should not have the source code in the Classpath. So, if you make sure the current directory is not e:\newjava\analysis\LDmeasure then it should compile.

Similar Messages

  • Problems with IMPORT STATEMENT

    Please, can someone assist me? I am using Java Studio Enterprise 8.1 & Netbeans to design a java application and input form. But the wizard keeps on generating repeated class and subclasses even after I have used the import statement. Its making my program looks clumsy.
    I just want to use import statement once and start using the variable in the program without repeating the declaration.
    For instance, after importing javax.swing.*, I just want to be able to specify in my program (e.g JPanel Coylogo) without the wizard generating another private javax.swing.JPanel Coylogo.
    How can I do it. Please help. I will appreciate
    You look at the following section of the program to unstand what I mean. Thank you.
    import java.awt.HeadlessException;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.sql.*;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import javax.swing.*;
    import java.sql.Date;
    * @author */
    public class inputForm extends JFrame
    private Connection con;
    private Statement stmt;
    private int k;
    ResultSet rs=null;
    // Variables declaration - do not modify
    private javax.swing.JLabel ClassLabel;
    private javax.swing.JPanel Connectivitypanel;
    private javax.swing.JPanel Coylogo;
    private javax.swing.JCheckBox DataCapable;
    private javax.swing.JLabel DateLabel;
    // End of variables declaration
    * Creates new form inputForm
    public inputForm()
    //con = new dbConnect();
    initComponents();
    con = dbconnection();
    /** This method is called from within the constructor to
    * initialize the form.
    * WARNING: Do NOT modify this code. The content of this method is
    * always regenerated by the Form Editor.
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents()
    Coylogo = new javax.swing.JPanel();
    PhoneType = new javax.swing.JPanel();
    PhoneIdLabel = new javax.swing.JLabel();
    ClassLabel = new javax.swing.JLabel();
    phoneid = new javax.swing.JTextField();
    DateLabel = new javax.swing.JLabel();
    Connectivitypanel.setBorder(javax.swing.BorderFactory.createTitledBorder("CONNECTIVITY"));
    pbluetooth.setText("Bluetooth");
    pbluetooth.setActionCommand("bluetooth");
    pbluetooth.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
    pbluetooth.setHorizontalAlignment(javax.swing.SwingConstants.TRAILING);
    pbluetooth.setHorizontalTextPosition(javax.swing.SwingConstants.LEFT);
    pbluetooth.setMargin(new java.awt.Insets(0, 0, 0, 0));
    }// </editor-fold>
    private void allPhonesTypeActionPerformed(java.awt.event.ActionEvent evt)
    }

    disable add imports or organize imports in your IDE

  • Problem in import statement

    Hi There,
    I am working on the expense management project using mobile so i just started with the Embedded SQL So,whenever i am trying with following code.
    import java.sql.*;
    public class ModelMIDlet
    private Connection Database;
    private Statement DataRequest;
    public ModelMIDlet()
    String url="jdbc:odbc:CustomerInformation";
    String uid="umesh";
    Stirng password="umeshD";
    try
    }catch(ClassNotFoundException er)
    System.err.println("Unable to load the JDBC/ODBC bridge" +er);
    System.exit(1);
    catch(SQLException er)
    System.err.println("Cannot connect to the database" +er);
    if(Database!=null)
    try
    Database.close();
    }catch(Exception e){}
    System.exit(2);
    try
    {}catch(SQLException er)
    System.err.println("SQL error" +er);
    if(Database!=null)
    try
    Database.close();
    catch(Exception ex){}
    System.exit(3);
    if(Database!=null)
    try
    Database.close();
    catch(SQLException er){}
    public static void main(String args[])
    final ModelMIDlet sql1=new ModelMIDlet();
    System.exit(0);
    it shows error after running that package java.sql.* does not exist.So please guide me about this problem is it necessary to use additional API related to SQL?

    I got this to work this morning. 
    When you try and set-up the SAP wsdl in .NET it complains about not seeing any port's or complex types.  This is because SAP has moved these out into seperate files.  .NET doesn't try to link these files at this time.  If you simply click on "Add as reference" in Visual Studio at the time of importing the WSDL your problems disappear like magic..
    Hope this helps someone..
    Jarrod

  • Problem with import statement !!!

    Hi all,
    When I'm compiling a java progam(client program in an EJB application) I'm getting the following error.
    \ejb\converter\ConverterClient.java:14: '.' expected
    import Converter;
    ^
    \ejb\converter\ConverterClient.java:15: '.' expected
    import ConverterHome;
    ^
    2 errors
    All files , Home interface , bean class , remote interface and client program are all in same folder. And no package statement is used.
    When I had removed the above statements , it compiled well.But After when running the client (after every thing is done and deployed bean in J2EE server using deploy tool ), the following error is coming..
    Binding name:`java:comp/env/ejb/SimpleConverter`
    Application threw an exception:java.lang.NoClassDefFoundError: ConverterHome
    Unbinding name:`java:comp/env/ejb/SimpleConverter`
    Can any one suggest a solution with explanation ???
    I'm using J2SE 1.4 beta 2 version. This J2EE SDK us designed for J2SE 1.3 . is this the reason ??
    Thanks in advance..
    ashok

    Did you added the <your_ejb>.jar file to the classpath??
    /Sreenivasa Kumar Majji.
    Hi all,
    When I'm compiling a java progam(client program in an
    EJB application) I'm getting the following error.
    \ejb\converter\ConverterClient.java:14: '.' expected
    import Converter;
    ^
    \ejb\converter\ConverterClient.java:15: '.' expected
    import ConverterHome;
    ^
    2 errors
    All files , Home interface , bean class , remote
    interface and client program are all in same folder.
    And no package statement is used.
    When I had removed the above statements , it compiled
    well.But After when running the client (after every
    thing is done and deployed bean in J2EE server using
    deploy tool ), the following error is coming..
    Binding name:`java:comp/env/ejb/SimpleConverter`
    Application threw an
    exception:java.lang.NoClassDefFoundError:
    ConverterHome
    Unbinding name:`java:comp/env/ejb/SimpleConverter`
    Can any one suggest a solution with explanation ???
    I'm using J2SE 1.4 beta 2 version. This J2EE SDK us
    designed for J2SE 1.3 . is this the reason ??
    Thanks in advance..
    ashok

  • Problem with import statement for user created classe

    I recently downloaded J2sdk1.4.0_03 before that I had jdk1.3 and never had this problem.All the files other than named package I import for my
    application does not compile.But when I commented that out it work just fine.
    any help is appreciated

    thanks
    It makes sense not to import non-packaged class.
    My other problem is with JDBC ODBC.I have a Dell system with Windows XP.
    I registered my User Data Source to ODBC with MS Text driver(.txt , csv).When the code reaches at the .executeUpdate(CREAT TABLE CUSTOMERS)
    it throws an exception
    sQLException 3:java.sql.SQLException: [Microsoft][ODBC Text Driver] Cannot modify the design of table 'CUSTOMERS'. It is in a read-only database.
    Do I really need to change the attribues or some thing else.
    How can I chane the attributes of the database.Never had problem with windows 98.

  • Java import statement problems

    Hello...
    I have the book "Java in a Nutshell, 2nd ed" and have a query about a nested top-level interface example they have in the book.
    Basically there's two files/classes. The first, LinkedList.java, is as follows:
    public class LinkedList {
        public static interface Linkable {
            // Linkable interface details here
        // rest of LinkedList class here
    Next is LinkedList.java as follows:
    import LinkedList.*;
    class LinkableInteger2 implements Linkable {
        // rest of LinkableInteger2 class here
    Now I thought the import statement had two forms - and both used a package name as part of the statement:
    import package.class;
    import package.*;
    Obviously, neither class has a package statement.
    As written, these classes do not compile. Am I right in assuming the lack of a package name is causing this problem, or is there something else going on here?
    Thanks...
    Mark.

    Since you don't have package statements in the files, the classes are being placed in the default package. You cannot explicitly import classes from the default package. Al classes in the default package, the java.lang package and the current package are always imported automatically. Your import statement is incorrect - remove it.

  • Problems with importing text messages from PC Suit...

    Problems with importing text messages from PC Suit 7.1.18.0 to my Nokia 5800
     I am trying to import a csv file that contains text messages (Note that this file was created using PC Suit 7.1.18.0) to a subfolder that I have created to My Folders but PC Suits only imports the text messages to the Draft folder. Note that initially it shows that the messages are import in the correct folder but after a refresh it shows them in the Draft Folder. Is their any setting that I should change in the PC Suit or the phone? My computer runs on Windows XP Service Pack 3 and the Nokia 5800 was upgraded to the latest firmware v20.0.012
     Thanks for your help

    Most phones only allows importing of draft and archived box for SMS.
    To do a restoring, you need to backup the SMS as a .nbu file using PC Suite and restore later.
    If you got an SD card, you can also do a backup on the SD Card (backup.arc) then restore later (reset and restore: backup.arc and mmc).
    What's the law of the jungle?

  • JSP import statement problem

    Hey, I got confused with all import statement with jsp.
    Here is my problem.
    Folder structure:
    C:\Program Files\netbeans-4.1\enterprise1\jakarta-tomcat-5.5.7\webapps\ROOT\WEB\S\A
    This folder contains a.jsp.
    JSP code:
    <%@ page
         language="java"
         import="java.sql.*, MyPackage.DataBase"
         errorPage=". . ."
         contentType="text/html; charset=windows-1251"
    %>
    <%
           Connection connection = null;
         Statement statement = null;
           DataBase dataBase = new DataBase( connection, statement );
    %>
    ...Error message that I get:
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    C:\Program Files\netbeans-4.1\enterprise1\jakarta-tomcat-5.5.7\work\Catalina\localhost\_\org\apache\jsp\WEB\S\A\a_jsp.java:7: package MyPackage does not exist
    import MyPackage.DataBase;
                       ^
    An error occurred at line: 104 in the jsp file: /WEB/S/A/a.jsp
    Generated servlet error:
    C:\Program Files\netbeans-4.1\enterprise1\jakarta-tomcat-5.5.7\work\Catalina\localhost\_\org\apache\jsp\WEB\S\A\a100_jsp.java:147: cannot resolve symbol
    symbol  : class DataBase
    location: class org.apache.jsp.WEB.S.A.a_jsp
           DataBase dataBase = new DataBase( connection, statement );
            ^
    ...How do I import that class so I can use it?
    Do I need to use useBean?
    What do I need to do?
    Thanks

    DataBase class does not extend java.sql.
    I put this into my jsp page
         import="java.sql.*;"
         import="MyPackage.DataBase;" Here is the error message
    Generated servlet error:
    C:\Program Files\netbeans-4.1\enterprise1\jakarta-tomcat-5.5.7\work\Catalina\localhost\_\org\apache\jsp\WEB\S\A\a_jsp.java:7: 'class' or 'interface' expected
    import MyPackage.DataBase;;
    ^
    1 error
    ...

  • Executing db2 import statement from java

    we have developed an web application using J2EE technology on websphere and DB2 as a backend.
    I have to now develop a utility for data uploading from Excel to DB2. we can do it using IMPORT statement now i want to know is it possible to execute IMPORT statement from JSP/ Servelet and using javabeans.

    Yes, it is possible :-)

  • Program Problems...Import Statement needed?

    I am currently a student at DeVry University, and today I had my java class where my professor played a video on java programming for us made by a group called "CBTNuggets". The video went over Inner classes and the professor had us copy the code as the person in the video was typing it up. While attempting to compile the code I encountered several compiler errors on the second of the two files I had typed, I am going to first post the source code for both files, and then follow that with the compiler errors that were generated when I attempted to compile the code. If anyone is able to assist me with this I would greatly appreciate it, I think I may need to add an import statement ;however, I do not know how to implement one for user defined Inner Classes:
    Invoice.java was the file that contained the Inner classes
    * Invoice.java
    * Created on February 1, 2007, 1:39 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    * @author vontux
    import java.util.*;
    public class Invoice {
        private String strCustName;
        private String strCustAddr;
        private int intInvoiceNum;
        private Date dtInvoiceDate;
        /** Creates a new instance of Invoice */
       Invoice(String sCN, String sCA, int iN, Date dt)
           strCustName = sCN;
           strCustAddr = sCA;
           intInvoiceNum = iN;
           dtInvoiceDate = dt;
      class InvoiceItem //enclosed class
          private int intLineItem;
          private int intItemID;
          private int intUnits;
          private String strItemDesc;
          InvoiceItem(int li, int id,String desc, int iu)
              intLineItem = li;
              intItemID = id;
              intUnits = iu;
              strItemDesc = desc;
          public void showInvoice()
              System.out.println("Customer Name: " + Invoice.this.strCustName);
              System.out.println("Item Description: " + strItemDesc);
    }UseInvoice.java is the class that is supposed to create objects of the Inner classes from Invoice.java and then run the code:
    * UseInvoice.java
    * Created on February 1, 2007, 1:51 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    * @author vontux
    import java.util.*;
    public class UseInvoice {
        public static void main(String[] args)
            Date today = new Date();
            Invoice myInvoice = new Invoice("Robert Barrr", "12345 N. CBTNuggets Dr.", 321,today );
            Invoice.InvoiceItem myInvItem = myInvoice.new InvoiceItem(1, 345,"Toy Train", 2);
            myInvItem.showInvoice();
        /** Creates a new instance of UseInvoice */
        public UseInvoice() {
    }And here are the compiler errors that I recieved:
    C:\Documents and Settings\Matt\Desktop\temptemp\temp\UseInvoice.java:19: cannot
    find symbol
    symbol  : class Invoice
    location: class UseInvoice
            Invoice myInvoice = new Invoice("Robert Barrr", "12345 N. CBTNuggets Dr.
    ", 321,today );
            ^
    C:\Documents and Settings\Matt\Desktop\temptemp\temp\UseInvoice.java:19: cannot
    find symbol
    symbol  : class Invoice
    location: class UseInvoice
            Invoice myInvoice = new Invoice("Robert Barrr", "12345 N. CBTNuggets Dr.
    ", 321,today );
                                    ^
    C:\Documents and Settings\Matt\Desktop\temptemp\temp\UseInvoice.java:20: package
    Invoice does not exist
            Invoice.InvoiceItem myInvItem = myInvoice.new InvoiceItem(1, 345,"Toy Tr
    ain", 2);
                   ^
    3 errors

    There are no errors occurs when I compile this two java files .
    Here are the result I'm using jdk1.6 and dos command
    [output]
    [search path for source files: [D:\J2SDK1.6.0\lib, .\out]]
    [search path for class files: [D:\J2SDK1.6.0\jre\lib\resources.jar, D:\J2SDK1.6.0\jre\lib\rt.jar, D:\J2SDK1.6.0\jre\lib\sunrsasign.jar, D:\J2SDK1.6.0\jre\lib\jsse.jar, D:\J2SDK1.6.0\jre\lib\jce.jar, D:\J2SDK1.6.0\jre\lib\charsets.jar, D:\J2SDK1.6.0\jre\classes, D:\J2SDK1.6.0\jre\lib\ext\dnsns.jar, D:\J2SDK1.6.0\jre\lib\ext\localedata.jar, D:\J2SDK1.6.0\jre\lib\ext\sunjce_provider.jar, D:\J2SDK1.6.0\jre\lib\ext\sunmscapi.jar, D:\J2SDK1.6.0\jre\lib\ext\sunpkcs11.jar, D:\J2SDK1.6.0\lib, .\out]]
    [parsing started .\Invoice.java]
    [parsing completed 31ms]
    [parsing started .\UseInvoice.java]
    [parsing completed 15ms]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/lang/Object.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/lang/String.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/util/Date.class)]
    [checking Invoice]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/lang/System.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/io/PrintStream.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/io/FilterOutputStream.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/io/OutputStream.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/io/Serializable.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/lang/StringBuilder.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/lang/AbstractStringBuilder.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/lang/CharSequence.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/lang/Comparable.class)]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/lang/StringBuffer.class)]
    [wrote .\out\Invoice$InvoiceItem.class]
    [wrote .\out\Invoice.class]
    [checking UseInvoice]
    [loading D:\J2SDK1.6.0\lib\ct.sym(META-INF/sym/rt.jar/java/lang/Class.class)]
    [wrote .\out\UseInvoice.class]
    [total 734ms]
    [output]
    check your syntax to compile these two files, may be you can show your syntax to compile these two files
    javac [options] [classpath] source

  • Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    haben
    From looking at the specifications of your camera (SJCam 4000), we know already what video compression your camera is using. It is H.264.
    A H.264.mov file should be supported by Premiere Elements 11. On what computer operating system is your Premiere Elements 11 running?
    Do you have the latest version of QuickTime installed on your computer? And, are you running QuickTime and Premiere Elements 11 from a
    User Account with administrative privileges? Please go to Premiere Elements 11 Publish+Share/Computer/QuickTime to confirm that you find
    presets there for the QuickTime choice there.
    What are the properties of these H.264.mov files - is it 1080p30 (1920 x 1080p30)  or something else? Do you know if this camera is recording with a variable or
    a constant frame rate?
    Please review and consider and then we will decide what next.
    Thank you.
    ATR

  • Aperture Video Import Problem - from Lumix GH4: Imported clips have their dates changed to the import date.  The files show up on the hard drive but many are not showing up in Aperture.

    Aperture Video Import Problem - from Lumix GH4: Imported clips have their dates changed to the import date.  The files show up on the hard drive with import date not created date, but many of these same files are not showing up in Aperture. Sometimes the clips actually show up with the current import but take on the video information from a previously imported file.

    It was suggested I move this question to IPhoto or IMovie which I did. 
    Well moving to a different discussion group did not provide an answer to this question either. But what I finally did was import one batch of photos and videos into IPhoto for a given day at a time. Working with these I could change the date and times in order to get them in the original sequench taken. Then I would create an album with that batch. These would all be on the same day (IMove was closed for this phase). Then I would open IMovie, generate the thumbnails for that album, and select the album I had created. This was necessary because the importing process in IPhoto was using incorrect dates for my video so it was a real struggle finding them in IMove until I developed this approach.
    I believe that this whole process was so screwy because I was importing from an external hard drive not a camera. I had these photos on a PC and did not have the original cameras to use to import directly which I am fairly sure would have made this easier!

  • Problem in mapping from  import manager  to Data manager

    hi friend's....I got a problem while mapping the data from import manager  to Data manager .The problem is the data in import manager (i.e source hierarchy) will map to single filed in data manager ( i.e target hierarchy)..
    Help me it will be great full to me
    Regards
    Yugandhar

    Hi Ana,
    If you have a hierarchy in this format:
    N1            N2                 N3
    A              A1                 A11
    A              A2                 A21
    A              A3                 A31
    B              B1                 B11
    Then u have to follow these steps for import.
    1. Select source file and destination hierarchy table at top of import manager.
    2.  Go to Partitions tab (Second tab) Just above the tabs, if u click on the plus sign against your source file, you will see N1, N2 and N3. Cick on N1 and in partition tab, add N2 to right side by double clicking on N2.
    3. Now add N3 to right side by double clicking on it.
    4. Go to field mapping (Third tab). There you will see a field N1(Partition). Map this field to yourhierarchy field on destination side.
    5. In value mapping (Below the field mapping), Expand your source hierarchy. Select all (ctrl + A). Click on "Add" button. Select "Add Branch as child" option.
    6. Go to Matching tab (Fourth tab). only one field will be there. take ity on the right side. and select the import action as "Create".
    7. Go to last tab. Click on import button.
    Your hierarchy has been imported. You can check it in data manager (in hierarchy mode).
    Hope this solves your problem.
    Regards,
    Dheeraj.

  • Problem in importing from dmp file

    Hi ,
    I am facing problem while importing from dmp file on unix server
    Error is as follows :
    Export file created by EXPORT:V08.01.07 via conventional path
    IMP-00013: only a DBA can import a file exported by another DBA
    IMP-00000: Import terminated unsuccessfully
    Export taken was with user xxx@yyy
    import command is : imp xxx/ppp file=abc.dmp TABLES=xxx.table1 ignore=y feedback=500
    please help me out.
    Atul Chougule

    I tried with FROM USER / TO USER , but the result is same.
    $ imp uuu/ppp file=aaa.dmp fromuser=uuu touser=uuu ignore=Y
    Import: Release 8.1.7.3.0 - Production on Thu Jun 15 06:44:49 2006
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to: Oracle8i Enterprise Edition Release 8.1.7.3.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.3.0 - Production
    Export file created by EXPORT:V08.01.07 via conventional path
    IMP-00013: only a DBA can import a file exported by another DBA
    IMP-00000: Import terminated unsuccessfully
    I am stucked up ,Dont know what to do .

  • Problem in Importing RFC from ECQ to XIQ

    Hi.....
    I have a problem in importing the RFC from ECC Quality Server to PI Quality Server.......
    When I fill the fields like
    Application Server......
    System Number.....
    UserName
    Password.....
    I am getting a screen Problem.....in which error information is given....
    One of the error is UserName(XXXX) cannot have access to aii.sap......
    Please help me.....
    Thanks,
    Sudheer

    Hi Sudheer,
    Kindly check the user having all authorizations which you are try to importing the RFC's from ECQ to XIQ, check with your basis team and try to provide the required authorizations for that particular user.
    Then you can able to import RFC's and do the design by activating the objects.
    Regards
    Venkat Rao .G

Maybe you are looking for

  • No data to retrieve Query1

    Hi, We have a typical issue, we work on webi report from BI Launch Pad, Our client User created a 2 users to access and design webi reports. 1 User is able to run the query and able to get results of the query and report is running fine. Whereas othe

  • BPM Sync/Async Scenario:  error: "Timeout condition of pipeline reached"..!

    Hi, I am doing Sync/Async BPM scenario. -> Receive message and process and response back to the sender. Sometimes it will correct correctly. Sometime the message will come and stay in XI and fails with error <SAP:Error xmlns:SAP="http://sap.com/xi/XI

  • Variable message length without field separator to file receiver adapter

    Hi, I have a XML document as below <MT_O_FF> <ROW>      <HEADER>        </HEADER>      <QMGR>                       </QMGR>     <MESSAGE> TEST MESSAGE </MESSAGE> </ROW> </MT_O_FF> I know the field lengths of <HEADER> and QMGR but MESSAGE has variable

  • How to link label with an input field in data table?

    I am curious if there is a nice way to link a label to input field in a data table directly in JSP? Data filling the table are dynamically bounded. Sample, simplified code below. Values of "label" property are unique in the collection binded to dataT

  • Taking info off an old Imac dv

    I am upgrading someones old imacdv to a nice macbook. Trouble is, it's been so long I can't remember the OS9 way of doing things. How can I get information(i.e. word docs, addresses, etc.) off of that computer? I tried putting a cd in and the box jus