No save button for workset

Hi,
When moving items up or down in the navigation of a workset, the save button remains greyed.  However, if you make a change and close and reopen the workset the changes are there.  This can be bad if you make an inadvertent change without knowing.  Is there a way to configure it to where you have to hit the save button in order for changes to take affect?
Any help is greatly appreciated.
Best Regards,
Rick

And how nice it would've been if the separate login requirement where presented to you BEFORE you did the trouble of syncing a whole song!
I haven't connected my FB or Google+ account with Spotify, but those are the only login options if you wish to support the lyrics creation. So I just spent a good ten minutes adjusting the lyrics for one song, but no Musixmatch/Spotify - you're not getting it! My privacy is worth sooooo much more than helping out with lyrics editing. (What's wrong with using my existing Spotify account, huh?)

Similar Messages

  • FB70: User exit when the save button (for posting) has been click

    Hi ABAP Gurus,
    With regard to FB70, can anyone provide me the name of the user exit that will be triggered when the save button (for posting) has been clicked?
    Thanks!
    <b>
    Best Regards.
    Brando</b>

    Hello Brando,
    With FB70 I recommend you implement the user-exit via the Business Add-In (BADI) way and avoid SMOD exits if possible.
    The list below are the BADIs that are called by the <b>ECC6.0</b> system after you click the <b>Save</b> button to post a document. <u>They are listed in the order which they are called before the actual post</u>. You'll have to find the right one as per your requirement - you can view their definition via transaction SE18 then after you find the right one you need to use that definition to create an implementation via SE19. Here again, you'll have to choose the right method that suits your requirement. You'll find the method and class documentation in some cases with examples on how to implement, you need to write the code between the Method..EndMethod statement using the parameters provided by the Method.
    1. PPA_CUST_BADI
    2. FI_RES_ITEM_CURRENCY
    3. AC_QUANTITY_GET
    4. BADI_PRKNG_NO_UPDATE
    5. FM_POP_CORE
    6. FMRI
    7. FMRE_BUS_PROCESS
    8. FAGL_SET_SEGMENT
    9. EXIT_XFMPR1_001
    10. BUAVC_CHECK_RESTRICT
    11. UKM_R3_ACTIVATE
    12. CO_DOCUMENT_INFO
    I spent a bit of time debugging FB70 to find this info for you, please appreciate by rewarding points (or else
    Good luck.
    Cheers,
    Sougata.

  • Enable the Print,Save button for dashboard page in obiee11g

    Hi All,
    How To Enable print and save button for hole dashboard page.I found in 10g but i can't found in the 11g.

    All the best... if you get solution share it.
    thanks
    @User
    I'm not guru! I'm just (top) learner
    Edited by: Srini VEERAVALLI on Apr 5, 2013 6:17 AM

  • How to disable the Save button For a pdf?

    Hi,
    I have a requirement that when you open the livecycle developed pdf, the Save option available in the toolbar (Save As icon) and File menu of the Reader should be disabled. A button will be provided in the form separately to provide the Save functionality. Can anybody help me reg. this? Is there any setting available for this in Adobe Pro or any other tool?
    Regards,
    Maria

    It's not really difficult to disable the save button. But it depends on the context from where you want to delete it. even if you disable the save button the user has the option to print screen and create a fresh pdf. So your question has some philosophical aspects to deal with. Please mail me at [email protected] incase of further quries. I've understood your problem and have got a solution but it's not somewhat legitimate to do. I can share it with you through email.

  • What are the setting for Save button for saving plan data in WAD template

    Hi,
    i created SAVE button in Webtemplate for saving plan data.But this button is not
    active.is there any setting for this?
    thanks in advance
    chandu

    Hi Chandu,
    The settings to Configure the  Save function.
    Right click the Button Group Item ® Properties ®  * Button    ® 
    Type Caption  ‘Save’ ® Command    ® Select ‘All Commands’ Tab ® 
    De-select ‘Execute Planning Function’ and then select checkbox ‘Save
    Changed Data’ ® Double click on ‘Save Changed Data’ ® OK ® OK ® Save your template.
    *pls assign points,if info is useful*
    Regards
    CSM Reddy

  • No save button for lyric sync editing

    I love the ability to edit lyrics through the lyric sync option, however, there is no save button. I edit the lyrics and when the song changes, it says I'll lose all my work if I switch songs while syncing. Help?

    And how nice it would've been if the separate login requirement where presented to you BEFORE you did the trouble of syncing a whole song!
    I haven't connected my FB or Google+ account with Spotify, but those are the only login options if you wish to support the lyrics creation. So I just spent a good ten minutes adjusting the lyrics for one song, but no Musixmatch/Spotify - you're not getting it! My privacy is worth sooooo much more than helping out with lyrics editing. (What's wrong with using my existing Spotify account, huh?)

  • Issue with enabling the save button for Oracle Composer

    Hi
    I was trying to create a custom webcenter portal application through JDeveloper which allows the user to edit the content at runtime with the help of oracle composer.
    Followed the steps below as specified in the developers guide.
    1. Implemented ADF security.
    2. Updated the adf-config file with the required namespaces.
    3. Updated the web.xml file to set the appropriate filter mappings.
    The web application is deployed successfully without any errors. However, the save button doesn't seem to get enabled. So, not very sure if the sandbox is enabled.
    Have a hunch that there could be a problem in configuring it with the datasource as while deploying the prompt still refers to the file system mds and not from DB.
    Could somebody please provide clear steps as to how to go about the dataSource creation and configure this datastore for enabling the sandbox. It would really help in understanding it better.
    Thanks

    First of all, are you using webcenter 11.1.1.3 or 11.1.1.4?
    Judging from your explenation i should say you are using .3 because in the later releases you don't need to configure adf security anymore.
    If you are using .3 than you should complete following steps:
    http://download.oracle.com/docs/cd/E14571_01/webcenter.1111/e10148/jpsdg_page_editor_mds.htm#CHDBHBDA

  • How to get save button for saving the layout in OO ALV

    Hi all,
    When I execute my report an OO ALV, I want to save the layout and make it default.Please tell me how to do it.
    I am using the below code.
    *Call ALV
      CALL METHOD c_alvgd->set_table_for_first_display
        EXPORTING
          is_layout                     = gd_layout
          i_save                        = 'X'
        CHANGING
          it_outtab                     = it_ekko
          it_fieldcatalog               = it_fieldcat
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    even after passing i_save eq 'X', it is not showing save option in the layout.
    please help.
    thanks,
    Siddhartha Prakash

    Hi,
    You need to pass the call back program name also.
      CLEAR wa_variant.
      MOVE sy-repid TO wa_variant-report.
      CALL METHOD wcl_alvgrid1->set_table_for_first_display
      EXPORTING
        I_BUFFER_ACTIVE               = space
        I_BYPASSING_BUFFER            = c_x
    *    I_CONSISTENCY_CHECK           =
    *    I_STRUCTURE_NAME              =
        IS_VARIANT                    = wa_variant   "variant options
        i_save                        = c_x
        I_DEFAULT                     = c_X
        is_layout                      = wa_layout
    Thanks,
    Vinod.

  • When I right click on the image, my menu bar is missing the 'save' button for images, what can I do?

    It happend when I updated my Firefox to a newer version.

    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration

  • 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

  • Hide Adobe save button

    Hi,
    Does anyone know how to hide the save button on an Adobe form?
    The reason that I am asking is that we have a save button on a Web Dynpro that saves the document to a content server, we want to disable the save button in Adobe to stop users from saving to the local machine.
    I have looked at the javascript hideToolbarButton command but it seems that this needs to go into the config.js file.  This is not a solution as the save button is then not available to pdf documents opened outside of SAP.
    Any help much appreciated.
    Thanks,
    Ian

    Hi Chintan,
    Thanks for your reply. 
    I have read through the link but unfortunately it talks about hiding the toolbar, unfortunately this would not be a solution as we require the print option.
    The link also suggests using the app.hideToolBarButton but this is not possible as this setting is stored on an ini file on the users PC and would disable the Save button for all PDF documents (i.e. when the users opens a PDF form outside of SAP the save button will not be available).
    I am not sure if it is possible but I would like to just hide/disable the Save button?
    Many thanks for your help.
    Ian

  • Adobe form 'Save Button'

    I have generated pdf using smartforms in my SAP application. When this pdf is
    saved using 'Save' button, a default file name is coming which is not
    understandable.Here my question is, how to change the name dynamically when click save button.for
    example, if I open any purchase order pdf then i want to populate purchase
    order number as a file name.
    See the attachment.
    Saad al-mulhim
    Thanks,

    Good morning,
    this.dirty property was used in a document level script, I have removed this from the script and the save button has been restored.
    Thank you very much for your advice.

  • Set default filename for file save dialog on Save button click

    Hi,
    I am using AxAcroPDF (version 9.0) control to view pdf files in windows forms (C#). The pdf loads into the viewer in the form. Now, when I click on the Save button in the viewer, a Save dialog pops up with a default filename having complete path info.
    If I have loaded the pdf file into AxAcroPDF viewer with filename:
    "C:\Documents and Settings\KB_Kravi\My Documents\CustomerList.pdf"
    then in the save dialog, the default filename will be:
    "C_Documents_and_Settings_KB_Kravi_My Documents_CustomerList.pdf"
    Is there any option to set the default filename in the save dialog to some short name, instead of this lengthy name?
    Thanks,
    Ravi.

    Hi,
    I've found a solution.
    public void Open(string filePath)
    axAcroPDF.LoadFile(filePath);
    //this will set the correct name in the save file dialog.
    axAcroPDF.src = filePath;
    Thanks for your help.
    Freedon

  • How to use bdc code in a report for save button

    hi to all can anybody please give some hints that how can i place the BDC code for the save button to pass the values from the editable grid to the standard table here i am sending my code .please advice me.
    Moderator Message: Please post only relevant portions of your code. There is a 2,500 character per post limit.
    here the second grid is editable.and i have to make changes in the second grid and save it to the standard tables. please advice me resma
    Edited by: kishan P on Sep 13, 2010 3:59 PM

    Hi,
    I have done that many times. Create a button in the toolbar,say 'SAVE'. Write the code in the subroutine user command.For example :
    *&      Form  USER_COMMAND
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
            RS_SELFIELD TYPE SLIS_SELFIELD.
      DATA : REF_GRID TYPE REF TO CL_GUI_ALV_GRID.
      DATA: L_VALID TYPE C.
    *Code to reflect the changes done in the internal table
      IF REF_GRID IS INITIAL.
        CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
          IMPORTING
            E_GRID = REF_GRID.
      ENDIF.
      IF NOT REF_GRID IS INITIAL.
        CALL METHOD REF_GRID->CHECK_CHANGED_DATA
          IMPORTING
            E_VALID = L_VALID.
      ENDIF.
      CASE SY-UCOMM.
        WHEN 'SAVE'.
        PERFORM BDC."Write all you BDC code in this subroutine
      ENDCASE.
    ENDFORM.
    Hope this will help.
    Thanks & Regards,
    Rock.

  • Save button is not working for ONE CLICK ACTION

    Hi All,
    We have embeded a custom table view in a standard component.While we are editing the first row of the table view by ONE CLICK ACTION & pressing the SAVE button of overview page,then the record is saved in the database. But if we edit any row other than the 1st one,the save button is not working.
    We have used transaction context here for simple object.
    lv_tx_ctxt = lr_ent_bt->get_transaction( ).
    my_tx_context->add_tx_context( lv_tx_ctxt ).
    Please suggest how we can focus on the current line which we are editing & can save the record in database?
    Thanks.

    Hi Hakan,
    Probabaly this is not my problem. I know that how bt one click we can get the desired row.
    Let me briefly explain you my requirement and currently where I am stuck.
    I have a assignment block ( custom) in the main overview page with a custom table view ( ie in the view we are displayng entries in the table view ) and the user can press edit button on any row and that will open the particular row in edit mode . User will change the value in any of the columns and press save button on the main component and the custom changes will be saved in the database.
    Now the problem that we are facing is when we are chnaging the first row it si working but when we are doing chnages in the 2nd row or 3rd row changes are not saved ( not even in the table view that is getting displayed) .
    *Let me briefly tell you the approach that we took  . Since our table view uses a simple object  ( which is not a related object with BTORDER so we need to explicitly save the simple object entities to transaction context and for doing that we have redefined the eh_onsave method in the overview page) .
    *Now the save button is in overview page so to pass the entry from our custom table view to overview we are using custom controller . The custom controller 's collection wrapper only has the first entry of the table view custom_controller->collection_wrapper->get_next is failing which is the reason why the 2nd entry is not getting saved.
    Can you tell me how i can get all the table entries in my custom controller's collection wrapper?
    Let me know if you have any other questions.

Maybe you are looking for

  • I want to add 2nd hard drive to HP Pavilion dv7-7047cl laptop

    Where can i purchase a mounting kit and cable ( hard drive to mother board) to mount and hook up the 2nd hard drive? Thanks for your time, Cheers, Rob

  • DYNAMIC VARIABLE IN SELECT QUERY

    hi all, i m selecting a belnr from one table and want to fire another query on different table wherein this belnr falls somewhere in middle of the whole field. eg: wa-belnr = 4000 select * from cdhdr where objectclass = '%wa-belnr%. i want to select

  • When we go for Abobe forms

    Hi Friends I want to know when we can go for Adobe Forms? Means what the advantages of Adobe Forms over scripts/smartroms. Is there any scenorios where scripts/smartforms will lack to adobe froms. I need advantages of adobe forms comparing with scrip

  • Problems 10.5 & External FW Drive

    Just upgraded to 10.5 and my external firewire drive is not being recognized I have to turn Drive off then on for it to pop up on my desktop. I depend on my external to access my media iPhoto &iTunes Apple please Help

  • Session Timeout in Swings

    Hi, I have an urgent requirement in swings which is given below An application would have a 4 hour "timeout" that would automatically log the user off if there has been no activity in the application. The applicatioin would exit without saving change