4.0 EA3 - Data Default not duplicated when copying a table

I noticed that when copying a table from one schema to another, if a column has a data default property it is not preserved.
Steps to recreate:
Copy a table that has at least one column with a non-null DATA_DEFAULT property (right click on table -> table -> copy)
Double click on the new table, and open the Columns tab. Notice that all values under DATA_DEFAULT are null.

The same behavious exists in 3.2.20.09 and whether the table has existing data or not.

Similar Messages

  • Data is not getting updated in DB table

    hi all
    i am doing IDOC to jdbc scenario
    i am triggering idoc from R/3 and the data is going into DB table
    sender side:       ZVendorIdoc
    receiver side:
    DT_testVendor
      Table
        tblVendor
          action       UPDATE_INSERT
          access      1:unbounded
            cVendorName 1
            cVendorCode 1
         fromdate    1
         todate      1
          Key
            cVendorName  1
    if i trigger idoc for example vendor 2005,2006 and 2010 data is getting updated in the table
    but again if i trigger idoc for same vendor nos data does not get updated in DB table while message is successfull in moni and RWB both
    plz suggest if any change need to be done to update the data
    Regards
    sandeep sharma

    Hi Ravi
    you are right, vendor no is my key field . problem is when i send data again then it should Update the data but it's not updating the data again
    i did on exp with this : i deleted all the record from the table and then  triggered idoc for vendor 2005 , 2006,2010 after this data is updated in the table i deleted the rows for vendor no 2006 and 2010 and kept the row for vendor 2005
    then i again trigered the idoc for vendor no 2005,2006 and 2010 now this should update and it should insert rows for vendor no 2006 and 2010 but i am surprised its not updating the data
    Thanks
    sandeep

  • How do I keep format when copying a table to keynote? paste and match style does not keep format

    how do I keep format when copying a table to keynote? paste and match style does not keep format

    It used to work until recent updates and it is very frustrating.....I hope someone out there knows how to deal with this.

  • Error when copying a table

    SQL-developer 4 EA2
    When copying a table to a name which already exists (as a procedure) SQL-developer replies that the copy- process took place although it didn't.
    You do not get the error message ORA-00955 "name already exists"
    regards

    If the error is on your mac computer, launch Keynote, then click the word "keynote" beside the apple, and select to "provide Keynote feedback"
    If on an iOS device, go to www.apple.com/feedback and provide feedback from this web site

  • When I take a picture with my iphone, the date does not show when I down load the picture. Is there a way to program this?

    when I take a picture with my iphone, the date is not downloaded to my picute. Is there a way to get the date put on my pictures.

    Dropbox "Camera upload" option just rename the files and looks like this.

  • ALV OO data is not refreshing when selection changes on previous screen

    Hi All,
    I have a module pool with 2 screens. First screen has plant and 1 button. When button is pressed in screen 1 the 2nd screen shows some data as per the plant selection in screen 1. The output of screen 2 is coded in OO ALV.
    Now the problem is first time when plant is input and button is pressed the data is fine in screen 2. However 2nd time onwards the data is not getting updated on ALV when plant selection is changed! It gets stuck to the data it produced the very first time.
    I've debugged the program and table which passes to method "set_table_for_first_display" is fine i.e. it selects new data everytime as per plant and fills this table. I've also tried GUI FLUSH, calling method "refresh_table_display", FREE, clear, unassign etc. etc. at diff. points but nothing seems to work
    <b>I'll be generously giving away points with any help.</b>
    Thanks.

    Hi,
    1. Please refresh the output table before the select query which you are passing to set_table_for_first_display.
    2. The ALV container needs to be freed & again generated everytime you call the screen.
    so on the BACK button of Screen 2 in PAI, release & clear the container
    In the PBO of Screen 2, Assign grid to container.
    Here is the sample program:
    PROGRAM TEST.
    DATA: OK_CODE LIKE SY-UCOMM,
          GT_SFLIGHT TYPE TABLE OF SFLIGHT,
          G_CONTAINER TYPE SCRFNAME VALUE 'BCALV_GRID_DEMO_0100_CONT1',
          GRID1  TYPE REF TO CL_GUI_ALV_GRID,
          G_CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
    *       MAIN                                                          *
    SELECT * FROM SFLIGHT INTO TABLE GT_SFLIGHT.
    CALL SCREEN 100.
    *       MODULE PBO OUTPUT                                             *
    MODULE PBO OUTPUT.
      SET PF-STATUS 'MAIN100'.
      IF G_CUSTOM_CONTAINER IS INITIAL.  " Check this
        CREATE OBJECT G_CUSTOM_CONTAINER  " DO this
               EXPORTING CONTAINER_NAME = G_CONTAINER.
        CREATE OBJECT GRID1  "DO this
               EXPORTING I_PARENT = G_CUSTOM_CONTAINER.
        CALL METHOD GRID1->SET_TABLE_FOR_FIRST_DISPLAY
             EXPORTING I_STRUCTURE_NAME = 'SFLIGHT'
             CHANGING  IT_OUTTAB        = GT_SFLIGHT.
      ENDIF.
    ENDMODULE.
    *       MODULE PAI INPUT                                              *
    MODULE PAI INPUT.
    *   to react on oi_custom_events:
        call method cl_gui_cfw=>dispatch.
      CASE OK_CODE.
        WHEN 'EXIT'.
          PERFORM EXIT_PROGRAM.
        WHEN OTHERS.
    *     do nothing
      ENDCASE.
      CLEAR OK_CODE.
    ENDMODULE.
    *       FORM EXIT_PROGRAM                                             *
    FORM EXIT_PROGRAM.
    CALL METHOD G_CUSTOM_CONTAINER->FREE. " Do under BACK button
    CALL METHOD CL_GUI_CFW=>FLUSH. "Do under back button
      LEAVE PROGRAM.
    ENDFORM.

  • PS Forecast Dates are not synchronized when Cproject Dates are updated

    hello Experts,
    I did all necessay customizing for DFM synchonization but when i modify date in Cproject and i check the project defintion in "CJ20N" , dates are not updated.
    Do you have any idea why? Project defintion has a statut "PREL".
    Thank you in advance,
    Amal

    Is there a page online demonstrating this problem? I think without taking a look, we might speculate wildly and waste a lot of your time...
    One thing that turned on in Firefox 29 is support for &lt;input type="number">. If any of your date fields were using type="number" as a way to be scripted or styled specially, that may no longer work correctly in Firefox 29 and higher.
    This article might be useful:
    https://developer.mozilla.org/Firefox/Releases/29/Site_Compatibility

  • Session data is not unique when using SYS_CONTEXT in web service applicatio

    Hi, I am using DBMS_SESSION.SET_CONTEXT in my web service application to set session variables which--according to the documentation, if I understand it correctly-- are supposed to be unique to each session. But if I change the variables from a browser on one client machine, I can then see the changes when I connect from a browser on another client machine. Do all calls to my web service connect to the database as the same session? What happens when multiple clients are connected? I also use global temporary tables in my application. My assumption was that each client that connected would have a unique session. But this doesn't appear to be the case?...or is there something I am missing?

    This has been logged as a bug and was upgraded to severe in March, but nothing has been done on it as far as I am aware. Beware this bug also affects global temporary tables--the same session and everything related to --including session context variables and global temp tables are shared by every call to the web service.
    Service Request 6067517.994 - SYS_CONTEXT SESSION DATA IS NOT PRIVATE BETWEEN MULTIPLE CLIENT SESSIONS has been updated by Oracle Support with relevant information on 18-JAN-07.
    To view the progress on-line via MetaLink, go to this URL:
    http://metalink.oracle.com/metalink/plsql/tar_main.this_tar?tar_num=6067517.994&p_ctryCode=840

  • "Deep data objects not supported" when writing into a file

    Hello everybody,
    I am having some issues about a program that i made which puts the content of any table in a file that i created.
    The problem is when my table (transparent table) has a deep data type in it (example : a string field, so with undefined length).
    Here is my code :
      DATA : lt_gentable TYPE REF TO data.
      DATA : ls_gentable TYPE REF TO data.
      FIELD-SYMBOLS : <ft_lines> TYPE STANDARD TABLE.
      FIELD-SYMBOLS : <fs_line> TYPE ANY.
      CREATE DATA lt_gentable TYPE TABLE OF (p_tab).
      CREATE DATA ls_gentable TYPE (p_tab).
      "creation of links
      ASSIGN ls_gentable->* TO <fs_line>.
      ASSIGN lt_gentable->* TO <ft_lines>.
      DATA : l_fname     TYPE char80.
      CONCATENATE '\dir\dir2\' l_fname_log INTO l_fname.
      OPEN DATASET l_fname FOR OUTPUT IN BINARY MODE.
      OPEN CURSOR WITH HOLD l_c FOR SELECT * FROM (p_tab).
      DO.
        FETCH NEXT CURSOR l_c INTO TABLE <ft_lines> PACKAGE SIZE p_size.
        IF sy-subrc = 0.
          LOOP AT <ft_lines> INTO <fs_line>.
            TRANSFER <fs_line> TO l_fname.   <=====> GOES INTO DUMP BECAUSE MY TABLE (p_tab) has a string field
          ENDLOOP.
          CLEAR <ft_lines>.
        ELSE.
          CLOSE CURSOR l_c.
          EXIT.
        ENDIF.
      ENDDO.
      CLOSE DATASET l_fname.
    Here is the message i am getting :
    At the statement
       "TRANSFER f TO ..."
    no deep data objects are supported at the a
    for strings.
    Elementary deep data types are internal tabl
    data object) references and strings (STRING,
    General deep data objects are elementary dee
    that contain deep data objects.
    In this particular case, the operand "f" has
    internal identification "v".
      List of internal ABAP types:
      C    Text (Character)
      N    Numerical text
      D    Date (YYYYMMDD)
      T    Time (HHMMSS)
      X    Hexadecimal
      I    Integer
      P    Packed number
      F    Floating point number
      h    Internal table
      r    Object reference
      l    Data reference
      g    String of type C
      y    String of type X
      s    2-byte integer with plus/minus sign
      b    1-byte integer without plus/minus sig
      u    Structure (flat structure)
      v    Structure (deep structure)
    Can you help me to go through this issue ?
    Any kind of help would be appreciated.
    Christian

    Sandra is correct I agree with him,
    TRANSFER dobj TO dset [LENGTH len]
                          [NO END OF LINE].
    dobj must be character-type . Use String.
    Please read the F1 help for the TRANSFER Statement and also please check the example
    In your case assign the <fs> to Casting File asfollows
    DATA: file TYPE string VALUE `flights.dat`,
          wa TYPE spfli.
    FIELD-SYMBOLS TYPE x.
      ASSIGN wa TO CASTING.
      TRANSFER TO file.
    Hope this helps...

  • Date is not inserted in the DB table

    Hi,
         I have a view, showing some data, including date and I have a save button. View has some of the fields update able. When I click the save button a bean function is called which run the query to update values in the DB table, taking those values from the view.
         Now the problem is, date is not updated as the query doesn't run just  because of the date and I am getting this error:
    ORA-01861: literal does not match format string
    and the date format is: 2013-09-23
    I have tried using to_date() method, but it didn't work for me.
    Here is my query:
                oracle.jbo.domain.Date  Pshipdate =( oracle.jbo.domain.Date) rowSelected.getAttribute("Pshipdate");
                    "UPDATE SHIPEXT" +
                    " SET APP = " +
                    "'" + status + "' " +
              ", PSHDAT = " + "to_date('" + Pshipdate + "', 'dd/mm/yyyy')"
                    +  ", MBY = " +
                    "'" + LoggedInUser + "'"
                    + ", IP = " +
                    "'" + IP + "'"
                    + ", DSREMS = " +
                    "'" + descrems + "'" +
                    ",  MDAT  = "
                    + "to_date('" + getCurrentTimeStamp() + "', 'dd/mm/yyyy')" +
                    " Where WO =" +
                    "' " + workorder + "'"
                    + "AND SR = " +
                    "'" + sr + "'"

    I'll repost what you branched off
    There's all kinds of things wrong.
    For a start, I can't see P_shipdate anywhere, though I can see Pshipdate.
    If you mean Pshipdate, Java is converting it to a string which you are then converting back to a date with to_date.
    Check that the default print  string returned is of dd/mm/yyyy format.
    Similarly with MDAT and getCurrentTimestamp - what is default print string of geCurrentTimestamp?
    All these problem could be avoided if you use bind variables.
    We are trying to help but you seem determined not to accept any help.
    Have you checked the print string formats of Pshipdate and getCurrentTimestamp?

  • Date Column not getting sorted in a table in web Dynpro Java

    Hi All,
    I am facing an issue while sorting the date column in a table in my web dynpro java application.
    When the date is displayed in the sql format in tha table, I am able to sort the date column successfully but when we convert the date field from sql format to util format in our table and then sort it does not work.
    Kindly let us know the steps to be followed in this case to sort the date column of a table in Simple Date format as we do not want date in the sql format to be displayed.
    Thanks & Regards,
    Anurag

    Hi,
    You might want to check whether both your browser's language settings are identical. The browser language could also determine the date format.
    As a workaround, you could add an extra attribute to your context, and set the calculated property to 'true'.
    In your table, add a new column and bind to this new attribute, and hide your original date column
    If you sort using the date column that's hidden now, you could use the calculated field to fixed-format your date the way you prefer (by using the SimpleDateFormatter class for instance)
    Cheers,
    Robin

  • Data is not updated to R/3 Tables to Data source in R/3

    Hi All,
    I am facing a problem in which, for some of the Purchase order's the confirmation Quantity is not getting updated to the Data source 2lis_02_CGR, where the confirmation quantity is comming from EKES table and th Filed is MENGE ,
    when i check the Data in Table EKES, i found that the data is Available but when i check  Data source, i dont see this data for some particular Purchase orders.
    Can any body please, tell me how can i update the data into the Data source in R/3
    ( above mentioned explination is from the R/3)
    Thanks in advance,
    LAX

    Hi,
    Check in RSA6 if your datasource is active.
    If not activate the same.
    Goto RSA3 and give datasource name and extract. Ideally records from the respective table will be extracted into the datasource.
    Regards
    Lavanya

  • Data is not loading into the target table in BODS

    BODS job is executing successfully but data is not loading.
    can anyone please let me know what is the problem
    Regards,
    Deva

    Hi Deva
    The Information provided is very limited, what are your Source and Target Databases?
    What is the structure of the job design?
    If the job completed without error, review the job logs to confirm that rows were indeed processed.
    Regards
    Charles

  • Fields in Field Catalog not available when creating condition table

    I  see that field HIEBO01 to HIEBO12 are available in Field Catalog, but I don't see these fields when creating condition table
    Please let me know what I am missing here.
    Any insight on this would be really helpful.  Thanks guys!

    you need to get them added to the pricing structure KOMKAZ or KOMPAZ based on whether you need @ header level or @ item level respectively.
    and then add the logic in the sales order user exit for these added field in the pricing_prepare_TKOMK or pricing_prepare_TKOMP...again based on header level or item level.....
    Then go back to the field catalog and select from the respective structure and add them, Then you can see them when creating cond tables.
    Hope this helps. Hope i havent misunderstood your query.,
    Regards
    Sai

  • Showing description and not key when using check tables in Web UI

    Hi,
    I have added an field using EEWB to Opportunity Item, and connected it to check table CRMC_CUSTGRP1. It shows fine, and we can select from the check table using the web ui.
    However it shows the key column and not description column from the table. Is there a way to make the web ui show description instead of the key?
    Regards
    Mattias

    Hi,
    I debugged GET_V_S_STRUCT, and it tries calling 
    ME->VIEW_DESCRIPTOR->GET_FIELD_GEN_VALUEHELP_DL
    ME-VIEW_DESCRIPTOR is an instance of class CL_BSP_DLC_VIEW_DESCRIPTION, which does not contain the method GET_FIELD_GEN_VALUEHELP_DL, and obviously it throws an CX_SY_DYN_CALL_ILLEGAL_METHOD exception, which leaves the value table empty.
    Do you have any idea why, or have I missed something fundamental?
    Regards
    Mattias
    Edited by: Mattias Johansson on Nov 14, 2008 11:05 AM

Maybe you are looking for

  • How can I find out the list of users who has the access to IT 0008

    All, How can I find out the list of users who has the W R permission for IT 008 for others? SUIM doe not look like giving me the correct results. Please advise. Thanks, From PT.

  • External hard drive problem, please help!

    I have a SEAGATE external hard drive which I had associated with Time machine so its file system was HFS+ journaled. when i turn the hdd on a window pop up comes on the screen telling me to either initialize, ignore or eject. if i go to disk utility

  • Could not see Diemensions and its Members  in Member Selection Dialog.

    Hi friends, I have an issue while trying to retrieve cube's data through a Member Selection Dialog using Application Builder.NET 9.2 APIs. I could able to sign on and could able to select the cube but the Dimensions and its members are shown empty. I

  • How to fix flickering in actionscript?

    I have a problem making my FLASH working seamlessly. When you put the mouse over the buttons (movie clips) then they are flickering. Do you know how to fix that? I want everything to work smooth and slow, without flickering and flashing in the eyes.

  • Office for Mac 2008 Product key

    Hello. I have the disk and I was wondering if anyone new of a site where I can buy just the product key and not the disk. Thank you