Copy Se16

Hello,
i need your help/experiences.
Regarding SOX we have to close our productive system. If the system is closed, maintaining all tables with se16 is not possible.
Now we have a few (over 100) own customizing tables (only in x and y namespace) where we have to do changes directly in the productive system.
My first idea is a simple alv grid with edit function, but this make problems when sorting and saving a huge amount of data and data will be corrupt.
Next idea was to copy the hole se16 package to z namespace and find the coding for the maintain - but i did´n´t get it to work, a lot of syntax errors after copying.
We are now on 2004s with WEB AS 6.40 and i even tried the "Recreate se16" from Thomas Jung - but is only for reading tables.
Has anybody of you has the same experience or a generic programm to change tables stable.
Thank you for your help in advance.
Marcus

Hi Marcus
Here is a sample that will guide you to create this tool. You must add a few more functioanlities as per your requirement. Hope this will solve your problem,
REPORT  zkb_se16.
PARAMETERS: p_table TYPE dntab-tabname DEFAULT 'ZCA_PROJECT_TASK' OBLIGATORY.
TYPE-POOLS : abap.
CLASS lcl_event_receiver DEFINITION DEFERRED.
DATA: o_grid             TYPE REF TO cl_gui_alv_grid,
      o_custom_container TYPE REF TO cl_gui_custom_container,
      o_event_receiver   TYPE REF TO lcl_event_receiver.
FIELD-SYMBOLS: <fs_table> TYPE STANDARD TABLE,
               <fs_warea> TYPE ANY,
               <fs_field> TYPE ANY.
DATA: o_table TYPE REF TO data,
      o_line  TYPE REF TO data,
      w_fcat TYPE lvc_s_fcat,
      i_fcat TYPE lvc_t_fcat,
      i_sort TYPE lvc_t_sort,
      i_layo TYPE lvc_s_layo.
DATA : i_nametab TYPE TABLE OF dntab,
       w_nametab TYPE dntab.
*       CLASS lcl_event_receiver DEFINITION
CLASS lcl_event_receiver DEFINITION.
  PUBLIC SECTION.
    METHODS:
    handle_toolbar FOR EVENT toolbar OF cl_gui_alv_grid
    IMPORTING e_object e_interactive,
    handle_user_command FOR EVENT user_command OF cl_gui_alv_grid
    IMPORTING e_ucomm.
ENDCLASS.                    "lcl_event_receiver DEFINITION
*&          Classes implementation section
CLASS lcl_event_receiver IMPLEMENTATION.
  METHOD handle_toolbar.
    CONSTANTS:
    c_button_normal TYPE i VALUE 0,
    c_separator     TYPE i VALUE 1.
    DATA: ls_toolbar TYPE stb_button.
    CLEAR ls_toolbar.
    APPEND ls_toolbar TO e_object->mt_toolbar.
    CLEAR ls_toolbar.
    MOVE 'EDIT' TO ls_toolbar-function.
    MOVE icon_system_copy TO ls_toolbar-icon.
    MOVE 'Sets Grid in Edit Mode' TO ls_toolbar-quickinfo.
    MOVE 'Edit' TO ls_toolbar-text.
    MOVE ' ' TO ls_toolbar-disabled.
    APPEND ls_toolbar TO e_object->mt_toolbar.
    MOVE 'UPDATE' TO ls_toolbar-function.
    MOVE icon_system_save TO ls_toolbar-icon.
    MOVE 'Updates all the changed data' TO ls_toolbar-quickinfo.
    MOVE 'Update' TO ls_toolbar-text.
    MOVE ' ' TO ls_toolbar-disabled.
    APPEND ls_toolbar TO e_object->mt_toolbar.
    MOVE 'DELETE' TO ls_toolbar-function.
    MOVE icon_delete TO ls_toolbar-icon.
    MOVE 'Deletes the current record' TO ls_toolbar-quickinfo.
    MOVE 'Delete' TO ls_toolbar-text.
    MOVE ' ' TO ls_toolbar-disabled.
    APPEND ls_toolbar TO e_object->mt_toolbar.
  ENDMETHOD.                    "handle_toolbar
*    Method that check the events in the created buttons.  *
  METHOD handle_user_command.
    CASE e_ucomm.
      WHEN 'EDIT'.
        CALL METHOD o_grid->set_ready_for_input
          EXPORTING
            i_ready_for_input = 1.
      WHEN 'UPDATE'.
        PERFORM update_modified_information.
      WHEN 'DELETE'.
        PERFORM delete_modified_information.
    ENDCASE.
  ENDMETHOD.                    "handle_user_command
ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
START-OF-SELECTION.
  CALL SCREEN 9000.
*&      Module  STATUS_9000  OUTPUT
*       text
MODULE status_9000 OUTPUT.
  SET PF-STATUS 'SE16'.
*  SET TITLEBAR 'xxx'.
ENDMODULE.                 " STATUS_9000  OUTPUT
*&      Module  USER_COMMAND_9000  INPUT
*       text
MODULE user_command_9000 INPUT.
  CASE sy-ucomm .
    WHEN 'BACK' OR 'EXIT'.
      SET SCREEN 0.
      LEAVE SCREEN.
    WHEN OTHERS.
      MESSAGE 'Function Not Defined' TYPE 'I'.
  ENDCASE.
ENDMODULE.                 " USER_COMMAND_9000  INPUT
*&      Module  init_9000  OUTPUT
*       text
MODULE init_9000 OUTPUT.
  IF o_custom_container IS INITIAL.
* Create a custom container
    CREATE OBJECT o_custom_container
      EXPORTING
        container_name              = 'CONTAINER'
      EXCEPTIONS
        cntl_error                  = 1
        cntl_system_error           = 2
        create_error                = 3
        lifetime_error              = 4
        lifetime_dynpro_dynpro_link = 5
        OTHERS                      = 6.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CREATE OBJECT o_grid
      EXPORTING
        i_parent          = o_custom_container
      EXCEPTIONS
        error_cntl_create = 1
        error_cntl_init   = 2
        error_cntl_link   = 3
        error_dp_create   = 4
        OTHERS            = 5 .
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CREATE OBJECT o_event_receiver.     "Creating event receiver object
    SET HANDLER o_event_receiver->handle_user_command FOR o_grid.
    SET HANDLER o_event_receiver->handle_toolbar FOR o_grid.
    CALL METHOD o_grid->set_ready_for_input
      EXPORTING
        i_ready_for_input = 0.
  ENDIF.
ENDMODULE.                 " init_9000  OUTPUT
*&      Module  build_struct_9000  OUTPUT
*       text
MODULE build_struct_9000 OUTPUT.
* Create dynamic Internal Table
  CREATE DATA o_table TYPE TABLE OF (p_table) .
  ASSIGN o_table->* TO <fs_table>.
* Create dynamic work area
  CREATE DATA o_line LIKE LINE OF <fs_table>.
  ASSIGN o_line->* TO <fs_warea>.
* Field Catalogue
  CALL FUNCTION 'NAMETAB_GET'
    EXPORTING
      langu   = sy-langu
      tabname = p_table
    TABLES
      nametab = i_nametab.
  LOOP AT i_nametab INTO w_nametab .
    w_fcat-col_pos = w_nametab-position.
    w_fcat-fieldname = w_nametab-fieldname .
    w_fcat-datatype = w_nametab-datatype.
    w_fcat-inttype = w_nametab-inttype.
    w_fcat-intlen = w_nametab-intlen.
    w_fcat-decimals = w_nametab-decimals.
    IF w_nametab-keyflag NE 'X'.
      w_fcat-edit = 'X'.
    ENDIF.
    APPEND w_fcat TO i_fcat.
  ENDLOOP.
ENDMODULE.                 " build_struct_9000  OUTPUT
*&      Module  display_in_grid_9000  OUTPUT
*       text
MODULE display_in_grid_9000 OUTPUT.
  SELECT * FROM (p_table) INTO TABLE <fs_table>.
  IF sy-subrc EQ 0.
    CALL METHOD o_grid->set_table_for_first_display
      EXPORTING
        i_save                        = 'A'
        i_default                     = 'X'
        is_layout                     = i_layo
      CHANGING
        it_outtab                     = <fs_table>
        it_fieldcatalog               = i_fcat
        it_sort                       = i_sort
      EXCEPTIONS
        invalid_parameter_combination = 1
        program_error                 = 2
        too_many_lines                = 3
        OTHERS                        = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
  ENDIF.
ENDMODULE.                 " display_in_grid_9000  OUTPUT
*&      Form  update_modified_information
*       text
*  -->  p1        text
*  <--  p2        text
FORM update_modified_information .
  UPDATE (p_table) FROM TABLE <fs_table>.
  CALL METHOD o_grid->set_ready_for_input
    EXPORTING
      i_ready_for_input = 0.
ENDFORM.                    " update_modified_information
*&      Form  delete_modified_information
*       text
*  -->  p1        text
*  <--  p2        text
FORM delete_modified_information .
  DATA: lv_line  TYPE i,
        lv_count TYPE i VALUE 0.
  DATA: i_index_rows TYPE lvc_t_row,
        w_index_rows LIKE lvc_s_row.
*       Reading the index of the selected row in the ALV grid.
  CALL METHOD o_grid->get_selected_rows
    IMPORTING
      et_index_rows = i_index_rows.
  DESCRIBE TABLE i_index_rows LINES lv_line.
  IF lv_line LT 1.
    MESSAGE 'Selete atleast 1 row' TYPE 'I'.
    EXIT.
  ELSE.
    LOOP AT i_index_rows INTO w_index_rows .
      lv_line = w_index_rows-index - lv_count.
      READ TABLE <fs_table> INTO <fs_warea> INDEX lv_line.
      DELETE <fs_table> INDEX lv_line.
      DELETE  (p_table) FROM <fs_warea>.
      lv_count = lv_count + 1.
    ENDLOOP.
    CALL METHOD o_grid->refresh_table_display.
    CALL METHOD o_grid->set_ready_for_input
      EXPORTING
        i_ready_for_input = 0.
  ENDIF.
ENDFORM.                    " delete_modified_information
Regards
Kathirvel

Similar Messages

  • CRM Datasource Problem After Transport

    Hi,
    I am using CRM datasource 0CRM_SRV_PROCESS_H in CRM 5.0. The datasouce is installed through RSA5 and enhanced successfully in CRM Development System. Its BWA metadata is also activated automatically(as i am on CRM 5.0). I have transported it successfully to CRM Quality system without any warnings/errors. But when i check it in T-Code BWA5, its "Active" flag is not checked. And  when i check in RSA3, sytem is throwing error message " Errors Occurred During Extraction".  I can see the datasouce in RSA6 in Quality system with its enhanced fields.
    How can i make the "Active" flag checked in CRM Quality system? Or How can i activate BWA metadata in CRM Quality system?
    Urgent response would be appreciated.
    Regards,
    Prasad

    Definitely this is not related to replication. Some times this error 'Error in extraction" is related to SMOXHEAD table entry.
    Try following steps..
    Copy Smoxhead entry CRD> se16 > SMOXHEAD > DataSource > select the resulting line, copy
    se16 > SMOXHEAD_S > DataSource > paste
    Table Entry > Transport Entries of SMOXHEAD_S
    After transport try running RSA3. It shall be fine.
    Regards,
    Assgn pts if helpful.

  • Issues in exporting data from SAP tables in SE16 to excel

    1.How can I save an sap table (displayed through SE16) in ECC6 into a pivot table in excel. [ I have seen this option in R/3 4.7, but do not see it in ECC.]
    2.How can I copy all the rows of a 3000 row SAP table in SE16 and paste the values into excel. I need to do this in one shot and not page by page.
    3.What option do I need to select inorder to preserve the formating of the values while saving as a local file in a spreadsheet format. All the values with leading zeros,like company codes gets saved with only their numeric portion when I save a SAP table as a local file. for eg company code 0001 gets saved in excel as just 1,company code 0056 gets saved as 56 etc. How do I prevent this? What option do I need to set in SAP in order for the values to be downloaded as is, without any truncation of leading zeros.

    1.  I don't know.  How about creating a pivot after exporting data
    2. System->List->Save->local file->clipboard
    Then paste whole lot in Excel
    3. This is a problem with Excel, not SAP.  SAP exports with leading zeroes.
    You could export as flat file & import into Excel into a spreadsheet with an appropriate numbering format.

  • Unable to create a 'Z' for se16 transaction

    Hi everyone,
    we have a requirement where we are unable to create a Z for transaction SE16.
    I went to se93 and checked it was a function pool so i went to SE80 to make a copy of standard function group SETB to ZSETB.
    it made a copy of it anf I copied all the FM's and made a Z of those.
    Once it is done. When I activate it it give a lot of errors , I have checked it and made sure that it is copying entire Function Group but all are fine.
    My system is ECC6.0, earlier we had ZE16 which is a replica of SE16 and this had a lot of problem like ending in dumps , so we thought we would make a new Z transaction for SE16, but we get many error.
    Please try it out once in ur system before U suggest me a change to be made.
    Regards,
    Raj

    It is always best to minimize such issues by making a copy of programs or function modules where changes are needed to add new functionality. Also this would ensure any patches/notes  added in future would have minimum impact on your clones.
    -Cheers

  • Error while copying company code

    Hi
    While copying company code from 0001, following error is giving. Can you please tell me how to go ahead with that:
    Message no. TK455
    Diagnosis
    The value "12 " was entered in the field "REICHWEITE".
    This is not possible because it is a numeric field where only numbers may be entered.
    The length of the field is 000003.
    System Response
    The entry was not accepted.
    Procedure
    Enter only numeric values in this field
    Regards,
    Priya

    Hi,
    Did you check the note?
    it indicates:
    >Use Transaction SE16 to delete all entries in the TNIW5 table that have the two-digit contents '12' in the 'Range of coverage' field.
    >If you want to use the lowest value determination by range of coverage (Transaction MRN1) with valuation level = company code, you can maintain your own customer-specific Customizing entries in Transaction OMW5.
    Regards,
    Jigar

  • Error copying company code in ECC 6.0

    Hi all,
    I encounterred the error "Enter numeric value only" aftern copying company code.
    This problem is exactly the same with Copying of Company Code
    However, I couldn't find the note Note 547875 that he mentioned in the thread.
    I also tried to create company code before copying but no help.
    Can anybody help?
    Giang

    This is what u need to do to resolve this error:
    The problem is caused by an error in Customizing.
    The TNIW5 Customizing table is a table with delivery class = C (= Maintenance only by customers - No SAP import). SAP has delivered entries in the TNIW5 table from earlier releases in the incorrect format (entries with the field contents '12') for the TNIW5-REICHWEITE field.
    Solution
    Use Transaction SE16 to delete all entries in the TNIW5 table that have the two-digit contents '12' in the 'Range of coverage' field.
    If you want to use the lowest value determination by range of coverage (Transaction MRN1) with valuation level = company code, you can maintain your own customer-specific Customizing entries in Transaction OMW5.
    Header Data

  • Copying of the desired vendor from PR to Partners Tab in PO

    I need to know how we can get the desired vendor from PR copied to the PARTNERS tab in PO while auto creation of PO  from PR (ME59N).
    The Odering adress comes from the Vendor master partner functions which is marked as default in PO, i want that Odering adress always = Desired Vendor and this is during the auto PO generation in ME59N.
    How can I get this done.
    Thanks,
    RAshmi.

    hi,
    please check for the following points:
    1. check in ME21N, are referncing properly or not...
    You have to reference it via using the document overview ON or directly entering the PR as source document for the PO...
    2. check whether is getting properly saved in the table EBAN/EBKN...check it in SE16...you can check as per the document number...
    3. If nothing is helping you from the above two points check with the ABAP and BASIS consultant...
    Regards
    Priyanka.P

  • Download table data from se16 to excel

    Hi I am trying to download table data from SE16 (field widths, descriptions etc) to Excel, but cannot as the option local file is greyed out under System>List>Save.
    Table>Print doesn't let mn downlaod either, jsut print. As I have 50 tables to download, is there a better option than copy and paste into excel?
    Thanks

    Hi,
    You can use the T-code SE11 for downloading the values from database table, after entering Table name ,
    click on Display (F7), it will take you to new screen, then enter (CtrlAltF10),
    Now enter the input values and execute.
    Kindly check with this.
    Best Regards,
    Vasu.

  • Unable to copy very large file to eSATA external HDD

    I am trying to copy a VMWare Fusion virtual machine, 57 GB, from my Macbook Pro's laptop hard drive to an external, eSATA hard drive, which is attached through an ExpressPort adapter. VMWare Fusion is not running and the external drive has lots of room. The disk utility finds no problems with either drive. I have excluded both the external disk and the folder on my laptop hard drive that contains my virtual machine from my Time Machihne backups. At about the 42 GB mark, an error message appears:
    The Finder cannot complete the operation because some data in "Windows1-Snapshot6.vmem" could not be read or written. (Error code -36)
    After I press OK to remove the dialog, the copy does not continue, and I cannot cancel the copy. I have to force-quit the Finder to make the copy dialog go away before I can attempt the copy again. I've tried rebooting between attempts, still no luck. I have tried a total of 4 times now, exact same result at the exact same place, 42 GB / 57 GB.
    Any ideas?

    Still no breakthrough from Apple. They're telling me to terminate the VMWare processes before attempting the copy, but had they actually read my description of the problem first, they would have known that I already tried this. Hopefully they'll continue to investigate.
    From a correspondence with Tim, a support representative at Apple:
    Hi Tim,
    Thank you for getting back to me, I got your message. Although it is true that at the time I ran the Capture Data program there were some VMWare-related processes running (PID's 105, 106, 107 and 108), this was not the case when the issue occurred earlier. After initially experiencing the problem, this possibility had occurred to me so I took the time to terminate all VMWare processes using the activity monitor before again attempting to copy the files, including the processes mentioned by your engineering department. I documented this in my posting to apple's forum as follows: (quote is from my post of Feb 19, 2008, 1:28pm, to the thread "Unable to copy very large file to eSATA external HDD", relevant section in >bold print<)
    Thanks for the suggestions. I have since tried this operation with 3 different drives through two different interface types. Two of the drives are identical - 3.5" 7200 RPM 1TB Western Digital WD10EACS (WD Caviar SE16) in external hard drive enclosures, and the other is a smaller USB2 100GB Western Digital WD1200U0170-001 external drive. I tried the two 1TB drives through eSATA - ExpressPort and also over USB2. I have tried the 100GB drive only over USB2 since that is the only interface on the drive. In all cases the result is the same. All 3 drives are formatted Mac OS Extended (Journaled).
    I know the files work on my laptop's hard drive. They are a VMWare virtual machine that works just fine when I use it every day. >Before attempting the copy, I shut down VMWare and terminated all VMWare processes using the Activity Monitor for good measure.< I have tried the copy operation both through the finder and through the Unix command prompt using the drive's mount point of /Volumes/jfinney-ext-3.
    Any more ideas?
    Furthermore, to prove that there were no file locks present on the affected files, I moved them to a different location on my laptop's HDD and renamed them, which would not have been possible if there had been interference from vmware-related processes. So, that's not it.
    Your suggested workaround, to compress the files before copying them to the external drive, may serve as a temporary workaround but it is not a solution. This VM will grow over time to the point where even the compressed version is larger than the 42GB maximum, and compressing and uncompressing the files will take me a lot of time for files of this size. Could you please continue to pursue this issue and identify the underlying cause?
    Thank you,
    - Jeremy

  • Error in Copying Company COde

    Hello All,
    Through SPRO, when I am trying to copy company code 0001 to 9999 (with currency USD), I am getting following error
    ""Enter numeric values only
    The value "12 " was entered in the field "REICHWEITE".
    This is not possible because it is a numeric field where only numbers may be entered.
    The length of the field is 000003.""""
    Does anyone has idea about this error. I have debugged a lot but not reaching to any solution

    you can check following OSS note..547875
    [https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=547875]
    Extract of the NOte..
    Symptom
    When you use Transaction EC01 to delete or copy a company code delivered by SAP, the system issues error message TK455.
    Reason and Prerequisites
    The problem is caused by an error in Customizing.
    The TNIW5 Customizing table is a table with delivery class = C (= Maintenance only by customers - No SAP import). SAP has delivered entries in the TNIW5 table from earlier releases in the incorrect format (entries with the field contents '12') for the TNIW5-REICHWEITE field.
    Solution
    Use Transaction SE16 to delete all entries in the TNIW5 table that have the two-digit contents '12' in the 'Range of coverage' field.
    If you want to use the lowest value determination by range of coverage (Transaction MRN1) with valuation level = company code, you can maintain your own customer-specific Customizing entries in Transaction OMW5.

  • Error in Client Copy - Urgent

    Hi all,
    A client copy was done from PRD to QAS.
    It has been found out that the Field name in the QAS and PRD doesnot match in SE16.
    In the table BSEC, the field STRAS was present in QAS where as it is displayed as STRAR in PRD. This is in SE16. In SE11, it is STRAS in both QAS and PRD.
    Could anyone tell why this might have happened?
    Thanks in advance.
    Regards,
    Adapala.

    Hi,
    SE16 is just a display of SE11 table. So there will not be any change. When you take the table in SE16. From Settings->User Parameters->try toggling b/w field name and field label.
    I think STRAS is the Street Address...
    If there is any type mismatch the client copy will not happen...
    Regards,

  • How do i disable F4 Help for a standard view which was copied into a 'Z'

    Hello Friends,
    I had developed a database view which is working fine now...
    But my users requirement is that for one of the field i.e BANFN(Purchase requisition field) for this field
    he wants the F4 help to be disabled.
    I tried out to search the solution in many ways but i am not getting it.
    Kindly help me out on how to disable the F4 Help.
    It would be of great help if someone could help me out.
    Thanks in advance,
    Rajesh Kumar.

    - Create a data element by copy of BANFN, lets say ZBANFN, remove its search help (MBAN) and activate data element
    - In the database view, in the View flds tab, check the "mod" flag of field BANFN, and replace the data element BANFN with ZBANFN, activate database view
    The F4 help should have disappeared. (test via SE16)
    Regards

  • Calling copy of BSP application in e-recruitment

    In E-recruitment module, I have a requirement to copy the SAP standard BSP application HRRCF_REQ_MNT to a z BSP application
    and add new fields to one of the BSP pages of the ZBSP application.I could not find any customizing table where I can make a
    call to my zBSP application. Can someone help me with this please?

    Hello,
    to include views of customer bsp application in a container sequence like the requisition maintenance you have to use the standard flexibilization for container sequences.
    It can be found in the IMG under the path e-recruiting -> technical settings -> user interface -> (Settings for UI BSP [only 600]) -> Flexibilization.
    You first define a context if you have not already done this. Then you go to Container Sequence -> Define Elements for CS and create an element for the screen of the customer bsp you want to include. As the standard customizing is not shown (it's stored in seperate tables) you might want to have a look on T77RCF_CS_ITEM in SE16 to get an idea what to put in the different fields (namespace can be SAP noone seems to know what it's really for).
    Then you have to go to -> Modify CS. Add an entry for CS Id 1000 which is the Container Sequence for requisition management. In the assingments you add entries for the context you created before and all customer and standard CS Items you want to use. The elements assigned to this CS Id in standard can be found in table T77RCF_CS_SEQ in SE16.
    To access the new configuration you have to call the startpage of the recruiter with the condetext defined (URL Param: rcfContext)
    Best Regards
    Roman Weise

  • Local Client Copy Error : Completed w. Dictionary Errors

    Hi,
    I have performed local client copy in the ECC 6.0 system.I mean SAP Netweaver 7.0 EHP1.I have selected source system 100 and target system 200 and profile is SAP_CUST with my User ID in 200 client having SAP_ALL,SAP_NEW.In the SCC3 throws error i,.e, Completed w. Dictionary Errors.The client 200 is newly created in the system.
    Target Client             200
    Source Client           100
    Copy Type               Local Copy
    Profile                      SAP_CUST
    Status                      Completed w. Dictionary Errors
    User                        I998769
    Start on                   06.12.2009 / 12:47:59
    Last Entry on          06.12.2009 / 14:00:12
    Statistics for this Run
    - No. of Tables            56872 of     58391
    - Deleted Lines           5705995
    - Copied Lines            5770444
    Warnings and Errors
    Table Name             Component          Package
    A001                   SD-MD-CM           DDIC Error        (See SE14)
    A004                   SD-MD-CM           DDIC Error        (See SE14)
    A005                   SD-MD-CM           DDIC Error        (See SE14)
    A006                   SD-MD-CM           DDIC Error        (See SE14)
    A007                   SD-MD-CM           DDIC Error        (See SE14)
    A009                   SD-MD-CM           DDIC Error        (See SE14)
    A010                   SD-MD-CM           DDIC Error        (See SE14)
    A012                   SD-MD-CM           DDIC Error        (See SE14)
    A015                   SD-MD-CM           DDIC Error        (See SE14)
    Nearly about 1520 tables are not copied from the source client and there is no dumps for that.Please,find below for the file log information which is highlighted in red color in log.
       Start of post-processing by application exits 13:57:48
       Automatic postprocessing of client 200 was incorrect -> long text
       Post-processing required for FINB_TR_CC_EXIT_TARGET
       Validation/substitution: Programs should be regenerated
       Selected tables           :         58.391
       Copied data in kBytes  :      2.933.491
       Deleted data in kBytes :      2.845.416
       Program ended with error or warning, return code: W
       Runtime (seconds)         :          4.333
       End of processing: 14:00:12
    Kindly,help me how to resolve the issue and provide relavent notes which is applicable to my error as per the SAP release.

    Hi,
    We encounter the same problem with different A***-tables. The problem is that these seem to be pooled tables. I had a look at sap note 1248769 and it mentions that the reconstruct-option is only liable for transparent tables. This seems to be right, as the option "Reconstruct" is greyed out in tx SE14 when we try to.
    Any other options?
    Jan
    PS. Sorry for hijacking the thread, but it seems the topic starter is still looking for an answer as well
    Edit: Found another SAP Note which seems relevant: 1171306. This note has the following segment in it:
    If you still want to remove the inconsistency, you can proceed as described in the following.  However, the table must be empty for you to be able to do this (you can check this with the report NROWS:  start the report NROWS, enter DVPOOLTEXT for "Table 1" on the selection screen and choose Execute.)
    1. Call transaction SE14.
    2. Edit DVPOOLTEXT.
    3. Delete the database table.
    4. Create a database table.
    If the pool is not empty and the data is required, it must be unloaded in advance and then read again after you have recreated the table.
    Ofcourse we would like to preserve our data in the tables. Let's take a look at an example in our system: Table A017. This table has encountered the DDIC error during client copy. We have performed the following analysis actions on it:
    Report NROWS mentions 116.390 entries for table A017.
    In SE16 table A017 has 0 entries.
    In SE14 I have performed two checks: The runtime object seems ok. When I check database object in SE14 the system returns the following message: "Table is not created in database".
    Any tips?
    Edited by: Jan Laros on Sep 8, 2010 2:25 PM

  • Copying a table to onother server

    are there utilities to copy objects to disk eg copyng a table to disk and installing it on onother server. whats the limit

    <b> to transport data of a SAP table.  </b>
    Go to transaction SE16, select your entries and go to Table entry -> Transport entries. It's only possible for some tables... 
    If you cannot do it that way, you have to create a Workbench transport order with transaction SE10. When created, click on it, go in menu Request/task -> Object list -> Display object list. 
    Go in modification mode and add a new line with: 
    PgmID = R3TR
    Obj = TABU
    Object name = Name of your table
    Double-click on the created line and, depending on your need, put '*' in the key field or double-click on it and select the key you need to transport. 
    regards,
    srinivas
    <b>*reward for useful answers*</b>

Maybe you are looking for

  • Failed to open the connection on CR Server 2008 .

    Hi, 1. I used trial version of CR Server 2008 V1 SP3, I upload a rtp file into this server and try to view. but after parameters input, I got "Failed to open the connection".  this rpt work very will on my CR Server XI version. 2. on this new CR serv

  • How to resize the columns of a table?

    Hi there! I want to resize the column of a JTable(constructed via AbstractTableModel) to fit the exact width of the word in the header? Can anyone tell me how to do this thing? Regards,

  • Essbase - eis issue

    Hi, I have been facing an drillthrough issue started since couple of weeks... The users are not able to drillthrough the data (data is in sybase) from excel. They are getting the ESSDTU error message... I have re-run the "ais_start" and then its star

  • Streaming Video from Premiere Pro

    Is there a simple way to export my video and post in on my server to for streaming? I have tried to export a quicktime file, but it does not compress small enough. I also used Adobe Media encoder to create an .flv file, but I am not a Flash expert so

  • Advntages using GP

    What are the advantages of developing a CAF using Guided procedures....can anyone help me out.....specify if any link u find abt that... plz help me out.....Thanx in advance.