SSCR for database view

Dear Guru's,
M_MCH1M = Generated view for matchcode ID MCH1        -M
Actually I want to add some fields in this database view .
So I applied in key values for SSCR.
PgmID Type Object name:       
Basis release *       : 700 R3TR
PgmID *       : R3TR
Type *       :  VIEW
Object name * : M_MCH1M
But I am not getting the Access key for this object.
Please advice me is there any missing from my end?
Thanks and B/R
Bishnu
04/11

Dear Krishnendu,
Thanks for your advice.
From you first quote:
Help me to find the access key. is there any mistake in my SSCR request fields.
Second:
I need to change in this help view because I am using MIGO.
Please advice me.
Thanks and B/R
Bishnu
06/11

Similar Messages

  • Can we poll for database view

    Can we poll for database view using Datbase Adapter?
    Thanks
    Vivek.

    It is recommended NOT to use triggers, without going into too much detail this link provides a very good examples of why not to use triggers
    http://www.oracle.com/technology/oramag/oracle/08-sep/o58asktom.html
    The reason the adapter provides functionality for polling is for the very reason of no dependency in the source system.
    cheers
    James

  • Can do explict join for database view?

    Hi all,
    I would like to ask whether there is a way to specify the join condition to be outer join for database view. It is because I need to map 2 tables in the view and I want to be able to find the record in the view table if the record exists in Table A but not Table B.

    Hi Jaya,
    A Maintenance View helps you to maintain data that is distributed across different or multiple database tables. So, it becomes an easy way to update data and without any programing effort. You can create a Maintenance View across multiple tables with one Table as Primary Table and others as Secondary Tables. But the tables must be related with each other with a Foreign Key Relationship.
    Have a look at the following link which tell you about the procedure of creating the Maintenance Views :
    http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21ed2d446011d189700000e8322d00/frameset.htm
    Hope this helps.
    Thanks,
    Samantak.

  • How to change the Access for Database views

    Hello Experts,
    My requirement is to copy the records of a standard database view BDCPV (which is a combination of BDCP & BDCPS) to a custom view and then compare the records with a new table BDCP2.
    I copied the BDCPV view to a table and used the custom view in the program. While executing the program, I'm getting an error message like "The database view <View Name> is write protected, so it cannot be changed".
    I'm unable to change the Access under Maintenance Status Tab from Read only to "Read and Change". Could anyone help me how to resolve this issue".
    Also please share teh sample code if you have any for the above requirement. We are using it in a SP upgrade to one of the systems.
    Regards,
    Rajesh.

    Hi,
    Change the status in the given way.
    Choose Extras ® Maintenance status. A dialog box appears, in which you can select the maintenance status for the view. If more than one table is involved in the view, the maintenance status read only cannot be altered.
    Regards,
    Srinivas.

  • MetaData For Database View Columns How ??

    SELECT * FROM user_tabs_columns WHERE table_name = 'EMPLOYEES';
    The above query will return column information like data_type, lenght etc for the columns in the EMPLOYEE table, how can one retrieve such information on the columns / fields in a view instead of a table. I have views built from several tables, and I use the data returned from quering the views as records displayed to the user in an AJAX application, using the data-grid widget in the said AJAX library. If the user has rights to edit the records, I need to use specific ajax widgets (like a date widget) to edit a field if the datatype information provided by the database is DATE or DATETIME, if the field is nullable, I can permit the user to enter nothing, and I can restrict input length to the lenght of the column. But since the record is spread across several tables and pulled out from a view, I therfore need a way to get the column information on the said view.
    How can this be achieved.
    Thanks.
    Charles Odili.

    You should still be able to use the USER_TAB_COLUMNS view to obtain this information. I did a quick test below:
    SQL> create view test as select * from all_objects;
    View created.
    SQL> select table_name,column_name from user_tab_columns where table_name='TEST';
    TABLE_NAME                     COLUMN_NAME
    TEST                           OWNER
    TEST                           OBJECT_NAME
    TEST                           SUBOBJECT_NAME
    TEST                           OBJECT_ID
    TEST                           DATA_OBJECT_ID
    TEST                           OBJECT_TYPE
    TEST                           CREATED
    TEST                           LAST_DDL_TIME
    TEST                           TIMESTAMP
    TEST                           STATUS
    TEST                           TEMPORARY
    TEST                           GENERATED
    TEST                           SECONDARY
    13 rows selected.
    SQL> spool off;

  • Creation of Database View , Projection View

    Hi ABAP EXPERTS,
    Can anyone plz send me the step by step creation of DATABASE and PROJECT VIEWS. Just steps by step explanation will do , screen shots will be more than appreciated.
    Kind Regards,
    Sunil Ranal.

    Database View (SE11)
    Database views are implement an inner join, that is, only records of the primary table (selected via the join operation) for which the corresponding records of the secondary tables also exist are fetched. Inconsistencies between primary and secondary table could, therefore, lead to a reduced selection set. In database views, the join conditions can be formulated using equality relationships between any base fields. In the other types of view, they must be taken from existing foreign keys. That is, tables can only be collected in a maintenance or help view if they are linked to one another via foreign keys.
    Check this link for database view creation.
    http://help.sap.com/saphelp_40b/helpdata/en/cf/21ed06446011d189700000e8322d00/content.htm
    Projection View
    Projection views are used to suppress or mask certain fields in a table (projection), thus minimizing the number of interfaces. This means that only the data that is actually required is exchanged when the database is accessed. A projection view can draw upon only one table. Selection conditions cannot be specified for projection views.
    Check this link for Projection view creation.
    http://help.sap.com/saphelp_nw70/helpdata/en/cf/21ed20446011d189700000e8322d00/content.htm
    Regards,
    Maha

  • "Refresh after" insert fails for DB-View with INSTEAD OF Triggers

    Hi,
    I have a database view with INSTEAD OF triggers defined for INSERT, UPDATE, DELETE.
    For some EO attributes the refresh after insert and update is defined.
    Posting to database fails.
    According to Database 9.2 Manual and a previous thread (BC4J and Updatable Views the RETURNING clause is not allowed for database views with INSTEAD OF triggers.
    Is there a workaround so the refresh after is done, but without the RETURNING feature?
    I only need to refresh some values. The PK i can set in the create method of the EO so refresh via a additional SELECT would be possible.
    If not Feature Request:
    Add the possibility to do the "refresh after ..." with a 2nd SELECT using the PK instead of using the RETURNING clause.
    Of course then it is not possible to set the PK in the database trigger. PK has to be set in the create method of the EO.
    Thanks,
    Markus
    GEMS IT

    Hi Markus,
    Turning on the stack trace (-Djbo.debugout put=Console - in the Project/runner) did help and I should have done it sooner. Turns out that when I constructed my EO based upon a database view - I should have left out the PKs of the base tables.
    In my case, I am using an "Instead Of Trigger" to populate a multi-table arrangement (parent - child - grandChild - greatGrandChild relationship) where all base tables are using dbSequence/dbTriggers.
    Final analysis - I would like to see BC4J handle this situation. I do not want to use View-Links and I should * not * have to resort to stored procedures and BC4J/doDML. If I construct a DB View this is participating in an parent - child - grandChild - greatGrandChild relationship that are using dbSequence/dbTriggers, then BC4J should be smart enough to construct VO knowing that I want to do insert, update, delete, selects - based upon this structure.
    Thanks Markus,
    Bill G...

  • Diff  between maintence and database views

    pls  answer now,its urgent

    Hi
    Database Views
    Data about an application object is often distributed on several database tables. A database view provides an application-specific view on such distributed data.
    Database views are defined in the ABAP Dictionary. A database view is automatically created in the underlying database when it is activated.
    Application programs can access the data of a database view using the database interface. You can access the data in ABAP programs with both OPEN SQL and NATIVE SQL. However, the data is actually selected in the database. Since the join operation is executed in the database in this case, you can minimize the number of database accesses in this way. Database views implement an inner join (see Inner and Outer Join).
    If the database view only contains a single table, the maintenance status can be used to determine if data records can also be inserted with the view. If the database view contains more than one table, you can only read the data.
    Database views should be created if want to select logically connected data from different tables simultaneously. Selection with a database view is generally faster than access to individual tables. When selecting with views, you should also ensure that there are suitable indexes on the tables contained in the view.
    Maintenance View:
    Maintenance views offer easy ways to maintain complex application objects.
    Data distributed on several tables often forms a logical unit, for example an application object, for the user. You want to be able to display, modify and create the data of such an application object together. Normally the user is not interested in the technical implementation of the application object, that is in the distribution of the data on several tables.
    A maintenance view permits you to maintain the data of an application object together. The data is automatically distributed in the underlying database tables. The maintenance status determines which accesses to the data of the underlying tables are possible with the maintenance view.
    All the tables in a maintenance view must be linked with foreign keys, that is the join conditions for maintenance views are always derived from the foreign key  You cannot directly enter the join conditions as for database views.
    There are some restrictions for the attributes of the foreign keys with which the tables in a maintenance view can be linked
    A standardized table maintenance transaction is provided (SM30), permitting you to maintain the data from the base tables of a maintenance view together.
    Maintenance mechanisms, like screens and processing programs, must be created from the view definition with the transaction Generate Table View (SE54). This makes it possible to create easy-to-use maintenance interfaces in a simple manner.
    If it is helpful rewards points
    Reagards
    Pratap.M

  • Error in ADF-BC Database view instead of insert trigger

    I received the following errors when trying to insert. Any help or hint will be greatly appreciated.
    JBO-26041: Failed to post data to database during "Insert": SQL Statement "BEGIN INSERT INTO DEV_EQMT_HISTORY_BY_CODE(ID,D_E_ID,STATUS_KEY) VALUES (?,?,?) RETURNING ID, ROWID INTO ?, ?; END;".
    ORA-22816: unsupported feature with RETURNING clause ORA-06512: at line 1
    The followings are the tables and view I used:
    create table device_eqmt (
    id number(6),
    code varchar2(40)
    alter table device_eqmt
    add (constraint device_eqmt_pk primary key (id));
    create table device_eqmt_history (
    id number,
    d_e_id number(6),
    status_key number(6),
    alter table device_eqmt_history
    add (constraint device_eqmt_history_pk primary key (id));
    alter table device_eqmt_history
    add ( constraint device_eqmt_hist_de_id_fk
    foreign key (d_e_id)
    references device_eqmt(id)
    CREATE TRIGGER dev_eqmt_hist_bi
         BEFORE INSERT ON device_eqmt_history
    FOR EACH ROW
    BEGIN
    SELECT SHARED_SEQ.nextval
    INTO :new.ID
    FROM dual;
    END;
    create view dev_eqmt_history_by_code
    as select h.id,
    h.d_e_id,
    de.code,
    h.status_key
    from device_eqmt_history h, device_eqmt de
    where h.d_e_id = de.id
    CREATE OR REPLACE TRIGGER dev_eqmt_hist_by_code_insert
    INSTEAD OF INSERT ON dev_eqmt_history_by_code
    REFERENCING NEW AS n
    FOR EACH ROW
    DECLARE
    deid number;
    BEGIN
         SELECT de.id INTO deid FROM device_eqmt de WHERE de.code = :n.code;
         INSERT INTO device_eqmt_history (id, d_e_id, status_key)
         VALUES (:n.id, deid, :n.status_key);
    END;

    The Oracle database doesn't support the returning clause for database views using instead-of triggers. ADF BC inherently includes the returning clause, if in a relating EO you have the refresh-after-insert or refresh-after-update property set on for an attribute.
    Hope this helps.
    CM.

  • Maintainence view for Databse view

    Hi All,
    I am trying to create a maintaince view for databse view.As in SE11 the table maintaince generator is disabled for Databse view.
    As initially my problem is that I want to attached a T-code to database view.
    Can any one please suggest?
    Thanks in advance.
    Regards,
    Sandeep.

    HI,
    you can't create a maintenance view for database view.
    If you want you can create maintenance view directly for the tables you required, but there should be forign key relaionship.
    Regards,

  • What is size limit for a database view?

    hi all..
    can anybody pls tell me about the size category for a database view?

    hi
    check out this document
    http://help.sap.com/saphelp_nw04/helpdata/en/36/74c0358373003ee10000009b38f839/frameset.htm
    this would answer all ur queries
    regards
    Aakash Banga

  • Cannot see Database Views for a new Datasource

    I need to bind some text fields to a Oracle Database View (not a Database Table, I can see them fine).
    If I drill down into the Oracle Datasource, I don't see any of the required views.
    Although the schema I am using do not own these views, I have a public synonym set up for the view. The schema I am using do have access to SELECT on the view.
    Do anyone know if Creator will recognize these Oracle synonyms for the view? Or even better, does creator recognzie tables through Database Links?
    Ritchie

    >
    I'm using the jt400 driver w/ an AS400 DBI'm guessing that's the issue.
    try this:
    select your data source and right-click "view data".
    Enter the special undocumented query
    getmetadataand run.
    This show the schema/table/view/etc metatdata returned by the db/driver.
    Check the output section for getTables(null, null, "%", new String[] {"VIEW"}
    Any rows?
    If not, try another driver.
    If there are VIEW rows, then it's a Creator bug - those bastards! :)

  • Need Database Views for these categories.

    Dear Experts,
    I need Database Views to get data for the following categories.
    <b>
    Historical production
    Historical consumption
    Historical inventory
    Historical procurement.
    </b>
    Thanks in Advance.

    Hi
    Which SAP Version your are using ?
    For which Module you require them ?
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • Duplicate records in database view for ANLA and ANLC tables

    HI all,
    Can any one please suggest me how to remove duplicate records from ANLA and ANLC tables when creating a database view.
    thanks in advance,
    ben.

    Hi,
    Suppose we have two tables one with one field and another with two fields:
    TAB1 - Key field KEY1
    TAB2 - Key fields KEY1 & Key 2.
    No if we create a Database view of these two tables we can do by joining these two tables on Key field KEY1.
    Now if in View tab we have inculded TAB1- Key1.
    Now lets suppose following four entries are in table TAB1: (AAA), (BBB), (CCC).
    and following entries are in table TAB2: (AAA, 1), (AAA, 2),  (BBB, 3), (BBB, 5), (DDD, 3).
    The data base view will show following entries:
    AAA,
    AAA,
    BBB,
    BBB,
    Now these entris are duplicate in the output.
    This is because TAB2 has multilple entries for same key value of TAB1.
    Now if we want to remove multiple entries from ouput - we need to include an entry in selection conditions like TAB2-KEY2 = '1'.
    Regards,
    Pranav.

  • Database View do not refresh in ADF application

    Greetings,
    im facing a weird problem in my application (JDeveloper 11.1.2.4.0 - ADF). All this time i was working directly with tables (VO), but now i also started using database views.
    Everything works fine, when i add a new row in a table that my Database Views is associated with, it refresh properly.
    BUT if i delete rows manually from my database, the View do not refresh in my application, not by refreshing the page,
    redeploying application, even executing the view object query inside the view object. The only way for the DB View to be
    refresh inside the JDeveloper and on deployment time is by restart JDeveloper. I try adding an action on my OV to re-execute them when
    i do something specifically, hopefully the will reset the cache and retrieve the DB view again, but with no luck..
    Correction: now it doesnt even refresh on restart jdeveloper.
    Just for the clarification, im talking about Database Views, and not just Object Views. I create a Object View inside the application to retrieve the data
    from the Database View results.
    Can you help me on this please?

    Yes the queries in SQLDeveloper was showing me correct results.
    But i feel disappointed.. When i went to close SQLDeveloper to try something, it pop me a message to commit/rollback changes.
    After i commit them, my app show correct results too.

Maybe you are looking for

  • Mac not recognizing AP Express after AP Extreme password change...

    I have an Airport Extreme Base Station and a Airport Express as an extender. I went on Airport Utility and changed my wireless password. Since then my macbook pro is unable to recognize my Airport Express and the yellow light is flashing on the unit

  • Mouse Over effects

    Hi, I have a project containing several buttons, which serves as mouseover effects and url links. Underneath the buttons is a picture. I would like this picture to be replaced while the cursor is outside the flash. The only way I know how to do that

  • "Error while printing" in non-Admin user

    I have a non-admin account (for my wife) in my iMac G5, and from some days ago, all applications refuse to print. A msg telling "Error while printing" appears, and the application trying to print crash in some sort of way. I can print the test page f

  • Instrument I/O Assistant and Graphing

    Does anyone know how to use data taken from an Instrument I/O Assistant Input and put it into the y values of a graph??  I'm having issues with this because it returns values like "v 0" and "v 256" but I need just the number value to get a graph to w

  • ITunes U artwork won't display in iPhone

    _Short version:_ This is the issue...this is how my iTunes U list displays in my phone: http://www.imagebam.com/image/25438b106212904 But audiobooks display normal... http://www.imagebam.com/image/85e882106212891 Obviously, the iTunes U list should d