Iview: Push button for switching on or off the description of the document

Hi all,
In the AdminExplorer iview, I want to have a button to display the description of the document, as it happends in the following page.
https://www.sdn.sap.com/irj/sdn/downloads
I've added the follwoing rnd:command(command=NEWCOMMAD/style=icon)
in List Renderer's Dispayed properties field, BUT
a)I dont know how to create that NEWCOMMAND,
b)I dont know if this the correct way of doing it.

Quick answer—No.

Similar Messages

  • I am unable to switch off Passcode on my ipad3. The button for switch off Passcode is greyed out.

    I am unable to switch off Passcode on my ipad3. The button for switch off Passcode is greyed out.

    Hello again,
    I have managed to disable the Passcode.
    I checked and I removed a profile that was linked to a business app.
    I think it must have been security policy through business app that didn't work anyway.
    Thank you very much for taking the time to attempt to resolve my issue.
    Keep up the great work!!!!!!!!!!!!!!!!!

  • I want a push button for line items in my sales order entry screen.

    Hi,
    I want a push button for line items in my sales order entry screen.
    How can I do so?
    Thanks.

    Hi Kumar ,
    To have a push buttons you need to first assign a pf-status .
    here a sample code for a push button and its handling :
      set pf-status 'SELECT' .
    at user-command .
      describe table t_lpr lines w_lines .
      case sy-ucomm .
        when 'SELECTALL' .
          set pf-status 'SELECT' excluding 'SELECTALL' immediately.
          do w_lines times .
            read line w_line field value w_check . " INTO W_CHECK .
            if w_check = space .
              w_check = 'X' .
              modify line w_line field value w_check.    "INTO W_CHECK .
              add 1 to w_line .
            endif .                        " IF W_CHECK = ' '
          enddo .
    Thus when you say pf-status say 'select' , Double click on that and you find a screen eher you can select icons and assign a function code to it!
    Hope it helps!
    Much Regards,
    Amuktha .

  • I am using my Description as the caption on Slideshow.  I ticked the "Show Title Slide" button and iPhoto physically copied the description on the first slide onto the end of every other description.  I can find no way of removing them other than by hand.

    I am using my Description as the caption on Slideshow.  I ticked the "Show Title Slide" button and iPhoto physically copied the description on the first slide onto the end of every other description.  I can find no way of removing them other than by hand.  Unticking the "show title slide" did not reverse the situation back to my required state.   Any ideas why it might have happened or how it might br resolved?   Regards, Marshfrog1

    Attached is Dennis Linam’s Audition – “Log File” and “Log – Last File”
    Contact information Dennis [email protected]
    Previous contact information with your organization (DURIM):
    Dennis - i just finished my audition trial and bought the subscription the 2014 version.
    created by durin in Audition CS5.5, CS6 & CC - View the full discussion 
    DURIM - Okay.  I would expect the "Cache Warning" message because your default directories would not be the same as the ones in the settings file I generated.
    If you go back to the "7.0" directory and open the "Logs" folder, can you copy the "Audition Log.txt" file and send it as an attachment to [email protected]?  We'll take a look in that logfile and see if it gives us more information about why this is failing now.
    Also, do you have any other Adobe applications installed on this machine, such as Premiere Pro?  If so, do they launch as expected or fail as well?
    I do have the trial Pro version of Adobe reader, but I have not activated it, because I fear the same thing will happen did it. I cannot afford to activate the subscription for that product and take the chance of it not working either. I depend on those two programs religiously. Here is the files that you requested. I appreciate any help you can give me to get this audition program started
    Audition Log- file
    Ticks = 16       C:\Program Files (x86)\Common Files\Adobe\dynamiclink\7.0\dynamiclinkmanager.exe
    Sent from Windows Mail

  • HT201263 my ipod screen turned white and i seen online that you hold the power button and the homescreen button for it to go off. But it wont turn back on. I would have to let it die and charge it it turns on but fades to white. what do i do?

    My ipod screen turned white. i had read online that if i hold the power buton and the home button that it would turn off. It turned off but wouldnt turn back on. I had left the ipod on the charger all night and tryed this morning. nothing would happen. but when i checked it this afternoon the battery was dead. when ever i turn it on the password screen fades to white. what do i do. My warrenty just ended a week ago.

    Try here:
    iOS: Not responding or does not turn on
    Also try letting the battery fully drain. After charging for at least an hour try again.
    If not successful time for an appointment a the Genius Bar of an Apple store.

  • Get # from JTextfield, draw that # ovals, push button for color

    all
    i have an assignment that requires the user to enter a JTextField integer value.
    that value is then used to draw an equal # of ovals.
    after the ovals are drawn user selects a color button (red/blue) to fill the ovals already drawn based on the button color.
    i have everything coded and working except the coloring.
    i need help because i can't seem to figure out where or how to fill the ovals with the colors of the button pushed.
    OvalDriver7b invokes OvalFrame7B invokes OvalPanel7B.
    thanx
    75gator
    * OvalDriver7B.java
    * Created on April 26, 2004, 1:50 PM
    * @author  dbraxton
    // declare OvalDriver7b class
    public class OvalDriver7B  {
      public static void main (String [ ] args)  {
        OvalFrame7B oframe = new OvalFrame7B();
        oframe.setTitle("Request ovals by text ");
        oframe.show();
      }// terminate main
    }// terminate OvalDriver7B
    * OvalFrame7B.java
    * Created on April 26, 2004, 2:35 PM
    // @author  dbraxton
    // import JAVA API classes
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    // class declaration
    public class OvalFrame7B extends JFrame  {
      private JTextField numOvals;
      private JLabel labelField;
      private JButton rButton, bButton;
      private JPanel textPanel, buttonPanel;
      private OvalPanel7B opanel;
      final int WIDTH = 300;
      final int HEIGHT = 300;
      public OvalFrame7B()  {
        setSize(800,565);
        this.addWindowListener(new WindowCloser());
        opanel = new OvalPanel7B();
        labelField = new JLabel("Enter integer for # ovals: ");
        numOvals = new JTextField(2);
        rButton = new JButton("RED");
        bButton = new JButton("BLUE");
        numOvals.addActionListener(new TextFieldListener());
        Color rColor = new Color(255,0,0);
        Color bColor = new Color(0,0,255);
        buttonPanel  = new JPanel();
        buttonPanel.setLayout(new GridLayout (1,2));
        buttonPanel.add(rButton);
        buttonPanel.add(bButton);
        //JButton colorButton = new JButton("Change circle color?");
            //colorButton.addActionListener(new ColorListener());
        rButton.addActionListener(new ActionListener()  {
            public void actionPerformed(ActionEvent event)  {
                //color ovals red ????????
               opanel.repaint();
        bButton.addActionListener(new ActionListener()  {
            public void actionPerformed(ActionEvent event)  {
              //color ovals blue ????????
              opanel.repaint();
        textPanel = new JPanel();
        textPanel.setLayout(new GridLayout (1,2));
        textPanel.add(labelField);
        textPanel.add(numOvals);
        Container contentPane = getContentPane();
        contentPane.setLayout(new BorderLayout());
        contentPane.add(opanel, "Center");
        contentPane.add(textPanel, "South");
        contentPane.add(buttonPanel, "North");
      private class TextFieldListener implements ActionListener  {
        public void actionPerformed(ActionEvent event)  {
          String input = numOvals.getText();
          opanel.setOvalCount(Integer.parseInt(input));
          numOvals.setText("");
      private class WindowCloser extends WindowAdapter  {
        public void WindowClosing (WindowEvent wex)  {
          System.exit(0);
    * OvalPanel7B.java
    * Created on April 26, 2004, 2:35 PM
    * @author  dbraxton
    // import JAVA API classes
    import javax.swing.*;
    import java.awt.*;
    import java.awt.geom.*;
    import java.util.Random;
    // begin class declaration
    class OvalPanel7B extends JPanel  {
      private int ovalcount;
      private static final double O_WIDTH = 50;
      private static final double O_HEIGHT = 100;
      double w1 = 100,  h1 = 100;
      OvalPanel7B()  {
      public void paintComponent(Graphics g)  {
        super.paintComponent(g);
        Graphics2D g2 = (Graphics2D) g;
        Random rnd = new Random();
        g2.setBackground(Color.WHITE);
        for ( int i=0; i < ovalcount; i++)  {
          double x = rnd.nextDouble() +  w1;
          double y = rnd.nextDouble() +  h1;
          w1 = w1 + 50;
          h1 = h1 + 0;
          Ellipse2D.Double oval = new Ellipse2D.Double(x,y,O_WIDTH,O_HEIGHT);
          g2.setColor(Color.BLACK);
          if ( i % 2 > 0)  {
            g2.draw(oval);
          else
             x = rnd.nextDouble() +  w1;
             y = rnd.nextDouble() +  h1;
             g2.draw(oval);
        }w1 = 100;  h1 = 100;
      public void setOvalCount (int cntx)  {
        ovalcount = cntx;
        repaint();
    }

    Hi,
    This forum is for asking questions about using Sun Java Studio so the kind of people who might know the answer might not be reading these posts.
    I am thinking that a better place to get answers for this question is https://java-net.dev.java.net/servlets/ForumMessageList?forumID=95

  • HT201412 My ipad does not turn off...i tried pressing the Sleep/Wake button and Home button for 10 secs but no response. Also, the screen is not rotating on portrait or landscape view...any suggestions?

    My ipad does not turn off...i tried pressing the slep/wake button and home button for more than 10 secs but nothing hapened. Also, the screen is not rotating on portrait and landscape views...

    While this could potentially be a hardwar issue:
    Try a rest: Simultaneously hold down the Home and On buttons until the iPad shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the iPad back on using the On button. In some cases it also helps to double click the Home button and close all apps from the tray before doing the reset.
    If the reset doesn't work, you may need to consider restoring the iPad to factory settings

  • Regarding push button for parameters

    initially there are two push buttons and the parameters should not be displayed.
    when any one push button is clicked on one parameter should be displayed.
    i had written the following code but is not working
    please help me
    with regards
    bob
    TABLES : SSCRFIELDS.
    PARAMETERS : P LIKE MARA-MATNR MODIF ID ABC.
    PARAMETERS : P1 LIKE MARC-WERKS MODIF ID ABC.
    SELECTION-SCREEN : begin of line,
    PUSHBUTTON 2(10) PB1 USER-COMMAND A,
    PUSHBUTTON 20(10) PB2 USER-COMMAND B,
    end of line.
    AT SELECTION-SCREEN ." OUTPUT.
    CASE SSCRFIELDS-UCOMM.
    WHEN 'A'.
    LOOP AT SCREEN.
    IF SCREEN-NAME = 'P'.
    SCREEN-INPUT = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    endcase.

    Hi Gangadhar,
    Try the following code. Its working on my side.
    TABLES : SSCRFIELDS.
    PARAMETERS : P LIKE MARA-MATNR MODIF ID ABC.
    PARAMETERS : P1 LIKE MARC-WERKS MODIF ID ABC.
    SELECTION-SCREEN : begin of line,
    PUSHBUTTON 2(10) PB1 USER-COMMAND A,
    PUSHBUTTON 20(10) PB2 USER-COMMAND B,
    end of line.
    DATA : FLAG TYPE C.
    AT SELECTION-SCREEN OUTPUT.
      IF FLAG IS INITIAL..
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'P'.
            SCREEN-ACTIVE = '1'.
            SCREEN-INPUT = '0'.
            SCREEN-OUTPUT = '1'.
            SCREEN-INVISIBLE = '1'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    AT SELECTION-SCREEN .
      CASE SSCRFIELDS-UCOMM.
        WHEN 'A'.
        FLAG = '1'.
          LOOP AT SCREEN.
            IF SCREEN-NAME = 'P'.
              SCREEN-ACTIVE = '1'.
              SCREEN-INPUT = '1'.
              SCREEN-OUTPUT = '1'.
              SCREEN-INVISIBLE = '0'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
      Endcase.
    Hope this helps,
    Pragya

  • Droid Maxx will not connect to wifi, slide the button to "on" and button automatically switches back to "off"

    Yesterday my Maxx stopped allowing me to turn on the WiFi.
    If I turn it on in the settings, it automatically slides back to off (in less than 5 seconds), never connects.
    In advanced settings under WiFi, mac address is unavailable (don't understand why no mac address is listed here), so is IP address (this one I understand because it isn't connected).
    troubleshooting steps taken so far:
    1.  power cycled - changed nothing
    2.  made sure no 3rd party apps causing issues (uninstalled or stopped) - changed nothing
    3.  powered up in safe mode - changed nothing
    4.  ran a factory reset/restore - changed nothing
    Note:  The phone hasn't been recently updated with a system update and nothing as been installed in over a week before issues
    Now what?

        Thanks for your efforts, jcma323. I'm going to send you a Direct Message. We'll get to the bottom of this.
    ChaunceyM_VZW
    Follow us on twitter @VZWSupport

  • Table for the descriptions of the custom programs.

    Hello,
    Can anyone please tell me the table name in which I could find the descriptions of the custom programs which we create in SAP?
    Thanks and Regards,
    Amit.

    By mistake asked twice

  • How to switch off the loudspeaker during the video...

    Hi everybody!
    That is an old problem, and I found lots of topics and messages, but still no solution.
    How long could it take, and how many programmers and designers should work till we can
    get the button for switching on and off the loudspeaker?

    Close the lid, or turn the backlight all the way down to 0.

  • My Iphone Off/On push button is apparently stuck. I am unable to turn it off or push for the black screensaver. Is there a mechanical fix or am I sunk with a defective phone now?

    question: Is my IPhone 4S now defective/defunct for use with a bad push button for on/off and screensaver, or is there a mechanical fix that an Apple Store Genius can do to pop that button out again?

    Oh, yes, the Apple store will either install that cheesy, annoying screen app, or tell me I can replace my phone - only 1 1/2 years old - come on, Apple! - for a hefty price since the warranty is over and my cell contract still has months to go. Oh, and I've purchased AppleCare several times on other products and never needed it because I am careful with my electronics! Apple has gotten enough money from me for AppleCare in the past, and why would I have expected Apple to have a shoddy product (well, I might now). Thanks for responding, though.

  • My iPad Air stalled during an update and I cannot restart my device even after pressing the on/off button for 15 seconds. Any suggestions?

    My iPad Air stalled during an update and will not restart even after pressing the on/off button for 15 seconds. Any suggestions?

    Have you tried a soft-reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds, after which the Apple logo should appear and it should reboot.

  • Hardware push button acting as mechanical switch (latch when released)

    Hello,
    I have a simple question. How can I have a hardware push button (momentary switch fed into DAQ board as a digital input) exhibit the same characteristics as a boolean with its mechanical action set to Latch when released?
    Is it possible to do that?
    Thanks,
    r15
    Solved!
    Go to Solution.

    Is the code implemented easier when a "latch when pressed" behavior is required?
    The problem I am facing is that when I press the hardware button, the indicator "element" is incrementing as long as the button is pressed. I need it to only increment one time until I release the button and press it again.
    Hence, everytime I press the button (no matter how long I keep it pressed), I want the indicator to increment only once to count the number of times the button is pressed.
    I attached the VI below to make things clearer.
    Attachments:
    Untitled 1.vi ‏44 KB

  • Accelerator keys for push buttons

    Hi,
    Does anyone know how can I define accelerator keys for push buttons. with ALT+underlined char. can I directly execute the button? If yes, how can we do that?
    Regards,
    Panneer

    Hi,
    As I know, GUI XT could be used to change the screen style. The pushbutton command could be used to add pushbutton.
    But after checking the material, I found it could only use SAP predefined accelerator keys which is in the PF-STATUS.
    FYI:
    Pushbutton
    Purpose With Pushbutton you can create your own pushbuttons within an R/3 screen or within the toolbar. You can make both the menu functions and the navigation to other transactions directly accessible with your own pushbuttons.
    Example
    Pushbutton (10,50) "Split Screen Editor" "SCMP"
    You create a pushbutton at row 10, column 50 with text Split Screen Editor. Clicking on the button invokes the internal code SCMP which then starts the Split Screen Editor.
    Internal codes How do I find the internal codes?
    Choose the desired function in the transaction menu and press F1 while the mouse cursor points to this function. Now the R/3 system displays the internal function code in a pop-up window
    Format Pushbutton (row,column) "Pushbutton text" "FCode" Process="..." 
    Adds a pushbutton on position (row,column). The pushbutton invokes the internal code FCode. This can be a code from the menu, e.g. SCMP, or a transaction code like /NFB01 or /OMM02.
    Process="..."  relates to the InputScript file. You can omit the "fcode" parameter if only "Enter" is needed in order to continue with the transaction.
    Pushbutton (Toolbar) "Pushbutton text" "FCode"
    Adds a pushbutton in the application toolbar. A free function key is assigned automatically and displayed in the quickinfo.
    *Pushbutton (Toolbar) "Pushbutton text" "FCode" "Fkey"*
    *Optionally you can specify a function key of your choice as an additional parameter Fkey using the format F1,..F12, ShiftF1,...,ShiftF12, CtrlF1,...,CtrlF12, ShiftCtrlF1,...,ShiftCtrlF12. If this function key is already in use the system chooses the next available number.*
    *example: Shift+F5  ->  F17, F3 -> F3* 
    Cheers

Maybe you are looking for

  • Too many reciepients Error

    Hi, I want to send email to all my subscribers whose emai ids are stored in database. I am SUCCESSFUL in sending the emails from JAVA program to some 10 reciepients at a time. But I have to send the message to around 1000 or more people at a time. I

  • Display test failed in BB virtual expert what to do please help cell is new 2 months old

    Dear All,  3 Months back i had purchased BBZ30. and today i had downloaded virtual expert software to run the health test. All features are working fine but display test failed. It is showing cracked. However my cell phone is working fine and even di

  • Connecting HDTV to SUN BLADE 150

    I have a SUN Blade 150 workstation with the onboard video (PGX64)....can I connect this to my HDTV. Both have a standard VGA connector....but not sure about the resolution. According to SUN's documentation 1920X1080 is supported, but is says the stan

  • Nano Plays a few songs then reboots to main music screen

    This issue not only pertains to the 3rd generation nano but the 4th generations as well. I sync my nano 3rd generation to my PC which has all of my MP3 files on it. I have the nano set up so I manually manage music on it. I created playlist in latest

  • 2nd ethernet card problems

    Hi all, I have an G4 MDD that I'm running 10.4 server and am trying to add a 2nd ethernet card to no avail. I tried adding a Dlink and then tried a Linksys card. Upon restarting from installing the drivers, both times I got a message stating that the