Saving Option in Change layout TAB

Hi ,
I am taking Sales order list in VA05
I clicked on change layout tab n Selct field as per my requirements
but Now I want to save that layout but I am not getting any saving option
in menu bar Settings - layout - saving this option is in grey
How to activate this option?
Regards,
Akshay

Hi,
check this thread, you have only answered this questions answer
VA05 :  Save Layout Option is deactive..
Thanks,
Raja

Similar Messages

  • Using Change Layout Tab on ALV to Export to Excel

    Hi Forms!
    I have an ALV grid that I export to excel to allow users to manipulate the data exported further.
    i do this by clicking change layout -> View -> 'Microsoft Excel' -> click on the template you want to use and click the check mark to export.
    My problem is I have a header on the ALV that display's the user selection screen options... all my data shows in excel correctly except that my selection screen header which I would expect in the 'Raw Header' Tab in excel.
    If I export to excel using excel export button the header shows up, however this does not help as we like using the pivot table setup from the change layout option.
    thank you,
    Here is my code for producing the header...
    ATA: lo_header  TYPE REF TO cl_salv_form_layout_grid,
            lo_h_label TYPE REF TO cl_salv_form_label,
            lo_h_flow  TYPE REF TO cl_salv_form_layout_flow,
            lv_i TYPE i,
            lv_mtart LIKE LINE OF s_mtart,
            lv_auart LIKE LINE OF s_auart,
            lv_bkbez LIKE LINE OF s_bkbez,
            lv_lines TYPE i.
    *   header object
      CREATE OBJECT lo_header.
      lo_header->set_column_count( 10 ).
      lo_h_label = lo_header->create_label( row = 1 column = 1 ).
      lo_h_label->set_text( 'Selection Screen Values' ).
    *   information in tabular format
      CONCATENATE 'Dates: ' s_date-low  ' ' ' to ' s_date-high ' ' INTO l_text RESPECTING BLANKS.
      lo_h_flow = lo_header->create_flow( row = 2  column = 1 ).
      lo_h_flow->create_text( text = l_text ).
      CONCATENATE 'Plant: ' p_werks ' ' INTO l_text RESPECTING BLANKS.
      lo_h_flow = lo_header->create_flow( row = 3  column = 1 ).
      lo_h_flow->create_text( text = l_text ).
      CONCATENATE 'Costing Variant: ' p_klvar INTO l_text RESPECTING BLANKS.
      lo_h_flow = lo_header->create_flow( row = 4  column = 1 ).
      lo_h_flow->create_text( text = l_text ).
      CONCATENATE 'Costing Version: ' p_tvers INTO l_text RESPECTING BLANKS.
      lo_h_flow = lo_header->create_flow( row = 5  column = 1 ).
      lo_h_flow->create_text( text = l_text ).
    *there can be 1 or many Material Types need to check
      DESCRIBE TABLE s_mtart LINES lv_i.
      IF lv_i > 1.
        lv_lines = 1.
        CONCATENATE 'Material Type(s): ' s_mtart-low INTO l_text RESPECTING BLANKS.
        lo_h_flow = lo_header->create_flow( row = 6  column = lv_lines ).
        lo_h_flow->create_text( text = l_text ).
        LOOP AT s_mtart INTO lv_mtart .
          IF lv_lines > 1.
            lo_h_flow = lo_header->create_flow( row = 6  column = lv_lines ).
            lo_h_flow->create_text( text = lv_mtart-low ).
          ENDIF.
          lv_lines = lv_lines + 1.
        ENDLOOP.
      ELSE.
        CONCATENATE 'Material Type(s): ' s_mtart-low INTO l_text RESPECTING BLANKS.
        lo_h_flow = lo_header->create_flow( row = 6  column = 1 ).
        lo_h_flow->create_text( text = l_text ).
      ENDIF.
    *   set the top of list using the header for Online.
      cr_content = lo_header.

    Hello Re_flex....thanks again but I am missing a step here as I was able to hide the column by right-clicking but when I click on the layout there is no layout that I can select. Do you know if these layouts are set in config or not as my layout setting displays 'X' user specific or 'A' ALL but when I select these nothing is displays and when I save I get a message back 'No selection'

  • No Transport option in Change list tab

    Hello All,
    The option transport is missing in tab change list for both IR and ID. We have created the track, maintained the systems in the NWDI but still no luck. We have also included the SC SAP-INTDIR 3.0 for both the tracks (i.e.) IR and ID. Am I missing any configuration? Kindly suggest
    Regards,
    Anand

    Hi,
    In XI (in IR & ID) you will not find the transport option in tab change list. If you what to tansport any namespace or any particular object then put the mouse on that and right click then press Export and follow the instructins. Finally it will create a .tpz file. You have to take the help of BASIS team to tranport this file, once the file will be trasported into Quality or Production then you can Improt it from menu Tools --> Import desigen objects..
    Regards,
    Sarvesh

  • Changing layout of ALV to excel and displaying the data there

    Dear All,
    My requirement is that I have to develop an ALV report, and also plot the graphs for the same.
    I need different types of graphs, so I have searched on SDN, and I found out a blg:-
    "Report with a Graph.. An Approach!"
    Here is what the person has done:-
    I developed a simple ABAP report using ALV and just dumped all my data on it.
    After this I downloaded the Standard Excel template available in the ALV.
    Defined my own worksheets in this template, wrote some macros to pick up the data from the “RawHeader” sheet, which is available by default and will contain the ALV data.
    I inserted 1 chart in this Excel template. In this chart I used the same chart type as was being used by the user for his graph. Just right clicked on the Graph area and made the changes in the source data and made it point to the sheet containing the final data.
    That’s it my job is almost done.
    After this uploaded this template back into the report output through
    the layout settings->Change Layout Tab.
    Save it as a variant and made it a default. (Do not default it if you have more than 1 user and more than 1 template…. Select the appropriate variant for the appropriate user and then display)
    Well, this also was not that easy as I had thought. I landed up into 1 trouble.
    In my report the number of columns displayed was not constant and kept changing based on the input. This fact was taken care by designing a variable field catalogue. But now I had gone past the simple ALV display and was giving the output in an Excel sheet using a pre-defined template. Well, I immediately found a solution to this with the set_frontend_fieldcatalogue method of CL_GUI_ALV_GRID class and fixed the field catalogue every time after calling the set_table_for_first_display method. This solved most of my problems, which were not many though.
    Now here are my issues:-
    I have developed the ALV report, and I have also changed the layout to excel.
    But, I am unable to get the ALV Report data in the RawHeader Sheet, which is available by default.
    Could anyone please guide me through this method??
    It is urgent.
    Points are assured for helpful answers.
    Thanks and regards,
    Prerna

    Hi Satya Priya,
    Do I have to create my own template, or the Standard ones available will do?
    HEre is what I do:-
    Once I get my ALV output, I goto Change LAyout->View tab.->Prefered view->Microsoft Excel.
    Here I get a list of available excel templates There are 2:-
    sap_mm.xls, and sap_om.xls
    I select one of these, and the excel spreadsheet is displayed on the ALV screen.
    But the re is another button, "Upload Document to BDS".
    Do I have to upload one of the above templated to BDS?
    And please tell me in detail, what is BDS???
    Thanks for your help, and waiting for reply,
    Prerna

  • No able to see edit label option in Layout tab

    Hi All,
    I am trying to edit properties of input fields. as per SAP help and documents, we get option of edit label in layput tab, and then we get to see general and other catagory of properties.
    But i am not able to see this option, i can see Rename, Select all, Bring to back, bring to up otions only.
    Can you please suggest what is missing here. We are on SP14.
    Thanks for your time,
    regards,
    Sudhir

    Thanks Deep,
    I am trying to use a dropdown for one on input fiels. But in desginer tab, there is no option to change this properties of field.
    According to one of Sap help doc, i should be able to do it using edit label option, in layout tab. But it's not showing.
    I am using VC 6.00.0060 .. i dont think there is any patch applied on this.
    regards,
    Sudhir

  • I cannot seem to find an option, the change what page a new tab comes up as.

    The square button with a +, used for opening a new tab. It brings me to facemoods search. How do i change this, to... perhaps Google.
    I don't see an option to change this in the options.

    The issue seems to have been resolved.
    ZacheryGangrel, please close the thread so that 'solution chosen by....' line appears below the first post.

  • I am trying to speed up my video clip in imovie 09 but it doesnt give me the option to change the speed on my video adjustments clip tab..Help me please..

    I am trying to speed up my video clip in imovie 09 but it doesnt give me the option to change the speed on my video adjustments clip tab..Help me please..

    If you right click on your clip, does it offer to Optimize Video? If so, after you optimize you can change the speed.

  • Would like to change my home page. I click on options and my general tab is blank with only the ok and cancel buttons showing. How do I fix this?

    In options, under the general tab, it is blank all except the ok and cancel buttons. I can't change my home page. Please help.

    Hi cor-el,
    Thank you for your reply. Before I had seen your reply. I went into options and under general, all of a sudden it showed what should be there. I closed browser and did it again and it didn't show. It has been blank for roughly two months. Just seems funny that I ask a question and after all this time of not showing what it should, it does, to only be blank again.
    I have also been trying to update the flash player. That comes up completely blank as well with nothing showing at all. I did this several times the day before I posted my question. That same day I also hit the reset button for firefox when I was having trouble trying to update the flash player.
    I did as you said to do. Nothing has changed. Is there something else that I could try?

  • When i click new tab i want it to be blank, i don's see an option to change this

    everytime i click on new tab this "babylon" search thing comes up. i never asked for this i dont know where it came from. i tried changing it. there are no option to change it. i uninstalled and reinstalled mozilla still same problem. please help. i want all my tabs to start with google how it used to up until today.

    A new tab opens by default as a blank tab (about:blank).
    If that isn't the case then an extension has changed that behavior.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Installing Firefox 4 changed my tabs options so when I start load it starts a new session. I want to recover my tabs from my previous session. How?

    Installing Firefox 4 changed my tabs options so when I loaded, it has started a new session and not loaded the tabs I had open when I closed my last session.
    I want to recover my tabs from my previous session. Possible?
    My previous session had been open for over a week so this history is basically useless as it's cluttered with thousands of pages.

    # Press Alt+T
    # Click on Options
    # Go to General Panel
    # Under the category When Firefox Starts select "Show my windows and tabs from last time"
    ''<hr>Note: If anyone's reply has solved your problem, then please mark that reply as "Solved It" to the right of that reply after logging in your account. It will help us to concentrate on new questions.''

  • Hello, I am doing a layout in arabic language, and I am missing option of change direction in paragraph. I read on forum that I am supposed to download some kind of an plug in or version of indesign for arabic language support, but I just don't know what

    Hello, I am doing a layout in arabic language, and I am missing option of change direction in paragraph. I read on forum that I am supposed to download some kind of an plug in or version of indesign for arabic language support, but I just don't know what to download.
    Can you tell me step by step what to do and download.
    Thank you very much!

    InDesign is from a technical viewpoint a Plugin Activator.
    Every function is a plugin.
    With CC and higher you can change the language in the CC app preferences.
    When you change the language, additonal plugins, necessary for that language are installed, with the MENA (Middle East North Africa) versions RTL functionality is added into your primary version.
    InDesign chooses to start the program in the same language as you OS is set up, RTL functionality appears translated into your normal User Interface.
    After installing a MENA version you can switch back to your main language.

  • Is there an about:config option to change FF's default action when closing a tab so that it displays the previous tab rather than the next tab?

    With the new 3.6 tabbing behaviour (new tabs open to the right of the current tab, rather than at the end of the tab list), the old default behaviour when a tab is closed is no longer appropriate. Instead of displaying the next tab after the one that was closed, FF should display the previous one. Is there an about:config option to change the default behaviour upon closing a tab?

    Try one of these:
    *Tabberwocky: https://addons.mozilla.org/firefox/addon/14439
    *Tab Mix Plus: https://addons.mozilla.org/firefox/addon/1122
    *Tab Control: https://addons.mozilla.org/firefox/addon/1480

  • Classic layout does not an available option to change on my mac mail 4.6 to fix my viewing to the old layout

    "Classic layou"t is not an available option to change on my mac mail 4.6 to fix my viewing to the old layout

    I just solved my problem based on the clues given by the 2 responses I recieved.  I realized that I do indeed have Snow Leapord and it was as easy as grabbing the margin bar at the base of the mail display screen and locking the crosshairs on the bar and dragging it up to the north if you will and the bottom pane was then once again revealed.  I guessing my kids mucked it up.  Thanks for the support. 
    bdhenk - out

  • OMNIPORTLET:where the options of the column dropbox (layout tab) come from?

    In the layout tab of the omniportlet I work on, there are several options in the column dropbox.
    I would like to add some new ones. But I cannot figure out where the omniportlet gets the options from.
    PS: my data source is "content", if this can help
    Thanks a lot in advance

    Hi Faisal,
    IN APPROVER SCREEN:
    The values in the system drop down is getting poulation using the method : INIT_SYSTEMS in COMPONENT CONTROLLER of webdynpro component GRAC_UIBB_ACCREQ_APPROVAL .
    IN REQUESTOR SCREEN:
    Refer to method INIT_SYSTEMS( ) in COMPONENT CONTROLLER of webdynpro component GRAC_UIBB_RISK_VIOLATION.
    Hope this will help you.And take the help of ABAP'er who can help you with debugging "why system's are not getting populated except ALL ".
    Thanks
    KH

  • The Visible attribute on alv grid column is not changed after Change Layout

    Setup:
    I have a program that displays output in an ALV grid (using cl_salv_table).
    The ALV grid is displayed within a custom control on a subscreen.
    I have 4 subscreens being used on a tabstrip control.  So I have 4 ALV grids total (one on each subscreen).
    On each ALV grid, I have set the set_layout_change function to true so that the user can hide and unhide columns etc. on each grid via the button on the alv grid toolbar.
    I also allow the user to dowload the contents of all 4 grids to excel.  To do this I have a custom button that when clicked goes to each ALV grid - gets the column metadata (via cl_salv_columns_table-get() ) and checks the visibility to determine if the column should be downloaded or not (via cl_salv_column-is_visible() ) to excel.
    The Problem:
    As I said I have 4 grids being displayed via a tab control.  Let's say the user is on tab 1 and unhides some columns on the alv grid 1 via the Change Layout... button.  And then the user navigates to tab 2.  If they click the download button at that point - when the download code is run and it checks the visibility of the columns on alv grid 1 - the changes that were made via the Change Layout... button have not synchronized yet.  When I call is_visible() for a column that was unhid it still comes back as false. 
    The only way I have found to remedy this is to make the user click on a button on the alv grid's toolbar before navigating to a different tab to force the synchronization between the changes made and the backend column metadata.  However, this is not the best option and requires training for the user that they have to do this for the download to work correctly. 
    The Question:
    1) why is the Change Layout... button not automatically synchronizing the changes it made to the back end?  Is there a way to make it do this?
    2) OR, is there a way that I can force the synchronization within the code and not force the user to click a button on the alv grid?  If there is a way to force the synchronization - where do I put that code?  As far as I can tell, when I switch between tabs - I am unable to catch that action in my PAI events.
    Thanks in advance for any help.

    I was able to resolve this issue with a satisfactory solution.
    In my program I had a local class definition to handle the grids' events.  When the synchronization wasn't working I only had two events defined: for link_click and added_functions. 
    I created another definition for event after_salv_function:
                   on_after_salv_function for event after_salv_function of cl_salv_events importing e_salv_function
    There is no code in the method implementation - but adding this event handler now causes a synchronization to occur after the Change Layout is done.

Maybe you are looking for

  • View videos on monitor

    How do I connect my iPhone 3GS to my laptop and then display on an external monitor?

  • Sony HDRXR150 won't connect to iMovie 8 PLEASE  HELP

    I'm about to throw in the towel and forget camcorders that will connect to my Intel macbk Pro ('08) iMovie. Been researching this for 3 weeks and was told directly by Apple tech that any using formats .mpeg,.hdv or .dv would connect immediately to iM

  • A Question for Adobe

    I'm wondering if you guys could help us out by publishing a spread sheet of some sort which guide us to the exact targets and shooting sequence. This might be organized with inputs such as lens focal length(Or range), sensor size/geometry and outputs

  • EAP-TLS with IAS

    Hi, has anyone got some good documentation on setting up EAP-TLS with windows 2003 Active Directory/CA, IAS and Cisco AP1200. Cisco ACS 3.3 does not support NTLMv2 so I have to use IAS. Any suggestions?

  • Can't turn on I cloud keeps saying check email to validate . Not got the e mail.

    Can't get I cloud.keeps saying check email to verify account .have not got any emails I think it as been deleted.