ERROR activating table

Hi guys,
I'm having some trouble in creating a simple database table....
The thing is, imagine a table with 27 fields. Everything goes ok, I'm able to activate it, all cool. The problem is, when I insert a new field (number 28), i get an error on activation. The error is:
"TABL ZCOF_ECO_DATA2 was not activated                           
Check table ZCOF_ECO_DATA2 (ROFF/07.12.06/18:04)                
Table ZCOF_ECO_D is too long (>4030)                            
No data exists (structure change caused by DROP / CREATE)       
ZCOF_ECO_DATA2: Structure change at field level (DB is adjusted)
Check on table ZCOF_ECO_DATA2 resulted in errors"
I've tried everything on the Technical Settings, Delivery and maintenance....
Do you have any ideas?....

Hi,
  Whenever you change the ABAP dictionary it may require you to adjust the DATABASE, this can be done in the transaction SE14.
The database utility is the interface between the ABAP Dictionary and the relational database underlying the R/3 System. The database utility allows you to edit (create, delete and adjust to changes to their definition in the ABAP Dictionary) database objects derived from objects of the ABAP Dictionary.
Click the link below
http://help.sap.com/saphelp_47x200/helpdata/en/cf/21f0f0446011d189700000e8322d00/content.htm
Regards,
Vara

Similar Messages

  • Error while activating data from new table of DSO to active table

    HI,
    while activating data from new table of DSO to active table i am getting
    error message as "Error occurred while deciding partition number".
    Plz any idea hoe to resolve this one.
    thanks & regards
    KPS MOORTHY

    Hi
    You are trying to update/upload the Records which are already been there in the DSO Active Data Table which has the partition.
    Try to see the Record Nos already been activated and update/upload with selective, if possible.
    You can trace the changes at Change log table for the same.
    Hope it helps
    Edited by: Aduri on Jan 21, 2009 10:38 AM

  • Active table in DSO

    Hi Friends,
    What is the property of the Active Table of D.S.O means it alway has the functionality like Overwrite or addition also.
    OR it is based on the settings of the field in the transformation.
    Thanks in advance.
    Thanks & Regards,
    Vas
    Edited by: Vas_srini on Jul 8, 2010 8:35 AM
    Please search the forum before posting a thread
    Edited by: Pravender on Jul 8, 2010 12:14 PM

    Hi Suneel,
      1)Try to activate the request manually,then u will be getting "Green" symbol.The reason why the request is "Red" although ur long text are in green  might be due to the system performance or  there might be anyother errors in the 'Processing' tab.Try to check it 7 activate the request manually.
    2)U can 'repeat' the ODS by right clicking on it why bcoz  activation of records might be terminated so that request will become 'Green'.
    It might help you.
    Thanks& regards,
    Madhu

  • Spry Active Tables in Spry tabbed panels

    Hi everyone and thanks for advance for dealing with my inexperience.
    I'm using dreamweaver cs4 on a mac and I'm trying to create 2 tabbed panels, each with a Spry active table within it that uses a nondestructive filter wired to a spry select menu to navigate through galleries.  When I make 1 of these, it works perfectly.  The problem is that when I try to create the second one, it screws everything up.  Sometimes it can't find the datasets for the select lists anymore, sometimes nothing shows up in one of the tables.  I've run a lot of trial and error, and I just can't detect a pattern. I have very little experience coding and I'm working form a tutorial book.  I didn't think adding the second table in would cause a problem, but apparently it does.  Can anybody help make this work?  I'll post the code below.
    Thanks!
    -CB  
    This works just fine for one of the tabs:
    var rs_SpryCasteAbilities = new Spry.Data.HTMLDataSet(null, "CasteAbilities");
    var rs_SpryProfAbilities = new Spry.Data.HTMLDataSet(null, "ProfessionAbilities");
    rs_SpryProfAbilities.gallery = '1';
    function chooseSet(dataSet, row, rowNumber)
    if (row['Prof_ID'] == rs_SpryProfAbilities.gallery) {
    return row;
    return null;
    rs_SpryProfAbilities.filter(chooseSet);
    function changeSet(set)
    rs_SpryProfAbilities.gallery = set;
    rs_SpryProfAbilities.filter(chooseSet);
    rs_SpryProfAbilities.setCurrentRowNumber(0);
    var rows = rs_SpryProfAbilities.getData();
    for (var i = 0; i < rows.length; i++) {
    if (rows[i]['Prof_ID'] == set) {
    rs_SpryProfAbilities.setCurrentRowNumber(i);
    break;
    var rs_Professions = new Spry.Data.HTMLDataSet(null, "Professions");
    var rs_Castes = new Spry.Data.HTMLDataSet(null, "Castes");
    //with this being the code for the selectors further down the page//
    <div spry:region="rs_Castes">
                        <select name="select2" spry:repeatchildren="rs_Castes">
                          <option value="{Caste_ID}">{Caste_Name}</option>
                        </select>
                      </div>
    //and//
    <div spry:region="rs_Professions">
          <select name="select" spry:repeatchildren="rs_Professions" onchange="changeSet(this.value)">
            <option value="{Profession_ID}">{Profession_Name}</option>
          </select>
        </div>
    This does not work for both:
    var rs_SpryCasteAbilities = new Spry.Data.HTMLDataSet(null, "CasteAbilities");
    rs_SpryCasteAbilities.gallery = '1';
    function chooseSet(dataSet, row, rowNumber)
    if (row[Caste_ID'] == rs_SpryCasteAbilities.gallery) {
    return row;
    return null;
    rs_SpryCasteAbilities.filter(chooseSet);
    function changeSet(set)
    rs_SpryCasteAbilities.gallery = set;
    rs_SpryCasteAbilities.filter(chooseSet);
    rs_SpryCasteAbilities.setCurrentRowNumber(0);
    var rows = rs_SpryCasteAbilities.getData();
    for (var i = 0; i < rows.length; i++) {
    if (rows[i]['Caste_ID'] == set) {
    rs_SpryCasteAbilities.setCurrentRowNumber(i);
    break;
    var rs_SpryProfAbilities = new Spry.Data.HTMLDataSet(null, "ProfessionAbilities");
    rs_SpryProfAbilities.gallery = '1';
    function chooseSet(dataSet, row, rowNumber)
    if (row['Prof_ID'] == rs_SpryProfAbilities.gallery) {
    return row;
    return null;
    rs_SpryProfAbilities.filter(chooseSet);
    function changeSet(set)
    rs_SpryProfAbilities.gallery = set;
    rs_SpryProfAbilities.filter(chooseSet);
    rs_SpryProfAbilities.setCurrentRowNumber(0);
    var rows = rs_SpryProfAbilities.getData();
    for (var i = 0; i < rows.length; i++) {
    if (rows[i]['Prof_ID'] == set) {
    rs_SpryProfAbilities.setCurrentRowNumber(i);
    break;
    var rs_SpryProfessions = new Spry.Data.HTMLDataSet(null, "Professions");
    var rs_Castes = new Spry.Data.HTMLDataSet(null, "Castes");
    //With this being the code for the selectors further down the page//
    <div spry:region="rs_Castes">
                        <select name="select" spry:repeatchildren="rs_Castes" onchange="changeSet(this.value)">
                          <option value="{Caste_ID}">{Caste_Name}</option>
                        </select>
                      </div>
    //and//
    <div spry:region="rs_SpryProfessions">
        <select name="select2" spry:repeatchildren="rs_Professions" onchange="changeSet(this.value)">
          <option value="{Profession_ID}">{Profession_Name}</option>
        </select>
      </div>

    Thanks for the reply Ben!
    Here's the url:
    http://www.iotheatre.com/GoldenAgeAbilities.php
    As you can see, the filter in the 2nd tab works as intended, but there is nothing showing up at all in the first tab!  Any help would be greatly appreciated.
    -CB

  • No records in main.active table?

    I just updated my Muse, made a few changes to my site and saved. While saving, Muse crashed. Now when I try opening the site I receive the message "This Adobe Muse site file cannot be opened. no records in main.active table"? I freaking out here a little.... please help. Thank-you!

    Please contact me directly at [email protected] I'd like to thoroughly understand your network and exactly how/where the file was being saved.
    During Save As muse creates a file named similarly to the file you're attempting to Save As over with the ending "renamed". If a major error occurs during Save As (as appears to have occurred in this case), this file should still be present next to the file you were attempting to Save As to. This "xxx renamed" file will be your original file. Make a copy of it and rename it to have a .muse file extension.
    Please contact me directly so I can better understand what may be unique to your environment to have resulted in this error. Thanks.

  • Error in table mofification

    Dear All,
    I created one table with 7 fields with three key fields say A,B,C.and activated .It was working fine.
    Due to changes in the requirement i added two fields say X,Y and made them as key fields and also made the fields A,B,C as non key fields.
    Now when i try to activate it is showing error as
       ERROR OCCURED DURING ACTIVATION
       TABLE WAS NOT ACTIVATED AND STRUCTURE CHANGED AT FIELD LEVEL.
    Please let me know how to correct this.

    do this way to avoid that error GOTO -- UTILITIES->DATABASE UTILITY and press button adjust and activate button ...
    Else goto SE14 transaction give the table name and press button activate and adjust database...
    Regards,
    Santosh
    Message was edited by:
            Santosh Kumar Patha

  • Error activating BI content infoObject 0MDOC

    Hi Experts,
    I am trying to install a standard BI content infoObject 0MDOC( Measurement Document). But i am not able to install that because of some errors.
    The errors looks something like this.
    - >Table /BI0/SMDOC could not be activated
    - >Table Type /BI0/WSMDOC could not be activated
    - >View /BI0/RMDOC could not be activated
    I've already check the tables, view and table type. They don't exist at all. Can anyone please provide any inputs which i can use to activate them?
    Thanks,
    Ashish T

    Hi Ashish T,
    Have you tried to create these manually before BI content activation?
    Best Regards,
    Ricardo

  • SAP BIW 3.0B, Getting error in RSA1 " Error activating the ddic "

    IN RSA1 after creation of info source to the master data,when assigning the data source and selecting the Tranasfer Method as "PSA", Iam getting the following error.
    "Error activating the ddic" . The log has the following comments "Table /BIC/B0000104000 must be created in the database"
    The error message displayed is
    Activation of stgructure /BIC/B0000104000 in the dictionary failed
    Message No: RSAR695
    Please can some one help me in solving this problem.
    Thanks&Regards,
    Sudheer.

    sorry, you may be wrong in the forum as this is a BW/DDIC related question/problem.
    suggestion:
    you try se11 with the table name and try to create it.
    if it does not help you: it is time to file a message in service.sap.com/message.
    regards
    Peter

  • Errored out tables in SPUMG

    Hello All,
    I am doing Database Consistency Check (using SPUMG) to check the consistency of the database
    In the Scan, some tables have errored out because Table definition contains errors.
    I have checked in SE14 -> DB Object and Runtime Object Checks. Tables dont exist in DB and There is no active runtime object for the Tables.
    With discussion with my ABAPer , I safely deleted the runtime object (active nametab) of these Tables with function module DD_NAMETAB_DELETE .
    And then "Reset" the table entry in SPUMG.
    Updated the Worklist in SPUMG. Some extra tables appeared. And scan got completed successfuly.
    My Qyestions are,
    1. When I reset the Errored Out Tables to "Initial" Is it ignored in the next Consistency Check run?
    2. I cannot find those Tables in the Export Control List. Is it OK
    3. Suppose I had a "errored out" table which was inconsistent and I made it consistent. Should I also make it "Reset to Initial"? And run consistency Check Again?

    After I completed my SPUMG Scan can I go ahead with Export.
    Do I need to do anything else?
    Is Export Control file automatically generated or do I need to do something?

  • Getting a list of "Active" tables in a schema

    DB Version:11G
    Our schema for a particular application has around 500 tables. But only 200 tables are actually used by our application. I want to generate an ER diagram of only these active tables. How can i find the tables which had a DML in the last 5 months?

    I believe the row scn option is only available if the table is configured to store the value and this is generally not available on systems where the tables were upgraded: (PS 10.2.0.3 used for testing queries)
    select max(scn_to_timestamp(ora_rowscn)) from mcp_tool_asm
    ERROR at line 1:
    ORA-08181: specified number is not a valid system change number
    ORA-06512: at "SYS.SCN_TO_TIMESTAMP", line 1I think just querying v$segment_statistics which does not require reading the actual table to see the number of IO statistics done against the object might be better.
      select owner, object_name, value
      from   v$segment_statistics
      where statistic_name = 'physical reads'
      order by owner, object_nameAuditing as mentioned is probably the best long term approach since v$segment_statistics is only from instance startup.
    HTH -- Mark D Powell --
    Edited by: Mark D Powell on Dec 10, 2009 7:51 AM Added PS in second line

  • No data in Active table of DSO for fields populated by End Routine

    Hi,
    I have a Standard DSO where we are populating few fields by using End Routine.
    Last week we added 5 more fields to DSO and wrote a logic in End ROutine to populate the DSO. These new fields dont have any mapping and these are just populated by end routine only.
    When I loaded the data from Data Source TO DSO, Data is loaded correctly into NEW DATA Table of DSO for all the fields. I could see correct data as per the logic in NEW Table including old and new fields.
    However, when I activate the DSO, I could not find the data for new fields which I added last week. Remaining fields are getting data as per the logic. Only these five fields are not having any data.
    Can you please let me know if any one had similar issue. I was under impression that all the data in the new table will go to Active table when we activate the DSO.
    Your inputs are highly appreciated.
    Thanks
    Krishna

    What version of BW are you using?  When editing your end-routine, a pop-up should display saying which fields you want populated/transferred from the end routine.  This pop-up will not display if you are using a lower version of BW 7.x.  To get around this, make sure that your newly added fields have a transformation rule type set to constant.  This will make sure that the fields get populated when transferring from new to active tables.

  • Sql loader 1: Rejected - Error on table "AP"."AP_SUPPLIER_SITES_INT", ....

    Hello all,
    I am getting error while running below sql loader command...
    load data
    infile *
    into TABLE AP_SUPPLIER_SITES_INT
    REPLACE
    fields terminated by ","
    OPTIONALLY ENCLOSED BY '"'
    VENDOR_INTERFACE_ID expression "to_char('select VENDOR_INTERFACE_ID from AP_SUPPLIERS_INT where CUSTOMER_NUM=:CUSTOMER_NUM')",
    VENDOR_SITE_INTERFACE_ID "to_char(ap_supplier_sites_int_s.NEXTVAL)",
    LAST_UPDATE_DATE "SYSDATE",
    LAST_UPDATED_BY,
    VENDOR_SITE_CODE,
    CREATION_DATE "SYSDATE",
    CREATED_BY,
    PURCHASING_SITE_FLAG,
    PAY_SITE_FLAG,
    ADDRESS_LINE1,
    ADDRESS_LINE2,
    ADDRESS_LINE3,
    CITY,
    STATE,
    ZIP,
    COUNTRY,
    PHONE,
    FAX,
    PAYMENT_METHOD_LOOKUP_CODE,
    TERMS_ID,
    CREATE_DEBIT_MEMO_FLAG,
    HOLD_UNMATCHED_INVOICES_FLAG,
    EMAIL_ADDRESS,
    MATCH_OPTION,
    EXCLUDE_FREIGHT_FROM_DISCOUNT,
    INVOICE_CURRENCY_CODE,
    PAYMENT_CURRENCY_CODE,
    COUNTRY_OF_ORIGIN_CODE,
    FREIGHT_TERMS_LOOKUP_CODE,
    PAY_GROUP_LOOKUP_CODE,
    PAY_DATE_BASIS_LOOKUP_CODE,
    ALWAYS_TAKE_DISC_FLAG,
    ORG_ID)
    begindata
    1005,,SYSDATE,1132,Test MA Site_1,SYSDATE,1132,Y,Y,No#907 62nd Street ,10th Sector,KK Nagar,Chennai,TamilNadu,600078,IN,+91 44 33333333,044 40404040,CHECK,10000,Y,N,[email protected],R,Y,INR,INR,IN,TBD,STANDARD,DISCOUNT,Y,120
    Log file:
    Table "AP"."AP_SUPPLIER_SITES_INT", loaded from every logical record.
    Insert option in effect for this table: REPLACE
    Column Name Position Len Term Encl Datatype
    VENDOR_INTERFACE_ID EXPRESSION
    SQL string for column : "to_char('select VENDOR_INTERFACE_ID from AP_SUPPLIERS_INT where CUSTOMER_NUM=:CUSTOMER_NUM')"
    VENDOR_SITE_INTERFACE_ID FIRST * , O(") CHARACTER
    SQL string for column : "to_char(ap_supplier_sites_int_s.NEXTVAL)"
    LAST_UPDATE_DATE NEXT * , O(") CHARACTER
    SQL string for column : "SYSDATE"
    LAST_UPDATED_BY NEXT * , O(") CHARACTER
    VENDOR_SITE_CODE NEXT * , O(") CHARACTER
    CREATION_DATE NEXT * , O(") CHARACTER
    SQL string for column : "SYSDATE"
    CREATED_BY NEXT * , O(") CHARACTER
    PURCHASING_SITE_FLAG NEXT * , O(") CHARACTER
    PAY_SITE_FLAG NEXT * , O(") CHARACTER
    ADDRESS_LINE1 NEXT * , O(") CHARACTER
    ADDRESS_LINE2 NEXT * , O(") CHARACTER
    ADDRESS_LINE3 NEXT * , O(") CHARACTER
    CITY NEXT * , O(") CHARACTER
    STATE NEXT * , O(") CHARACTER
    ZIP NEXT * , O(") CHARACTER
    COUNTRY NEXT * , O(") CHARACTER
    PHONE NEXT * , O(") CHARACTER
    FAX NEXT * , O(") CHARACTER
    PAYMENT_METHOD_LOOKUP_CODE NEXT * , O(") CHARACTER
    TERMS_ID NEXT * , O(") CHARACTER
    CREATE_DEBIT_MEMO_FLAG NEXT * , O(") CHARACTER
    HOLD_UNMATCHED_INVOICES_FLAG NEXT * , O(") CHARACTER
    EMAIL_ADDRESS NEXT * , O(") CHARACTER
    MATCH_OPTION NEXT * , O(") CHARACTER
    EXCLUDE_FREIGHT_FROM_DISCOUNT NEXT * , O(") CHARACTER
    INVOICE_CURRENCY_CODE NEXT * , O(") CHARACTER
    PAYMENT_CURRENCY_CODE NEXT * , O(") CHARACTER
    COUNTRY_OF_ORIGIN_CODE NEXT * , O(") CHARACTER
    FREIGHT_TERMS_LOOKUP_CODE NEXT * , O(") CHARACTER
    PAY_GROUP_LOOKUP_CODE NEXT * , O(") CHARACTER
    PAY_DATE_BASIS_LOOKUP_CODE NEXT * , O(") CHARACTER
    ALWAYS_TAKE_DISC_FLAG NEXT * , O(") CHARACTER
    ORG_ID NEXT * , O(") CHARACTER
    value used for ROWS parameter changed from 64 to 31
    Record 1: Rejected - Error on table "AP"."AP_SUPPLIER_SITES_INT", column VENDOR_INTERFACE_ID.
    ORA-01722: invalid number
    Please guide me what could be an issue...
    Is there any other way to pass function in sql loader..
    Thanks and Regards
    Muthukumar

    I created function like below...... retrun value as number
    create or replace function VDR_INF_F(V_NUM number)
    return number is
    VDR_INF_id AP_SUPPLIERS_INT.VENDOR_INTERFACE_ID%type;
    begin
    select VENDOR_INTERFACE_ID
    into VDR_INF_id
    from AP_SUPPLIERS_INT
    where CUSTOMER_NUM = V_NUM;
    return VDR_INF_id;
    end;
    And attached that into loader program...
    load data
    infile *
    into TABLE AP_SUPPLIER_SITES_INT
    REPLACE
    fields terminated by ","
    OPTIONALLY ENCLOSED BY '"'
    VENDOR_SITE_INTERFACE_ID "to_char(ap_supplier_sites_int_s.NEXTVAL)",
    LAST_UPDATE_DATE "SYSDATE",
    LAST_UPDATED_BY,
    VENDOR_SITE_CODE,
    CREATION_DATE "SYSDATE",
    CREATED_BY,
    PURCHASING_SITE_FLAG,
    PAY_SITE_FLAG,
    ADDRESS_LINE1,
    ADDRESS_LINE2,
    ADDRESS_LINE3,
    CITY,
    STATE,
    ZIP,
    COUNTRY,
    PHONE,
    FAX,
    PAYMENT_METHOD_LOOKUP_CODE,
    TERMS_ID,
    CREATE_DEBIT_MEMO_FLAG,
    HOLD_UNMATCHED_INVOICES_FLAG,
    EMAIL_ADDRESS,
    MATCH_OPTION,
    EXCLUDE_FREIGHT_FROM_DISCOUNT,
    INVOICE_CURRENCY_CODE,
    PAYMENT_CURRENCY_CODE,
    COUNTRY_OF_ORIGIN_CODE,
    FREIGHT_TERMS_LOOKUP_CODE,
    PAY_GROUP_LOOKUP_CODE,
    PAY_DATE_BASIS_LOOKUP_CODE,
    ALWAYS_TAKE_DISC_FLAG,
    ORG_ID,
    VENDOR_INTERFACE_ID expression "VDR_INF_F(':CUSTOMER_NUM')"
    begindata
    1005,,SYSDATE,1132,Test MA Site_1,SYSDATE,1132,Y,Y,No#907 62nd Street ,10th Sector,KK Nagar,Chennai,TamilNadu,600078,IN,+91 44 33333333,044 40404040,CHECK,10000,Y,N,[email protected],R,Y,INR,INR,IN,TBD,STANDARD,DISCOUNT,Y,120,1005
    1005,,SYSDATE,1132,Test MA Site_2,SYSDATE,1132,Y,Y,No#907 62nd Street ,10th Sector,KK Nagar,Chennai,TamilNadu,600078,IN,+91 44 33333333,044 40404040,CHECK,10000,Y,N,[email protected],R,Y,INR,INR,IN,TBD,STANDARD,DISCOUNT,Y,120,1005
    1005,,SYSDATE,1132,Test MA Site_3,SYSDATE,1132,Y,Y,No#907 62nd Street ,10th Sector,KK Nagar,Chennai,TamilNadu,600078,IN,+91 44 33333333,044 40404040,CHECK,10000,Y,N,[email protected],R,Y,INR,INR,IN,TBD,STANDARD,DISCOUNT,Y,120,1005
    1006,,SYSDATE,1132,Test1 M Site_1,SYSDATE,1132,Y,Y,No#907 62nd Street ,10th Sector,KK Nagar,Chennai,TamilNadu,600078,IN,+91 44 33333333,044 40404040,CHECK,10000,Y,N,[email protected],R,Y,INR,INR,IN,TBD,STANDARD,DISCOUNT,Y,120,1006
    1007,,SYSDATE,1132,Test1 B Site_1,SYSDATE,1132,Y,Y,No#907 62nd Street ,10th Sector,KK Nagar,Chennai,TamilNadu,600078,IN,+91 44 33333333,044 40404040,CHECK,10000,Y,N,[email protected],R,Y,INR,INR,IN,TBD,STANDARD,DISCOUNT,Y,120,1007
    Even now sql loader giving same error..
    like below.....
    able "AP"."AP_SUPPLIER_SITES_INT", loaded from every logical record.
    Insert option in effect for this table: REPLACE
    Column Name Position Len Term Encl Datatype
    VENDOR_SITE_INTERFACE_ID FIRST * , O(") CHARACTER
    SQL string for column : "to_char(ap_supplier_sites_int_s.NEXTVAL)"
    LAST_UPDATE_DATE NEXT * , O(") CHARACTER
    SQL string for column : "SYSDATE"
    LAST_UPDATED_BY NEXT * , O(") CHARACTER
    VENDOR_SITE_CODE NEXT * , O(") CHARACTER
    CREATION_DATE NEXT * , O(") CHARACTER
    SQL string for column : "SYSDATE"
    CREATED_BY NEXT * , O(") CHARACTER
    PURCHASING_SITE_FLAG NEXT * , O(") CHARACTER
    PAY_SITE_FLAG NEXT * , O(") CHARACTER
    ADDRESS_LINE1 NEXT * , O(") CHARACTER
    ADDRESS_LINE2 NEXT * , O(") CHARACTER
    ADDRESS_LINE3 NEXT * , O(") CHARACTER
    CITY NEXT * , O(") CHARACTER
    STATE NEXT * , O(") CHARACTER
    ZIP NEXT * , O(") CHARACTER
    COUNTRY NEXT * , O(") CHARACTER
    PHONE NEXT * , O(") CHARACTER
    FAX NEXT * , O(") CHARACTER
    PAYMENT_METHOD_LOOKUP_CODE NEXT * , O(") CHARACTER
    TERMS_ID NEXT * , O(") CHARACTER
    CREATE_DEBIT_MEMO_FLAG NEXT * , O(") CHARACTER
    HOLD_UNMATCHED_INVOICES_FLAG NEXT * , O(") CHARACTER
    EMAIL_ADDRESS NEXT * , O(") CHARACTER
    MATCH_OPTION NEXT * , O(") CHARACTER
    EXCLUDE_FREIGHT_FROM_DISCOUNT NEXT * , O(") CHARACTER
    INVOICE_CURRENCY_CODE NEXT * , O(") CHARACTER
    PAYMENT_CURRENCY_CODE NEXT * , O(") CHARACTER
    COUNTRY_OF_ORIGIN_CODE NEXT * , O(") CHARACTER
    FREIGHT_TERMS_LOOKUP_CODE NEXT * , O(") CHARACTER
    PAY_GROUP_LOOKUP_CODE NEXT * , O(") CHARACTER
    PAY_DATE_BASIS_LOOKUP_CODE NEXT * , O(") CHARACTER
    ALWAYS_TAKE_DISC_FLAG NEXT * , O(") CHARACTER
    ORG_ID NEXT * , O(") CHARACTER
    VENDOR_INTERFACE_ID EXPRESSION
    SQL string for column : "VDR_INF_F(':CUSTOMER_NUM')"
    value used for ROWS parameter changed from 64 to 31
    Record 1: Rejected - Error on table "AP"."AP_SUPPLIER_SITES_INT", column VENDOR_INTERFACE_ID.
    ORA-01722: invalid number
    Record 2: Rejected - Error on table "AP"."AP_SUPPLIER_SITES_INT", column VENDOR_INTERFACE_ID.
    ORA-01722: invalid number
    Record 3: Rejected - Error on table "AP"."AP_SUPPLIER_SITES_INT", column VENDOR_INTERFACE_ID.
    ORA-01722: invalid number
    Record 4: Rejected - Error on table "AP"."AP_SUPPLIER_SITES_INT", column VENDOR_INTERFACE_ID.
    ORA-01722: invalid number
    Record 5: Rejected - Error on table "AP"."AP_SUPPLIER_SITES_INT", column VENDOR_INTERFACE_ID.
    ORA-01722: invalid number
    Please guide me, how to clear this issue?
    Thanks and Regards,
    Muthu

  • Crystal report error (The table '' could not be found)

    Dear Expert,
    As I know, the end user who don't want to edit the crystal report design no need to buy crystal report,right?
    Using the 'Crystal reports for SAP B1', they already view the report.
    But, how about, if I had created one crystal report, and then I want to distribute to end user. When I load the report on user machine that dont have crystal report, the system shown an error (The table '' could not be found).
    I think, maybe because of the database location. When I create the report, of course I made connection to my machine as a source of database location. But, how i'm going to change the database location to user machine?
    Is it when we login into SAP, did SAP auto detect the new location source? And will auto create connection to the crystal report?
    Thanks in advance for any help.

    Hi ,
    We do not create the database connection for the end user. the end user must have the same database connection as it is set up on your machine. The report is looking for the same connection, with the same access into the database.
    Best regards,
    Jadie

  • How can I create an active table of content in the sidebar to help readers to get to the section?

    How can I create an active table of content in the sidebar to help readers to get to the section?

    You can create bookmarks with Adobe Acrobat.

  • How to check if a DSO Active Table is being used in any look-up's?

    Hi Gurus,
    We have a DSO that is being loaded on a weekly basis. Now this DSO is being loaded right from the time our project went live. There are no reports built on top of this DSO and the DSO is not being used as a Data Mart i.e. it doesn't feed any other DSO's or InfoCube's. Also this DSO is not being used in any MultiProviders.
    So the only sensible reason for using this DSO that we can think of is that the data from this DSO is being 'looked up' by some other DSO's or InfoCube at run-time. So Is it possible to check if the active data table of an DSO is being ;looked up' at run time by some other data loads? I already tried using an 'Where Used List' on the active data table of the DSO, but it didn't show any results.
    Thanks
    Arvind

    Try the following:
    Check the table RSAABAP in SE16, you can search the technical name of DSOs active table in field EDIC.
    You get all Code-IDs, where this table is used in ABAP coding.
    In RSAROUT you can check, which code-type it is.
    Now you know, if the DSO is used in any routines.
    Hope this helps.
    Regards
    Tobias

Maybe you are looking for

  • Error when data autorizations interfere with standard filters.

    Hi, We have set up data authorizations in SAP B/W where people can either see all countries or one country on the characteristic [WAWL_CTRY]. we used to have a standard filter to only allow a selection of [WAWL_CTRY] in the report. the report runs fi

  • Hyperion S9 BI+ 9.3 Financial Reporting Scheduler is stooping automaticall

    Hi while starting services Hyperion S9 BI+ 9.3 Financial Reporting Scheduler Server is stopping automatically why this is and if i launch FR Studio i am getting a error message "You are not authorized person. Contact your administrator" could I know

  • The APP Store APP fell is no longer visible on my IPAD

    The APP for the APP store is no longer on my home page. How do I get it back on my IPAD?

  • SecurityAgent Logon Error - 10.7.5 update

    Seeing this issue (again) after updating from 10.7.4 to 10.7.5 on MacBook Pro. It occurs when a non-admin AD user attempts to login over PEAP wireless (WPA2 Enterprise). The error is: "SecurityAgent wants to make changes. Type an administrator's name

  • Load balacing for oacore servers

    Hi, We have R12.2.4 on Linux 5.5  64 Bit platform. with two application nodes. In each node 3 oacore servers are created. But it seems that the load balancing is not happening. As per the below screen shot. I got this from Weblogic Admin console -> E