Problem in activating a Z-table

Hi,
       I have a customizing table with entries in it. There are 2 key fields in it. I had removed one of the keyfields and tried activating it. It was not activating properly. Hence i cancelled the session. Restored the prevoius version and then activated in background using SE14. The batch is running for a long period( 3 hours) and the database table is not activated. When i login using another id, its showing as active but there is no contents in the database. I am not able to add entries to the database table as well.
Any suggestion on how to handle this situation?
Regards,
Niyaz
<< Please do not offer rewards >>
Edited by: Rob Burbank on Feb 17, 2009 1:27 PM

Try to activate it with Database utility
Menu> Utilities>Database Object> Database Utility
select the radio button save data
click on activate and adjust table.
If you are using ECC 6.0 it throws a warning regarding the Enhancement category,
Go to SE11, Menu> Extras> Enhancement category
Select not classified
and the try to activate it in database utility.

Similar Messages

  • Problem in activation of ODS 0SD_O06 due to Archiving request.

    Hi Experts,
    I am having a problem in activating ODS 0SD_O06, it is giving below error message
    1. 550 of 1.476.126 data records are in a locked area
    2. 550 data records locked by archiving request 1.048.978
    3. Error when checking data to be activated against archiving objects.
    We have archived the ODS content based on Billing Date, Archiving Request 1.048.978 is for the Bill Date 01.01.2004 to 31.12.2004.
    I checked in the new data table of ODS with the Bill Date 01.01.2004 to 31.12.2004, I got 550 Records.
    It means the records which is already archived for Bill Date 01.01.2004 to 31.12.2004, got changed and again came into the request.
    I am not able to find the solution for this, please help me in this, your help will be highly appreciated.
    Thanks and Regards,
    Ajay Kumar
    9350006555

    hi,
    If the data has been archieved then there is no tool to get the archieve data back in BW. So I suggest to investigate further.
    Thanks

  • Problem in using Auto-generated Table in Program

    Hi experts,
    I'm using some auto-generated table in my program. But the Problem is program is not activated due to non-existance of any type of table or structure or view of that Table type in the development server. i.e. table name in development is FMFMOADE12200014 and same in Production is FMFMOAPE14000018.
    How can I solve this problem to active the program and transport it?
    Thnaks in advance.
    Goutam

    Hi Friend  ,
    If  an Auto-generated tables  inside your program ,then you should not use that table directly  as internal table type .
    In that case you have used the Dynamic structure  in your program .
    tips is  you should check first the table is there in the  database  through your  programing using the standard function module for checking the table exsisting , then use the field symbols  for dynmaic creating of program  strucuture  ,including field creation  to tat strcuture  . this  will  make your  program more  lines in that  case you can  write  subroutine  for  creating the  fields  and adding  inside the dynamice strucure  .
    simple example  please see this link  :  [http://www.sap-img.com/ab030.htm]
    becasuse  we do have the  same  auto-generating table  concept  in Finance  base  on the Operating cencern  out table  name  & fields  inside  will be changing  ,Our  program has to support world wide Rollouts . so we used  dynamic structuring  inside Our program .
    Regards,

  • Problem with Active Standby Pair

    Hi ALL!
    I have a problem with Active Standby Pair replication.
    I have 2 instance TT on host1 and host2
    On host1 i created 2 data store rep1 and rep2
    On host2 i created 1 data store t1
    ALL data stores identical, and have one table REP_TAB.
    AFter this i work with rep1 ds:
    Creating active standby pair:
    create active standby pair rep1 on "host1",
                                          t1 on "host2"
    subscriber rep2 on "host1"
    store rep1  on "host1"  port 18000 timeout 30
    store t1 on "host2"     port 18000 timeout 30and starting repagent
    call ttrepstart;After this i try using ttrepadmin utility and ALWAYS GET this error
    C:\Documents and Settings\user1>ttrepadmin -duplicate -from rep1 -host "host1" rep4
    Enter password for 'tt':
    TT12048: Error performing backup at source.  More information can be found in th
    e source's message log
    TT7001: REP1:receiver.c(4979): TT7001: User authentication failedPasswort right. I dont know what i am doing wrong? Please Help!

    Did you enable Access Control in this instance when you installed? If so, have you created the relevant users in the TimesTen instance?
    If you have access to Metalink you may find Note 421220.1 useful in clarifying this process, and also for avoiding other problems you may encounter after performing a successful duplicate.

  • Problem while inserting into a table which has ManyToOne relation

    Problem while inserting into a table *(Files)* which has ManyToOne relation with another table *(Folder)* involving a attribute both in primary key as well as in foreign key in JPA 1.0.
    Relevent Code
    Entities:
    public class Files implements Serializable {
    @EmbeddedId
    protected FilesPK filesPK;
    private String filename;
    @JoinColumns({
    @JoinColumn(name = "folder_id", referencedColumnName = "folder_id"),
    @JoinColumn(name = "uid", referencedColumnName = "uid", insertable = false, updatable = false)})
    @ManyToOne(optional = false)
    private Folders folders;
    public class FilesPK implements Serializable {
    private int fileId;
    private int uid;
    public class Folders implements Serializable {
    @EmbeddedId
    protected FoldersPK foldersPK;
    private String folderName;
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "folders")
    private Collection<Files> filesCollection;
    @JoinColumn(name = "uid", referencedColumnName = "uid", insertable = false, updatable = false)
    @ManyToOne(optional = false)
    private Users users;
    public class FoldersPK implements Serializable {
    private int folderId;
    private int uid;
    public class Users implements Serializable {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Integer uid;
    private String username;
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "users")
    private Collection<Folders> foldersCollection;
    I left out @Basic & @Column annotations for sake of less code.
    EJB method
    public void insertFile(String fileName, int folderID, int uid){
    FilesPK pk = new FilesPK();
    pk.setUid(uid);
    Files file = new Files();
    file.setFilename(fileName);
    file.setFilesPK(pk);
    FoldersPK folderPk = new FoldersPK(folderID, uid);
         // My understanding that it should automatically handle folderId in files table,
    // but it is not…
    file.setFolders(em.find(Folders.class, folderPk));
    em.persist(file);
    It is giving error:
    Internal Exception: java.sql.SQLException: Field 'folderid' doesn't have a default value_
    Error Code: 1364
    Call: INSERT INTO files (filename, uid, fileid) VALUES (?, ?, ?)_
    _       bind => [hello.txt, 1, 0]_
    It is not even considering folderId while inserting into db.
    However it works fine when I add folderId variable in Files entity and changed insertFile like this:
    public void insertFile(String fileName, int folderID, int uid){
    FilesPK pk = new FilesPK();
    pk.setUid(uid);
    Files file = new Files();
    file.setFilename(fileName);
    file.setFilesPK(pk);
    file.setFolderId(folderId) // added line
    FoldersPK folderPk = new FoldersPK(folderID, uid);
    file.setFolders(em.find(Folders.class, folderPk));
    em.persist(file);
    My question is that is this behavior expected or it is a bug.
    Is it required to add "column_name" variable separately even when an entity has reference to ManyToOne mapping foreign Entity ?
    I used Mysql 5.1 for database, then generate entities using toplink, JPA 1.0, glassfish v2.1.
    I've also tested this using eclipselink and got same error.
    Please provide some pointers.
    Thanks

    Hello,
    What version of EclipseLink did you try? This looks like bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=280436 that was fixed in EclipseLink 2.0, so please try a later version.
    You can also try working around the problem by making both fields writable through the reference mapping.
    Best Regards,
    Chris

  • Dear , please help me to solve my problem in activating my iPhone Where I lost it since 3 months and when found it cannot activating my ID Where give me (Your Apple ID has been disabled for security reasons. To enable your account, reset your password at

    Dear , please help me to solve my problem in activating my iPhone
    Where I lost it since 3 months and when found it cannot activating my ID
    Where give me (Your Apple ID has been disabled for security reasons. To enable your account, reset your password at applied.apple.com)
    And try to reset my password but cannot please help me where am a poor man and cannot pay another money to solving this problem to any one
    My iPhone data
    Ime:  ****
    Model: A1332
    FCC  ID : BCG-E2380A
    IC: 579C-E2380A
    MY id at cloud   ****
    Password    ( ****)
    My country : Egypt
    MY EMAIL : ****
    Tell no: ****
    <Personal Information Edited By Host>

    The following may help:
    Apple ID: 'This Apple ID has been disabled for security reasons' alert appears - Apple Support
    If you didn't receive your Apple ID verification or reset email - Apple Support

  • Problem while activating message mapping

    Hi all,
       I am facing a problem while activating message mapping in IR.It says Object being edited by XXXX and cannot be activated.It's giving my user name itself and even it doesn't allow to go to edit mode even.But I am not opening  it twice.How to monitor all the XI users logged into the XI system and find the users using IR and ID objects.Please help in this regard.
    Thanks.

    Hi Jaya
    It is .....
    http://<host:port>/rep/support/public/LockAdminService
    Hope this helps !!!
    Regards,
    J Augastine

  • Problem regarding the creation of Table using CSS.

    Hi ,
    Here I have a Problem regarding the creation of Table using CSS.
    In My Application i have a table with multiple rows(Rows are Dynamically added to the table).First i am setting the table with the following properties:
    width:900px;
    height : auto,
    Overflow : visible,
    Max-height: : 200px.
    If I use above properties,I'm getting a table with 5 or 6 rows(height upto 200px).After that i am getting the Vertical ScrollBar.
    The problem is when a table has many columns, Vertical and Horizontal Scrolls are coming at the time of setting the table. The table height is not Increasing dynamically.
    How can i use "height" property in CSS? (I want the table height to be increased when the columns are more.)
    Thanks & Regards
    Madhavi

    Hey humble user. Errr I'm trying to understand what ur trying to do. U want to create a section of a region destructively from an existing region right? If so select the option convert to new region (opt-comm-R or selecting it by right clicking). Check your audio bin to make sure. Whats the "merge" function? Are u refering to the glue tool?

  • Problem in activation of communication structure.

    Hi frnds,
    I have a problem in activation of comm. structure.
    Am on Version 3.5.
    Its a master data mapping using flexible update.
    So i have mapped all the relevant object in the same order as that of csv source file.
    But for 1 field, I have a requirement wherein I should write a transfer routine.
    So for that single field i have written the code and ACTIVATED the structure.(I got the prompt that Infosource activated)
    But when I saw the infosource in Infosource tab, its in White colour(rathar then green). I suppose this means that the  infosource is still not activated.
    Please let me know what is the problem behind. And also I am not able to activate the Infosource.
    thanks in advance.
    dubbu.
    Edited by: Dubbu on Jul 16, 2009 1:45 PM

    Can you just lemme know what field is that?
    i hope its ot an automatic generated field which are created automatically for the amount or quantity fields.
    morever if this is not the case then please try to refresh the tree.. u might see the diffrence.
    Thanks,
    Purva

  • Problem in activating 0sd_c03 IC

    Hi all
    Here i am facing problem in activating BC IC 0sd_c03 .I have installed the IC with data flow  before  and when i migrate from 3.5 to 7 . here for the datasource 2lis_13_vditm , the transfer rules are migrated successfully but here i am getting problem when i create transformation on update rule . The problem is with the routine net weight kg,gross  weight kg and with the volume . here that infoobject has some routine in update rule and when i created the transformation , in that transformation there is no routine for that infoobject and also there is no mapping present for that infoobject . plz help me in solving this.
    Thanx

    Hi Ravi,
    If you any start routine written on your Update rules or transformations, then when you open that one you will have Display start routine.
    If you don't have any routines, then you will have create start routine which implies it doesn't contain any start routine.If you want you can create start routine by click on create start routine.
    Creating routines is purely based on business requirement.
    when we go for creating routines:
    1)If you want to populate some new filed in target based on 2 or 3 fields from source.
    2)If you want to delete some records based on certain condition
    there are few more scenarios
    please go through the below article
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/609eea32-455e-2c10-c08a-c23adf8c934e?quicklink=index&overridelayout=true
    If it is enough of one to one mapping for you business, then no need to use any routines just do one to one mapping in transformation
    Regards,
    Venkatesh
    Edited by: Venky1903 on Aug 19, 2011 12:30 AM

  • Problem with activation

    The error code is:E_ADEPT_REQUEST_EXPIRED
    WHO CAN HELP ME?

    Are you really having this problem with activation, or are you having it after activation when you try to read a book?
    If it is for a specific book ...
    If it is a loan check it hasn't really expired.
    Then verify that ADE and any devices are set to correct time and timezone.
    If it is for registration ...
    Sometimes ADE gets its registration/activation confused and in a semi-authorized state.
    Uninstalling and reinstalling does not help.
    Unfortunately, it often then gives misleading error messages about what is wrong.
    A common incorrect message informs you that the ID is already in use on another computer and cannot be reused.
    This can often be resolved by completely removing any authorization using ctrl-shift-D to the Library screen on ADE (cmd-shift-D if on Mac).
    Restart ADE, and then reauthorize with your (old) Adobe ID.
    In extreme cases on the mac, the following extra step has helped some people.  Navigate to /Users//Library/Application Support/Adobe/Digital Editions and drag the activation.dat file to the trash. If you are using 10.7, see Access hidden user library files | Mac OS 10.7 Lion. http://forums.adobe.com/thread/1265248?tstart=0
    ~

  • PROBLEM IN ACTIVATION OF A CLASS WHICH IS COPIED FROM STD CLASS

    Hi All,
             I have a problem in activating a class which is copied from the standard class.
    std class: CL_GUI_FRONTEND_SERVICES
    The class has got some protected methods and attributes.
    here i'm getting following error whenever i try to activate the class:
    1) access to protected method "CALL METHOD" is not allowed.
    2) access to protected attribute "H_CONTROL"  is not allowed.
    Thanks & Regards,
    Deepak

    hi,
    i am not sure abt d way u hv coded, but there are some basic stuffs wic need to be taken care of:
    1: access 2 protected methods are allowed by self class or its inherited classes. it ca't e accessed from outside class. also protected methods can b accessed from FRIEND class. please use inherited class objects to access protected attribute or methods...
    2: also i have found that class implementation or declaration or method declaration can't be done inside PERFORM routines... try to avoid using forms.....
    more info can be given if i get the exact code..
    regards,
    ags.

  • I have problems with activation, after delete mi Iphone from Icloud.

    I have problems with activation, after delete mi Iphone from Icloud.

    Hello Sikiz 21,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/TS3424
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Best of luck,
    Mario

  • Problems with retrieving data from tables with 240 and more records

    Hi,
    I've been connecting to Oracle 11g Server (not sure exact version) using Oracle 10.1.0 Client and O10 Oracle 10g driver. Everything was ok.
    I installed Oracle 11.2.0 Client and I started to have problems with retrieving data from tables.
    First I used the same connection string, driver and so on (O10 Oracle 10g) then I tried ORA Oracle but with no luck. The result is like this:
    I'm able to connect to database. I'm able to retrieve data but from small tables (e.g. with 110 records it works perfectly using both O10 and ORA drivers). When I try to retrieve data from tables with like 240 and more records retrieval simply hangs (nothing happens at all - no error, no timeout). Application seems to hang forever.
    I'm using Powerbuilder to connect to Database (either PB10.5 using O10 driver or PB12 using ORA driver). I used DBTrace, so I see that query hangs on the first FETCH.
    So for the retrievals that hang I have something like:
    (3260008): BIND SELECT OUTPUT BUFFER (DataWindow):(DBI_SELBIND) (0.186 MS / 18978.709 MS)
    (3260008): ,len=160,type=DECIMAL,pbt=4,dbt=0,ct=0,prec=0,scale=0
    (3260008): ,len=160,type=DECIMAL,pbt=4,dbt=0,ct=0,prec=0,scale=1
    (3260008): ,len=160,type=DECIMAL,pbt=4,dbt=0,ct=0,prec=0,scale=0
    (3260008): EXECUTE:(DBI_DW_EXECUTE) (192.982 MS / 19171.691 MS)
    (3260008): FETCH NEXT:(DBI_FETCHNEXT)
    and this is the last line,
    while for retrievals that end, I have FETCH producing time, data in buffer and moving to the next Fetch until all data is retrieved
    On the side note, I have no problems with retrieving data either by SQL Developer or DbVisualizer.
    Problems started when I installed 11.2.0 Client. Even if I want to use 10.0.1 Client, the same problem occurs. So I guess something from 11.2.0 overrides 10.0.1 settings.
    I will appreciate any comments/hints/help.
    Thank you very much.

    pgoel wrote:
    I've been connecting to Oracle 11g Server (not sure exact version) using Oracle 10.1.0 Client and O10 Oracle 10g driver. Everything was ok.Earlier (before installing new stuff) did you ever try retrieving data from big tables (like 240 and more records), if yes, was it working?Yes, with Oracle 10g client (before installing 11g) I was able to retrieve any data, either it was 10k+ records or 100 records. Installing 11g client changed something that even using old 10g client (which I still have installed) fails to work. The same problem occur no matter I'm using 10g or 11g client now. Powerbuilder hangs on retrieving tables with more than like 240 records.
    Thanks.

  • Hello Apple. Iphone6 ios8.0.2. I have problem with activation imsg and fctm. My number doesnt display on both apps. I can only use them with my apple ID. How can i fix this problem. Country:Azerbaijan. Number:  *********

    Hello Apple. Iphone6 ios8.0.2. I have problem with activation imsg and fctm. My number doesnt display on both apps. I can only use them with my apple ID. How can i fix this problem. Country:Azerbaijan. Number:  *******
    <Edited by Host>

    Hello Khayalh,
    You should be able to link your phone number by following the steps in the article below. From your iPhone, sign out of FaceTime and iMessage and then sign back in and it should link. Check in the Start Conversation With and I Can Be Reached at section in iMessage and FaceTime respectively. 
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Regards,
    -Norm G. 

Maybe you are looking for