After creating a customizing database table 'create entries disable'

After creating the database table i want to add fields through goto-table contents-create entries but "create entries" is in disable mode how can i resolve this?

Dear Dileep,
You need to go to "Delivey and Maintainence" tab there you will "Data Browser/Table Maintainence",
Here you need to select "Display/Maintainence Allowed" in the drop down list.
Thie will help to find the "create entrie enable".
Thanks,
Ananth.

Similar Messages

  • How to edit one particular entry in custom database table

    Hi all,
    I want edit one particular entry in custom database table with or without a program.
    1.   I tried using SE16N and &SAP_EDIT but im unable to get entries to edit.
    2.   I tried using '/h' and 'code = edit' but it is prompting me to delete an entry but not edit.
    3.   I tried using modify statement. But in vain.
    I tried this statements through programatically,
                            MODIFY itab FROM wa_itab TRANSPORTING  zabc.
                            MODIFY zsample_02 FROM itab.
    please suggest with out writing a program, if possible.

    Hi ,
    Try with FM SE16N_INTERFACE.
    1 .Go to SE37
    2. Enter FM SE16N_INTERFACE and execute
    3. Give table name in Itab,
    I_EDIT                  =   
    X
    I_SAPEDIT             =    
    X
    4. Press F8
    5. Edit table entries and save.
    Thanks

  • INSERT in the custom database table to create a new entry.

    Hello Experts,
    I'm trying to INSERT the entry in my custom databse table that i have created. But I'm not sure what i'm missing as i'm getting the sy-subrc = 4 after the INSERT statement and my records are not added to the database table.
    I'm using the INSERT as below:-
          APPEND gw_relax TO gt_relax.
          INSERT  INTO zmm_bg_relax VALUES gw_relax.
    Please let me know your helpful responses on this,
    Thanks,
    Naveen

    Check [INSERT dbtab|http://help.sap.com/abapdocu_70/en/ABAPINSERT_SOURCE.htm] [FROM TABLE itab [ACCEPTING DUPLICATE KEYS]|http://help.sap.com/abapdocu_70/en/ABAPINSERT_SOURCE.htm#&ABAP_ALTERNATIVE_2@2@],
    If the addition ACCEPTING DUPLICATE KEYS  is specified, all rows are inserted for which this is possible. The remaining rows are rejected and sy-subrc is set to 4. The system field sy-dbcnt  is set to the number of lines that are inserted.
    So if you get sy-subrc = 4, some of the records of the internal table are already contained in the database table.
    You cannot put 2 or more records in a database table with the same primary key, primary keys are unique keys with the addition of a not-null constraint. If you need multiple records with a same key, you must add another key to the primary key. (use a timestamp or a counter)
    Regards,
    Raymond

  • Need help for getBindingContext() after Creating Entry.

    Hi Developers,
    I am Creating a entry using Model.create() method in my 1st View.
    oModel.create('/ProspectSet', oEntry, null, function(oData,oResponse){
       oEvent.getSource().getParent().close();
       sap.m.MessageBox.alert("Prospect No " + oData.Partner + " created successfully");
        },function(oError){
        oEvent.getSource().getParent().close();
        sap.m.MessageBox.alert("Failed to create Prospect");});
    Now after successfully creating the entry here I need to navigate to my 2nd view and display the Entity which was just created. I don't know how to get the binding context of the newly created Entry.
    I am using this.nav.to("Detail", context); for Navigation.

    Hi Amit,
    You can use the function drill down ,if you want to drilldown based on product then based on location ,then the logic should be like this
    Drill Down on Product
    DRILL_DOWN( '9AMATNR' )
    Drill Down on Location
    DRILL_DOWN( '9ALOCNO' )
    Scheduling the job in background
    1)Create activity using the transaction /n/sapapo/mc8t,there you define the macro which you going to execute in background and planning book and dataview which having the macro.
    2)Create background job using /n/sapapo/mc8d,there you can define the activity which you created recently and select the aggregation on which you are going to execute the job.
    3) Go to SM36 ,there you the program as /SAPAPO/TS_BATCH_RUN then give the background job name as variant.
    Execute the job,it can be immidiate or periodic.
    Please let me know if you need more information.
    Regards,
    Prabhu

  • How  to  insert data into custom database table from an hcsf

    i want to insert data into database table that i have created from an hcsf.
    example :
    say i have created a table in oracle database and i hav created a hcsf file.now i want that when somebody fills in that hcsf and click submit ,i want that entries should be updated in my database table.
    plzzz reply ASAP(it's urgent)

    you'll need a bit of Java code... extract the data during a check-in filter, and insert it into the database.
    check out the "DataAccess" component in the HowToComponents for query-running examples, and the "DynamicPrefix" component for a check-in filter example.
    I have older copies here:
    http://bezzotech.com/library

  • Date format mismatch between OIM 11gR2 GTC and backend custom database table (Oracle 11g R2)

    Hi,
    We have an OIM 11g R2 version running that has a GTC installed and configured. The GTC is used to provision to a 11g R2 database table via the DBAT 9.1.0.5.0 connector. Now the requirement is that the timestamp be recorded in the backend DB when a new record is provisioned to it using the GTC.
    During the setup of the GTC, the target system date format is asked for should be one from among the values allowed by the following predefined formats:
    Customizing Formats (The Java™ Tutorials > Internationalization > Formatting)
    Now our problem is that the target DB to which the provisioning is supposed to happen, isn't under our control and hence we cannot change its schema, and the date format in that table is of the type "01-JAN-10 12.00.00.000000000 AM", which translates to "dd-MMM-yy hh.mm.ss.fffffffff (AM/PM)".
    On the other hand, as you can see from the above link, none of the values that OIM allows to be passed through the GTC allow for that format to be used.
    Does anyone know of any way in which we can intercept the GTC provisioning request and convert the date on the fly, after OIM has passed on the control, but before the values are written into the DB table, or does anyone know of any workarounds to this issue?
    I'd really appreciate it if someone could provide a solution to this.
    Thanks.

    [http://docs.oracle.com/cd/E27559_01/dev.1112/e27150/refsched.htm#CIHBFCJG]
    See 26.6 for the plugin.zip directory structure, and as I said, I used the same method on a previous task in the same OIM instance.
    Edited by: 939908 on Jan 31, 2013 8:04 AM

  • How to sort a custom database table ?

    Hi,
    how do I sort/order a custom (Z) database table (not internal table) ? Couldn't find a suiting option with F1 for the SORT statement.
    Thanks,
    Avraham

    >
    Avraham Kahana wrote:
    > I have to do this within my program.
    Use ORDER BY in your select.  Or just select your data into an itab and use SORT.  I don't see the problem.
    If you mean that you want to sort your table in the database itself, then you can't.  Database table rows are not held in any specific order; the order is applied when you select the data out of the table.

  • How to synchronize between OID and the Custom Database  Tables ?

    Hi All,
    Our ADF Application is using Oracle SIngle-Sign On (OAS 10.1.4). Meanwhile we also maintain
    users login within Database table to store application menu accessibility data.
    i.e:
    Firstly user Login using Oracle SSO, after logged in, application will query the above mentioned
    database tables to determine which menu he/she has access.
    We have develope a security module to input users login into the database, so I need to synchronize
    the data into OID, so that that particular user can use Oracle SSO.
    How is the mechanism to do that ?
    Thank you very much,
    xtanto

    Hi,
    OID providesa Java and PLSQL API. I agree with Chris that from what you describe, the PLSQL API seems to be the best approach to take as it allows you to use database triggers for the synchronization
    Frank

  • Tracking changes in a customized database table

    Hi All,
    I have made a customized Z table having the following technical attributes:
    Data class         APPL1   Transaction data, transparent tables
    Size category      0       Data records expected: 0 to 40,000
    \/  Log data changes(ticked).
    I have made one table maintenance generator for the table and inserted some values in it. I am not able to view the changes made in the table in table DBTABLOG or using transaction SCU3. 
    What are the other settings needed to view changes in table(table history). <<removed by moderator>>
    Regards,
    Debopriyo Mallick

    Hey,
    Check this link. U can find step by step.
    http://help.sap.com/saphelp_nw04/helpdata/en/25/f4dd58807b11d395fc00a0c930dcc1/frameset.htm
    Regards,
    Lakshman.Annamaneni

  • Error in updating custom database table using UPDATE SET Command

    Hi,
    I developed an automated collection system program in one of our clients simulating FBE1 (Payment Advice Creation) and F-28 (Posting of Incoming Payments) transaction codes. Upon posting, we encountered an error in PRD server wherein, for some of the posted items, the STATUS field in our custom table was not successfully updated. We tried to reverse the clearing document and debug the program. Upon posting, we were able to successfully update the status. We could not simulate the error in QAS since all the postings in QAS were successful and all status' relating to these postings were updated as well. We tried posting multiple times and the program seems to be working fine. In PRD, this behavior is just random and there is no specific pattern as to how the error occured. Provided below is the code I used for updating custom table ZFIACSF28. The STATUS field should be equal to '4' once the posting is successful. We are not sure if this is a database related issue. 7 users are authorized to do the postings in PRD and they are using the same user account.
    CODE:
      CALL TRANSACTION 'F-28' USING gt_bdcdata
                              MODE   'E'
                              UPDATE 'S'
                              MESSAGES INTO gt_messtab.
      READ TABLE gt_messtab INTO wa_messtab WITH KEY msgtyp = 'S'
                                                     msgnr  = '312'.
      IF sy-subrc EQ 0.
    update status for items cleared bearing the same OR Number*
        UPDATE zfiacsf28 SET status       = '4'
                             zsapdocument = wa_messtab-msgv1(10)
                             zruntime     = sy-uzeit
                             zrundate     = sy-datum
                       WHERE zor          = gv_zor
                       AND   customer     = gv_customer.
        COMMIT WORK.
    ENDIF.

    Hi,
    it's not possible that status isn't updated in zfiacsf28 while date and time are updated there, because it's hard coded.
    There must be other programs that also change your table zfiacsf28 and maybe clear those fields. Maybe the key fields zor and customer cannot provide  duplicate access, what is the meaning of field zor ?
    Please check the where used list of table zfiacsf28 to find other update programs.
    Regards,
    Klaus

  • Primary key deletion in custom database table

    hi,
        I've created a ztable.In which i've have created primary key and foreign key.
    I've activated the table.Now my requirement is that i want to delete the primary key as i've shoosen wrong field as primary key.
    For that first of all i deleted the foreign key relationship than i have unchecked the primary key but it is giving me an error.
    even though if i deleted that field having primary key it is also giving me error as "Primary key change not permitted for value table.
    Please help me out if possible.
    waiting for ur response.
    Thanks,
    Dheeraj

    Make sure u dont have any data in the table..u have to delete all the data..Also make sure you are not using that table any where else.do a where used list in the table.

  • Logging of customized database table

    I have created a ztable. Technical settings I have put,
    Data class         APPL1   Transaction data, transparent tables
    Size category      0       Data records expected: 0 to 40,000
    \/    Log data changes(ticked).
    I have created Tmg of that table. I have made changes in the table.
    I am not able to see the log in dbtablog or in transaction SCU3. What other settings are required to see the logs.? Kindly let me know. If it serves my purpose, points are guaranteed.
    Thanks in advance,
    Debopriyo mallick

    Client label setting.
    RZ11 profile parameter: /recclient

  • Noftification or warning after change of one database table field

    HI
    i want to send a warning or notification , when one field in a table changed with a database after update trigger and show the message to user in application layer
    in more detaile
    when user insert or update table1 then a trigger changes table2. and i want after this change,if the value of one attribute of table2 was equal  to a query result then it send a message to user in application layer
    what can i send this message
    jdeveloper 11.1.2.2.0
    database 11

    HI
    i want to send a warning or notification , when one field in a table changed with a database after update trigger and show the message to user in application layer
    in more detaile
    when user insert or update table1 then a trigger changes table2. and i want after this change,if the value of one attribute of table2 was equal  to a query result then it send a message to user in application layer
    what can i send this message
    jdeveloper 11.1.2.2.0
    database 11

  • Change of structure of database table

    A custom database table has been created and is already in use by 10 programs. Now a new requirement has come to add a field i.e. a check box to the database table to be used by one of the 10 programs. Can we change the structure of the database table after activating it and when the table is in use? Please provide me inputs on this.
    Thanks and regards
    Radhika

    Yes. U can change it. But I suggest u to do it through the process of 'Append Structure'.
    If u have any probelm after changing follow this process.
    Goto Utilities > Database Utilities> Activate and Adjust Database
    Awrd Points if useful
    Bhupal

  • How to send database table

    how to send database table one sever to another server in the form of  tms request.
    i want send a particular database table one server to another as a request.
    give solution plz
    Message was edited by:
            mahesh

    Hi Mahesh,
    Technically it is possible to transport entries of every table in SAP even if changes dont prompt for a transport request. Do the following. Create a customising/workbench request. It depends of the table whose entires you wish to transport. .If you wish you can just  use workbench transport for all tables.
    After you have created the transport click on the request and in menu bar choose Request/Task and then Display object list. Goto change mode.
    Click on Inset line icon in application tool bar. A new line for input will come up.
    In PGMID give the value R3TR
    In Obj give value TABU
    In Object Name give the name of the table.
    After that double click on table name entry. You will come to the screen: Transport organizer:Change Key List.
    Here again choose insert line. A new line with table  name and key as the column headers will come up.
    Double click on the empty input field for the key. In the next screen you will get options to fill in the key.
    You can insert key as per your choice. However one thing needs to be remembered. If you put * in any field SAP wont allow you fill in value in later fields as only a final asterisk can be used as a generic entry.
    Please try out this option. I use this option to transport RFC destinations as well profile parameters across systems.
    Please award points if the answer was of help to you.
    Regards.
    Ruchit.

Maybe you are looking for