Button Property

Hello
I want to fix the ShortCut Property in the button Caption text like Cancel or Save like in the VB.
is there any possibility in the webdynpro.
thanks and regards
Dhinakar J

Hi
1.u can go to this layout's tab s\.select the button and righi click and select the property.the new property window open now u can set values
2. another option u can go to the outline tab and select button and double click now u can see the property window.
Rewards is useful
Thanx
Trupti Zanwar

Similar Messages

  • Setting button property after selecting data from list

    I am not able to set the button property after selecting data from list.
    I would like to say that
    * If a user select an item from list, then user is only allowed to update or delete the data. The update and delete button should be enabled and save button should be disabled.
    * If the users types data manually, then user is allowed only to save this as new entry. The update or delete button at this time should be disabled and only save button should be enabled.
    I want to say that
    In both case, value will be there
    In one case, value will be from list and that is available for update or delete
    in another case, value will be typed from keyboard that is available for save(new entry).
    I do not want to use separate form for update/delete/save new record. I want to use single form for all these operations.
    I am using Form 6i and oracle 8
    Please guide me, I am trying to find this answer for last four days, but could not find the answer. Please help me. Waiting for you reply...

    Thanks Mr. fdellipriscoli,
    But where should this code be written and
    Where the parameter be set to 'YES'
    I think this code should be written somewhere when calling list.
    But bydefault list is called by pressing F9 key. Then where the parameter be set to 'YES' .
    Please help Mr. fdellipriscoli. Waiting for your reply...

  • Is it possible to add text when using flashing button property node?

    I am trying to get a text button that displays TEST to show "running"
    when it flashes.  I am using a property node for flashing. 
    At present it cycles between TEST and default color which is set in
    flashing clolor options.

    hi there,
    use the "Strings[4]" property of the button. right click on the property node and see online doc for more information about the meanings of the 4 elements of strings[4].
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"

  • Accessing radio button property node

    I want to access the individual captions of each radio button.  I want to be able to let the user change the text property of each button, not the label, while the vi is running.  I could not find the property that does this in the property node.  Can this be done?
    Thanks in advance.
    Ron Deavers, CLD

    programmindragon wrote:
    .... Does anyone know what the other strings in this array correspond to?
    1. The help for the 'Strings [4]' property explains what the strings correspond to.
    2. Your problem with the caption(s) for the buttons other than the first will go away if you manually make each button's caption visible the change it back to invisible.  The problem has been discussed several times since LV7.1 came out (e.g. here)
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."
    Attachments:
    Help_for_Strings4_Property.jpg ‏16 KB

  • BPS Web Application - How to change function button property dynamically

    We have created BPS web application for sales force, it contains 2 button.
    1. To send Workflow notification to Managers 'Request for Approval' - This would be used by sales person
    2. Button for Manager to approve the Plan 'Manager Approval' - This would be used by the Manager
    We are using Territory Management in CRM to determine who is the manager and sales person.
    We would like to use the same Web application to be used by both sales person as well as the manager. However depending on the user ID, we need to access the Territory Management table in BW to determine whether the person logging in is Manager / Sales person. If it is a Sales Person, we need to display 'Request for Approval' button and hide 'Manager Approval'  button. Similarly, if it is Manager,   'Manager Approval'  button to be displayed and 'Request for Approval' button to be hidden.
    Would appreciate, if any one has faced similar requirement and how to do this.
    Thanks,
    VJ Sudharsan

    Thanks Ananad and Srini for the suggestion. Actually I was working on the direction Anand Suggestion and make it working but I am not sure what I did is correct or not.
    I have a bogus variable that checks for Manager / Sales person and brings back following code in the variable, if it is manager:
    '<style> #Req_Approval_s </style>'
    and I added a new text component of type HTML and code
    <%=descr(VarvlSel2/value)%>
    it works. Is this the correct way of doing the enhancement. Or is there a different place where we can add JavaScript.
    Srini - I am using exit function, can you explain how we can I use BPS authorization to achieve this.

  • Fireworks cs6 copy up graphic copies other button property instead of current button

    I am doing the tutorial in Classroom in a Book Lesson 11. Created the symbol for the button (navigation) and made the five menu labels. First button "FEATURES" works fine.
    Then when I try to do the second button "FASHION", (created over state) if I hit copy up graphic in the properties panel, it copies the FEATURES all over again, instead of using FASHION. I have done this 3 or four times and each time it copies the properties from the wrong button. Its really aggravating! Why is it doing this?

    I figured it out. You have to create a completely different button symbol for each nav button rather than creating instances of the button.

  • Changing radio button property dynamically

    Hi,
    I decalred two blocks in selection screen named B1 and B2, each have 2 radio buttions.
    B1 has radio button named B1R1 and B1R2.
    B2 has radio button named B2R1 and B2R2.
    If i select B1R1 then B2R1 should be selected and B2R2 should be disabled(user should not able to select).
    If i select B1R2 then B2R2 should be selected and B2R1 should be disabled(user should not able to select).
    Can anyone please tell me how to do this.
    Thanks,
    Amal

    Hi
    Try this
    SELECTION-SCREEN: BEGIN OF BLOCK b1.
      PARAMETERS: b1r1 RADIOBUTTON GROUP g1 DEFAULT 'X' USER-COMMAND ucomm1,
                  b1r2 RADIOBUTTON GROUP g1.
    SELECTION-SCREEN: END OF BLOCK b1.
    SELECTION-SCREEN: BEGIN OF BLOCK b2.
      PARAMETERS: b2r1 RADIOBUTTON GROUP g2 USER-COMMAND UCOMM2 MODIF ID MD1,
                  b2r2 RADIOBUTTON GROUP g2 MODIF ID MD2.
    SELECTION-SCREEN: END OF BLOCK b2.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
      IF b1r1 = 'X'.
        if screen-group1 = 'MD2'.
          screen-input = 0.
        endif.
      ELSEIF b1r2 = 'X'.
        if screen-group1 = 'MD1'.
          screen-input = 0.
        endif.
      ENDIF.
      MODIFY SCREEN.
      ENDLOOP.
      AT SELECTION-SCREEN.
        IF b1r1 = 'X'.
        b2r1 = 'X'.
        b2r2 = ''.
      ELSEIF b1r2 = 'X'.
        b2r2 = 'X'.
        b2r1 = ''.
      ENDIF.

  • Radio  Button Property

    Hi Folks,
    How do we get the Radio Button Label in a Radio Group at run time.
    Eg: I have various forms which runs the same procedure to populate database table with visible object properties in the Form like Label,Type etc.. If the form has a Radio Group with couple of Radio Buttons, then the procedure should read the Label of each Radio Button and Populate the Database Table with this values.
    Any Suggestion / ideas are apprecited and welcome.
    Thanks a Lot in advance.
    Pranati

    Hi Pranati!
    You have to use *UNDOCUMENTED* properties!
    RADIO_BUTTON_1 := Get_Item_Property(RADIO_GROUP_ITEM, First_Button);
    RADIO_BUTTON_2 := Get_Radio_Button_Property(RADIO_GROUP_ITEM, RADIO_BUTTON_1, Next_Button);
    I use this in forms 6i and it works very well, but I never found something about these properties in the documentation and also nothing in the help files.
    Hope this will help you!

  • How make a button enable property "true" while i am clicking a row from datagrid in mxml flex4 app

    hi friends,
    i am new to flex, i am doing flex4 web application with mxml tags.
    i have struck in this place,please give some idea.
    i have one data grid with 5 rows and 4columns,and also i am having one button (property enable is false).
    while i am click a particular row from datagrid that time the button property enbale should be change to true.
    where i have to write code.
    any suggession or snippet code,
    Thanks in advance.
    B.venkatesan.

    Hi,
    You can take help of following code :
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    [Bindable]
    public var Arr:ArrayCollection = new ArrayCollection([{a:"AAA",b:"BBB"} , {a:"111" , b:"222"}]);
    public function enable():void{
    Btn.enabled=true;
    ]]>
    </fx:Script>
    <mx:DataGrid x="91" y="36" dataProvider="{Arr}" click="enable()">
    <mx:columns>
    <mx:DataGridColumn headerText="Column 1" dataField="a"/>
    <mx:DataGridColumn headerText="Column 2" dataField="b"/>
    </mx:columns>
    </mx:DataGrid>
    <s:Button x="210" y="237" id="Btn" label="Button" enabled="false"/>
    </s:Application>
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • Print button on Form

    need to add a print button to the find users results form,
    To print the results...
    or any ideas on exporting the results would be also appreciated...
    Thanks in adv
    Nsankar

    Thanks Shant....
    for those who might need ....
    the final form field code is as follows
    <Field button='true'>
    <Display class='Button'>
    <Property name='label' value='Print Results'/>
    <Property name='onClick' value='javascript:window.print()'/>
    </Display>
    </Field>
    On clicking the "Print Results" button - triggers the Print Function .
    this works exactly like you hitting the - File - Print
    Thanks
    Nsankar1d

  • How to put a radio button ina table

    Hi Frndz..
    I want to show a radio button in a table which table contains multiple rows, so with this radio button user can select only one row out of multi rows.
    My table like this am getting the data from RFC...
                       PONum                  BarCode                    OptionButton
                          100032                   rnsnsv-e3r                   radiobutton
                          100043                   sae489-q3                   radiobutton           
                          100034                   fs88a7-df4                   radiobutton   
    So with the option of radio button user can select only one row..
    while using Insert Table cell editor am adding a radio button but am not able go ahead...suggest me if u have any ideas.
    Thanks in Advance
    Regards
    Rajesh

    Hi Rajesh,
    Try this:
    Step1: Right click on RootUIElementContainer and manually insert the Table
    Step2: Now right click on Table and Insert the TableCoulmn Group
    Step3: In the TableColumnGroup Insert TableColumn
    Step4: Now Insert TableCellEditor  Radio Button Type.
    Step5: Bind the value attributes to the Radio Button property called selectedKey and KeyToSelect and deploy the application
    Thanks
    Krishna

  • Button's Destination URI is not working

    Hi,
    I have a requirement to keep a button(View Invoice) on a custom notification page. Whenever the button is clicked, it needs to open a new page(not OA.jsp) to show the invoice image.
    I used Item Style as Button and in the controller, setDestination method was called to set the page URL. Button is coming on the page, but there is no link on it. I am not getting any java script error also.
    Thanks in advance.

    Here you can try
    1) Create a FUNCTION and wrp your region in that function with comple OA.jsp?/URL , you can take a look exisiting funcition. Lets say the function name is FUNCTION_NAME
    2) Set the button type to submit button.
    3) In the button property, set ActionType to "fireAction" and Event to "Myevent"
    Now in the processFormRequest() you can handle this event as show below
    String event = pageContext.getParameter("event");
    if ("Myevnt".equals(event))
    //when the create portfolio button clicked.
    pageContext.setForwardURL("FUNCTION_NAME",
    RESET_MENU_CONTEXT,
    "MENU_NAME",
    params,
    true, // Retain AM
    ADD_BREAD_CRUMB_YES, // Do not display breadcrums
    OAWebBeanConstants.IGNORE_MESSAGES);
    You can set retainAM paramter to true, so you prvious page information will be retain and you can go back to previous page using breadcrump. However it will not be a new page.

  • Trouble displaying icon on push button in 6i Forms

    Hi,
    I'm having trouble displaying an icon on a button at both design and run times. I'm using Forms 6i with client/server enviornment. I have tried to follow several forums regarding icon setup and the Whitepaper articles. I have tried different suggestions but am still unable to get the icon. Here's my latest attempt:
    1. Copied .jar file to C:\Oracle_Developer_9i\forms90\java folder
    2. Modified formsweb.cfg (in the serverApp=default section) and included the following:
    archive_jini=f90all_jinit.jar,myAppIcons.jar
    imagebase=codebase
    3. In button's properties I set:
    iconic = 'Yes'
    icon filename = C:\Oracle_Developer_9i\forms90\java\myAppIcons.jar
    My guess is that I didn't copy the icon files (from the .jar file) correctly. As suggested in the Whitepaper, I don't have the c:\ myApp\ icons directory. I did a search for an icon directory and found multiple icons folders (due to other oracle projects installed on my pc) but don't know which one to use. Being that I'm using 6i and the instructions were for 9i I didn't know if the directory/folder name is different. Is there another directory/folder (using 6i) where I should copy all the .gif files from in addition to storing the .jar file in the C:\Oracle_Developer_9i\forms90\java directory?
    Also, I feel that I'm not calling it correctly from the location in step 3. Being that the icon exists in the jar file, how would I reference it within the file? Does anybody have any suggestions? Any help would be greatly appreciated.
    Thank you,
    Eric

    Robin,
    I tried your suggestions but am still unable to view the icon. Here's what I now have tried.
    1. I've created UI_ICONS in the windows registry under the form's oracle home and am calling c:\icons from that variable.
    2. In c:\icons, I copied the .jar file's contents (search.gif) into this folder. This is where I may have a problem in addition to my next step in calling the filename. You mentioned in your first post to put my .ICO files there. Should I rename my .gif to .ico? Not sure if I followed you there.
    3. In the button property, I set icon = yes and icon filename = c:\icons\search.gif -- Not sure if I used the right syntax for the filename. I've tried renaming it to .ico and it still does not display.
    Sorry about all the questions but I really appreciate your help. Do you see anything else that I did that may cause it to not display?
    Thanks again,
    Eric

  • Rollover buttons in Forms 9i

    I have read that forms 9i has a built in rollver button capability such as seen in all web menu buttons where there is a series of bitmaps that differ for a mouse rollover, mouseup, mouse down, and hit. Is this true and if so how do I utilize this capability. I have looked in the button property palette and there seems to be no difference from the properties of earlier forms versions of buttons.

    hi
    can u plz tell me how did u get forms 9i cd's and can u plz send them to me, i willbe very grateful to u , plz reply me ,plz
    thanx
    [email protected]

  • Images on a Button in ADF pages

    Hi,
    We have 2 buttons created on Page when the page is auto generated from a Human Task.
    The labels on the buttons are "Insert" and "Delete".
    We need + (in green color) instead of Insert.
    and X (In Red Color) instead of Delete.
    The functionality of the buttons should be same but just to the user it should be visible as "+" and "X" instead of "Insert" and "Delete"
    Thanks in Adv...

    Hi,
    You can download .png files(16X16 or 32X32) from any icon free sites. After that you create a folder in your viewController project for images and then place your downloaded images there. Now in the button property palette, go to "Icon" property and enter the path of images.
    for e.g. I have created a folder for images called "Images" under my "Web Content" directory (to create a folder, simple right click on "Web Content" and click "New", from options edition choose "New Folder") and name it as "Images" and place all your images in that folder from your system folder path (like c:/yourApplication....)
    for my button, in property palter icon value = "/images/plus_icon.png" and Text=null
    Thanks & Regards,
    Ravi Nuka.
    Edited by: Ravi Nuka on Apr 2, 2013 5:43 PM

Maybe you are looking for

  • Payment program- Individual payment

    HI Gurus We have a vendor who needs an indvidual payment for every invoice we receive from him. We have the "Individual Payment" checked in the vendor master. Now this week we have a credit memo posted against this vendor, and the payment program is

  • I'm on a spam blacklist - how do I get off and can...

    Hi, In the last 24 hours, my emails to two of my regular contacts have bounced back undeliverable.  I've never previously had emails returned like this unless the recipient's server is down or the address is wrong, and this isn't the case with these

  • Dynamic mapping in BizTalk orchestration using BRE

    Hi, I want to do a transformation dynamically based on the schema type (document strong name). In one of the thread, I saw a solution for a similar problem, but in which an additional field was needed to be added to the schema to hold the map name. I

  • Help needed to include a dynamic member range in report script

    Hi, I need to produce the report from Jan to Cur_Mth dynamically. I can include Cur_Mth by using a substitution variable. But how to include the months in between Jan and Cur_Mth? I tried with Jan:@Cur_Mth but its not working. Any clues will be of gr

  • G3 B&W Freezes at OpenFirmware. HELP!!!

    I have a PowerMac G3 Blue & White. I have a 6 GB Quantum Fireball and a 9.6 GB Quantum Fireball HD hooked up to it. 488 MB of RAM, and a DVD+-R/W drive. Previously, the 9.6 gb drive worked fine along with the 6 GB drive. Then I hooked the 9.6 Gb driv