Some entires misses when i view in Maintenance view

Hi all,
         I created a maintenace view for the table HRUS_D2. There are totally 12 entires in the table. Then a table maintenace generator is done for the table. When i go to SM30 and display the view created. I could only see 10 entries. But when i go to sort and select by user. I am getting correct no of entries . what may be the problem.
Thanks in advance

hello experts..
how should i get the maintenance view screen in EXPANDED form.... by default...???

Similar Messages

  • Get db view of maintenance view

    Hi. I am quite new to ABAP and i have to create a program that will replace some SPRO customizing. The idea is that for Time sheet customizing, the user will update the tables without transport, directly in productive system.
    Now, because i do not want to do everything from scrach, i want to use some of the views provided by SAP standard to be used in my program for update / delete / insert, but the problem is that those views are maintenance views (Exemple : V_TCATX_LEVE2TYP ).
    Can i find the database view linked to this maintenance view ?
    Thank you,
    Cristian.

    There is not a database view linked to a maintenance view, the maintenance view are programmatically interpreted and not maintained at database level.
    So go to SE11 and create a database view (if possible) or program the join/select in your program.
    Proposal
    - Copy the view(s) as Z-view and generate new maintenance dialogs without transport
    - Try to call FM like VIEW_GET_DATA or VIEW_MAINTENANCE_NO_DIALOG to get and update the data disabling the transport
    - Fully develop a new program
    Regards

  • Some characters missing when printing a PDF on Canon MP560

    Hi,
    I was not sure where to post this. I have a 15" MB Pro and a Canon MP560. I just went to print a PDF invoice and the printed invoice was missing a few letters/characters in random places. They are not missing when viewing the invoice on my Mac but they are if I click print preview.
    Odd... Any ideas?
    Thanks

    Hi, i have the same problem, when i print PDF from "Preview" with Samsung 6200FX in Snow Leopard the "X" characters are missing from sheet. When i try a "save as PDF" in "print" the problem is still on, the characters missing again.
    The problem of missing letters appear and when try to compress PDF (Flie-SaveAs-Quartz Filter=Black&White).
    This problem is not in Leopard.
    P.S Please, If this possible, move this topic in Mac OS X v10.6 Snow Leopard section.
    Message was edited by: goychev

  • Some Contacts Missing when Texting

    If I start from the Contacts App, I can choose any contact and send that contact a text message.
    When starting from the Text Messages App, tapping Compose, and trying to add a contact, many of my contacts are missing.  
    Thoughts?
    Solved!
    Go to Solution.

    Hello bhbell, 
    Welcome to the forums. 
    When you are in the text message application how are you searching for your contact? Are you doing first name, last name, email, phone number etc.. ?
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Some content missing when access JSP through UNIX

    Hi, everyone:
              I have a problem when I access JSP file from UNIX system. It is that I
              transfer one variable which will be show up from one page to next.
              Only one word can be displayed, the following words are missing. When
              I access this JSP file from Windows, there aren't problems. How can I
              do to fix it? Thanks for your hehp.
              

    Creating a new library may have been a mistake, deleting content takes no time at all.
    I can't fully think through what you have done at this time, too late and too many beers, but generally speaking if the original files making up your library or part of it is not available because your HD is missing, a sync will skip this content and not delete it from the tv, providing you have not removed the links for the missing content from itunes.

  • Some loops missing when saved as archive

    I added a blue or audio loop to 2 songs in order for the save as archive to be available. It enabled the save as archive button. I saved them as archives but all the loops are not there. 2 other songs are fine. What can I do?

    It doesn't make much sense to add a loop just for the "Save as Archive ..." option to be available. If it's not available, you don't need it!
    So what do you mean by "all the loops are not there"? Where?

  • PDF file pages missing when viewed in Adobe Reader XI

    Hi All,
    I have been made aware of a recent issue when viewing scanned PDF files in Adobe Reader XI. Pages are missing when the PDF file is viewed in Adobe Reader v.11.0.x though all pages are visible when file is viewed in Adobe Reader 10.1.5?
    I can confirm I have checked Show large images option under Preferences -> Page -> Display, though this doesn't appear to have made a difference. I have been able to replicate this same issue on several other machines.
    All machines checked and tested are running Windows 7 (64-bit).
    Any help on this issue would be greatly appreciated.
    Thank you.

    Never heard of such an issue.  Can you share such a PDF with the forum?  See http://forums.adobe.com/thread/1408375

  • In Maintenance View - Pushbutton called 'POSITION' - f4 help issue

    Hi all,
      A Maintenanve view was created for a Table with some 15 columns.This table contains 2 key fields and for first  key field there is a Search help created in another table which contains this same fieid as key field.The second key field does not contain any search help.
    This Maintenance view is used in another program.When viewing this Maintenance view there is pushbutton called 'POSITION'. 
    When clicked on this POSITION  a POP-UP appears with this 2 key fields.F4 Help on these fields shows all fields from the table.
    The second key field contains 3 fixed value in domain.
    Need to restict the F4 VALUE HELP .How can I implement this.
    With thanks,
    Dina.

    HI Dina,
    Recently I have done this.Please find the below code. Here in SVAL structure there is a field NOVALUEHLP. Please enable or disable this field according to your requirement.
    DATA:   IT_FIELDS TYPE STANDARD TABLE OF SVAL WITH HEADER LINE,
           popup_title type string,
           returncode type c,
           lv_emp_cc type bukrs,
           lv_sold_to_cc type bukrs,
           lv_nw_so type AUFNR,
           lv_SMS_CON type NUM7,
           lv_EMP_NO type NUM8,
           lv_SMS_ORG type NUM7,
           lv_ACTIVITY type VORNR,
           lv_ZCOSTALLOC type ZCOSTALLOC.
           POPUP_TITLE = 'Select entry'.
           REFRESH: IT_FIELDS.
           CLEAR: IT_FIELDS, returncode.
           IT_FIELDS-TABNAME    = 'ZCRM_MUS_DERIV'.
           IT_FIELDS-FIELDNAME  = 'EMP_CC'.
           IT_FIELDS-FIELD_ATTR = ' '.
           IT_FIELDS-FIELD_OBL  = ' '.
           APPEND IT_FIELDS.
           CLEAR it_fields.
           IT_FIELDS-TABNAME    = 'ZCRM_MUS_DERIV'.
           IT_FIELDS-FIELDNAME  = 'SOLD_TO_CC'.
           IT_FIELDS-FIELDTEXT = 'Sold to CC'.
           IT_FIELDS-FIELD_OBL  = ' '.
           APPEND IT_FIELDS.
           CLEAR it_fields.
            IT_FIELDS-TABNAME    = 'ZCRM_MUS_DERIV'.
            IT_FIELDS-FIELDNAME  = 'NW_SO'.
            IT_FIELDS-FIELD_ATTR = ' '.
            IT_FIELDS-FIELD_OBL  = ' '.
            APPEND IT_FIELDS.
            CLEAR it_fields.
           CALL FUNCTION 'POPUP_GET_VALUES'
             EXPORTING
               NO_VALUE_CHECK  = 'X'
               POPUP_TITLE     = POPUP_TITLE
               START_COLUMN    = '5'
               START_ROW       = '5'
             IMPORTING
               RETURNCODE      = RETURNCODE
             TABLES
               FIELDS          = IT_FIELDS
             EXCEPTIONS
               ERROR_IN_FIELDS = 1
               OTHERS          = 2.
           IF SY-SUBRC <> 0.
               "No action required.
           ENDIF.

  • Maintenance view sm30 thru SE93

    Hi All,
    I have created a tcode thru SE93, using transaction SM30. I had given a viewname.
    My problem is I don't want user to browse table and select a record from there to edit/mtn because the table is too big and results a short dump.
    I want user to key membershipno in or select (by match code)
    how to do that ? to put something in the screen field to get that ?
    Thank You

    Hi,
    When you create the maintenance view, there is a column with heading 'P'. Give the value 'S' for fields which you want to fiter. Then a filter option is shown when you generate the maintenance view.
    Also you can create a report and have selection screens(Mandatory) for the fields of your choice. Then filter on the PBO event accordingly ( you  may also use apposite events) based on the filter to display only relevant records if the size is more.
    Hope this helps.
    Cordially,
    Shankar Narayanan.

  • Hi experts, how to use open sql to read data from one " maintenance view"?

    i want to use this part of data within report ,so how to use open sql statement to read data from one " maintenance view"?

    Hi
    You can't use OPEN SQl statements to fetch data from maintenance view
    You have to use only Database views
    see the different types of views and the difference
    The followings are different types of views:
    - 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.
    - Help View ( SE54)
    Help views are used to output additional information when the online help system is called.
    When the F4 button is pressed for a screen field, a check is first made on whether a matchcode is defined for this field. If this is not the case, the help view is displayed in which the check table of the field is the primary table. Thus, for each table no more than one help view can be created, that is, a table can only be primary table in at most one help view.
    - 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.
    - Maintenance View ( SE54 )
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Please have a look at below link. It will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    Reward points for useful Answers
    Regards
    Anji

  • HIde table field in maintenance view

    HI ,
    i have table with 5 column and i want to create new maintenance view  but hide one of the field for maintenance ,
    i need to deliver this table to prod so i need to keep the changes on transport .
    i don't want to do it via code since when i regenerate the maintenance view again it will deleted .
    there is another option ?
    Regards
    Nina
    Moderator message - moved to the correct forum.
    Edited by: Rob Burbank on Oct 1, 2009 4:26 PM

    Hi
    1 ) I need to delete the maintenance that i do to the table like i mention in previous post ?
    Yes u can delete the maintenance program created for your Z (transparent table): it'll be useless, anyway it's not necessary to delete it, but if you think it won't be used, it's better to delete it.
    2 ) create to the table maintenance view and i hide the field
    Yes, u need to create a maintenance view based on your Z (transparent) table and set the flag for the fields to be hidden.
    when i create it in the tab view fields i see just the key fields of the table why ?
    Because the system inserts the key fields by default, the other fields has to be placed manually, u can also decide to insert only the fields u need to show and manage in maintenace program, i.e. the maintenance view (but in generally a table view) can have only certain fields of a transparent table, it's not necessary it has all fields.
    in the table join condition i just put the table name do i need to do something else ?
    No u don't need to do anythingelse
    Max

  • Regarding maintenance views

    what is the main purpose in creation of maintenace views???????
    and where we use it in real time?????

    Hi
    Maintenance View ( SE54 )
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Please have a look at below link. It will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    Creation of Views:
    1.Go to se11
    2. select view radiobutton and give a name
    3. Create
    4. select type of view you want to create. Such as database view.
    5. give short description
    6. give a table name such as mara
    7. press the pushbutton relationship. here you will find all the tables which are allowed to create view with mara.
    8. select one or mane tables.
    8 copy
    9.save , check and activate.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Diff bt Help view and Maintanence view

    hi gem's
    i need the diff bt Help view and Maintanence view with example...............

    Hi
    The followings are different types of views:
    - 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.
    - Help View ( SE54)
    Help views are used to output additional information when the online help system is called.
    When the F4 button is pressed for a screen field, a check is first made on whether a matchcode is defined for this field. If this is not the case, the help view is displayed in which the check table of the field is the primary table. Thus, for each table no more than one help view can be created, that is, a table can only be primary table in at most one help view.
    Go thru this link plzz
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    Difference between "Help View" and "Search Help"
    - 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.
    - Maintenance View ( SE54 )
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Please have a look at below link. It will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    1.Go to se11
    2. select view radiobutton and give a name
    3. Create
    4. select type of view you want to create. Such as database view.
    5. give short description
    6. give a table name such as mara
    7. press the pushbutton relationship. here you will find all the tables which are allowed to create view with mara.
    8. select one or mane tables.
    8 copy
    9.save , check and activate.
    Regards
    Anji

  • Difference among the Help view,Database view and Maintanance View

    hi,
    can Anyone pls let me know the Difference among the Help view,Database view and Maintanance View
    thanks&regards
    rama

    The followings are different types of views:
    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.
    Help View ( SE54)
    Help views are used to output additional information when the online help system is called.
    When the F4 button is pressed for a screen field, a check is first made on whether a matchcode is defined for this field. If this is not the case, the help view is displayed in which the check table of the field is the primary table. Thus, for each table no more than one help view can be created, that is, a table can only be primary table in at most one help view.
    Go thru this link plzz
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    Difference between "Help View" and "Search Help"
    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.
    Maintenance View ( SE54 )
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Please have a look at below link. It will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    1.Go to se11
    2. select view radiobutton and give a name
    3. Create
    4. select type of view you want to create. Such as database view.
    5. give short description
    6. give a table name such as mara
    7. press the pushbutton relationship. here you will find all the tables which are allowed to create view with mara.
    8. select one or mane tables.
    8 copy
    9.save , check and activate.
    The followings are different types of views:
    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.
    Help View ( SE54)
    Help views are used to output additional information when the online help system is called.
    When the F4 button is pressed for a screen field, a check is first made on whether a matchcode is defined for this field. If this is not the case, the help view is displayed in which the check table of the field is the primary table. Thus, for each table no more than one help view can be created, that is, a table can only be primary table in at most one help view.
    Go thru this link plzz
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    Difference between "Help View" and "Search Help"
    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.
    Maintenance View ( SE54 )
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Please have a look at below link. It will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    Go thru this link plzz
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    Difference between "Help View" and "Search Help"
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    Hope this is helpful, Do reward

  • Sometimes my ipod does not down load my entire library when I sync up with itunes, even if I have items loaded in the play list and can see them in the play list in my itunes when I check my ipod play list some items are missing part 1 will be there but p

    Sometimes my ipod does not down load my entire library when I sync up with itunes, even if I have items loaded in the play list and can see them in the play list in my itunes when I check my ipod play list some items are missing part 1 will be there but part two is not. Why?????

    How is your iPod configured to sync music from your iTunes library?  In other words, what options and configurations do you have enabled from under the iPod's Summary and Music configuration panes in iTunes?
    B-rock

Maybe you are looking for