View Maintenance Dialog SM30

Hi Experts,
i have created a view X.
when i execute/open this view immediately i should see some default entries in the view , but it should not present in the correcsponding database tabel.
To achieve this i hav created a form routine for the event 19 (Ater initializing global variables, field symbols, etc. ),In this form routine i m trying to add default entries to the TOTAL table , but i couldnt see those default entries in the View X.
Please guide/suggest me on how to achieve my requirement.
Thanks and Best Regards,
Vinoth

Yep....Its not working.
Just i placed a Break-point and try to see what can be done,...But unfortunately the BReak-point itself not getting triggered
Any other suggestions or inputs
Thanks and Regards,
Vinoth

Similar Messages

  • View maintenance dialog

    Hi all,
    I am facing an issue in view maintenance dialog, during UCCHECK, it is showing as error with description as follows:
    Generated Code for View Maintenance Dialog is not Unicode-Compatible You can
    regenerate with the program RSVIMT_UC_VIEW_MAINT_GEN
    I am still doubt. What is the impact if I generate it as proposed? Are our own coding removed after generation? Thus we need to code manually again.
    Thanks !
    Chika

    It seems that you're in the Unicode system and the dialog is not Unicode compatible. This program will not remove any code, as long as it has been added using the proper methods (user exit, designated enhancement, etc.). In the worst case it will display an error message.
    You might want to check in advance whether your code is Unicode compatible though.

  • How to Delete Maintenance dialog Ztable (SM30)

    Hi,
    very urjent...
    How to Delete Maintenance dialog Ztable (SM30)
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Jan 11, 2008 5:23 PM

    Hi,
    goto se30 take the Function group of that table maintaince, goto se37 put there in the utility Function group change mode delete the changes and save now it will give you the pop-upfor change request.
    Regards,
    Satish

  • Maintenance dialog for table

    Hello folks,
    I had successfully created a table and I tried inserting some records in to the table using table maintenance.
    I received the following error.
    'The maintenance dialog for table zxxx is incomplete or not defined'.
    What does this mean?? And what should I do??
    I am pasting the detail help over this error.
    The maintenance dialog for ZTV_DBS_RANGE_NO is incomplete or not defined
    Message no. SV 037
    Diagnosis
    The called function with the view/table ZTV_DBS_RANGE_NO needs a special maintenance dialog which, however, either does not exist at all, or does not exist completely.
    System Response
    The called function cannot be performed.
    Procedure
    Generate the required maintenance dialog.
    Please help

    You have to create the maintenance dialog for table you would like to use with transaction SM30 / SM31.
    To do this look the transaction SE55.
    (or SE11, select the table, MODIFY, (menu) Utilities -> Maintain dialog ... )
    Regards
    Frédéric
    Message was edited by: Frédéric Girod

  • The maintenance dialog  for SM 30

    Hi i am maintaining a table through SM30. and i have used one display field in transaction for that table. when i am entering data through transaction that disply is getting displayed when i press ENTER. but when maintaining through SM30 thet display Maintanance dilog Incomplte,
    then i went tbel maintanance and create ,but it doesnt save
    please help me
    This is the  error i am getting'
    <b>The maintenance dialog for ZFT017_GLCST_TR is incomplete or not defined</b>
    kanishka

    Hi,
    there is a prob in Table maintenace Generation Cretaion.
    se11> table name> change.
    Menu- utilities- table mauintenace Gen .
    Give Authorisation Grp and Funct Group.
    Single Step
    Provide Screen No.
    Then Assigning the tCODe.
    Se93.
    In this U shud give TABLE VIEW :    TABLE NAME.
                              UPDATE       : X  <----
    Ensure This u have given.
    Rvert Back if any issues,
    Reward with points if helpful.
    regards,
    Naveen

  • Field description / label become a plus (+) sign in maintenance dialog

    Hi expert,
    I've create a maintenance view & use it in a maintenance dialog screen. All fields shows ok except one field , the label show a '+' sign only, why huhh ?
    Did anyone face this problem before ? Please help. Thanks
    Janice

    In the Generate Table Maintenance Dialog screen, go to Environment->Modification->Maintenance Screens via the menubar. Then go to the screen layout by clicking the Layout button.
    Now double click on the column name where you have the '+' sign and type over your required label. Save and activate. Now run this via SM30 you should see the correct label.
    Hope this helps.
    Cheers,
    Sougata.

  • Error : Maintenance dialog for ztable is incomplete or not defined

    Hi Gurus
    While maintaining the ztable through SM30 got the following error.
    Maintenance dialog for ztable is incomplete or not defined
    I have to add new enteries in the previously created ztable.
    Please suggest
    Manvir

    Go to SE11, give the table name and click on change. Then Go to utilities--> Table
    maintenance generator.
    In the table maintenance generator screen, we should give Authorization Group,
    Function Group name (Function Group name can be same as table name),
    Maintenance type can be one step or two step, usually we will create with one
    step. we should give maintenance screen number. After clicking on create button,
    a table maintenance generator will be created.
    To check it go to SM30 . In SM30, we find display, Maintain options.
    We can view the table contents by choosing Display and we can create table
    entries by choosing Maintain.

  • View Maintenance

    Hello all,
    In custom table maintenance view I'm using a couple of events in PAI to format records to be inserted.  I also have a program that inserts entries into that table. Is there a function call that I can use instead of regular insert statement that would also go through those events?
    Thank you,
    Leon

    If you want to call subroutines created for table maintenance events from another abap program, you don't need to use VIEWPROC_<view> VIEWFRAM functions...
      What are the Table maintenance dialog events (event numbers) did you use? I believe there are no insert statements in those subroutines, just formatting.. isn't it?
    Ifur abap program and the subroutines process one record at a time, then here's the pseudo code of the external abap program for using the event subroutines.
    report ZPROGRAM
    tables ZTAB
    select single * from ZTAB where ...
    perform event_sub_routine(include_prog_name)
    insert ztab.
    Include program
    form event_sub_routine
    Do the required format changes to ZTAB.
    Adjust the code to work for both table maintenance and the external program
    endform

  • Hidden fields in a maintenance dialog

    Hi,
    I have created a table maintenance dialog based on a view and I want to hide certain fields of the view. I know that this can be done by setting the 'P' field of that particular field to 'H' (hidden). But, I want the hidden value to be displayed in the form of asterisks(*) . How can this be achieved?
    Thanks,
    Divyaman

    Hi.
    You have to Change the code of the Function group generated (which is in customer namespace anyway)
    In the PBO event of the Screen :
      MODULE SET_FIELDS.
    Module definition:
      MODULE SET FIELDS.
        LOOP AT SCREEN.
            IF SCREEN-NAME = '<YOUR FIELD>'.
               SCREEN-INVISIBLE = 0.
                MODIFY SCREEN.
            ENDIF.
       ENDLOOP.
    ENDMODULE.
    <b>reward if Helpful</b>

  • Problem in copying view maintenance screen

    Hi to all experts,
    I have requirement to copy a standard view with maintenance to z view . The view name V_T71ADM23 which has a function group HRECM00ADMVIEW05 i copied it to z function grp but the problem is im getting this error when im trying to put the custom function grp to the table maintenance generator.
    first error
    The screen number 0501 is already assigned
    but not referenced in the control directory
    for another maintenance dialog.
    Overwrite old screen number
    in control directory?
    yes or no
    if click yes
    second error
    View VT71ADM19 has no active version and no entry in the control directory
    View VT71ADM20 has no active version and no entry in the control directory
    View VT71ADM21 has no active version and no entry in the control directory
    View VT71ADM22 has no active version and no entry in the control directory
    View VT71ADM23 has no active version and no entry in the control directory

    how to do this
    Delete the generated modules for view VT71ADM19 from the function group ZHRG0007 using the function library.

  • Maintenance Dialog is missing or not maintaned

    Hey...I am new in ABAP. I created a function group in dev environment and this function group consists of a database table with maintenance view and it has a transaction code. After I transport into quality environment, when i execute the the transaction code, it said that the maintenance dialog for the table is missing and not maintaned, when i checked the transport request is successful without any error. I am not sure what is the problem, Anyone can help? Thanks

    Hello
    Maintenance views consist of the DDIC objects and  a couple of entries in SAP standard tables. If these entries are not transported to the next system you will get the error message as described.
    To ensure complete transport of your maintenance view
    1) call transaction SE54,
    2) enter your maintenance view (description should be table/view) and
    3) choose menu Utilities -> Total Transport
    This will result in a complete transport request for your maintenance view.
    Regards
      Uwe

  • Data Type with reference and view maintenance

    Dear all,
    There are two questions that I want to ask.
    1.     Error when referencing a table with data type = u2018STRINGu2019.
    I have a Z table with some fields = u2018stringu2019, when I use this as a reference, an error prompted.
    "ZTBL_ABC" must be a flat structure. You cannot use internal
    tables, strings, references, or structures as components.-
    2.     Error in generating the View maintenance for field length > 255.
    Actually, I want to create fields with
    1.     data type = char(255),
    2.     data type = text
    3.     data type = char(3000)
    It is okay if I create the field with the selected size, however, when I generate the View maintenance (which can be access through SM30); it does not allow me to do so. It still not working if I change it into string. How can I create such table and use the table maintenance, as well as using that as the reference type of an internal table for another program?
    Regards,
    Mandy Au

    Hello,
    1st of all a table which has a field of type string can be converted in to table maintenance because TM does not support string type as it becomes a very big field to be displayed on screen ... so u need to change that.
    and then about the CHAR of length 3000 is too big ... to have a max limit of 255.
    If you change this both u will be able to generate TM.
    Incase after changing the field length it it gives error in activatin your table then go to SE14 put your table name EDIT and then Adjust n activate it....
    hope this was helpful
    --- Close the post once you get the solution

  • IMG - View maintenance  - View suppress existing entries and do not save

    Hi there,
    within the customizing maintanence I wanted to change a view cluster with an existing view (within transaction /simgh). But after replacement of the vc with the view the view do not show any existing entries and do not save my new entries.
    I already regenerate the whole view again, but the behavior do not change.
    I also deleted the whole maintenance dialog and generated again, but the behavior do not change.
    Now when I access the view, only a number of rows are changeable but empty (number of these entries = number of existing entries) and when I save a new entry, the whole line shift to the end, of empty changeable (open) lines and when I access the screen again, this entry is not saved and not displayed.
    Have anybody an idea how to solve this?
    Kind regards, Kathrin
    Edited by: Kathrin Gossmann on Mar 12, 2009 1:28 PM
    Edited by: Kathrin Gossmann on Mar 12, 2009 1:29 PM

    Hi,
    There is nothing called as basic list in web dynpro
    There are 2 ways of displaying more than one record (internal table data) in either ALV or Table.
    Using ALV you have an advantage of directly downloading onto excel.
    You need to process success and error records separately into 2 internal table, show them in 2 ALVs differently with 2 messages, so that the users can directly download them on to excel file as ALV provides it.
    If the user does not want the records (success or error) ones, if the user wants only a message with number of records uploaded/not uploaded then you do not require them to display it in ALV, you can just give them a message.
    In this case you can hide the ALV and only display messages in a single view or based on  radio button. 2 views or not required.
    In the selection screen itself, you  can show the number of records uploaded/not uploaded.
    Hope this helps.

  • The maintenance dialog for V_AISUSER is incomplete or not defined

    I was not able to assign S-user for SAP Support Portal functionality from SPRO.  I received this error and my ABAPer didn't seem to able to help...would anyone ever got this error message and/or know how the resolution?
    The maintenance dialog for V_AISUSER is incomplete or not defined
    Message no. SV037
    Diagnosis
    The called function with the view/table V_AISUSER needs a special maintenance dialog which, however, either does not exist at all, or does not exist completely.
    System Response
    The called function cannot be performed.
    Procedure
    Generate the required maintenance dialog.
    Thank you in advance for your assistance.
    Regards,
    Franc

    Hi Nesimi,
    I wasnot able to maintain the "assign S-user fro SAP Support Portal functionality" by drilling down the following path from SPRO>SAPSolMan>Configuration>Basic Settings>Standard Config of Basic Settings>SolMan>Connection to SAP-->Assign S-user for SAP Support Portal functionality.
    I have to follow the following path to maintain Table "AISUSER" = SPRO>SAP SolMan>Config>Scenario-Specific Settings>Service Desk>Service Provider SW Partner>Maintain Table AISUSER.
    What's a ditto...
    Thank you again for your time.
    Cheers,
    Franc Nguyen

  • Maintenance Dialog for V_T7INDA_OFFGRP does not exist

    Hi Friends,
    I have tried to enter the values in the view V_T7INDA_OFFGRP, but I am
    getting a message, that 'Maintenance Dialog for V_T7INDA_OFFGRP does
    not exist'.
    When I went to se54 to create the Maintenance Dialog, I am not able to
    see the View V_T7INDA_OFFGRP in the funtion group HRPBSINDA_DDIC.
    Can you please help me how I can creat the Maintenance Dialog for this
    view.
    Thanks,
    Suresh Kumar Paturi

    Procedure compiles OK if I replace
    SELECT hsecs INTO pseudoRandomSeed FROM V$TIMER;
    by
    pseudoRandomSeed := DBMS_UTILITY.GET_TIME;
    I still would like to understand the reason of the error as why the procedure cannot compile with SELECT hsecs INTO pseudoRandomSeed FROM V$TIMER;
    Thanks

Maybe you are looking for