Placement of cursor - when ADD button, place cursor on first item in row

I have several collections on a page. The third collection CATCH_C is usually empty. The user can tab to ADD button. Currently, the cursor is then placed at the first item on the page. I would like it to be place in the first item in that collection. Is that possible?
ps. when the page is pulled up, the page attributes HTML body has the command onload="html_GetElement('f3_0001').focus()"
could I do something similiar for c042 in CATCH_C? and if so, where would I place such a statement? again, very new to java/html so all help appreciated.
karen

indeed. thanks!
so, now I have two processes....but neither work. Upon entering the form, the cursor is on the FILE menu (top left of window):
start_cursor is PROCESS after footer condition REQUEST != ADD
BEGIN
HTP.p ('<script>');
HTP.p ('html_GetElement(''f03_0001'').focus();');
HTP.p ('</script>');
END;
add_cursor is PROCESS after submit condition REQUEST = ADD
BEGIN
HTP.p ('<script>');
HTP.p ('html_GetElement(''f42_9901'').focus();');
HTP.p ('</script>');
END;

Similar Messages

  • How can I add buttons that do different things to each row of an rpt result

    Hi there,
    I'm trying to figure out how to add buttons to each row of a report. Here is the scenario:
    report query returns a set of data that needs to be "approved". The options are "Append", "Replace", or "Reject" (I want to make the results look like so:)
    Person1 today blah, blah blah... Append button Replace button Reject button
    Person2 today blah, blah, blah... Append button Replace button Reject button
    PersonA today something, blah... Append button Replace button Reject button
    and so on.
    I'd like to set up the page so that there is an append, replace, reject button for each row returned by the report. So when the "Approver" clicks on the append button, something happens for that row, etc. How does one do this? So far I can only get the buttons to show up in the region. I also thought it might be possible to somehow turn the append, replace, reject text into links that called a plsql proceedure that would handle the action, but I'm not having any success with that idea either.
    Edited by: user10361829 on Sep 29, 2009 12:10 PM

    What I've done is make my report query as follows:
    select field_a, field_b, field_c, 'Append', 'Replace', 'Reject'
    from table_x
    where field y = :PX_ID
    That gives me the words (append, replace, reject) in the report. Then I go to the report attributes section and make a link out of the columns (append, replace, reject) so far, so good.
    Next question is how to make clicking on those links activate an update action on tableN. In the column_link section there is a box marked "Request" that looks like it might be relevant because Request is a term connected to buttons, but I've no idea how to use it. Or, can one use the tabluar form element section of the report attributes page to connect the Append (pseudo column) to an action? I've looked at your example (Sam) with the delete button, but what I really need to see is the Apex menu that sets it up because there are so many levels in the interface it is not intuitive (at least for me). I know exactly what I want it to look like but I'm missing the crucial step to get there... Thanks for your help so far.
    Column link section is described below :
    Column Link     Top
    Link Text      flashlight          
         [*Append*][Icon 1][Icon 2][Icon 3][Icon 4][Icon 5]
    Link Attributes      
    Target: *"Page in this application"*     Page: *10*     
    Reset Pagination
    Request Clear Cache      
    Name     Value
    Item 1      Px_page_item flashlight *#????#*          flashlight
    Item 2      flashlight          flashlight
    Item 3      flashlight          flashlight
    URL      
    Page Checksum

  • Add Button behaviour

    Hi,
    After completion of my coding, while debugging ,  my validations,data retrievals everything is working fine.But when I press the Add Button, lam getting the Message "You cant change the document after you have add it.."
    and data is not adding, there is no action takes place after clicking on Add Button,except this message..
    Please tell me how to rectify it...
    Thanks & Regards
    Chakrapani Bandaru

    Hi Mahendra,
    Iam placing my code here pls go thru this..in the item event
    If pVal.Before_Action = False Then
                Select Case pVal.FormUID
                    Case "DISTILLASION_"
                        Select Case pVal.EventType
                            Case SAPbouiCOM.BoEventTypes.et_CLICK
                                If pVal.ItemUID = "1" And pVal.FormMode = "3" Then
                                    oForm = SBO_Application.Forms.Item("DISTILLASION_")
                                    BubbleEvent = False
                                    oItem = oForm.Items.Item("Disp") '8
                                    If (oItem.Specific.value = "") Then
                                        oItem.Click()
                                        SBO_Application.MessageBox("- Please Enter 'Dispensing Document Number'")
                                        Return
                                    End If
                                    var1 = SBO_Application.MessageBox("You cannot change this document after you have added it. Continue?", 1, "Ok", "Cancel", "")
                                    If (var1 = 1) Then
                                     SBO_Application.MessageBox("Operation completed successfully"}
                                    End If
                                End If
                        End Select
                End Select
            End If

  • I cannot type a capital i using the left shift key. also keyboard now putting the cursor in a different place than where i type. Checked speech keys, all fine. Batteries fine.

    i cannot type a capital i using the left shift key. also keyboard now putting the cursor in a different place than where i type while i am typing. Checked speech keys, all fine. Batteries fine. Also used the keyboard check program on the imac, shows key ok.
    wireless mouse will suddenly scroll down horizontally and won't stop. when i am on a webpage it will bounce back to the previous page without my doing so. i have tried adjusting the mouse several times, turning it on and off, and now am using my wacom mouse which also seems to have issues with this computer.  i have only had this a few months and getting very frustrated.

    Can you try a different keyboard to see if the problem persists? Also, you have 90 days of phone support when you buy a mew mac.

  • In Acrobat XI, how make "tooltip" pop up when cursor touches a button?

    In a 283-page .pdf, words needing definition are hyperlinked to a "glossary." I want to have a condensed definition pop up when cursor touches the word. I've tried using an invisible button on the word, then put the definition in a "tooltip," but the "tooltip" doesn't pop up when the cursor touches the button. How can I get it to work? Or is there a better way to have popup definitions appear?

    Yes, the button overlapped the link. Since the link goes to the full definition in the glossary, and the button is a condensed definition, I want both--and it looks as if I can condense the button so both will work. So far so good--unless there's a better way.
    thanks again.

  • When i move the cursor into this button instead of Arrow mark i need hand i

    Hi friends,
    I have a button like below .
    <input type=submit  name="onInputProcessing(select)"  value=" Material ">
    When i move the cursor into this button instead of Arrow mark i need hand sign.
    Moosa

    hi use onmouseover event in your button and set the cursor style for button through java script
    function cursor()  -
    > include this function between your script tag
    var e = document.getElementById('select');
    e.style.cursor ="hand";
    call this function in your button onmouseover event

  • Using Ref Cursor in procedure in place of normal cursor

    Hi,
    I have a procedure where i have the follwoing cursors declared,
    CURSOR c_wip IS
    SELECT tdvalue
    FROM tabledetails
    WHERE tdidcode = 'PEL_DASHBOARD'
    AND tdkey LIKE 'WIP_QUEUES%';
    CURSOR c_pending IS
    SELECT tdvalue
    FROM tabledetails
    WHERE tdidcode = 'PEL_DASHBOARD'
    AND tdkey LIKE 'PENDING_QUEUES%';
    CURSOR c_out IS
    SELECT tdvalue
    FROM tabledetails
    WHERE tdidcode = 'PEL_DASHBOARD'
    AND tdkey LIKE 'OUT_QUEUES%';
    CURSOR c_out_status IS
    SELECT tdvalue
    FROM tabledetails
    WHERE tdidcode = 'PEL_DASHBOARD'
    AND tdkey LIKE 'OUT_STATUS%';
    Will the usage of 1 ref cursor instead of the 4 cursors increase the performance.
    Thanks.

    Cursor is a structure which points to a memory locations.
    While a Ref-cursor is a datastructure which point to a object which inturn points to Memory locations.
    The advantage of having Ref-cursor is that we can pass dynamically the Ref-cursor as a parameter to a procedures.
    So it does improve the performance to a small extent.

  • Hide mouse cursor when typing is not working in IE11 Windows7

    Hide mouse cursor when typing is not working in IE11 Windows7 - I saw a post that devs were looking at this in 2011? Slow progress huh?
    This is really annoying when you have to move the cursor to see what you are typing...

    Hi,
    Please first make sure that Mouse Properties\Pointer options\Hide pointer while typing is ticked.
    If this option is already ticked, then try following steps to troubleshoot:
    Update the driver for the mouse to get the best performance.
    Choose a different cursor as Rob said for a test.
    If this issue occurred recently, check if you have any newly installed programs or IE add-ons which cause this issue, you can test this in no add-ons mode, click start button, type "internet" in the search box, choose "internet explorer (No add-on)".
    * I test in My IE, I have Hide pointer while typing checked, and in some typing boxes in IE the cursor will hide automatically, while some are not, but I think it's not an annoying issue for me.*
    Regard
    Yolanda
    TechNet Community Support

  • Changing cursor when rollover Jbutton

    hi All...i need help
    i want to change the cursor when i move my mouse over the button into hand cursor, then when the button being pressed, cursor change to Wait cursor
    here code of mine..
    import java.awt.Color;
    import java.awt.Cursor;
    import java.awt.GraphicsEnvironment;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    * @author tys
    public class cursor_test extends JFrame{
        public cursor_test(){                               
            add_panel panel = new add_panel();              
            add(panel);       
            setBackground(Color.WHITE);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            //GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
            setSize(200,200);
            setVisible(true);
            setTitle("Test cursor");
        public static void main(String[] args){
            new cursor_test();
        }//Main  
    }//end class frame
    class add_panel extends JPanel{
        public add_panel(){
            setLayout(null);
            JButton btn1 = new JButton("button");
            btn1.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                      setCursor(new Cursor(Cursor.WAIT_CURSOR));                 
                      //do my program here
                      try{
                          Thread.sleep(1000);                     
                      catch(Exception z){};                                   
                      setCursor(new Cursor(Cursor.DEFAULT_CURSOR));                   
            });//emd ActionListener
            btn1.setSize(90, 30);
            btn1.setLocation(50, 40);
            btn1.setCursor(new Cursor(Cursor.HAND_CURSOR));       
            add(btn1);       
    }//end class panelwhat did i do wrong in there...because every time i pressed the button..the cursor still Hand Cursor
    Thx
    tys
    Edited by: KingMao on 22 Sep 08 19:35

    Hope this wll helps to you.
    class add_panel extends JPanel{
        public add_panel(){
            setLayout(null);
            final JButton btn1 = new JButton("button");
            btn1.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                      *btn1.setCursor(new Cursor(Cursor.WAIT_CURSOR));*                 
                      //do my program here
                      try{
                          Thread.sleep(1000);
                          *btn1.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));*                    
                      catch(Exception z){};                                   
                      setCursor(new Cursor(Cursor.DEFAULT_CURSOR));                   
            });//emd ActionListener
            btn1.setSize(90, 30);
            btn1.setLocation(50, 40);
            btn1.setCursor(new Cursor(Cursor.HAND_CURSOR));       
            add(btn1);       
    }//end class panel

  • Get rid of the mouse cursor when on desktop touch devices

    Hi there,
    I'm using sap.ui.commons controls to build my application. However, this application will sometimes be used on touch devices like large touch screen HDTV connected to a desktop Windows PC.
    When clicking on a button, the button gets focussed. However, as clicking on a control moves the mouse cursor, too, the button gets a mouse over look and feel and the focus style applied.
    Is there a way to disable the mouse over events and style sheets for desktop controls in an easy way? I want to get a similar behaviour like using an application on a device without a pointer (like a tablet or smartphone). No mouse over, no focus.
    Regards
    Tobias

    Hey Tobias,
    have a look at this Thread: javascript - Disable hover effects on mobile browsers - Stack Overflow
    It helped me and might contain a solution to your problem as well!
    Regards,
    Timo

  • Why does added text disappear when I move the cursor

    After adding text to an unprotected .pdf file the text disappears when I move the cursor and want to add a second box of text. The text in the first box reappears when I double click on the space where the box was. How do I set the text so that it remains visible and printable?

    Hi,
    I think the data in the PDF file was filled-in using MAC preview.
    One option is to ask the user to fill the file again using Adobe Reader or Acrobat.
    Or else refer to following link:
    http://acrobatusers.com/actions-exchange/pdf2fdf_auto-save
    Regards,
    Anoop

  • How do I add a vertical cursor to a 2-plot xy graph?

    I have a 2-plot xy graph, and I would like to add a vertical cursor that can be dragged to any x position, and have the 2 y values displayed.  How do I do this?

    OK, my problem is deeper than reading cursor position.  My cursor disappears when the VI is first run, never to appear again.  I have the X-axis set up for absolute time, and I think that might have something to do with it. 
    Attachments:
    CC View Data Graph.zip ‏26 KB

  • Change 'Add A Place' header in Word

    When using Word, a user can “Add a Place” for saving and opening documents for OneDrive or SharePoint; connecting to the Office 365 SharePoint location. By default, this location is set to the default SharePoint site collection (jcare.sharepoint.com)
    and shows the following window when it opens:
    Is there a way in which we can change the header (highlighted in red) for this dialog to display an icon, containing a link to another site collection? If so, where would we go to do this?
    Best wishes, Colin

    Hi Colin,
    According to your description, you might want to customized the content of the “Open” dialog when using the “Add a place” feature in Word.
    By default, the “Open” dialog can only display the certain types of content as what you have seen, there is no such OOTB feature in SharePoint, Office 365 or Office
    desktop application can help to customize it as you wish.
    What’s more, within the exposed APIs of SharePoint for developer, there is no related API for the “Open” dialog customization either.
    Thus, I would suggest you submit a feedback to the Office Developer Platform if there any expectation about the future version of SharePoint or Office 365:
    http://officespdev.uservoice.com/
    If it is an urgent need, you can also open a ticket to Microsoft Support for a quick reply:
    https://support.microsoft.com/
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Cannot add a place even connected to the web

    When I want to add a place the sytem tells me that the map cannot be displayed as there is no web connection. My web connection works and is active. How to force the system to recognize the connection ? I am using PSE 11
    thanks

    Ask the experts in the iWeb forum:
    https://discussions.apple.com/community/ilife/iweb

  • When i move my cursor to the top left corner of the screen, I am automatically logged off. Is it a software problem or is it a feature I can turn off?

    When i move my cursor to the top left corner of the screen, I am automatically logged off. Is it a software problem or is it a feature I can turn off?

    I don't think there is an option for logging off in the Hot Corners, but check Mission Control System Prefs, Hot Corners button. What is set in the top, left.

Maybe you are looking for

  • Is trinidad messages skinning broken in Jdeveloper 11.1.2.4.0 ?

    I'm doing localization of ADF components and messages by skinning method with custom java resource bundle. For component keys (resource strings) part, localization is performing  as expected. The same file contains also localized org.apache.myfaces.t

  • Email prints too small to read, prints OK in I

    When I print emails, they are too tiny to read. They print fine if I print them with IE 9. I use verizon webmail and have a Brother MFC-J615W printer. Until recently, Emails were previously printing fine. I have Dell XPS 8300 desktop computer running

  • VSAN properties best practice

    Hi all, I would like to know the best way to configure the next properties (bolded and underlined): show zone status:                               VSAN: 1 default-zone: deny distribute: active only Interop: default                                  

  • Media Pending PP CC 2014

    Hi, When i open PP CC 2014 it opens my workspace and my recent file. But no preview. It only says 'MEDIA PENDING' on a yellow screen. I know hwat it means, had it earlier, but this time it won't go away and show the sequence preview. 1 out 10 times w

  • IWork documents are missing! How can I recover them?

    Last night I shut down my Mac. This morning I turned it back on and everything that used iWorks is missing. Help please!