Save Button on the TimeSheet Review Screen

Hello,
I am trying to move the Previous Step and the Save buttons on the Top of the screen above the Review Table ..I had gone to the VcCatRecordReview Component -> VcCatRecordReview View Controller and moved the Transparent Container which has those 2 buttons but it's not taking into effect...If anybody has done something like this then please let me know....
Thanks in Advance

Hi ,
if you have used user_command then you just write the condition of function code of save button '&data_save' between case and endcase.
if you need to use standard save button then go to the menu painter using tcode 'SE42' and go to function tool bar and write save on save button.
regards..
bibek

Similar Messages

  • How to Enable the SAVE button in the Menu Bar of the Invoice Document.

    Hi.
    How to Enable the SAVE button in the Menu Bar of the Invoice Document as it is disabled for me.
    I would like to save the Invoice document in PDF  format.
    Regards
    Irfan

    Hi,
    Normally, for the archiving or generation of the invoice document in PDF format is handled by maintaining the output records through VV31/VV32 with the relevant printer, storage mode ( 3- print and archive or 2- archive only ), no. of messages ( means no of copies ) in the communication method.
    Then when you click the print button through VF03 in the print options pop-up you get a print at the physical printer and at the same time an archived copy ( PDF copy ) attached with the document.
    So, please make sure the output records are fine to allow a PDF copy generated and then try to print and check in VF03 by entering into the billing document.
    Hope this helps you.
    However, from the print preview you normally would not be allowed to save or print.
    Regards,
    Ram
    Edited by: Ramakrishna Peri on Apr 3, 2009 9:16 AM

  • Does Pages 2 have a save button in the toolbar?

    Anyone know if Pages 2.0 has a save button in the toolbar? Also, is there a button to show invisibles instead of a drop down menu? This is one of the most missed features. I couldn't tell from the images.
    iBook G3 800MHz Mac OS X (10.3.9)
    iBook G3 800MHz Mac OS X (10.3.9)

    Just out of curiosity, could you describe how you use the Save button in AppleWorks?
    Do you let go of the keyboard, move your hand to the mouse, move the cursor to the button and click it and then move the hand back to the keyboard, or do you usually have your hand on the mouse anyhow, so you just have to move the cursor and click? Or do you have some other trick?
    I'm honestly curious. The first thing I do in almost any application is to turn off the toolbars and use the shortcuts instead. (⌘+S for save and ⇧⌘I for show invisibles, but you probably knew that already.)

  • Disable Save Button in the Interactive PDF form

    Hi Experts,
        I have created an interactive form using NWDS and I am able to show it as Collable Object. Now the requirement is that I have to disable the save button from the PDF.
    Can you please let me know how to disable the Save Button for the interactive form?
    Thanks in Advance
    Regards,
    Kuldeep Verma

    Hi Kuldip,
    if you're trying to hide the Save Button in the Adobe toolbar, then you can place the following code in the wdDoModifyView method to hide the whole toolbar.
    // Get interactibe form handler.
            IWDPDFDocumentInteractiveFormHandler iFormHandler = WDPDFDocumentFactory.getDocumentHandler(wdThis.wdGetAPI(), "<name of your form>");
    //     Get appearance setter. 
          IWDPDFDocumentAppearance appearance = iFormHandler.getDocumentContext().getAppearance();
         // Hide menu bar.
         appearance.hideMenuBar(true); 
         // Hide tool bars.
         appearance.hideToolBars(true);
    hope this helps,
    harman

  • HT204074 I haven't "Manage devices" button on the Account information screen....

    I'd like to disconnect one of my Apple devices from my Apple ID.
    There is a very simple decision in this site, but it does not work.... (I haven't "Manage devices" button on the Account information screen....)
    Help me please....

    You're going into Store > View My Account on your computer's iTunes, and it should then show under the 'iTunes in the Cloud' section.  Have you currently got any devices/computers associated with your account for automatic downloads and/or have you downloaded previous purchases on them ? If you haven't then it might not appear - that screen will only allow you to view the associated devices and remove them, it doesn't let you add them there.

  • Why is there a horizontal line a quarter inch above the Home button on the iPad main screen all of a sudden?

    Why is there a horizontal line a quarter inch above the Home button on the iPad main screen all of a sudden? Does that mean the screen itself is problematic?

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    If that doesn't help I suspect there is a hardware problem with the iPad. Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support.

  • Some buttons on the right hand screen of my ipod are not working please help me!! what do i do, some buttons on the right hand screen of my ipod are not working please help me!! what do i do

    some buttons on the right hand of my ipod touch screen are not working? could somebody help me i have reset restored and everything has this happened to anyone else?

    If you restored to factory settings/new iPod and still have the problem that indicates a hardware problem.
    Make an appointment at the Genius Bar of an Apple store..
    Apple Retail Store - Genius Bar

  • How we can add the 2 buttons on the alv out screen.

    I have a requirement, i want to add two buttons on the application bar on the ALV report out.
    with the use of grid functional module.
    for example: i want to buttons details and balance on the ALV output screen. if i click on detail it will display the details and if i click on balance it will show the balance data in report.
    and if i use the back and exit that time it will come out the selection screen.
    please send me any exiting report its very urgent.

    Hi frnd,
    To add additional button in the application toolbar,
    First copy the std toolbar from std sap program,
    In se 41 give
    program name = SAPLKKBL
    copy staus.
    Use own status (Copy STANDARD from SAPLKKBL)
      SET PF-STATUS 'STANDARD_NEW' .(in this new user defined status add ur buttons)
    steps:
    then in the ''REUSE_ALV_GRID_DISPLAY' function module
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_callback_program       = gv_repid
                i_callback_user_command  = EVENT_USER_COMMAND
                i_callback_pf_status_set = EVENT_SET_STATUS_01
                i_grid_title             = gc_tit
                is_layout                = gt_layout
                it_fieldcat              = gt_fieldcat[]
           TABLES
                t_outtab                 = gt_lfa1
           EXCEPTIONS
                program_error            = 1
                OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    FORM     event_set_status_01  USING  lt_excl  TYPE  slis_t_extab.
    Use own status (Copy STANDARD from SAPLKKBL)
      SET PF-STATUS 'STANDARD' .
    ENDFORM.                    "EVENT_SET_STATUS_01
    *& Form Name:  event_user_command                                      *
    *& Form Desc:  For Handling USER_COMMAND                               *
    FORM     event_user_command  USING
                                        if_ucomm     TYPE  sy-ucomm
                                        is_selfield  TYPE  slis_selfield.
      CASE if_ucomm.
        WHEN 'PRINT'.
      endcase.
    endform

  • Adding a Button to the Sales Order screen

    Good Day
    Experts:
    I have added a button to the SalesOrder screen with help from a previous post here on the forum.  The button was lined up with the others that were already exisitng on the screen.  Recently, I have encountered a problem with it.  When the SalesOrder screen is run on a different machine,  the button is almost not visible.  It appears there is some kind of issue with the screen resolution just for this button. 
    Do I have to do something special with this button when it is shown on the screen to get it to remain in line with the existing buttons?
    Thanks,
    EJD

    Hi Ed
    Are you setting the button in relation to the surrounding existing objects?  Like for instance ...
            Dim oButton As SAPbouiCOM.Item = oForm.Items.Item("2").Specific 'Cancel button
            Dim oNewButton As SAPbouiCOM.Button
            Dim oNewItem As SAPbouiCOM.Item = oForm.Items.Item("Test") 'your new button or control
            With oNewItem
                .AffectsFormMode = True
                .Left = oButton .Left  + oButton.Width ' notice how button is positioned based on  existing one
                .Top = oButton .Top
                .Width = oButton.Width
                .Height = oButton.Height
                .FromPane = oButton.FromPane
                .ToPane = oButton.ToPane
                .TextStyle = intTextStyle
                oNewButton = .Specific
            End With
            With oNewButton
                .Caption = strCaption
            End With
    Message was edited by:
            Neftali Figueroa
    Message was edited by:
            Neftali Figueroa

  • Add a button on the Table view screen

    Hi ,
    i need to add a button to da table view screen for which i have created a transaction also.How do i go about it?
    please help.
    Thanx and Regards,
    Srestha

    <div><button
    style="float:left;">LEFT</button><button
    style="float:right;">RIGHT</button></div>
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "-Michael--" <[email protected]> wrote in
    message
    news:edf6hm$aea$[email protected]..
    > How do i add a button at the top left side of the
    screen, then in the same
    > row
    > add a button to the right side of the screen. (I want
    the buttons to stay
    > left
    > and right nomatter how big the users computer screen is)
    >

  • Display of F4 help button on the standard selection screen

    Hi ,
      I have coded for few parameters to appear on my standard selection screen. And they all are of type refering to a Data dictionary structure and for all the fields i have created a explicit search help object and attached to them. Some have foreign key relationships and i have given corresponding value table in the domain also.
    Now my understanding is that when i exectue the report prog on all these parameter fields i should get the search helps and button at the end showing it has a f4 help attached to it.
    However, no button appears which shows there is a search help attached, however on f4 my search help comes up and it works fine.
    My understanding was that the button was to come to any field which has a f4 help avaiable for it..
    But the button is not coming up now.. Is there any customizing code to be written in my report prog for the button to appear...
    Any info would be helpful...
    Thanks in Advance..
    Regards,
    Naveen M

    Hello Aditya,
    Thanks a lot.. but u know wat at times i think ABAP editor give some bizarre problems.. I did the modification
    parameters: p_abc type <any type > MATCHCODE OBJECT <search help name>
    and the button popped up...
    i deleted the addition of matchcode object addition and activated my code.. and the buttons now come up without that addition.
    As i told before has to come up when the field has search help attached to it.. no modifications actually need to be done i guess..  but somehow it was not comin at first...
    Anyway Thanks a lot,
    Good day..

  • How to deactivate the SAVE-button in the officecontrol

    Hello,
    I created an office control in my web-dynpro. Now you can edit the document and when you click the save-button nothing happend.
    Is there a way to deactivate the save-button or is it possible to set the document in display-mode ??
    Regards,
    GJ van Holland

    Hi,
    Normally, for the archiving or generation of the invoice document in PDF format is handled by maintaining the output records through VV31/VV32 with the relevant printer, storage mode ( 3- print and archive or 2- archive only ), no. of messages ( means no of copies ) in the communication method.
    Then when you click the print button through VF03 in the print options pop-up you get a print at the physical printer and at the same time an archived copy ( PDF copy ) attached with the document.
    So, please make sure the output records are fine to allow a PDF copy generated and then try to print and check in VF03 by entering into the billing document.
    Hope this helps you.
    However, from the print preview you normally would not be allowed to save or print.
    Regards,
    Ram
    Edited by: Ramakrishna Peri on Apr 3, 2009 9:16 AM

  • ESS: "Send and Save" button in the overview "trips and travel expenses"

    Hi all!
    How can I add a "Search and Send" button in the overview "trips and travel expenses"?
    The employees have to go into each trip, in order to send it to the travel manager.
    Is there another opportunity:
    maybe, select the trip items in the overview and send it.
    Thanks for your help!
    Best regards,
    Dirk

    Hello Dirk,
    At the moment this functionality is not available in standard portal system.
    Regards,
    Raynard

  • Renaming the buttons on the Search Request Screen in PC-UI

    Dear Gurus,
       How do I rename the "Filter On", "Filter Off" and "Personalize" text that appears on the Search Request Screen in PC-UI. Also, If I want take out the help link in the Search Request screen how do I do that.
    Thanks!
    Vivek.

    This is rendered in the PC-UI framework. There is no customizing present for this.
    If you want takeout the links search for them in the corresponding view's of the framework BSP <b>CRM_BSP_FRAME</b>
    Raj

  • Why is there no automatic save button in the toolbar?

    this is a very annoying omission. I like to save my work with a quick button instead of going through the "File" tab. Is there a way to get this on there?

    Locate what you want to have a keyboard shortcut for and note it's exact spelling, upper and lower case.
    Then go to:
    +Menu > Apple > System Preferences > Keyboard & Mouse > Keyboard Shortcuts > click on little plus sign bottom left corner > Application: > Scroll right to the bottom > Other… > Locate Pages inside the iWork folder of the Applications folder > Select > Menu Title: > type exact name of menu item > Keyboard Shortcut: > type key combination required (make it unique) > Add+
    You may need to restart the application but when you do it will have the keyboard shortcut against the menu item.
    Peter

Maybe you are looking for

  • External HD no longer accessible with new Airport Extreme

    Hello all, I recently purchased a new Airport Extreme to replace a previous version that stopped working.  I plugged my existing usb hard drive (used for both itunes library and time machine backups) into the new AEBS.  The usb hard drive shows up un

  • Error when exporting to Excel for SharePoint 2010 List

    We have few users who are getting the following error message when they try to export to Excel from the SharePoint list: "An operation that uses the database driver could not be completed. If the driver is a Microsoft driver, make sure the driver fil

  • How do I clear or delete the DTP ERROR STACK..?

    HI Experts I have a number of records written to a DTP Error Stack for a Master Data load. Subsequent executions of the DTP result in further records being written to the stack if they have the same semantic key (even if they are not in error). I kno

  • Unknown i-tuneserror (-42110). How do I solve that error?

    The error makes it impossible to sync my computer with the I-pad and i-phone5. What do you suggest me to do?

  • Merge - update table@dblink

    Hi all, my need is to perform merge: 1) update table2@dblink only when some column(s) is/are different than in local table1 2) insert rows into table2@dblink when not present. (2) works fine. (1) works strange. It was tested successfully at test serv