WAD button and text

Hallo Experts,
is it possible to create a button in a WebTemplate (WAD) with the following function:
The user press the button and the following text appears:
Pleas give in......
I use WAD and create with "button group" the button, but than i don´t know how to go on...
Thanks Santra

Hi ,
In 7.0 we have lots of option to customise WAD . You can do this with the help of set parameter command .
1.Take push button and lable .
2. Lable should be hidden in the first instance .
3. Once we click on push button , use set parameter command and inhide the lable .
Aboveis the overall idea .
Please check foloing link you will get some example .
http://help.sap.com/saphelp_nw70/helpdata/en/5b/30d43b0527a17be10000000a114084/frameset.htm
Regards,
Aparna

Similar Messages

  • I have just intalled PSElements 12 on a new PC with windows 8.1. It installed ok but when I open it up it displays different than on my windows 7 PC. The buttons and text are tiny and almosy impossible to see even when I drag it to full screen. How do I a

    I have just intalled PSElements 12 on a new PC with windows 8.1. It installed ok but when I open it up it displays different than on my windows 7 PC. The buttons and text are tiny and almosy impossible to see even when I drag it to full screen. How do I adjust it to look normal?

    Hi Paul ,
    It could be a compatibility issue as well as Acrobat 8 is an older version.
    Do you get any error message while registering for the product?
    Try repairing it and once and also check for updates as well.
    Is it happening with all the word files or any specific one'?
    Regards
    Sukrit Dhingra
    Acrobat 8 and Windows 7 Don't Work

  • Buttons and text items on oracle forms 6i

    can i create dynamic buttons and text fields on oracle forms 6i.
    i mean when i insert record in database then automatically creat a button on form.
    Regards
    Munawer hussain

    Hi,
    One physical button is enough for a series of "functional buttons" per amount of simultanious visisble buttons. You can change the button prompt at run-time depending on a certain condition. That same condition can also be used when executing the when-button-pressed (wbp) trigger.
    Example:
    suppose you have 2 functions that you want to create buttons for: enter query and execute query. Only 1 button is visible at one time. In design time you create 1 button. In run-time, depending on :system.mode you set the button prompt to "enter query"or "execute query" and in the wbp trigger you write
    begin
    if :system.mode = 'QUERY'
    then
    execute_query;
    else
    enter_query;
    end if;
    end;
    Kind regards
    .

  • I can't see the button and text item, After compile...

    I bring a form source at the another ERP application.
    and compile it at the our ERP application.
    There is no problem at compiling file...
    comfile succesfully complete...
    but There is no text item and button when i execute program...
    What is the problem --; Help me ~~

    at oracle E-Business Suite
    We add-on a form program
    and i execute the program to use program.
    but there is no button and text item at form. ^^

  • Adobe Captivate - Multiple Choice Quiz Question - Radio Button and Text Alignment

    I have created a quiz with multiple choice questions.
    No matter what I do I cannot align the radio button and the text for the choices (see below).
    I would like to align the center of the radio button with the center of the letter A) and B).
    I have tried every option that I can think of in the Properties options.
    Please let me know if anyone has a solution for this.
    Thank you

    Thanks for the reply.
    Previously I tried several different combinations of fonts and font sizes, but didn't see any change.
    Does anyone else know of anything else that could effect this situation?

  • Help with cfinput radio button and text fields

    I have a series of radio buttons that allow a user to select
    monetary values but I also want them to be able to define an amount
    if they choose so. I was planning on doing this by providing a
    radio button with the value of other and then using a text field to
    allow the user to enter the monetary value. The problem with this
    is that they might enter a user defined monetary value but forget
    to set the radio button to "other".
    I was hoping that I could set the "other" text input field to
    read only until the point that the user selects the "other" radio
    button. Is there a way to do this using onSelect or another method.
    Or is there a better way to approach this problem? Thanks for any
    help or advice in advance.

    Hi,
    You could call a js function which will select the radio
    button "other " when the user types something in(there are various
    events on cfinput). This way the user will not have to worry about
    selecting the radio button and your requirement will be satisfied.
    Hope this Helps.
    Thanks,
    Bhakti

  • Creating radio buttons and text box in the screen

    Hi Guys,
    Need help asap. I am writing a report and I have to create text box for user to input GL account numbers for two types of customer. I have to make these fields required and take the data back from the screen and write it in a file. The second thing that I have to do is to make radio buttons for the user to select whether he wants the file written on the application server or the presentation server. and process the report accordingly. Now can somebody please given some code and tell me how I should do this. Both the things have to be done for the same report. Please help.
    Thanks,
    Minal

    Hi,
    TABLES: likp,
            lips.
    TYPES: Begin of ty_likp,
           vbeln like likp-vbeln,
         end of ty_likp.
    TYPES: Begin of ty_lips,
           vbeln like lips-vbeln,
           posnr like lips-posnr,
         end of ty_lips.
    DATA:  i_likp TYPE STANDARD TABLE OF ty_likp,
           i_lips TYPE STANDARD TABLE OF ty_lips,
           w_lips TYPE ty_lips,
           w_likp TYPE ty_likp.
    SELECTION-SCREEN BEGIN OF BLOCK b_0 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:  s_delno FOR likp-vbeln,
                     s_type  FOR likp-lfart,
                     s_ship  FOR likp-vstel,
                     s_date  FOR likp-erdat.
    SELECTION-SCREEN END OF BLOCK b_0.
    SELECT vbeln
             FROM likp INTO TABLE i_likp
             WHERE vbeln IN s_delno
             AND   lfart IN s_type
             AND   vstel IN s_ship
             AND   erdat IN s_date.
      IF sy-subrc <> 0.
        MESSAGE i000 WITH text-002.
        " No valid deliveries for the selection parameters entered.
        STOP.
      ENDIF.
      IF NOT i_likp[] IS INITIAL.
        SELECT vbeln
               posnr
               FROM lips INTO TABLE i_lips
               FOR ALL ENTRIES IN i_likp
               WHERE vbeln = i_likp-vbeln.
      ENDIF.
    format color 1 on intensified on.
      WRITE: /01(46) 'Following are the Hanging Deliveries/Invoices:'.
    format color off intensified off.
    skip.
    format color 1 on.
      WRITE:  SY-ULINE(27).
      WRITE: /1       SY-VLINE,
              3(12)    'Document No.',
              16      SY-VLINE,
              17(8)  'Item No.',
              27      SY-VLINE.
    write:/1 sy-ULINE(27).
    format color off.
      sort i_lips by vbeln posnr.
      LOOP AT i_lips INTO w_lips.
          Read table i_likp into w_likp with key
                            vbeln = w_lips-vbeln
                            posnn = w_lips-posnr.
          if sy-subrc <> 0.
          format color 2 on.
             WRITE: /1   sy-vline,
                    3(12)  w_lips-vbeln,
                    16  sy-vline,
                    17(8)  w_lips-posnr,
                    27  sy-vline.
            write:/1 sy-uline(27).
            format color off.
            clear w_lips.
          endif.
          ENDLOOP.
    Try this one with ur own example.
    Thanks & Regards,
    Judith.

  • Working with forms, buttons and text files

    please am new to java am working on the project. please see sample below, can anyone tell me how i can get the button in form1 to open form2 and also how the information entered in the textfield can be written to a text file. THANKS
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Form1 extends JFrame
         static JFrame frame;
         static JPanel panel;
    JLabel label;
         JTextField text;
         JButton btn;
         GridBagLayout g;
    GridBagConstraints gbc;
         public Form1()
              label = new JLabel ("Label");
              gbc.gridx = 0;
    gbc.gridy = 1;
    g.setConstraints(label, gbc);
    panel.add(label);
              text = new JTextField();
    gbc.gridx= 1;
    gbc.gridy = 1;
    g.setConstraints(text, gbc);
    panel.add(text);
              btn = new JButton ("CONTINUE");
              gbc.gridx = 0;
              gbc.gridy = 2;
              g.setConstraints(btn, gbc);
              panel.add(btn);
    import java.awt.event.*;
    public class Form2 extends JFrame
         static JFrame frame;
         static JPanel panel;
    JLabel label;
         JTextField text;
         JButton btn;
         GridBagLayout g;
    GridBagConstraints gbc;
         public Form2()
              label = new JLabel ("Label2");
              gbc.gridx = 0;
    gbc.gridy = 1;
    g.setConstraints(label2, gbc);
    panel.add(label2);
              text2 = new JTextField();
    gbc.gridx= 1;
    gbc.gridy = 1;
    g.setConstraints(text2, gbc);
    panel.add(text2);
    }

    please am new to java am working on the project.
    please see sample below, can anyone tell me how i can
    get the button in form1 to open form2 For opening form2 from form1 you can add a actionListener to the button.When the button is pressed instantiate the other class and render it visible which i leave it to you to implement.
    and also how
    the information entered in the textfield can be
    written to a text file. THANKSUse getText ( ) method of JTextField to retrieve the text from it and then it's ordinary file io operations for which i guide you to the tutorials here
    http://java.sun.com/docs/books/tutorial/essential/io/index.html

  • Highlighting button and text when scrolled over

    Hello,
    I have a menu that I wouldlike the four buttons to be highlighted when scrolled over wiht the navigator. I a way that only one shall be highlighted then you press down and the next will become highlighted, leaving the other one with no highlight. Any help?

    In this case you would need to use a highlight layer created in an image app like Photoshop. The background image for the menu would not contain any text, just a shape (or whatever) to indicate to the viewer there is a button there. The overlay would then contain the text to appear within the button area.
    You would create this in gray scale, and use the colour mapping tools within DVDSP to allocate the desired colours for the selected and activated states.
    In this way, only the background area will show when the button is not selected (i.e. is in the 'normal' state), but clicking on (or mousing over) the buttons will reveal the text in the highlight layer.

  • How to add Javascript action to buttons and text (hyperlink style)

    Hello.
    Please need help urgently!
    I need to link let's say to a text in Muse that reads "ADD TO CART" following javascript:
    <a href="javascript:;" onclick="wazala_widget.addtocart('177217');"
    If i do it like:
    <a href="javascript:;" onclick="wazala_widget.addtocart('177217');">ADD TO CART</a>
    then text styling is different from the Muse Hyperlink settings  that chose for other hyperlinks on my site which is obviously an undesirable effect.
    If i try to style this specific ADD TO CART text within the html widget widnow:
    <style type="text/css">
    <!--
    body {text-align:center;}
    body {vertical-align:middle;}
    A:link { COLOR: white; TEXT-DECORATION: none; font-weight: normal; font-family: palatino; font-size: 12px }
    A:visited { COLOR: white; TEXT-DECORATION: none; font-weight: normal; font-family: palatino; font-size: 12px }
    A:active { COLOR: white; TEXT-DECORATION: none; font-weight: normal; font-family: palatino; font-size: 12px }
    A:hover { COLOR: white; TEXT-DECORATION: none; font-weight: normal; font-family: palatino; font-size: 12px }
    -->
    </style>
      <a href="javascript:;" onclick="wazala_widget.addtocart('177217');">ADD TO CART</a>
    Then it overrides Muse hyperlink settings for all hyperlinks located below this button on the page.
    Any help would be highly appreciated as this is the only thing that stops me from going live with my shop.

    Dis you ever get an answer to this?
    Ben

  • MBA Update 1.0 - Buttons and text on the Welcome screen are not localized

    Hi all!
    I use Mac OS X 10.5.4 with French (Canada) localization on my MacBook Air, and it appears that after applying the 1.0 Update released on 2008.08.23 (which is said to resolve processor issues), the text on the Welcome screen now appears in English.
    This must be related to this new update, since I did only text editing this morning and everything was OK when I started the computer for the first time.
    Is it possible that the updated corrupted and/or removed the localization files, and is there a way to restore this? I hope it does not affect text elsewhere in the UI.
    Note: I just done a PRAM reset and it does not solve the problem. Should I perform a SMC reset?
    Thanks for your help,
    Kind regards,
    Yannick
    Edited by ygauthier on 2008.08.23 15:51

    After a bit of search, I found a solution to my problem. It seems that the MacBook Air Update 1.0 indeed broke the Login window language on my system (I don't know how, but it did). This issue can be solved by using "TinkerToolSystem" from Bresink in Demo mode. This little app can restore the language upon login.
    Please note that the "Enabling the root account & and change root language" did not work, for me at least. This method may not be possible anymore on Mac OS X Leopard (the tip mentions Mac OS X 10.3).
    My Login Window is now back to normal
    Thanks,
    Yannick

  • ITunes Buttons and Texts not Showing

    Some of the texts in iTunes are not showing

    It has something to do with Segoe fonts in your system.
    Refer this link for solution
    iTunes 10.1 Missing Text
    https://discussions.apple.com/thread/2647111?threadID=2647111

  • RadioButtons some buttons and layout

    Hi,
    I try several times to create a particular layout with jsf using panelgrid and selectoneradio but after a lot of attempts I need hlp please.
    In practice I need to create a table where in each row there is a radio button, some text and a button image.
    I try in a way like this
    <h:panelGrid columns="2">
    <h:selectOneRadio ... >
    <f:selecitem itemLabel="..." itemValue="..."/>
    </h:panelGrid>
    <h:commandLink> <h:graphicImage value="/registration.jpg"/> </h:commandLink>
    </h:panelGrid>
    I try in many ways like add css style for vertical-align, for td height but I dont reach the goal to get and the same line radio button and text aligned with button image.
    Perhaps the problem is that the selectone radio create an html radio.
    Anyone has an idea?
    Thanks in advance

    Well if you are stuck with out of the box JSF components you will have to use the table and put the elements in columns to insure things line up.
    Look at the HTML source also for clues, it will absolutely create an HTML radio and I forget exactly what HTML panelGrid is using for layout

  • Applets and Text Area

    Howdy,
    I would like to display two variables. How hard could it be?
    Is there something I am missing? Something I havent decalred?
    The init method creates a simple button and text area. Then when the button is clicked
    it perform an action. Calls a method within action then I want to print the results.
    Im very new to Applets. Any advice
    Button Btn;
    TextArea ta;
    double var1;
    double var2;
    public void init(){
    testBtn = new Button("Start");
    TextArea ta = new TextArea("Click the 'Start' button to run the test", 4, 30);
    add(Btn);
    add(ta);
    public boolean action (Event e, Object args){
    if (e.target == Btn){
    // a call to a method, value comes back then I display the variable in the Text Box
    ta.append("Variable 1: " + var1);
    ta.append("Variable 2: " + var2);
    return true;

    This version should run just fine. Some comments:
    1 - the action method has been deprecated, ie, it isn't used anymore. What we do now is add an ActionListener to the button. When the button is pressed java looks in the actionPerformed method to find out what to do. The java tutorial has a good lesson on this, recommended.
    2 - I added a main method so you can run this on the command line like an application. Also you can run it as is with appletviewer.
    /*  <applet code="AppletTest" width="400" height="400"></applet>
    *  use: >appletviewer AppletTest.java
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class AppletTest extends Applet implements ActionListener
        TextArea ta;
        Button addTextButton;
        double var1, var2;
        public void init()
            ta = new TextArea(4,30);
            addTextButton = new Button("add text");
            addTextButton.addActionListener(this);
            Panel north = new Panel();
            north.add(addTextButton);
            var1 = 123.92;
            var2 = 12.5;
            setLayout(new BorderLayout());
            add(north, "North");
            add(ta);
        public void actionPerformed(ActionEvent e)
            Button button = (Button)e.getSource();
            if(button == addTextButton)
                ta.append("Variable 1: " + var1 + "\n");
                ta.append("Variable 2: " + var2 + "\n");
        public static void main(String[] args)
            Applet applet = new AppletTest();
            Frame f = new Frame();
            f.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            f.add(applet);
            f.setSize(400,400);
            f.setLocation(200,200);
            applet.init();
            f.setVisible(true);
    }

  • Adding New Image and Text to an Existing Page Created with Tables

    Working in DW 5.5
    I'm trying to add a new image/link and small amount of text to an existing web page that was created with tables and centered.  I am using AP Divs. One for the image and one for the text.  Everything functions fine, but I can't get the new items to anchor and re-center with the rest of the page.  I am not able to overide the "Absolute Positioning".  I've tried different solutions from various tutorials but I can't seem to make them work with tables.
    The added items are a Facebook button and text.
    Go to:  http://www.sugarhollowfarms.net/index.html  to see the problem.
    Please help. I'm not that experienced.

    Make a back-up of the page first before you implement the changes below!
    Take the below bit of code from <div id="FBlogo">...... to.......... </div> <!-- end FBlogo -->
    and insert it directly after the opening div tag FWTableContainer and before your opening table tag (see position below):
    <div id="FWTableContainer209091602">
    <div id="FBlogo"><a href="#"><img src="images/fb.png" alt="fb" width="62" height="62" onClick="MM_openBrWindow('http://www.facebook.com/SugarHollowFarms','facebook','toolbar=yes,location=yes,status=yes, menubar=yes,scrollbars=yes,resizable=yes,width=1000,height=800')"></a>
    <p class="bodytext"><strong>Join us<br>
    on Facebook</strong></p></div><!-- end FBlogo -->
    <table border="0" cellpadding="0" cellspacing="0" width="800">
    Then add - position: relative; - to the FWTableContainer css (as shown below):
    #FWTableContainer209091602 {
        /* The master div to make sure that our popup menus get aligned correctly.  Be careful when playing with this one. */
        position:relative;
        margin:auto;
        width:800px;
        height:600px;
        text-align:left;
        top: 20px;
        background-image: url(images/homepage_new3.jpg);
        border: medium solid #336600;
        position: relative;
    Amend the css for FBlogo to as below:
    #FBlogo {
        position:absolute;
        left:700px;
        top:380px;
        width:91px;
        z-index:1;
        text-align: center;
    Amend the css for bodytext as below:
    .bodytext {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 11px;
        line-height: 13px;
        margin: 0;
        padding: 0;

Maybe you are looking for

  • Problems with DVR, STB`s

    I had FIOS put in less than a week ago. The multi-room DVR recordings don`t show up on my STB`s. I have tried resetting them all at least 3 times. I tried resetting them through the internet, but it keeps saying login failed. In Home Agent freezes up

  • Dml error logging for tables in 10.2.0.5

    Hi experts, I have problems loading error records into the shadow table specified in the configuration window for tables. Upon executing the mapping, the execution results show warnings with the error records but these records were not moved to the s

  • SAP TABLE TO VIEW THE APPLICATION LOGS OF IDOCS

    Hi, Can you please suggest where I can see the table to view the application logs in idocs. We can see this individually in SLG1 or MM90. But I need to see it collectively to see all the error messages. Please suggest.

  • Audiobook won't shuffle on ipod nano (and other related issues)

    I am learning German and I bought a set which comes with an audio companion that you can use on your MP3/ipod.  They come in units of no more than 3 minutes each and there are quite a few of them.  I uploaded the content onto iTunes. First of all iTu

  • IPhoto library upgrader

    I recently got a new hard drive put in to my Mac with the latest versions of all the software. I went to try to access my old photos that I had backed up on an external hard drive and it was telling me that the versions was out of date (the old pictu