How to Suppress Find Variants screen when pressing variant button

Hi Experts,
   I have a problem when i am pressing the variants button in the selection-screen of a report, Find Variants subscreen is coming with parameters Variant, Environment,  Created by, Changed by and Original Language.  My requirement is to suppress this Find Variants screen. How can it possible please suggest.
Cheers,
Bujji.......

DATA: IT_EXTAB  TYPE SLIS_T_EXTAB.
DATA: WA_EXTAB LIKE LINE OF IT_EXTAB.
WA_EXTAB-FCODE = 'APEN'.
APPEND WA_EXTAB TO IT_EXTAB.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_BUFFER_ACTIVE          = ' '
      I_CALLBACK_PROGRAM       = G_PROGRAM
      I_CALLBACK_PF_STATUS_SET = G_PF_STATUS
      I_CALLBACK_USER_COMMAND  = G_USER_COMMAND
      IS_LAYOUT                = GS_LAYOUT
      I_SAVE                   = 'X'
      I_GRID_TITLE             = G_TITULO
      IT_FIELDCAT              = I_FIELDCAT
      IT_EXCLUDING             = IT_EXTAB
      IT_SORT                  = GS_SORT[]
    TABLES
      T_OUTTAB                 = OPERATIONS_DATA
    EXCEPTIONS
      PROGRAM_ERROR            = 1
      OTHERS                   = 2.
IT_EXCLUDING = IT_EXTAB is the key for exclude buttons -:)

Similar Messages

  • White screen when pressing home button and getting text

    Strange thing, hopefully software bug. I press the home button to check time and all that shows is a white screen. It's not the white screen of death because I can simply press the sleep button and then go straight back to what I was doing, pressing home button, etc. and it's fine. I've even taken a screen shot of it with iPhone. All that appears is my true wallpaper, as if it didn't know it wasn't already showing it. Also, it's very random. I can't reproduce. It's pretty minor as I can quickly getout of it but I want it clean.
    I've restored, restored as new, reset, turned on/off, everything I can think of. Any ideas?
    I also have the speaker distortion bug many are talking about (blown speaker sound).
    I have a genius bar appointment Sunday so I'm curious what they say.

    I suggest going through the usual troubleshooting steps:
    1. Reset the phone by pressing both home and sleep/wake buttons until the Apple logo appears (ignore red slider).
    2. Setting > General > Reset > Reset All Settings
    3. Restore in iTunes using a backup.
    4. Restore as a new iPhone
    5. Take it to the Genius Bar.

  • How do I find the screen with my personal iPod (my name's iPod) so I can download from my purchased or free songs/pods from my computer? My iPod has opened to that for 3 years and this week I can't find it: not on purchased page or on Apple store page.

    QUESTION from an American in India:
    How do I find the screen with my personal iPod (my name's iPod) so I can download from my purchased or free songs/pods from my computer? My iPod has opened to that for 3 years and this week I can't find it: not on purchased page or on Apple store page.

    See:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • How do I find offending photo when there is a problem uploading photos to order prints?

    How do I find offending photo when there is a problem uploading photos to order prints?

    What is the problem? What version of iPhoto? Of the OS? Try safe mode
    LN

  • TS2755 How can I lock my screen when I'm on the phone? My cheek keeps hitting the mute button.

    How do I lock my screen when I'm on the phone so my cheek dosen't hit the mute button accedently?

    The screen should be automatically locked by the proximity sensor when you put the phone in speaking position. Make sure that there is nothing blocking this sensor (like a case for example).

  • How to Commit before Insert Row when Press Create Insert Button ?

    Hi all;
    I'm Using JDev 11.1.1.2.0
    How to Commit before Insert Row when Press Create Insert Button in ADF11g?
    <af:commandButton actionListener="#{bindings.CreateInsert.execute}"
    text="CreateInsert"
    disabled="#{!bindings.CreateInsert.enabled}"
    id="cb8" />
    best regards;

    You need to do a custom method eather in managed bean or in Application module to do that.
    in managed bean it would be something like:
    public void CommitAndInsert(ActionEvent actionEvent) {
    OperationBinding opCommit = ADFUtils.findOperation("Commit");
    opCommit.execute();
    OperationBinding opCreateInsert = ADFUtils.findOperation("CreateInsert");
    opCreateInsert.execute();
    In page bindings Commit and CreateInsert must exist
    then the button actionListener will be
    <af:commandButton actionListener="#{backing.CommitAndInsert}"

  • How to when press the button and can change the value in the table?

    this is my code so far with a table and a button..how can i make it when press the button and the data in table change..
    * SimpleTableDemo.java is a 1.4 application that requires no other files.
    import java.awt.BorderLayout;
    import java.awt.Button;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    public class SimpleTableDemo extends JPanel {
    private boolean DEBUG = false;
    private JPanel button;
    private JButton enter;
    public SimpleTableDemo() {
    super(new BorderLayout());
    //button.setBackground(Color.pink);
    //setForeground(Color.pink);
    String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    Object[][] data = {
    {"Mary", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Knitting", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Philip", "Milne",
    "Pool", new Integer(10), new Boolean(false)}
    final JTable table = new JTable(data, columnNames);
    table.setPreferredScrollableViewportSize(new Dimension(500, 70));
    if (DEBUG) {
    table.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    printDebugData(table);
    //Create the scroll pane and add the table to it.
    JScrollPane scrollPane = new JScrollPane(table);
    enter = new JButton("Press me");
    //Add the scroll pane to this panel.
    buildButton();
    add(scrollPane, BorderLayout.NORTH);
    add(button, BorderLayout.CENTER);
    private void buildButton(){
    button = new JPanel();
    button.add(enter);
    private void printDebugData(JTable table) {
    int numRows = table.getRowCount();
    int numCols = table.getColumnCount();
    javax.swing.table.TableModel model = table.getModel();
    System.out.println("Value of data: ");
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + model.getValueAt(i, j));
    System.out.println();
    System.out.println("--------------------------");
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame = new JFrame("SimpleTableDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Create and set up the content pane.
    SimpleTableDemo newContentPane = new SimpleTableDemo();
    newContentPane.setOpaque(true); //content panes must be opaque
    frame.setContentPane(newContentPane);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    Cross-post:
    http://forum.java.sun.com/thread.jspa?threadID=676105

  • How Do I Find My Screen Manufacturer?

    Hey everyone,
    I have MBP w/Retina Display and my display had a dead pixel so i took it to Apple Store and they replaced with new screen. But i just wonder how do i find my screen manufacturer?
    Os : 10.9.4
    Model : Macbook Pro Retina 13-Inch Late 2012
    So i tried to below code and i got nothing. Is there any other way to find out to leaner manufacturer?
    ioreg -lw0 | grep "EDID" | sed "/[^<]*</s///" | xxd -p -r | strings -6
    @.`0 6
    Color LCD

    I would like give just a little more information than what the link describes.
    The screenname is something that you would select for your self.  This is how that specific www.eprintcenter.com account will be identifed in the forums if you were to post with that account.
    It would need to be unique from what someone else has.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • How do I find installer? When I try to install downloads, the box says that I do not have the Installer I need.

    How do I find installer? When I try to install downloads, the box says that I do not have the Installer I need.

    If it's updates through the Office auto-updater that are having problems, that's probably an issue you'll need to take up on Microsoft's support site. If you're having problems installing Office from scratch and it's saying it can't find Installer, you may need to repair your hard drive. More help will probably be obtained if you post in the Mac OS X 10.6 forum; this forum, where you originally posted, is for help with the Communities themselves.
    Regards.

  • How do I block my screen when I take a call or make a call?

    each time I take a call my ear touches the screen and either places my caller on hold or places them on speaker phone.  How do I block my screen when I take a call or make a call?

    In addition to Teaboy1748's suggestion, do a search in BlackBerry World for an app called TalkLock.
    Cheers.
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Hi! Stupid questions, but how do i find my pictures when logging in to icloud?

    how do i find my pictures when logging in to icloud?
    I have an macbook air and a iphone 4. I have chosen automatically upload of the pictures to icloud, but when i log in to icloud i can't find out where my pictures are.
    I'm pretty new at this

    The following is from this Apple document: iCloud: Photo Stream FAQ
    My Photo Stream
    When you take photos on an iOS device, or import photos from your digital camera to your computer, My Photo Stream can automatically upload your new photos to iCloud and push them to all of your other devices. 
    When do photos upload to My Photo Stream?
    How long are My Photo Stream photos stored in iCloud?
    The photos you upload to My Photo Stream are stored in iCloud for 30 days to give your devices plenty of time to connect and download them.
    How many photos are stored in My Photo Stream on my devices and computers?
    iCloud pushes all your photos to the My Photo Stream album on your devices and computers, and manages them efficiently, so you don’t run out of storage space.
    Your iOS devices keep a rolling collection of your last 1000 photos in the My Photo Stream album. From there, you can browse your recent photos or move the ones you like to your Camera Roll or another album to keep them on your device forever.
    Since your Mac and PC have more storage than your iOS devices, you can choose to have all of your My Photo Stream photos automatically downloaded. In iPhoto or Aperture preferences on your Mac, be sure to select Photo Stream > My Photo Stream > Automatic Import. All of your photo stream photos will be imported into your Events, Projects, Photos, Faces, and Places folders in iPhoto or Aperture. On your PC with Photo Stream enabled in the Control Panel, all of your photos will be imported into C:\Users\<user name>\Pictures\Photo Stream\My Photo Stream.
    OT

  • How can i find my ipod when i dont have serial number

    how can i find my ipod when i dont have serial number

    What To Do If Your iDevice or Computer Is Lost Or Stolen
    If your Mac, iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should do in advance - before you lose it or it's stolen - and some things to do after the fact. Here are some suggestions:
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T, Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. Lost or Stolen iPhone? Here’s What to do
      6. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      7. Find My iPhone
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on MobileMe
      3. OS X Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)
    Third-party solutions for computers:
      1. VUWER 1.5.4
      2. Sneaky ******* 0.2.0
      3. Undercover 4.7
      4. LoJack for Laptops Premium Mac
      5. STEM 2.1
      6. MacPhoneHome 3.5

  • My mini ipod appears off and not respond to any commands when pressed the buttons to reset, apple logo appeared and then the apple support site and it shuts down. already tried all the steps, but none worked, and when I plug it into my computer it does no

    My mini ipod appears off and not respond to any commands when pressed the buttons to reset, apple logo appeared and then the apple support site and it shuts down. already tried all the steps, but none worked, and when I plug it into my computer it does not appear in the iTunes bar. what do I do?

    If MacKeeper corrupted the Recovery partition then even I underestimated its potential for damage. Garbage "cleaning" apps will cause misery but I have not found that the Recovery partition to have been affected by using MacKeeper or anything like it. I doubt that it did so, but I have learned not to underestimate the potential for such things to result in system corruption.
    Before concluding your Mac has a hardware failure, try booting OS X Internet Recovery by holding command option r on startup (three fingers). That will force your iMac to bypass the Recovery partition altogether, and convey the ability to create a new one.
    An Internet connection will be required (wired or wireless).
    At the Mac OS X Utilities screen, select Disk Utility. Select your startup volume (usually named "Macintosh HD") and click the Repair Disk button. Describe any errors it reports in red. If Disk Utility reports "The volume Macintosh HD appears to be OK" in green then you can be reasonably (though not completely) assured your hard disk is in good working order.
    Assuming the HD remains usable you can then use Disk Utility to erase it. Reinstall OS X, restore your essential software and other files, and don't reinstall the junk.

  • HT4211 My i pad hang on with information of icloud back up with informtion of "this ipad hasn't been backed up in three weeks. backups happen when this pad is plugged in, locked and connected to wifi"  and doesn't close when press ok button. I am not able

    My i pad hang on with information of icloud back up with informtion of "this ipad hasn't been backed up in three weeks. backups happen when this pad is plugged in, locked and connected to wifi"  and doesn't close when press ok button and still hangon. I am not able to switched off also. How to remove popoup note and entering into ipad applications.

    Hold down the sleep and home keys for about 20 seconds or so and see if it reboots.

  • Malfunctioning printer call to DLBAPRP,DLL FOR DELL PRINTER A940, ERROR 126. This error occurs when pressing properties button. Is there a patch to fix this?

    This error does not occur with any of my other programs employing this printer when pressing properties button. The complete error message I get is as follows:
    '''DELL PRINTER A940 PROPERTIES'''
    Function address 0x0 caused a protection fault (exception code 0xc0000005). The application property sheet page(s) may not function properly.
    |OK|

    Perform the suggestions mentioned in the following articles:
    * [[Firefox prints incorrectly#w_reset-firefox-printer-setting|Reset Firefox Printer Setting]]
    * http://kb.mozillazine.org/Problems_printing_web_pages
    Check and tell if its working.

Maybe you are looking for

  • Automatic Creation of Production order per month

    Hello Gurus, Good Day! Is it possible to schedule creation of production order in background for certain material per month basis? Thank you, raymond

  • Dashboards html5 mobile not displaying correctly in IE10

    Hi, We've recently put together a fairly large tabbed dashboard using Dashboards 4.1 SP4.  We currently don't have a SAP BusinessObjects Business Intelligence platform to publish the dashboard to so we have been publishing it through the export to PD

  • TS1368 iTunes Store

    I click iTunes store, the bar fills up to the max, but then just loads for the longest time and eventually shuts off. What is wrong?

  • Meta tags on module

    Hi there, I just noticed last year, I can still put a meta tags on the HTML in the module section. are they having an update seems that my meta tags on the HTML part are no longer visible or cannot be seen. Thanks.

  • Dialog in parallel

    Is it possible to run a dialog, change a control, and update an indicator simultaneously ?  In the example code I would like to be able to change the control values and update the indicator while the dialog is open.  When I select OK from the dialog