Table creation and getting  invalid identifier

Thank you so much Ed (and all who replied) to my previious post !!!!, You are all being extremely helpful,
I actually have another issue... SHould I repost a new thread or continue on this one?
Here is my issue.
create table DonationEvent
( "EventID" NUMBER(1,1) Not Null,
"EventNumber" NUMBER(1,1) Not Null,
"Type" Char(30) Not Null,
"OrganizerName" Char(30) Not Null,
"Location" Char(30) Not Null,
"Date" NUMBER(10,1) Not Null,
"Duration" Char(30) Null,
"DonationTotal" NUMBER(10,1) Not Null,
Primary Key (EventID),
Getting ORA-00904: : invalid identifier
Also I am using Express Edition 10g, how can I get a context view to see the line where error is occuring?

user8776250 wrote:
Thank you so much Ed (and all who replied) to my previious post !!!!, You are all being extremely helpful,
I actually have another issue... SHould I repost a new thread or continue on this one?
Here is my issue.
create table DonationEvent
( "EventID" NUMBER(1,1) Not Null,
"EventNumber" NUMBER(1,1) Not Null,
"Type" Char(30) Not Null,
"OrganizerName" Char(30) Not Null,
"Location" Char(30) Not Null,
"Date" NUMBER(10,1) Not Null,
"Duration" Char(30) Null,
"DonationTotal" NUMBER(10,1) Not Null,
Primary Key (EventID),
Getting ORA-00904: : invalid identifier
Also I am using Express Edition 10g, how can I get a context view to see the line where error is occuring?Does Express edition have sqlplus?
SQL> set echo on
SQL> @doit1
SQL> create table DonationEvent
  2  ( EventID NUMBER(1,1) Not Null,
  3  EventNumber NUMBER(1,1) Not Null,
  4  Type Char(30) Not Null,
  5  OrganizerName Char(30) Not Null,
  6  Location Char(30) Not Null,
  7  Date NUMBER(10,1) Not Null,
  8  Duration Char(30) Null,
  9  DonationTotal NUMBER(10,1) Not Null,
10  Primary Key (EventID),
11  );
Date NUMBER(10,1) Not Null,
ERROR at line 7:
ORA-00904: : invalid identifier
SQL>And as SB said,
1) In oracle you really, really, REALLY don't want mixed case object (column, table, etc) names. Lose the double quotes.
2) don't use reserved words (like 'date') as object names.
also
3) there's no good reason to use CHAR instead of VARCHAR2
4) If you want a date (indicated by your badly named column 'date', make the datatype DATE, not number
5) you need to look at how your NUMBER columns are defined and ask yourself if that's what you really want. NUMBER(1,1) means one digit, with one digit in the decimal location. NUMBER(10,1) means a total of 10 digits, with one of them in the decimal location
SQL> create table DonationEvent
  2  ( EventID NUMBER(1,1) Not Null primary key,
  3    DonationTotal NUMBER(10,1) Not Null
  4  );
Table created.
SQL> --
SQL> insert into donationevent values (1.2, 1234567891);
insert into donationevent values (1.2, 1234567891)
ERROR at line 1:
ORA-01438: value larger than specified precision allowed for this column
SQL> insert into donationevent values ( .2, 1234567891);
insert into donationevent values ( .2, 1234567891)
ERROR at line 1:
ORA-01438: value larger than specified precision allowed for this column
SQL> insert into donationevent values ( .2, 123456789.1);
1 row created.
SQL> insert into donationevent values ( .3, 12345678.9);
1 row created.
SQL> --
SQL> commit;
Commit complete.
SQL> --
SQL> select * from donationevent;
   EVENTID DONATIONTOTAL
        .2     123456789
        .3    12345678.9
2 rows selected.
SQL>

Similar Messages

  • Dynamic Internal Table creation and population

    Hi gurus !
    my issue refers to the slide 10 provided in this slideshow : https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b332e090-0201-0010-bdbd-b735e96fe0ae
    My example is gonna sound dumb, but anyway: I want to dynamically select from a table into a dynamically created itab.
    Letu2019s use only EKPO, and only field MENGE.
    For this, I use Classes cl_abap_elemdescr, cl_sql_result_set and the Data Ref for table creation. But while fetching the resultset, program dumps when fields like MENGE, WRBTR are accessed. Obviously their type are not correctly taken into account by my program.
    Here it comes:
    DATA: element_ref             TYPE REF TO cl_abap_elemdescr,
          vl_fieldname               TYPE string,
                 tl_components         TYPE abap_component_tab,
                 sl_components         LIKE LINE OF tl_components_alv,
    linetype_lcl               TYPE REF TO cl_abap_structdescr,
    ty_table_type            TYPE REF TO cl_abap_tabledescr,
    g_resultset             TYPE REF TO cl_sql_result_set
    u2026
    CONCATENATE sg_columns-table_name '-' sg_columns-column_name INTO vl_fieldname.
    * sg_columns-table_name contains 'EKPO'
    * sg_columns-column_name contains 'MENGE'
    * getting the element as a component
    element_ref ?= cl_abap_elemdescr=>describe_by_name( vl_fieldname ).
    sl_components-name  = sg_columns-column_name.
    sl_components-type ?= element_ref.
    APPEND sl_components TO tl_components.
    * dynamic creation of internal table
    linetype_lcl = cl_abap_structdescr=>create( tl_components ).
    ty_table_type = cl_abap_tabledescr=>create(
                      p_line_type = linetype_lcl ).
    u2026
    * Then I will create my field symbol table and line. Code has been cut here.
    CREATE DATA dy_line LIKE LINE OF <dyn_table>.
    u2026
    * Then I will execute my query. Here itu2019s: Select MENGE From EKPO Where Rownum = 1.
      g_resultset = g_stmt_ref->execute_query( stmt_str ).
    * Then structure for the Resultset is set
      CALL METHOD g_resultset->set_param_struct
        EXPORTING
          struct_ref = dy_line.
    * Fetching the lines of the resultset  => Dumpu2026
      WHILE g_resultset->next( ) > 0.
        ASSIGN dy_line->* TO <dyn_wa>.
        APPEND <dyn_wa> TO <dyn_table>.
      ENDWHILE.
    Anyone has any clue to how prevent my Dump ??
    The component for MENGE seems to be described as a P7 with 2 decimals. And the resultset wanna use a QUAN type... or something like that !

    Hello
    I have expanded your sample coding for selecting three fields out of EKPO:
    *& Report  ZUS_SDN_SQL_RESULT_SET
    *& Thread: Dynamic Internal Table creation and population
    *& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1375510"></a>
    *& NOTE: Coding for dynamic structure / itab creation taken from:
    *& Creating Flat and Complex Internal Tables Dynamically using RTTI
    *& https://wiki.sdn.sap.com/wiki/display/Snippets/Creating+Flat+and+
    *& Complex+Internal+Tables+Dynamically+using+RTTI
    REPORT  zus_sdn_sql_result_set.
    TYPE-POOLS: abap.
    DATA:
    go_sql_stmt       TYPE REF TO cl_sql_statement,
    go_resultset      TYPE REF TO cl_sql_result_set,
    gd_sql_clause     TYPE string.
    DATA:
      gd_tabfield      TYPE string,
      go_table         TYPE REF TO cl_salv_table,
      go_sdescr_new    TYPE REF TO cl_abap_structdescr,
      go_tdescr        TYPE REF TO cl_abap_tabledescr,
      gdo_handle       TYPE REF TO data,
      gdo_record       TYPE REF TO data,
      gs_comp          TYPE abap_componentdescr,
      gt_components    TYPE abap_component_tab.
    FIELD-SYMBOLS:
      <gs_record>   TYPE ANY,
      <gt_itab>     TYPE STANDARD TABLE.
    START-OF-SELECTION.
    continued.

  • I am getting "Invalid Identifier" while running the below query

    Iam getting the error "Invalid Identifier, c_rank" while running the below query. Please help.
    select a.*, b.pog_description pog_description, b.start_date,
    row_number() over(partition by b.pog_description order by b.start_date) c_rank
    from temp_codi_dept_35 a, pog_master_msi b, pog_skus_msi c
    where a.sku = c.pog_sku
    and b.pog_id = c.pog_id
    and b.pog_dept = c.pog_dept
    and b.pog_number = c.pog_number
    and b.pog_level = c.pog_level
    and a.sku = 10263477
    and c_rank = 1;

    >
    Iam getting the error "Invalid Identifier, c_rank" while running the below query. Please help.
    select a.*, b.pog_description pog_description, b.start_date,
    row_number() over(partition by b.pog_description order by b.start_date) c_rank
    from temp_codi_dept_35 a, pog_master_msi b, pog_skus_msi c
    where a.sku = c.pog_sku
    and b.pog_id = c.pog_id
    and b.pog_dept = c.pog_dept
    and b.pog_number = c.pog_number
    and b.pog_level = c.pog_level
    and a.sku = 10263477
    and c_rank = 1;
    >
    You can't use 'c_rank' in the where clause because it doesn't exist; you are computing it in the SELECT clause.
    Remove the last condition and wrap your query in another one to select by 'c_rank'.

  • Help with updating to 10.5 from 10.3 and getting "invalid signature" error

    I am trying to update to iTunes 10.5 so I can sync my new iPhone 4s but I keep getting the error message "invalid signature".  I have tried turning off firewall and antivirus as suggested on this forum to no avail.  Also going through Tools, Download only produced the same error.  Any Suggestions?

    I, too, am unable to update to iTunes 10.5 (iPhone 4) OR Safari.  Contunally get "Invalid Signature" messages.  I have "changed" each Apple, iTunes and Safari application through Add/Change Programs to no avail.  I am forwarned removing iTunes from my PC will cause me to lose all my music.  Any suggestions?

  • Table Creation and Storage

    I just downloaded SQL Server 2012 and am trying to create new databases with tables inside of them. However, the tables I create in my query don't get stored in my newly created database; they're stored in the System Database
    master. Is there something I'm doing wrong here? 
    CREATE DATABASE cis430_lab1;
    CREATE TABLE EMPLOYEE (
    fname varchar(100),
    minit char(1),
    lname varchar(100),
    ssn char(9),
    bdate date,
    addr varchar(100),
    sex char(1),
    salary int,
    super_ssn char(9),
    dno int
    CREATE TABLE DEPARTMENT (
    dname varchar(100),
    dnumber int,
    mgr_ssn char(9),
    mgr_start_date date
    INSERT INTO EMPLOYEE VALUES('John', 'B', 'Smith', '123456789', '09-Jan-55', '731 Fondren, Houston, TX',
    'M', 30000, '987654321', 5);
    INSERT INTO EMPLOYEE VALUES('Franklin', 'T', 'Wong', '333445555', '08-Dec-45', '638, Voss, Houston, TX',
    'M', 40000, '888665555', 5);
    INSERT INTO EMPLOYEE VALUES('Joyce', 'A', 'English', '453453453', '31-Jul-62', '5631 Rice, Houston, TX',
    'F', 25000, '333445555', 5);
    INSERT INTO EMPLOYEE VALUES('Ramesh', 'K', 'Narayen', '666884444', '15-Sep-52', '975 Fire Oak, Houston, TX',
    'M', 38000, '333445555', 5);
    INSERT INTO EMPLOYEE VALUES('James', 'E', 'Borg', '888665555', '10-Nov-27', '450 Stone, Houston, TX',
    'M', 55000, null, 1);
    INSERT INTO EMPLOYEE VALUES('Jennifer', 'S', 'Wallace', '987654321', '20-Jun-31', '291 Berry, Bellaire, TX',
    'F', 43000, '888665555', 4);
    INSERT INTO EMPLOYEE VALUES('Ahmad', 'V', 'Jabbar', '987987987', '29-Mar-59', '980 Dallas, Houston, TX',
    'M', 25000, '987654321', 4);
    INSERT INTO EMPLOYEE VALUES('Alicia', 'J', 'Zelaya', '999887777', '19-Jul-58', '3321 Castle, Spring, TX',
    'F', 25000, '987654321', 4);
    INSERT INTO DEPARTMENT VALUES('Headquarters', 1, '888665555', '19-Jun-71');
    INSERT INTO DEPARTMENT VALUES('Administration', 4, '987654321', '01-Jan-85');
    INSERT INTO DEPARTMENT VALUES('Research', 5, '333445555', '22-May-78');
    INSERT INTO DEPARTMENT VALUES('Automation', 7, '123456789', '06-Oct-05');
    SELECT * FROM EMPLOYEE;
    SELECT * FROM DEPARTMENT;

    seperate the script out as below and see
    CREATE DATABASE cis430_lab1
    GO
    USE [cis430_lab1]
    GO
    CREATE TABLE EMPLOYEE (
    fname varchar(100),
    minit char(1),
    lname varchar(100),
    ssn char(9),
    bdate date,
    addr varchar(100),
    sex char(1),
    salary int,
    super_ssn char(9),
    dno int
    CREATE TABLE DEPARTMENT (
    dname varchar(100),
    dnumber int,
    mgr_ssn char(9),
    mgr_start_date date
    INSERT INTO EMPLOYEE VALUES('John', 'B', 'Smith', '123456789', '09-Jan-55', '731 Fondren, Houston, TX',
    'M', 30000, '987654321', 5);
    INSERT INTO EMPLOYEE VALUES('Franklin', 'T', 'Wong', '333445555', '08-Dec-45', '638, Voss, Houston, TX',
    'M', 40000, '888665555', 5);
    INSERT INTO EMPLOYEE VALUES('Joyce', 'A', 'English', '453453453', '31-Jul-62', '5631 Rice, Houston, TX',
    'F', 25000, '333445555', 5);
    INSERT INTO EMPLOYEE VALUES('Ramesh', 'K', 'Narayen', '666884444', '15-Sep-52', '975 Fire Oak, Houston, TX',
    'M', 38000, '333445555', 5);
    INSERT INTO EMPLOYEE VALUES('James', 'E', 'Borg', '888665555', '10-Nov-27', '450 Stone, Houston, TX',
    'M', 55000, null, 1);
    INSERT INTO EMPLOYEE VALUES('Jennifer', 'S', 'Wallace', '987654321', '20-Jun-31', '291 Berry, Bellaire, TX',
    'F', 43000, '888665555', 4);
    INSERT INTO EMPLOYEE VALUES('Ahmad', 'V', 'Jabbar', '987987987', '29-Mar-59', '980 Dallas, Houston, TX',
    'M', 25000, '987654321', 4);
    INSERT INTO EMPLOYEE VALUES('Alicia', 'J', 'Zelaya', '999887777', '19-Jul-58', '3321 Castle, Spring, TX',
    'F', 25000, '987654321', 4);
    INSERT INTO DEPARTMENT VALUES('Headquarters', 1, '888665555', '19-Jun-71');
    INSERT INTO DEPARTMENT VALUES('Administration', 4, '987654321', '01-Jan-85');
    INSERT INTO DEPARTMENT VALUES('Research', 5, '333445555', '22-May-78');
    INSERT INTO DEPARTMENT VALUES('Automation', 7, '123456789', '06-Oct-05');
    SELECT * FROM EMPLOYEE;
    SELECT * FROM DEPARTMENT;
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Trying to purchase app and get " invalid address" message

    when I try to purchase apps I get a "invalid address"  message... anyone have an answer?

    Restart your iPhone. Press and hold the On/Off Sleep/Wake button until the red slider appears. Slide your finger across the slider to turn off iPhone. To turn iPhone back on, press and hold the On/Off Sleep/Wake button until the Apple logo appears.
    If that doesn't help, launch iTunes on your computer.
    From the menu bar click Store / View My Account then click: Edit Payment Information.
    Make sure your billing address, the security code, and the expiration date, are all correct then click Done.

  • Attempting to install iTunes Version 10.5 and getting Invalid Signature. Can someone please help???

    I am attempting to install iTunes Version 10.5. I am getting the following messages...
    "Files shared by these updates" has an invalid signature. It will not be installed.
    "iTunes" has an invalid signature. It will not be installed.
    "Safari 5" has an invalid signature. It will not be installed.
    I somehow got around this annoying "invalid signature" problem before by installing the iTunes update through the Apple site.
    http://www.apple.com/itunes/download/
    When I tried that, now I get...
    "The installer encountered errors before iTunes could be configured. Errors occurred during installation. Your system has not been modified. Please run the installer again, or click Finish to Exit"
    All this to get the latest iPhone software. And every blessed time I go to Sync my iPhone, I run into iTunes issue on my Dell PC here. I guess PC and Mac just cannot play well together.
    Can someone PLEASE help me out here???
    Thanks in advance for your help.
    PSULionRP

    Hi. I also had this problem when trying to connect a new iPhone 4S & it needed iTunes 10.5. Went to the Apple website as update section of iTunes was not getting any luck - went to downloads section of Apple website & downloaded the whole iTunes 10.5 program as though I did not have it in the first place (& also downloaded the programs for Quicktime 7.7.1 & Safari 4.0.3) ie not just the upgrades. I created a restore point in my Windows XP in case it all went pear shaped & then went ahead & installed all 3 programs. Opened iTunes at the end & all my music, apps, movies were all still there & now the new iPhone 4S works perfectly with the iTunes. Hope this helps.

  • Have registered ver elements 7 on win7, need to reinstall and get "invalid serial number"

    Have registered version of elements 7 on win 7
    had to reinstall win7 and now install disk says I have "invalid serial number" but it';s the same serial number I registered??

    See the following:
    My serial number doesn't work :
    http://helpx.adobe.com/x-productkb/global/my-serial-number-doesnt-work.html
    If that doesn't help, you need to contact Adobe Support either by chat or via phone when you have serial number and activation issues.
    Here is a link to a page with options to help make contact:
    http://www.adobe.com/support/download-install/supportinfo/

  • ITunes 12 - ACC Creation and Get Info

    HI
    Does anyone know how I can convert MP3's to AAC also how can I add art work without Get Info?
    The right click functions before the upgrade did everything I needed it to, now thats lost except for very few options on the ...
    In the last few years apple have taken away more functionality than it adds to iTunes, I still miss a link where i could see every new release each week, which I'm sure caused me to spend even more money with apple!
    Thanks in advance

    While this is definitely a workaround, I thought I might suggest something.  The fields seem to be type sensitive on iTunes 12.
    So, Album, Album Artist, and some others are available for Music/Music Videos.  So, if you have your tracks as something other than these, it won't show up.  However, iTunes 12 doesn't delete fields, so you could change the type to Music Video and then put info into those fields, then change the type back to whatever you had them as in the first place.
    I did this while importing some TV Seasons.  The strange thing is that iTunes still lists Album on the unwatched list for TV Seasons.  So, for those that are imported, it says unknown album.  It's bad enough that Apple took away some useful fields from some types in the standard Get Info window, and then didn't even allow you to add them back again if you wanted, but they actually use these fields in some views and it messes those views up.
    Hope this helps.

  • I try to log into ePrint Center or Connected and get invalid email

    When I try and log in it tells me invalid email.  I tried logging into eprint center as well as connected.  I've reset my password so it knows me.

    Hi @CAACAA
    Welcome to the HP Support Forums.  I understand that you are unable to log into your HP ePrintCenter or HP Connected account.
    For the error that you are receiving, please call HP’s Cloud Services at 1-855-785-2777 if you live in the USA/Canada region. If you live outside the USA/Canada region please click here to find the Technical Support number for your country/region.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • HR_BUSINESS_UNIT_WID": invalid identifier at OCI call

    Hi Guys,
    I am getting the below error the column in does not exists in the Production Environement also, The Production is a vanilla implementation. Anybody has any idea how to map and poppulate this column in the table WC_RCRTMNT_AGING_MONTH_F.
    HR_BUSINESS_UNIT_WID": invalid identifier at OCI call
    Regards,
    Amit

    Swati:
    "C2" is probably referring to the column alias as opposed to the column name itself. It is the second column that you are displaying. You can view the Session Log to see the exact sql query that is being issued to the database and that should show you what column "C2" is referring to.
    Rajesh

  • Oracle Newbie---ORA-00904: : invalid identifier

    I am brand new to oracle. i am using oracle 10g express.
    I am teaching myself.
    Here is my table and I am getting invalid identifier. I am not sure what this means. Can some one assist?
    CREATE TABLE CUSTOMER_TBL
    CUST_ID VARCHAR(10) NOT NULL PRIMARY KEY,
    CUST_NAME VARCHAR(30) NOT NULL,
    CUST_ADDRESS VARCHAR(20) NOT NULL,
    CUST_CITY VARCHAR(15) NOT NULL,
    CUST_STATE CHAR(2) NOT NULL,
    CUST_ZIP INTEGER NOT NULL,
    CUST_PHONE CHAR(10),
    CUST_FAX VARCHAR(10),
    Thanks for your help
    Jenn

    It appears that you have an extra comma on the CUST_FAX line. The last column definition shouldn't end with a comma
    CREATE TABLE CUSTOMER_TBL
      CUST_ID VARCHAR(10) NOT NULL PRIMARY KEY,
      CUST_NAME VARCHAR(30) NOT NULL,
      CUST_ADDRESS VARCHAR(20) NOT NULL,
      CUST_CITY VARCHAR(15) NOT NULL,
      CUST_STATE CHAR(2) NOT NULL,
      CUST_ZIP INTEGER NOT NULL,
      CUST_PHONE CHAR(10),
      CUST_FAX VARCHAR(10)
    );A couple of other comments
    - You should basically never declare a column using the CHAR data type. There are no advantages to using CHAR over VARCHAR2 and it introduces the potential that you're going to end up with bugs down the line trying to search through data that has been blank padded.
    - Conventionally, you should be using the VARCHAR2 data type in Oracle, not VARCHAR. Currently, there is no difference between the two data types. However, Oracle reserves the right to change the behavior of the VARCHAR data type in the future in order to follow the SQL standard. Since you don't want your code to break in a future version should the behavior change, you would generally want to use VARCHAR2
    Justin

  • How to observe a table creation/insertion ?

    Hello,
    Questions :
    1] How can I observe a table insert operation ?
    2] When we cut/paste existing table frame what is the order of page items hierarchy creation ? like create text frame first then insert table in it.
    Currently I have implemented a code to observe page items creation (of text frames, rectangle frames etc. ) using IID_IHIERARCHY_DOCUMENT and kNewPageItemCmdBoss. This is working fine.
    But when I tried to copy/cut-paste existing table frame I get the kNewPageItemCmdBoss for text frame pageitem which contains table frame. but I did not get notification for table creation.
    What I want to do is, When user paste table frame I need to access to newly created table and get its model UID (using GetNthModelUID), just after paste process (i.e. during processing of kNewPageItemCmdBoss)
    I have tried following code but, it gives me table model count as 0,
    Note : following code is added in IID_IHIERARCHY_DOCUMENT protocol observer code (please refer PstLstDocObserver.cpp code snippet of InDesign SDK)
    if((theChange == kNewPageItemCmdBoss))
         int32 SelectedFrames = itemList.Length();
         if (SelectedFrames > 0)
              UIDRef frameUIDRef, childUIDRef, parentUIDRef;
              UID frameModelUID, childUID, parentUID;
              for(int i=0; i<SelectedFrames; i++)
              frameUIDRef = itemList.GetRef(i);
              IDataBase *db = frameUIDRef.GetDataBase();
              InterfacePtr<IHierarchy> itemHierarchy(frameUIDRef, IID_IHIERARCHY);
              if(itemHierarchy)
                   if((itemHierarchy->GetChildCount()) > 0 )
                   childUID = itemHierarchy->GetChildUID(0);
                   childUIDRef = UIDRef(db, childUID);
                   if(childUIDRef)
                        int32 tableCount = 0;
                        UIDRef tableModelUIDRef;
                        InterfacePtr<IMultiColumnTextFrame> mcFrame(childUIDRef, UseDefaultIID());
                        if (mcFrame)
                        InterfacePtr<ITextModel> textModel(mcFrame->QueryTextModel(), UseDefaultIID());
                        if(textModel)
                             InterfacePtr<ITableModelList> tableList(textModel, UseDefaultIID());
                             if(tableList)
                                  //Here I get the tableCount as 0     
                                  tableCount = tableList->GetModelCount();
                             InterfacePtr<ITableModel> table(tableList->QueryNthModel(tableCount-1));
                             if(table)
                                  tableModelUIDRef = ::GetUIDRef(table);
                                  frameModelUID = tableModelUIDRef.GetUID();
    Note : using CS6/CC SDK
    Thanks,
    -Harsh

    Observer attached on kDocBoss will not give notification on table creation as table does not fall into document Hierarchy.
    You can try to attach Observer on kDocWorkspaceBoss and see if you get the notification.
    Also, as for you problem of not getting table at the time of copy/paste, are you getting the reference for IMultiColumnTextFrame?
    You might not get some entities like(XML tags,Labels etc) on page item in kDocObserver as soon as frame is pasted.
    You can use a workaround to capture pasted table frame and get it's table by hooking up to responder service 'kNewStorySignalResponderService'
    and then use your above logic inside it.

  • From which table i can get all activities ?

    I can get all active processes use below sql, select * from fuego_depproc a where a.fuego_status != 'D', but i don't know from which table i can get all activities of each process, who can tell me ? thanks.

    I don't think there is a very easy way to do that.... The Directory doesn't define the activities of a process, only the process itself, and the engine only cares about the where the instances currently are....
    One way I can think of, is use the Directory table FUEGO_PROCDEF_SOURCE and get the xml, then parse that and strip out the activity names...
    HTH,
    -Kevin

  • Need of buffering in table creation.

    what is need of buffering in table creation and data class and delivey class

    Definition
    The name table (nametab) contains the table and field definitions that are activated in the SAP System. An entry is made in the Repository buffer when a mass activator or a user (using the ABAP Dictionary, Transaction SE11) requests to activate a table. The corresponding name table is then generated from the information that is managed in the Repository.
    The Repository buffer is mainly known as the nametab buffer (NTAB), but it is also known as the ABAP Dictionary buffer
    The description of a table in the Repository is distributed among several tables (for field definition, data element definition and domain definition). This information is summarized in the name table. The name table is saved in the following database tables:
    • DDNTT (table definitions)
    • DDNTF (field descriptions)
    The Repository buffer consists of four buffers in shared memory, one for each of the following:
    Table definitions TTAB buffer Table DDNTT
    Field descriptions FTAB buffer Table DDNTF
    Initial record layouts IREC buffer Contains the record layout initialized depending on the field type
    There are two kinds of table buffers:
    • Partial table buffers
    • Generic table buffers
    Check this link for more details.
    http://www.abapprogramming.blogspot.com/2007/11/buffering-in-sap-abap.html
    Regards,

Maybe you are looking for

  • Can't Change Lock Screen Background Image and User Account Picture in Windows 8.1.

    I am running Windows8.1 Single Language with windows activated. Upgraded from Window 8 to Windows 8.1. Lenovo Y410p. 4th generation Intel® Core™ i7-4700MQ (2.40GHz 1600MHz 6MB) with 16GB RAM. NVIDIA® GeForce® GT750M 2GB . I tried all methods that I f

  • Cs5.5 how to put on laptop with no cd drive

    I have CS5.5 creative suite on my laptop at the moment. I want to deactivate it and move it to my new laptop however theres no cd drive! How do I do this as I am not paying for a new package!?

  • "Scheduled for Outbound processing" message

    Hi, My scenario is: R/3 (IDoc Customer) -> XI -> PC (file) and I use a BPM with option "multi to single". In the Message Monitoring, I have two steps: 1. Idoc DEBMAS06 --> BPM: status = "Processed successfully". Thus it's ok. 2. BPM --> my PC: status

  • How to unsubscribe from the Japanese Apple Newsletter

    Somehow I managed to subscribe myself to a japanese newsletter, don't ask why, I have no idea... Now how can i unsubscribe myself?! This is the e-mail footer: *2007年1月22日(月)までの期間限定キャンペーン..Macは13歳以上の方を対象とする有償サービスで.ご利用には年間メンバーシップ料金とインターネット接続 環境が必要です.利用

  • Need new security questions

    Need new security questions