Maintence View

Hi,
when am display the z table via se11 it shows a status message "A maintenance view exists for table ZPAYROLL" now am not able to find its maintenance view in se11.
could you please suggest me how can i see its maintenance view.
Thanks.

Hi
goto that table and
UTILITIES -> TABLE MAINTANCE GENARATOR
it will show if there are any defined other wise it will ask for new check this once
in display mode

Similar Messages

  • Can we write the select statement on maintence view for data retreval

    Can we use the select statement on maintence view
    Regrads
    Diva

    No. U cannot write a select on maintenance view.

  • How to use table maintenance view in module pool screen

    hi ,
    want to use table maintenance view in a module pool screen so that i can edit, insert, delete and update date in to the ztable.please help.

    You can simply call it via SM30.   Or you can call the table maintence view from any program(report or module pool) using a function module.
      call function 'VIEW_MAINTENANCE_CALL'
           exporting
                action                       = 'U'
                view_name                    = 'Z_Table_Name'
           exceptions
                client_reference             = 1
                foreign_lock                 = 2
                invalid_action               = 3
                no_clientindependent_auth    = 4
                no_database_function         = 5
                no_editor_function           = 6
                no_show_auth                 = 7
                no_tvdir_entry               = 8
                no_upd_auth                  = 9
                only_show_allowed            = 10
                system_failure               = 11
                unknown_field_in_dba_sellist = 12
                view_not_found               = 13
                others                       = 14.
    Regards,
    RIch Heilman

  • Can we create the T-Code for a maintenace view

    Hi All,
    I have a table for which i create a maintence view . Now we want to create the Transaction code for that.Can it possible..?  if yes Plz help me .its very urgent .
    Thanks!
    Vipin Kumar

    Use TC SE93.
    Select option Create TC with Parameter.
    Enter TCode.
    In it maintain TC as SM30
    Click on Skip first screen
    Maintain Default Values as
    VIEWNAME = <View name>
    UPDATE = 'X'

  • Table maintenace genarator

    Hi all,
            I had a strange issue i'm trying to create a maintenace view for table  SWWCNTPADD,as its delivery class is L,i had changed it to type C and tried to genarate the maintence view,it is created without errors and when i tried to maintain it in sm30 it is showing error as "ZSWWCNTPADD" must be a flat structure. You cannot use internal tables strings,references, or structures as components.even the same error is comming when i declare that in tables statement in reports,plz help me insolving that or can i know the reason why it is hapening like this.points awarded imm for all helpful answers.thank u

    HI nitha,
    1. there might be some minor operation problems.
    2. just make sure of the following :
       a) after changing the delivery class to 'C',
          ACTIVATE the table again.
       b) DELETE & RE-GENERATE
          the full table maintenance once again.
       c) in new session, check thru sm30.
    regards,
    amit m.

  • Maintain Table - no changes allowed

    Iu2019m working on a table maintenance view and I canu2019t figure out what is happening. Here is the issue.
    My program zhi1365 creates rows of data in tables.
    Then the user should be able to go into these tables through the maintainence view to edit the data.
    The user makes a change and hits save. The problem is, the table says that their change has been saved but it does not save the change.
    The maintence view will allow the user to create new rows, and change those...or delete the current rows...and that works fine...but not to change a row created by the program.
    Any thoughts or ideas?

    Hello Sarah,
    How is your table modification defined under Table Maintenance Generator ? And how is the Compare Flag set (last line of screen 120; it's not a flag but a display text!)? There are 4 alternatives:
    - No Information
    - Not Adjustable
    - Adjustable in Dialog
    - Automatically Adjustable
    That's under NetWeaver 7.0 SP !
    Try them out and hopefully it works,
    Heinz

  • Time Statement Form TF02 - Saturday Sunday

    Hi community,
    Could you explain how we can display
    Saturday
    Sunday
    in the TF02 form in case there is no time event please ?
    I already set up the feature LDAYW (value 7)
    Very useful when an employee is working on Sat or Sun according to his/her work schedule.
    Many thanks in advance.
    Kind regards

    Hi, you must delete following entries in V_T512G maintence view:
    TE XT S 6 $SKIP_NO_PAIRS
    TE XT S 7 $SKIP_NO_PAIRS
    Being 6 and 7 the weekdays.
    Regards,
    Diego.

  • SCREEN TRIGGERING from the table maintainance

    Hi,
    I hava a transaction OMSF to maintain material group data (maintains view V023).
    sO what I want is when I maintain a new entry (that is new material group) through this transaction ,when I hit save button it should direct me to a ZSCREEN(this screen will be created by me where I enter some data related to this material group which will be saved in a ZTABLE).
    Can anyone help me how to solve this problem?
    Thanks,
    Vengal.

    Hi vengal,
    1. there is a maintence view.
    2. in that u will have to
        use the concept of
      EVENTS
    (that event will fire when u save record)
    3. In that a FORM/PERFORM will be called
      (that name u have to specify)
    4. then in the function grup,
      u have to write the code for calling
       your screeen.
    5. But for doing all these,
       u may have to change the sap standard
       (so acess key will be required)
    regards,
    amit m.

  • 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

  • View read allows read only access

    Hi friends,
        I have created maintainance view, I am getting this warning " View read allows read only access , Maintainance not possible". So to avoid this, what should i do now.
    Thank you

    Hi,
    In Delivery and maintence check if the field Data Browser/Table View Maint. has the value delivery and maint allowed
    or delivery and maint allowed with restrictions.
    Regards,
    Rajesh Kumar

  • How to Create/Modify/Delete a query view from the web template in BI 7.0

    All:
    In BW 3.5, the <b>Query Selection View</b>  web item was introduced for users to create a query view to save the navigational state of a query. This web item was also available to modify and delete an existing query view.
    The Query Selection View web item <u>does not</u> exist in BI 7.0. I see the drop down web item can be used to display the query views associated to a query.
    Can anyone share how to create,modify,save or delete a <b>query view</b> on the web in BI 7.0
    Thanks,
    Kumar

    Sanjay, we experienced the same issue. Below are a few pieces of information that may be of help: 1-The Save As button on the 0ANALYZER template saves the query to the portal. From Bex Web or Bex Analyzer, you have no access to these saved views. We created a ZANALYZER copy of the 0ANALYZER template and removed the Save As button. 2- If you right mouse click on any item in the query results grid of Bex Web, you get a small menu. Clicking on the menu item Save View will save the view to BI. You do not have the ability to delete the saved views from Bex Web. However, you can delete them from Bex Analyzer. This was not an option for us since most of our users are using Bex Web. 3- On the same menu, clicking on Bookmark, saves the navigation and also opens the Internet Explorer Favorites maintence window. The navigation is saved as an entry into the users Internet Explorer favorites where they can organize and delete their entries. However, deleting the favorite does not delete the entry for the bookmark in BI. The bookmarks are stored in table RSWR_DATA. Program RSWR_BOOKMARK_REORG can be used to manage the saved bookmarks. We are loading RSWR_DATA into a chracteristic so that we can query the information in order to help us manage it. I hope this helps you and others that appear to be struggling with the issue of saved views in Bex Web.

  • Materialized view questions..

    Hi all..
    Please help me with the following question on materialized view.
    I need to create a MV on my LOCAL_DB on a table which is on REMOTE_DB.
    Do i need to created the materialized view log in the ""REMOTE_DB".
    1)
    Is there any cons using the materialized views? I mean , is there any maintence needed
    when the database got shut down or
    2)
    I am creating the materliazied view as ""select * from table_name"".
    If the base table changes, does it effect my materialized view.
    I have the following sqls to create mv, please let me know whether that are correct.
    -- LOCAL_DATABASE
    CREATE MATERIALIZED VIEW plates_mv
    REFRESH Fast
    START WITH SYSDATE
    NEXT SYSDATE + 1
    AS SELECT * FROM plates@home_dmv.world;
    -- REMOTE_DATABASE or LOCAL_DATABASE??
    CREATE MATERIALIZED VIEW LOG ON plates;
    Thank in advance.

    +Do i need to created the materialized view log in the ""REMOTE_DB".{code}+
    Yes.If you want your materialized view is fast refreshable.
    +{code}
    1)
    Is there any cons using the materialized views? I mean , is there any maintence needed
    when the database got shut down{code}+
    It all depends.If remote data base got shut down Materialized view won't refresh. refresh will fail and oracle try again to refresh till it reaches max failure count i.e 16.
    If current DB got shut down ....It is like a regular table and it will refresh as per next refresh scheduled time.May be this time it would do complete refresh.
    +{code}2)
    I am creating the materliazied view as ""select * from table_name"".
    If the base table changes, does it effect my materialized view.{code}+
    Never create a Mview using "select *". If Remote DBA added/Dropped columns for remote table then your Mview refresh will end up with errors.So Always specify the column names in the definition.
    create mview log on Remote table. first time it will do the complete refresh and from next refresh it will use the Mview log to fast refresh. Use refresh Method as "Force" let oracle decide which refresh it wants to do.
    Hope this info helpful!
    First read the documentation or related information and understand about the Materialized views then implement or Test it in your Dev or your localDB environment.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Can not refresh view data in STRUST

    I am using the JSP (STRUTS) for developing my App.
    I get a list of contact. In bellow it, I make a link for each contacts.
    When i view details of one contact. On click link below.
    My pages:
    listcontact.jsp
    contactdetails.jsp
    When i request a details of contact from list contact -> View successfull.
    But when i refresh the contactdetails.jsp page. I got a message error:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.7 logs.
    I have to use:
    response.setHeader("Cache-Control","no-store");
    response.setHeader("Pragma","no-cache");
    But can't refresh any way this page.
    Plase show me the way to solve it.
    Thanks
    Vu Nguyen

    hi,
    Here are codes
    listdata = new CompanyListData();
    companyList = (ArrayList) session.getAttribute("datalist_company");
    if (companyList == null)
    companyList = (ArrayList) listdata.getCompanyList(datasource);
    session.setAttribute("total", companyList.size()+ " companies");
    session.setAttribute("datalist_company", companyList);
    return (mapping.findForward("success"));
    And for details:
    if ((addressItem==null && companyName!=null)||(addressItem==null&& companyId!="0"))
    addressData = new AddressDetailData();
    addressItem = addressData.getAddressItem(datasource, companyId);
    session.setAttribute("addressDetail", addressItem);
    I got companyID by:
    String companyId = request.getParameter("companyId");
    return (mapping.findForward("success"));
    Please gest the problems that.
    Thanks,

  • Year-at-a-glance View in iCal

    Once again, I am filling out next year's year-at-a-glance wall calendar and wish I had this view in iCal. With today's screens, a year-at-a-glance view shouldn't be difficult to implement and would be very useful. My favorite layout has 12 rows (one for each month, January at the top) and blocks for each day running from left to right with weekends shaded. When is Apple going to improve iCal? or at least enable others to make such improvements?
    Message was edited by: Jim Putnam

    I can't believe this, I finally get round to organizing myself and ical doesn't do a year view.
    I have hunted online for some way to make this happen and have ended up making a pdf of a printout to be able to see it.
    This can only be a temp solution, as my diary changes a lot and printing/pdf is not very elegant or efficient or even that easy to read quickly.
    In my online search I have found posts requesting this as far back as 2003, and 6 years is to long to wait for something that surely must be such a simple solution.
    I'm also stunned by the lack of plugin/widget/app solutions from 3rd party developers, I would definitely pay a a buck or 2 for something to let me do this well within ical,
    And If I want it you can be sure there are at least another 100,000 who would also pay, maybe we could get the guy who wrote the ifart app for iphone to write it for us, about 2000 people a day were buying that at 99 cents a pop in the run up to christmas.
    Apple should embarrassed by this.
    If anyone knows the solution please post it.
    Brin

  • Hi, i am trying to open and view a report that comes from another server with different odbc connection

    hi, i am trying to open and view a report that comes from another server with different odbc connection
    i created a crystal report for a mysql database on my machine and everything works great
    but we have other reports that come from other machines with different odbc connection
    and this its not working when opens the report asks for credentials
    and i cannot use the remote ip for these reports that come from other machine
    question
    if i cannot connect to remote ip to open the report
    for each report i have to create a database the report database on my machine and then open the report ?
    or there is some other way to open the report ?
    i am using visual studio 2013 and mysql and
       <add key="MYSQLODBCDRIVER" value="{MySQL ODBC 5.3 UNICODE Driver}"/>
    thanks

    short
    i have a report that it was created on another server with a specific dsn
    now i am trying to open the report on my machine
    the database from the other server does not exist on my machine
    the server machine where the report was created the ip its not accessible
    question ?
    can i open the report on my machine or its impossible ?
    thanks

Maybe you are looking for

  • How to "catch" ERROR_MESSAGE

    Hello, i´ve written a FM which also calls SAP FM´s. Somewhere there is this statement:           else.             message w207(m7) with ymcha-charg ymcha-matnr.           endif. This line throws an error... Because the FM is used in a job, this job

  • My iMac won't start up (no entry sign/folder with question mark)

    Hello, I recently updated the mac software through the App Store and it is now unable to start up. When it starts up it has a white screen and a folder icon with a question mark in it. However, sometimes it has a 'no entry' sign instead. I've found a

  • PLEASE HELP IPOD NOT WORKING AT ALL!!!!!!!!

      so my ipod isnt turning on and when we charge it nothing happens either , we pluged it into the computer and it didnt reconize ( itunes is the it) the device, I  have a 4th generation and my mom thinks that the battery is dead im wondering do you g

  • Role of OWB in Oracle BI and Other areas

    Hi All, I am on OBI, now I'm curious about OWB and I like to know it's role in BI projects. I am using Informatica for my ETL jobs, is OWB doing the same like Informatica or we can use it for creating warehouse. Please advise me the starting guide fo

  • Filtering External Type 1 routes between OSPF areas

    Hello. I have a situation where I have two different telco's providing Metro Ethernet services to my site. Both providers will be sending me routes as OSPF external type 1's. I want to prevent the ISP's routers from peering with one another. One way