Hiding Choose layout

Hi
In my ALV grid ( OOPS) I have hidden most of the tool bar except print and "choose layout" . I also want to get rid of "choose layout", cl_gui_alv_grid has a huge list of Attributes , however I could not find the right one for "Choose Layout'.
Can anyone please tell me what is the name to be included in the toolbar to hide "choose layout"

This one is used for Layout...
MC_FC_LOAD_VARIANT
Greetings,
Blag.

Similar Messages

  • Choose Layout button in ALV standard

    Hi abap expert,
    Is there any way to display a drop down list button for 'Choose Layout' which include the options (choose layout, change layout, save layout, manage layout) in just 1 button, instead of having the 'choose layout/change layout/save layout' in 3 different separated buttons. Is there any other FM besides 'REUSE_ALV_list_DISPLAY' I could use in order to display 1 combination button of 'Change Layout' while displaying the ALV report.
    Look forward to hear your advice. Thanks in adv.
    Rgds,
    fnr

    Hi Sharin,
    Thanks for fast feedback.
    I'd tried to use the IS_VARIANT parameter as well by passing the gs_layout (type disvariant). In gs_layout, I'd assign sy-repid in the gs_layout-report. But the 3 button of layout still come out in separated buttons, is it because I'm using the FM 'REUSE_ALV_LIST_DISPLAY'? Is there any other standard FM I could use which have GUI Status with 1 combination 'Choose Layout' button?
    Thanks.
    Cheers,
    fnr

  • ALV List Missing Status Menu (Sorting, choose layout etc)

    Hi,
    I developed a report with ALV List display. When I display the ALV List, why my status menu (normally contains sorting, export to local, choose layout and other buttons) that will appear on top of the ALV report is missing?
    I try to look for the ALV Function Module parameters, but seems non of it related.
    I developed my previous report, it do have the menu there. Just this new report is missing.
    Can someone tell me where to set or code?
    Thanks.

    Hi Irene,
    Please check your pf_status_set routine if you use FM REUSE_ALV_GRID_DISPLAY.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = sy-repid
          i_callback_pf_status_set = 'PF_STATUS_SET'
          i_callback_user_command  = user_command
          i_buffer_active          = space
          i_bypassing_buffer       = 'X'
          is_layout                = er_layout
          it_fieldcat              = er_fieldcat[]
          it_special_groups        = er_sp_group
          i_save                   = 'A'
          is_variant               = e_variant
          it_events                = er_events[]
        TABLES
          t_outtab                 = outtab.
    *  FORM pf_status_set
    FORM pf_status_set USING rt_extab TYPE slis_t_extab.
      DATA: rt_extabw TYPE slis_extab.
      SET PF-STATUS 'STANDARD' EXCLUDING rt_extab.
      SET TITLEBAR 'STANDARD'.
    ENDFORM.                    "pf_status_set

  • ALV DISPLAY-choose layout button

    Hi,
    i have an alv report which displays 10 fields from an internal table, now i need to add the choose layout which must include 5 fields other than the existing 10 fields and display the report, with what has been chosen.how can i do this?

    In addtion to Rav's reply u have to do the follwoing so taht u can save the layput
    The following is where a user can enter a display variant
    the no display can be used if the grid output is not to
    be controlled by the users variant.
    PARAMETERS p_layout LIKE disvariant-variant.
    DATA:     gd_layout    type slis_layout_alv.
      w_layout-grid_title = sy-title.
      w_layout-zebra      = 'X'
      w_layout-sel_mode   = 'B'.
      w_layout-cwidth_opt = 'X'
      w_variant-handle    = p_layout.
      w_variant-report    = sy-repid.
    call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
                i_callback_user_command = 'USER_COMMAND'
    *            i_grid_title           = outtext
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
    *            it_special_groups       = gd_tabgroup
                it_events               = gt_events 
                is_print                = gd_prntparams 
                i_save                  = 'X'
                is_variant = w_variant
          tables
                t_outtab                = it_ekko
           exceptions
                program_error           = 1
                others                  = 2.
      if sy-subrc <> 0.

  • Choosing layout when running a report in the background

    Hi Experts,
    I have the following question: when executing a report in background that doesn't have the layout variant as selection criteria, how can I choose which fields are displayed in the spool?
    I am particularly interested in the logistic reports: ME2N, ME2L, ....
    I am using SAP ECC 6.0.
    Kind regards,
    Francisco Melo

    I believe the process to do this is to:
    1)  Go to transaction SM36 to create a batch job. 
    2)  Enter a job name
    3)  Select "Step", specify the ABAP program name (for ME2M, this is RM06EM00), then type in the variant you wish to use
    4)  Save, then go to Start Condition and specify when you want this batch job to run, along with the frequency
    Edit - nevermind, I misunderstood the issue.  I am unsure of how to have the layout automatically populated.
    Edited by: Andy Slania on Jan 26, 2011 10:28 PM

  • Hiding the layout during printing

    Hi Experts,
    Is there any way to hide the layout during printing? I have developed a PDF form with complex layout. I want our Customers view the form in print preview and see that all the values are correctly aligned within the boxes before printing. But they print this form on a pre-printed paper (which already has the layout) so I want to make sure that only fields which are binded to a data item are printed and not the layout and static texts. Is this possible?
    Regards,
    Srini.

    Hi,
    Try this code:
    <object>.presence = "visible"; //this makes the object visible in the form
    <object>.relevant = "-print";    //this object will not be printed
    The relevant property indicates whether an object should appear when the form is printed.
    &#9679; +print (default for visible objects)
    Forces a particular object to appear when the form is printed,
    regardless of the object’s presence property setting.
    &#9679; -print (default for invisible or hidden objects)
    Forces an object not to appear when the form is printed,
    regardless of the object’s presence property setting.
    Regards
    Srikanth

  • Hiding product layout when gift voucher selected

    In the example below I am using the "retail price" in my product layouts, but I don't want to show that line when a product is a gift voucher. Don't be confused that I use retail price and case price interchangeably.
    I gave the line an id of "caseprice" and now I want to hide it whenever gift voucher is selected in the product details.
    I've included below what i've been working on....Can anyone see what i'm doing wrong here?  THANKS!
    <div class="shop-product-small">
    <h4>{tag_name}</h4>
    <div class="image">{tag_smallimage}</div>
    <ul>
        <li class="price">Price: <strong>{tag_saleprice}</strong> </li>
        <li class="retail" id="caseprice">Case price: {tag_retailprice} per bottle</li>
        <li class="custom2">{tag_custom2}</li>
        <li class="custom1">{tag_custom1}</li>
        <li class="quantity">Qty: <strong>{tag_addtocartinputfield}</strong> {tag_addtocart}</li>
    </ul>
    </div>
    <script language="javascript"><!-- 
    var caseprice = "{tag_giftvoucher}"; 
    if caseprice == "1") { 
         document.getElementById("caseprice").style.display = 'none';
    //--></script>

    Hi Oli,
    We need this too - did you have any luck?
    We are so confused as on our website we have no section to buy a gift voucher yet 2 customers have and have redeemed them?!?
    Cheers,
    DD

  • Choosing Layout Manager for a simple swing GUI application.

    I am about to design a swing application with following design. The main Frame will consist of two panels, the left one will hold a tree menu and the right one will display or remove other panels from the main Frame based on the tree menu item selection. I won't be using CardLayout, because when a new menu item is selected from the left tree, I will remove the existing panel from the right side (completely from the swing memmory) and load a fresh panel.
    I have used absolute positioning in the past and can use the same for this design too. But for the advantages of using a LayoutManagers instead, I am willing to use them(Layout Managers).
    I understand that the main Frame could have BorderLayout with the tree menu on the left, the appropriate panels can be positioned at the center.
    For the panels that are loaded on the right side of the Frame, I am not sure about which LayoutManager should be used (hence I am posting this question). The panel will compose of input components (labels, textfields, comboboxes...), properly formatted and buttons. I believe that I can use FlowLayout for positioning the buttons in the bottom of the panel, but I am not sure of which LayoutManager to use for input components.
    regards,
    nirvan.

    I would use a JSplitPane to separate the tree menu from the display panel with the display panel being static and a fixed size(you're won't be removing or replacing) and placing the app. panels that correspond to the selected item in the menu into the "display panel".
    //             //     display          //
    //   tree      //        panel         //
    //   menu      //                      //
    /////////////////////////////////////////

  • How to choose Application layout in flex?

    Hi Everyone ....!
    I have confused to select the layout in flex 3.0.There are three type of layout having absolute,horizontal and vertical. Which one is best? and How to choose layout? and please Explain about layout???/...
    Thanks in advance.........
    Regards,
    Selvendran.A

    You mean if you want to have a user-resizeable application?
    If so, all 3 layouts work.
    If you can tell us what you want to build very briefly, we can help you pick a layout, however, as I said, this isn't super-important and you can change this as your application begins to take shape.
    I generally use a vertical layout for my applications for example, but not because it's best, none of the 3 can be considered that, simply because I have more vertical elements than horizontal ones or that need to be placed in specific places given (x,y).

  • Looking for a way to directly choose keyboard layout.

    I'm looking for a way to organise separated keyboard keys combinations (or single keys - the best) for every keyboard layout. I want to be able to choose layout directly. One unique key (keys combination) for each layout.
    One way may be smth. like setting a key to execute a command:
        setxkbmap -layout "us,ru"
    and
        setxkbmap -layout "ru,us"
    For keys setup in OpenBox may be used obkey, for example.
    In general it works. But in such a case, when not latin/english layout is the first one, or even single one, in the command's layout list, applications will not react on Ctrl-S, Ctrl-Z and so on. It do not depend on current layout, it depend on the first entry in last sequence to be used in the layouts list.
    I'm shure there are some other better ways to implement the idea. Please, give me advise: what a tool, or tool set to study and use?

    Stack wrote:
    the sad clown wrote:
    (just make sure that the changed layout doesn't break your keybind):
    setxkbmap -rules xorg -model pc104 -layout us -option
    Just change the layout parameters (and any other changes you need) for as many layouts as you want.
    Unfortunately, if the single layout, or first in the list layout is not 'us', but my national, GUI applications will stop to react on Ctrl-S, Ctrl-Z and similar things.
    Can it be fixed?
    Is it that Ctrl-[S,Z] don't work or that they change locations because the keyboard layout has been modified?  The first is a problem, the second is to be expected if you are changing the keyboard layout.
    Stack wrote:
    As I catch, for testing there is no difference between setxkbmap and xorg.conf. Also, there is no way to specify there layout specific switch combinations. In coma separated list of values for XKbOptions there is not binds to corresponding position in layouts list. All the combinations will do the same - cycle between layouts. http://www.xfree86.org/current/XKB-Config2.html#5
    Layout itself and layout switching mechanics are too different objects (or classes) in terms of programming. I'm not shure I'll be on a right way, if I'll decide to dive deeply into syntax of '/usr/share/X11/xkb/rules/xorg' and '/usr/share/X11/xkb/symbols/*' (mentioned at https://wiki.archlinux.org/index.php/Co … _xorg.conf ) and hacking of ready to use layouts. If I'm searching for a way to switch them only. Am I right?
    My suggestion isn't that you use the XkbOptions switch since this won't work for what you are asking.  Instead, I'm recommending you use a little keyboard shortcut utility, xbindkeys and use that to issue the setxkbmap command I mentioned earlier.  All you have to do is bind the shortcut to keys that don't change across keyboard layout changes (if you have a number pad, an easy solution is to use a modifier + one of these keys as it won't change).  This isn't a toggle like the xorg.conf edit, but can switch to any layout you choose to bind in any order you choose to perform.

  • Error while saving layout  for report

    Using BIEE 11. (Win64 Server 2003 R2 - russian edition)
    When designing layout for report and putting text field (dos'nt matter - russ or engl) - I get an error during saving - 'Error when saving layout' (trunslated from russ)
    This happens only when putting text field, with other types of filds all is ok!
    Where can I find more detailed info about my error?
    Also when I choose layout from existing e.g. - Dashboard.xpt and save - I get the same error. When I cut off all text fields from this template - I can successfully save it.
    Thanks

    Check the OSS note 550760 regarding the issue.

  • How to populate the logical_group field in V_LTDX (table for layouts)?

    Hi,
    Scenario:
    I have implemented the ALV using CL_SALV_TABLE. In the grid we have a 'Choose Layout' button where we have the options of choose, change, manage etc. the layouts. If we create a layout, the layout is saved in the table LTDX(view: V_LTDX).
    Issue:
    How do we populate the 'Logical_group' field in the table while creating/changing the layouts?
    Please suggest..
    Regards
    s@k

    Solved..:)
    Solution:
    While creating the ALV grid, use the method 'get_layout' of the class CL_SALV_TABLE and get the reference of the layout in a reference variable.
    Data:
          gw_key       TYPE            salv_s_layout_key.
      gr_layout = gr_grid->get_layout( ).
      gw_key-report = sy-cprog.
      gw_key-logical_group = gc_log_grp." Pass the logical group here say logical group: 0001, 0002, etc. for each ALV
    So, whenever you create/ change a layout on the ALV grid, the system automatically passes this logical group and saves it in the table LTDX.
    Regards
    s@k

  • Change slide size in 2 slide/page layout?

    Several folks indicated that you can use the "layout" view to produce a handout with 2 slides per page. But there is still quite a bit of white space. How can you increase the slide size on the page to make them bigger? Also, is there a way to add page numbers to the page (I already have slide numbers).

    Rocketscience,
    welcome to the Keynote Discussions.
    Well, I think the border around the two slides I print is just enough to punch and file the paper.
    Oh, wait, I'm using [DIN] A4 format. Well, try this:
    * In the print dialog choose Layout from the "Copies & Pages"
    dropdown box and set "Pages per Sheet" to 2
    (you know that but I repeat it for other readers)
    * Choose Paper Handling from the same dropdown box and mark
    "Scale to fit paper size:". Select A4 from the corresponding
    dropdown box (yes, even if you don't use A4 format). Unmark
    "Scale down only".
    * Print you slides.
    There's no possibility to add page (sheet) numbers in the print dialog. You could prepare a file in Keynote or Pages that only prints a page number and print these numbers in a second run on you handouts. Not very elegant but maybe better than to paginate with a counter

  • Issues in Change layout Variant of ALV grid

    Hi all,
    I am using a ALV gird to display the data with some table column. I am able to save/ choose the Layout variant. I choose the existing layout varaint it works fine but when I change the column fields display from selected layout then it will immidiately looks fine, but if I perform some event, it goes to the initial stage of the choosed layout varaint.
    I can solve this issue if I clear the Variant from the is_variant (of set_table_for_first_display method). So if I can find the fieldcatalog for layout Variant, then it will solved very easily.
    Please suggest, if you have any idea on this.
    Thanks,
    Sanket Sethi

    I got the solution. You can find the Variant field catalog by using Function module 'LVC_VARIANT_SELECT'. You can set the dialog box based on your requirements as well. So closing this thread. Thanks..

  • Layout and DPI

    Hello,
    I know how to change text padding for different dpi with @media tag in css file.
    I konw how to choose image with MultiDPIBitmapSource
    Layout properties like gap, padding... are not styles, not bitmapSource
    How can I simply choose layout visual properties like gap and padding based on DPI ?

    Those values should be applied in a skin. Use the dpi selector in CSS to choose an appropriate skin for the DPI, or create a skin that implements various custom styles to determine the layout values.

Maybe you are looking for

  • Burn issue

    I am trying to burn a cd but I keep on getting an error...#4450.  Help!

  • ERROR" unable to convert the service as an ALE logical system"

    Hello All, In SOAP to IDOC scenario I tested the webservice with the client tool. Its hitting the integration engine but its throwing up an error" unable to convert the service as an ALE logical system". How can I maintain a logical system for a serv

  • [Solved] NameError: name 'clawsmail' is not defined

    Hello, I stumble on this problem and I logged a bug report to clawsmail.org. However I could find the solution myself import clawsmail # here start your python script and use the clawsmail functions It was something that one couldn't obviously think

  • Transfer or sync keychain access btw OSX/IOS 6?

    Can you transfer or sync keychain access between OSX Snow Leopard and IOS 6? How?

  • Employee has a family tie to another employee

    Is it possible to record in SAP HR where an employee has a family tie to another employee? Corporate policy at my company is that there should be no direct line relationships, so a wife cannot report into her husband.  Whilst at the point of recruitm