SE,PT DOESN"T EXIST IN COUNTRY TABLE

HI EXERTS,
when i run foreign currency valuation for gl account in t code FAGL_FC_VAL ,the following error massege is showing...,SE, PT,DOES NOT EXIST IN THE COUNTY TALBLE.
my company code country is india- and i use hard currency and group currency in USD..already IN and US codes and hard currency USD are there in country table.....WHY THE SYSTEN ASKS THE OTHER COUNTY CODES. I M USING COPIED VERSION......
THANKS IN ADVANCE.

Hi
Copy here whole message including message no etc.,
Check table T005 the availability of country codes of SE (Sweden) and PT(Portugal).  some body must have deleted.
You can create at SPRO-SAP NetWeaver-General Settings-Set Countries-Define Country Codes
Srinivas
Edited by: Srinivasa Maruvada on Dec 4, 2011 10:43 AM

Similar Messages

  • COUNTRY CODE DOESN'T EXIST IN COUNTY TABLE

    Hi experts,
    when i run foreign currency  valuation for gl account in t code FAGL_FC_VAL ,the following error massege is showing...,SE, PT,DOES NOT EXIST IN THE COUNTY TALBLE.
    my company code  country is india-  and i use hard currency and group currency in USD..already IN and US  codes and hard currency USD are there in country table.....WHY THE SYSTEN ASKS THE OTHER COUNTY CODES. I M USING COPIED VERSION......
    THANKS IN ADVANCE
    NARAYANA.

    thanks, but what is link between to fagl_fc_val and other country codes . my company code and local currency is inr,, group and hard currency is usd , the country code  US  is there in the county table.
    thanks in advance,

  • Enhancing existing Abap code: using values that doesn't exist in table

    Hi,<br><br>
    I would like to enhance this code . My requirement is as follows.<br><br>
    I have two tables  customer and product<br><br>
    <pre>KNVP  customer master data table
    Customer                            PF                Person
    700008          YF     45555
    700008          YQ     46666
    700008          ZF     46666
    700008          YM     49999
    700008          ZQ     44444
    700008          ZM     43333
    T179 product hierarchy table*
    product hier                     PF
    1000014000          ZM     
    1000015000          ZF     
    1000033000          ZQ     
    The current extractor is showing YM for all YPF values
    Customer         Zperson          ZPF        YPF    YPerson
    700008            46666              ZF          YM        49999
    700008            43333              ZQ         YM        49999
    700008            44444              ZM         YM        49999</pre>
    <br><br>
    Case 1:IF customer doesn't have Partner function value YQ in master data then partner function YF person and partner function should be use.
    <br><br>
    case 2: IF customer doesn't have Partner function value YF in master data then partner function YQ person and partner function should be use.
    <br><br>
    case3:IF customer doesn't have Partner function value YQ and YF in master data then partner function YM person and partner function should be use.
    <br><br>
    The tricky part is that YQ doesn't exist in T179 table
    <br><br>
    <pre>
    LOOP AT T_DATA.
          ZIDX = SY-TABIX.
          CLEAR T179.
       Select partner function, assigned to current
       product hierarchy level 2
          SELECT * FROM T179
                   WHERE  STUFE = '2'
                   AND    PRODH = T_DATA-PRODH.
          ENDSELECT.
       Replace value with new partner function.
       by replacing first letter to 'Y'
          CONCATENATE 'Y' T179-ZZPARVW+1(1) INTO NEWPF.
       Try to find new sales employee with this new partner function
          CLEAR KNVP.
          SELECT * FROM  KNVP UP TO 1 ROWS
            WHERE  KUNNR  = T_DATA-KUNNR
            AND    VKORG  = T_DATA-VKORG
            AND    PARVW  = NEWPF.
          ENDSELECT.
          IF SY-SUBRC EQ 0.
       New partner found with this partner function
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
      ELSE.
                NEWPF = 'YM'.
       Try to find new sales employee with partner function 'YM'
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = NEWPF.
            ENDSELECT.
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
          ENDIF.
          MODIFY T_DATA INDEX ZIDX TRANSPORTING ZPARVW ZPERNR.
    </pre>
    <br><br>Edited by: Matt on Aug 24, 2010 9:31 AM - fixed formatting

    Hi,
    thanks for your input, I have written it like this and it is working well for YQ and YF partner functions but YM is not showing when both are missing.
    LOOP AT T_DATA.
          ZIDX = SY-TABIX.
          CLEAR T179.
    *    Select partner function, assigned to current
    *    product hierarchy level 2
          SELECT * FROM T179
                   WHERE  STUFE = '2'
                   AND    PRODH = T_DATA-PRODH.
          ENDSELECT.
    *    Replace value with new partner function.
    *    by replacing first letter to 'Y'
          CONCATENATE 'Y' T179-ZZPARVW+1(1) INTO NEWPF.
    IF SY-SUBRC EQ 0.
    IF NEWPF EQ 'YF'.
          READ TABLE T_KNVP WITH KEY PARVW = 'YF'.
            IF SY-SUBRC EQ 0.  "YF exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YF'.
            ENDSELECT.
              T_DATA-ZPARVW = 'YF'.
              T_DATA-ZPERNR = KNVP-PERNR.
            ELSE.
            READ TABLE T_KNVP WITH KEY PARVW = 'YQ'.
            IF SY-SUBRC EQ 0. "YQ exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YQ'.
            ENDSELECT.
               T_DATA-ZPARVW = 'YQ'.
               T_DATA-ZPERNR = KNVP-PERNR.
    ENDIF.
    ENDIF.
    ENDIF.
    IF NEWPF EQ 'YQ'.
          READ TABLE T_KNVP WITH KEY PARVW = 'YQ'.
            IF SY-SUBRC EQ 0.  "YQ exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YQ'.
            ENDSELECT.
              T_DATA-ZPARVW = 'YQ'.
              T_DATA-ZPERNR = KNVP-PERNR.
            ELSE.
            READ TABLE T_KNVP WITH KEY PARVW = 'YF'.
            IF SY-SUBRC EQ 0. "YF exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YF'.
            ENDSELECT.
               T_DATA-ZPARVW = 'YF'.
               T_DATA-ZPERNR = KNVP-PERNR.
    ENDIF.
    ENDIF.
    ENDIF.
          ELSE.
            NEWPF = 'YM'.
    *    Try to find new sales employee with partner function 'YM'
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = NEWPF.
            ENDSELECT.
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
          ENDIF.
          MODIFY T_DATA INDEX ZIDX TRANSPORTING ZPARVW ZPERNR.
        ENDLOOP.
    thanks
    Edited by: Bhat Vaidya on Aug 30, 2010 1:31 PM

  • Reg: Table doesn't exist -

    Hi Experts,
    I'm getting this error - 'Table or View doesn't exist' when the table <tt>DBA_DML_LOCKS</tt> is used inside a (cursor) package but the same works fine when run independently.
    I'm quite sure that I'm lacking some knowledge there. Can anybody please help me in that?
    CREATE OR REPLACE PROCEDURE dml_locks
    AUTHID CURRENT_USER --DEFINER
    IS
       CURSOR cur_locks
       IS
          SELECT ROW_NUMBER () OVER (PARTITION BY b.session_id ORDER BY b.name)
                    "Rno",
                 a.sid "session_id",
                 a.schemaname,
                 b.name "table_name",
                 b.mode_held "lock_mode_held",
                 a.osuser,
                 a.machine,
                 a.program
            FROM v$session a, dba_dml_locks b
           WHERE a.sid = b.session_id;
    BEGIN
       FOR i IN cur_locks
       LOOP
           --HTP.PRINT (i.rno || '---' || i.session_id);
           htp.print('*');
       END LOOP;
    EXCEPTION
       WHEN OTHERS
       THEN
          HTP.PRINT ('Error - ' || DBMS_UTILITY.format_error_backtrace);
    END;Is it something related to the rights - Definer or Current User?
    Checked this similar thread but couldn't understand - table/view does not exist using dbms_sql
    Help much appreciated!
    - Ranit (on Oracle Database 10g Enterprise Edition Release *10.2.0.5.0* - 64bi )

    ranit B wrote:
    Karthick_Arp wrote:
    Grant to dictionary objects is assigned through a ROLE to your user. You need to have grant assigned explicitly to your user to access the object from within a PL/SQL code.Ohhh... nice to hear that. Thanks!
    Can't I use <tt>AUTHID</tt> to resolve this?
    And I'm not getting - what is the difference between Grants through ROLE and explicitly assigned Grants? I mean to say finally all give Grants only right??
    Edited by: ranit B on May 6, 2013 12:41 PMhttp://asktom.oracle.com/pls/asktom/ASKTOM.download_file?p_file=6551289900368934430

  • Delete allowed in a multirow blk only if no records exist in another table

    How can I delete an existing row in a multirow block after checking that no records exist in another table ?
    How do I proceed please ?
    I know I need to check the primary keys of both tables to do that . Please help.

    I've written the following code in the KEY-DELREC trigger :
    DECLARE
    *     Fail EXCEPTION;*
    *     alert_title varchar2(100) := null;*
    *     p_button_choice number := 0; -- 10g : for Stop_Alert, Caution_Alert & Note_Alert*
    *     cnt NUMBER;*
    *     choice NUMBER;*
    Begin
    *     If :system.record_status NOT IN ('INSERT', 'NEW') THEN -- can be CHANGED or QUERY mode*
    *          begin*
    *          SELECT count(AMD_CODE)*
    *          INTO cnt*
    *          FROM t_mmamd,t_amdtype*
    *          WHERE AMD_CODE = :AMD_CODE*
    *          AND MMA_AMD_CODE = AMD_CODE;*
    *     IF cnt > 0 THEN*
    Alerts.Stop_Alert('Error: IMDG Code '||:AMD_CODE||'Delete not allowed!!Exists in t_mmamd table', choice);
    RAISE FORM_TRIGGER_FAILURE;                       
    *          ELSE*
    *          alert_title := 'Are you sure to remove this record ?';*
    *          Alerts.Stop_Alert_YesNo (alert_title, p_button_choice);*
    If p_button_choice = 1 Then
    *     delete_record;*
    End if;
    END IF;
    end;
    Else -- record status is in INSERT or NEW mode
    *          delete_record;*
    *     End if;*
    End;
    It works okay and prevents me from deleting records in the other table . However I get the following errors when I try to delete a record which doesn't exist in t_mmamd table :
    Could not resolve record(2 tries) keep trying?
    Error : 40501 - oracle Error unable to reserve record for update or delete .

  • Query the values not exist in the table

    We have a table AP_INVOICES_ALL where we have a column INVOICE_NUM, now we are searching INVOICE_NUM from a large set of values of INVOICE_NUM provided by the user.
    I want a query to find the INVOICE_NUM values supplied by user that doesn't exist in AP_INVOICES_ALL table.
    Database version : 11g
    OS : aix 6.1
    Regards,
    Gaurav

    Hi,
    If you are getting values in the table then the above solution is there but if you are getting the values in excel or text file then you need to upload the data into the table by using sql loader or by using external table.
    if the case then
    load data from excel or plain file into oracle table by using sql loader.(loader is server based utility)
    create table in oracle like create table table_name as column specification.
    If you have excel then save it as .csv file and create sql loader control file like
    oPTIONS (SKIP=1)
    load data
    infile 'Path_where_you_saved_csv_file'
    truncate
    into table table_name_you_have_created
    fields terminated by ','
    optionally enclosed by '"'
    trailing nullcols
    (your_column_name)
    {code}
    call control file from command prompt from the path where your control file and csv or plain file resides.
    {code}
    sqlldr userid=user_name/passowrd@database_name control=control_file_name
    {code}
    above will insert data into table.
    now you can use the select query...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Error trying to relate tables "...either doesn't exist or doesn't have a relationship to any table available in the current context"

    I have two tables;
    The first is my Order table which has a single row for each unique order - there are no duplicate order numbers.The order id column here is called
    OrderID.
    The second is my Submissions table which is similar to a transactions table, there are multiple submissions for every order. This table also contains an
    OrderID column that contains the relevant OrderID.
    The submission table also contains a calculated field called Date and a calculated field called
    MaxDate field which is the date of the most recent submission that relates to any particular order in cases where there are multipple.
    My goal is to add a column to the Order table this MaxDate column. The reason for duplicating the information rather than linking the tables is because I need to create more calculated columns in the
    Orders table based on this value.
    I have created a relationship between the two tables however when I use:
    =RELATED(Submissions[MaxDate]
    I get this error:
    "...either doesn't exist or doesn't have a relationship to any table available in the current context"
    I don't really understand why this would be, because MaxDate definitely exists and contains only numerical values. What is more strange is that if I try and combine the data through a pivot table it actually works! I can create a pivot with OrderID in the first
    column and then associate it with MaxDate from the Submissions
    table as the value. 
    Can anyone help me understand what is the problem here?
    P.S. if it is useful the formula I'm using to calculate the MaxDate is:
    =MAXX(FILTER(Submissions,Submissions[OrderID] = EARLIER(Submissions[OrderID])),[Date])
    Thanks.

    Maracles, is this still an issue?
    Thanks!
    Ed Price, SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Table doesn't Exist Error

    Hi,
    I have source as oracle database and target as HFM. However, I am facing issue in reverse engineering the RDBMS model. It doesn't show the table columns and gives the error "Table doesn't exist.".
    I have tried creating a public synonym as well but to no avail.
    Can anyone please suggest the suitable resolution?
    Thanks
    Abhi

    Hi,
    I added these keys but it is still not reflecting the columns. I tried with credential with DBA privileges but to no avail. The database connection is also getting connected with no hassles.
    Please advice.
    Thanks!

  • Table 'sitv.a' doesn't exist.  vendor code 1146

    Post Author: pattyg
    CA Forum: Crystal Reports
    I need help with a sql statement that I am using in Crystal reports.  The table that I am using is sitv and I get an error that
    it doesn't exist.
    Here is the statement:
    SELECT a.UID, a.fid, b.fname , c.lname, d.genderFROM a as profile_values LEFT OUTER JOIN (SELECT uid,fid, cast(value as char (20)) as 'Fname'     FROM profile_values     WHERE profile_values.fid =1) as bON a.UID = b.UIDLEFT OUTER JOIN(SELECT uid,fid, cast(value as char (20)) as 'lname'    FROM profile_values     WHERE profile_values.fid =2) as cON a.UID = c.UIDLEFT OUTER JOIN(SELECT uid,fid, cast(value as char (20)) as 'gender'    FROM profile_values     WHERE profile_values.fid =3) as dON a.UID = d.UID
    Any help will be greatly appreciated.  Thanks in advance.

    Post Author: pattyg
    CA Forum: Crystal Reports
    I figured it out after I went though my statements more closely.  The second line was reversed.
    FROM a as profile_values
    It should be From provile_values as a.

  • Schematool : Table '...' doesn't exist on MySQL

    I'm trying to use schematool to create the db tables that it has defined in
    various jdo files. When I run it I get the following
    schematool -action refresh target/classes/net/ajsoft/WebShop/Product/*.jdo
    Exception in thread "main" java.sql.Exception: General error, message from
    server: "Table 'JDO.Product' doesn't exist"
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:1651)
    at
    com.solarmetric.datasource.PoolConnection$PoolStatement.executeUpdate(PoolConnection.java:112)
    I am running with a MySQL DB v4.0.11a, and with its JDBC connector v3.0.8.
    There are 3 jdo files being passed in (I assume it can cope with multiple
    input files) - the Base class is Product (jdo file attached), with the
    other 2 being derived from that.
    The database exists, and I can access it (create tables, select etc) using
    Triactive JDO (Triactive uses the table PRODUCT, whereas Kodo should be
    creating 'Product'). In fact, Kodo has created a table JDO_SEQUENCEX, so
    its reaching the DB.
    Any ideas what I'm missing ?
    Andy

    I highly recommend using all upper-case in both metadata extensions as
    well as in your own SQL scripts. For example, in Oracle, table names are
    case-insenstive in SQL scripts, but for retrieval in system tables (e.g.
    USER_TABLES), Oracle will reject non-matching cases.
    This is good general policy with many databases, if not all.
    On Fri, 08 Aug 2003 19:51:33 +0100, Andy Jefferson wrote:
    Andy Jefferson wrote:
    I'm trying to use schematool to create the db tables that it has defined
    in various jdo files. When I run it I get the following
    schematool -action refresh target/classes/net/ajsoft/WebShop/Product/*.jdo
    Exception in thread "main" java.sql.Exception: General error, message from
    server: "Table 'JDO.Product' doesn't exist"
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:1651)
    at
    com.solarmetric.datasource.PoolConnection$PoolStatement.executeUpdate(PoolConnection.java:112)As a followup, I deleted all tables from the DB and re-ran schematool.
    Worked fine. Would be nice to understand what happened the first time to
    cause that error.
    Andy--
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • Table or view doesn't exist when deploying a mapping

    Hello,
    OWB and BI in general is new for me. I have read the tutorials but I have a problem and I don't understand how to solve it :
    I have 2 databases in 2 different services :
    - dbsrc (where I have tabsrc with 2 columns)
    - dbtarget (where I have tabtarget with 1 column)
    OWB connect correctly to dbsrc
    I have made a mapping between dbsrc and dbtarget and I have just joined the second column of dbsrc with the unique column of dbtarget.
    All the steps before deploying are ok but when I deployed I have a warning saying that table or view doesn't exist.
    I have used the debugger and it seems that owb searches dbsrc in the service dbtarget ... I have copied my table from dbsrc to dbtarget and in this case the deployement and the execution of the mapping runs correctly.
    What I'm doing wrong ? Why OWB isn't able to see that my table source is in another database/services ?
    Thanks in advance for your help.

    Hi,
    In design center, you need two oracle dbs: one as data source (with a location pointing to you src db) and one as dwh target (with a location pointing to your target db).
    Your mapping has to be in the target db. In the mapping, you use the target table from the target db and the source table from the source db.
    When you deploy the mapping using control center manager, owb will create a database link for you from the target to the source db. The mapping will read the data through that database link and write it into the target table.
    Regards,
    Carsten.

  • Table doesn't exist

    CS3 on a Macbook Pro
    MAMP
    SQL database with 15 fields and 124 records that was imported from a csv
    I have connected my database to dreamweaver successfully, but when i right click on the table of the database to view data, it produces an error stating the the table doesn't exist.  It does.  I can view the table through phpmyadmin and there are 124 records.
    I created a test table within the same data base and filled it with data, and I was able to see the data in Dreamweaver.  I don't know why one table will 'exist' and the other one 'doesn't exist.'
    thank you.

    thank you david for your guidance.  i solved this problem just a few minutes ago.  i was taking data from an excel spreadsheet, copying the csv data and pasting it into a text document and then changing the extension from .txt to .csv.  this was a necessary workaround because of a problem with the original database.  i found a way to generate the csv data directly from the original database and that solved it.
    i now have a problem and i've started another thread... i have 104 records in my table and view data in DW only shows 100. 
    thanks for your time.
    kevin

  • Procedure Issue (Table/View Doesn't Exist)

    Hi,
    I am running procedure its giving error (table/view doesn't exist) but if i run plsql block then noo error. Please note there is no grants issue.
    please see.
    1) Successfull case:
    BEGIN
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA1';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA2';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LINERENTDISCOUNTB';
    END;
    2)Un-Successfull case: Table / View doesnt exist.
    CREATE OR REPLACE PROCEDURE mobi_test AS
    BEGIN
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA1';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA2';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LINERENTDISCOUNTB';
    END;
    BEGIN
    mobi_test;
    END;
    Any help.
    Regards,
    Irfan Ahmad

    The problem is that your grants for your user to be able to truncate those tables is given through a role. An anonymous block will use role based permissions so you're ok that way. But when it's a stored procedure, role based permissions don't apply.
    To solve it, grant delete/truncate permissions to that user directly.

  • SQLException:Table 'honeypot.casebase' doesn't exist

    Im currently using MySQL database, and encounter this error when I try to run my program. Someone please pin-point my mistake? Im new to Java and MySQL.
    SQLException:Table 'honeypot.casebase' doesn't exist
    java.sql.SQLException: Table 'honeypot.casebase' doesn't exist
           at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2851)
           at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1531)
           at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1622)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2379)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2306)
           at com.mysql.jdbc.Statement.executeUpdate(Statement.java:1298)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    flush(QuadrantTestClassRDB.java:97)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    main(QuadrantTestClassRDB.java:39)
    java.sql.SQLException: Table 'honeypot.problemfeaturespec' doesn't exist
           at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2851)
           at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1531)
           at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1622)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2379)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2306)
           at com.mysql.jdbc.Statement.executeQuery(Statement.java:1192)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB.getFeatureSpecC
    ount(FeatureSpecRDB.java:162)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.setupDefaultFeatureDifferentiators(AbstractProblemDifferentiator.java:85)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:74)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:62)
           at edu.indiana.iucbrf.problem.differentiator.EuclideanProblemDifferentia
    tor.<init>(EuclideanProblemDifferentiator.java:40)
           at edu.indiana.iucbrf.domain.Domain.standardInit(Domain.java:260)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:241)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:197)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantDomainRDB.<in
    it>(QuadrantDomainRDB.java:40)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.set
    upDomain(QuadrantSystemRDB.java:159)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.<in
    it>(QuadrantSystemRDB.java:103)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    main(QuadrantTestClassRDB.java:46)
    keySet true
    java.sql.SQLException: Table 'honeypot.problemfeaturespec' doesn't exist
           at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2851)
           at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1531)
           at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1622)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2379)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2306)
           at com.mysql.jdbc.Statement.executeQuery(Statement.java:1192)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB$AbstractFSCIter
    atorRDB.<init>(FeatureSpecRDB.java:473)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB$FSCEntryIterato
    rRDB.<init>(FeatureSpecRDB.java:558)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB.orderedAllEntry
    Iterator(FeatureSpecRDB.java:367)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.setupDefaultFeatureDifferentiators(AbstractProblemDifferentiator.java:87)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:74)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:62)
           at edu.indiana.iucbrf.problem.differentiator.EuclideanProblemDifferentia
    tor.<init>(EuclideanProblemDifferentiator.java:40)
           at edu.indiana.iucbrf.domain.Domain.standardInit(Domain.java:260)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:241)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:197)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantDomainRDB.<in
    it>(QuadrantDomainRDB.java:40)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.set
    upDomain(QuadrantSystemRDB.java:159)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.<in
    it>(QuadrantSystemRDB.java:103)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    main(QuadrantTestClassRDB.java:46)
    Exception in thread "main" java.lang.NullPointerException
           at edu.indiana.util.db.DBTools.closeResultSet(DBTools.java:140)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB$AbstractFSCIter
    atorRDB.hasNext(FeatureSpecRDB.java:499)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.setupDefaultFeatureDifferentiators(AbstractProblemDifferentiator.java:88)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:74)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:62)
           at edu.indiana.iucbrf.problem.differentiator.EuclideanProblemDifferentia
    tor.<init>(EuclideanProblemDifferentiator.java:40)
           at edu.indiana.iucbrf.domain.Domain.standardInit(Domain.java:260)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:241)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:197)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantDomainRDB.<in
    it>(QuadrantDomainRDB.java:40)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.set
    upDomain(QuadrantSystemRDB.java:159)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.<in
    it>(QuadrantSystemRDB.java:103)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    main(QuadrantTestClassRDB.java:46)
    Press any key to continue...

    thanks guys for replying..im currently searching for
    the code that calls the database..Yes well do that.
    >
    yes, my database name is 'honeypot'. and it has a
    table called 'CaseBaseTable' inside it. I dont know
    why it still pointing to casebase..Okay...
    Don't use that fully qualified style of access whatever the table name is...
    Do you understand?
    Do not do this.
    DATABASENAME.TABLENAME
    Just do this.
    TABLENAME

  • Error:Check table 158:entry COR6N doesn't exist

    Dear PP Gurus
    When i am trying to do confirmation( COR6N)  an error is coming  "<b>Check table 158:entry COR6N doesn't exist</b>".
    Can u pls suggest why this is happening...........???
    Regards
    Ragesh

    Dear Padosh/Murugesh
    By mistake...i had given full points...
    Mr Pradosh only first suggested that sol'n, so Murugesh i have given to u vry helpful answer
    Regards
    Ragesh
    null

Maybe you are looking for

  • Migo problem

    hi i am using ecc 6.0.. while doing migo... i get an error..the posting period is only possible in 10/2007 and 9/2007 for company code xxxx...i have tries mmpv to no use... mmrv  ob52  ob29...cannot find a solution.pls help

  • Recently auto-upgraded to v17.0.1 on W7-64; but the search saved passwords function always returns nothing -- they are there, since autocomplete works

    I always used to be able to search and retrieve password -- but the UI has changed recently and whatever I search for nothing is returned; but for many sites it still auto fills in my name/password so they are there. I've tried searching for anyone e

  • Continuous 'Fetching' of User's 'Home' Admin Permissions

    I am trying to Export a .MOV file out of iPhoto to a folder on my Desktop using File➙Export➙ File Export with Kind = Original. However the operation fails giving the message " Exporting....  Unable to create /Users/Username/Desktop/ ". Someone sugges

  • PE7 shuts down when getting media

    I am using Premiere Elements 7 since about 3 months (see PC specs at the end). After working decently for a few weeks, PE7 now shuts down everytime I try to Organize -> Get Media -> PC Files and Folders. The program just disappears, no error message.

  • ISync and the never ending dashboard widget loop

    Ok, I'm only trying to iSync two macs... I have all the same widgets on both... I will delete a widget from Mac number one, I get an iSync notification on Mac number two, that one widget is to be removed... Great huh? Now back to the first mac. I get