How to Implement Auto tabbing feature in a table region???

Hi All,
I am trying to implement auto tabbing feature in one of my OAF page using java script which is actually working for individual items but
while implementing the same for a table bean its not working. is there any way to implement this feature in OAF without using java script?
if not could anyone give some rough java script for this feature? please this is urgent..
Thanks in advance
Sree

Sree,
check this if it helps ;
https://forums.oracle.com/thread/963732
Not sure we can set Focus in : PFR ,  I hope it is possible in only PR.
Regards
Sridhar

Similar Messages

  • Implementing auto refresh feature in POWL

    Hi,
       I need to know how to implement auto refresh feature in POWL ( Personalize Object Work List ) after pressing any button present in the tool bar on POWL.
    I think this will be implemented in method HANDLE_ACTION of POWL. I need to know how to implement it.
    Regards,
    Maqsood

    Hi Maqsood, could you provide a little more info.
    By pressing right click (or ctrl-right click is sp7 or earlier) you can find the name of an button
    and the name view and teh WD Comp name. All useful if we are to help.
    Also im not sure what autorefresh should do.
    Did you see the start plugs on the POWL ?
    There is a refresh option there.
    How is the POWL being launched ?
    regards
    Phil

  • How to implement a help feature in iView Tray

    How to implement a help feature in an iView Tray?

    Hi Gregor,
    Could the answer be connected to the class com.sapportals.portal.prt.component.SystemModes ?
    I can't really see how this class is called, but it gives the error message you are talking about
    The method doHelp for SP2 Patch3 is provided below
    public void doHelp(IPortalComponentRequest aRequest, IPortalComponentResponse aResponse)
            IPortalComponentContext context = aRequest.getComponentContext(IPOMConstants.DEFAULT_MODE);
            IPortalComponentProfile profile = context.getProfile();
            String helpName = profile.getProperty("com.sap.portal.iview.HelpName");
            if(helpName == null)
                helpName = profile.getProperty("HelpName");
            String helpURL = profile.getProperty("com.sap.portal.iview.HelpURL");
            String isolationMode = profile.getProperty("com.sap.portal.reserved.iview.IsolationMode");
            if(context != null)
                if(helpName != null)
                    String componentName = context.getComponentName();
                    Locale locale = aRequest.getLocale();
                    String language = locale.getLanguage();
                    String helpPath = "help/" + language + "/" + helpName;
                    IResource resource = aRequest.getResource(componentName, "page", helpPath);
                    if(resource.isAvailable())
                        aResponse.addResource(resource);
                    else
                        aResponse.write("<b>Sorry, no help available.</b>");
                } else
                if(helpURL != null && helpURL.length() > 0)
                    if(helpURL.startsWith("http://"))
                        if(isolationMode != null && isolationMode.equals("URL"))
                            HtmlIFrame frame = new HtmlIFrame();
                            frame.setStyle("width:100%; height: 100%;");
                            frame.setSrc(helpURL);
                            aResponse.write(frame.toString());
                    } else
                        String componentName = null;
                        if(helpURL.charAt(0) != '/')
                            componentName = context.getComponentName();
                        } else
                            int componentNameIndexEnd = helpURL.indexOf('/', 1);
                            componentName = helpURL.substring(1, componentNameIndexEnd);
                            helpURL = helpURL.substring(componentNameIndexEnd);
                        IResource resource = aRequest.getResource(componentName, "page", helpURL);
                        if(resource.isAvailable())
                            aResponse.addResource(resource);
                        else
                            aResponse.write("<b>Sorry, no help available.</b>");
                } else
                    aResponse.write("<b>Sorry, no help available.</b>");
    The doOnNodeReady method is also rather interesting. Perhaps another way to solve it?
    protected void doOnNodeReady(IPortalComponentRequest request, IEvent event)
            NodeMode nodeMode = request.getNode().getNodeMode();
            if(nodeMode == NodeMode.HELP_MODE)
                IPortalComponentContext context = request.getComponentContext(IPOMConstants.DEFAULT_MODE);
                IPortalComponentProfile profile = context.getProfile();
                String helpName = profile.getProperty("com.sap.portal.iview.HelpName");
                if(helpName == null)
                    helpName = profile.getProperty("HelpName");
                String helpURL = profile.getProperty("com.sap.portal.iview.HelpURL");
                String isolationMode = profile.getProperty("com.sap.portal.reserved.iview.IsolationMode");
                if(context != null && helpName == null && helpURL != null && helpURL.length() > 0 && (isolationMode != null && !isolationMode.equals("URL") || isolationMode == null) && helpURL.startsWith("http://"))
                    request.redirect(helpURL);

  • How to implement the shared lock in a  table view

    Hi,
    How to implement the shared lock in a  table view.for multiple users to edit on this same table.
    Thanks in advance
    Swathi

    Hi,
    Please refer this link to find solution to your querry.
    Hope it helps.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c322c690-0201-0010-fb86-811c52b0acc2.
    Regards,
    Rahul

  • Implementing Auto Shutdown feature in J2ME midlet

    I am trying to figure out all possibilities to implement an auto shutdown feature in an application which uses only high level UI components (Lists and Forms), if the application remains idle for a specified time say 60 seconds.
    Any suggestions how one could achieve this.
    Thanks.

    No, its not necessary that everytime user does something and some code is executed, for instance if the user is navigating UP or Down a List and is only pressing UP/DOWN navigation keys in such a case no code is executed. What to do in such a case??
    Thanks.

  • How to disable auto clear feature in a text box in IE10

    How to disable auto clear button in Text box in IE10
    Hi Team,
    I saw this question on Microsoft forum but I did not find any reply to this question, therefore, I am re-posting it.
    When I run web interface application on IE10, i see there is a new feature which has 'X' at the end of text box and on clicking it it clears the text.
    Are there any settings of IE10 that can be changed to disable it or some code snippet?
    I find the 'X' sign at the end of text box very annoying and would like to turn it off and make it compatible with older versions of IE and other explorers.
    Looking forward to your answer at the earliest.
    Regards
    Sakshi

    Hi,
    Please try the steps in the following thread to see whether it could help:
    Remove IE10's “clear field” X button on certain inputs?
    http://stackoverflow.com/questions/14007655/remove-ie10s-clear-field-x-button-on-certain-inputs
    Regards,
    Vincent Wang
    TechNet Community Support

  • How to implement Auto Suggest Widget

    Hi there
    I have a dynamic asp classic page, where the data come from an access db.
    On this page, many documents (category and title ) are displayed for download.
    I want to implement Auto Suggest Widget in order to find the document easier and to jump to it (href="#document_xy") directly for download.
    I don't have a clue on how to implement the Auto Suggest Widget.
    The ASP sample works with XML File.
    http://labs.adobe.com/technologies/spry/samples/autosuggest/SuggestSample.html
    All replies, hints, tutorials are highly appreciated.
    kind regards
    joey00x
    I am using Win XP, Dreamweaver CS3

    Hi,
    thanks for trying to help.
    I am sorry to ask again. I am not at all familiar with xml.
    I have tried to modify the ASP script you've suggested, but I get strange XML error, which doesn't make sense to me.
    I understand that with the script the server creates an XML File on the fly. First I have to connect to my access database, then I fill the records into a recordset object. And then the server loops through the RS and creates the xml file. Is that correct?
    The error message I get, points to a complete different place in the code, to a javascript module, which is working perfectly without below code.
    Any suggestions where the bug is?
    Thanks for your time
    kind regards
    joey00x
    Here the code that I am using:
    <%
    Dim objRS
    Dim SQLxml
    SQLxml = "Select category, subcategory, title from DocumentView"
    Set objRS=Server.CreateObject("ADODB.Recordset")
    objRS.Open SQLxml , objConn, 0, 1
    ' Send the headers
    Response.ContentType = "text/xml"
    Response.AddHeader "Pragma", "public"
    Response.AddHeader "Cache-control", "private"
    Response.AddHeader "Expires", "-1"
    %>
    <?xml version="1.0" encoding="utf-8"?>
    <root>
      <% While (NOT objRS.EOF) %>
        <row>
             <%
                For each field in objRS.Fields
                column = field.name
             %>
            <<%=column%>><![CDATA[<%=(objRS.Fields.Item(column).Value)%>]]></<%=column%>>
            <%
                Next
            %>
        </row>
        <%
          objRS.MoveNext()
        Wend
        %>
    </root>
    <%
    objRS.Close()
    Set objRS = Nothing
    %>

  • How to disable auto connect feature in SQLDeveloper's connections manager

    Hi Guys,
    I work with SQLDeveloper 2.1.1 (Patch 1)
    It attempts to connect to the target always after you Right click on saved connection from within the connections' manager list.
    Does any one know how to disable that auto connect feature in SQLDeveloper?
    Any help would be appropriated.
    Cheers!!

    Hi, a good question:
    Here's my list of extensions installed:
    - Open Insider View (4thelephant) Insider SQLDeveloper
    - Oracle SQLdeveloper data modeler viewer
    - Oracle SQLdeveloper Migrations - MS Access
    - Oracle SQLdeveloper Migrations - MySql
    - Oracle SQLdeveloper TimesTen
    - Versioning support.
    That's all what i can see in extensions window.
    Cheers!!
    eMarcel

  • Hello, everyone, can anyone tell me how to implement auto cash?

    hello everyone :
          who can tell me how to implement the business process of Auto Cash in Sap,  could't thank you more.
          Best Regards.
                                                                   Frank .

    hello, frank.
    could you please explain the "Auto Cash" scenario a little more?  we might know it by another term.
    regards.

  • How to implement auto complete using swings?

    Hi all ,
    i have got a new assignment where I have to implement auto complete. Please suggest me the possible ways to do so. I am working on desktop application.
    Please help.
    Thanks
    Alex

    Till now i have tried this:-
    public class AutoCompletePer extends JFrame
         private JTextField field = new JTextField(40);
         private JFrame frame1 = new JFrame();
         private boolean showAutoComplete = true;
         public AutoCompletePer()
              setSize(500,300);
              setLocation(300,50);
              setLayout(new FlowLayout());
              getContentPane().add(field);
              setVisible(true);
              setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              addListeners();
         private void addListeners()
               field.getDocument().addDocumentListener(new DocumentListener() {
                public void removeUpdate(DocumentEvent e)
               public void insertUpdate(DocumentEvent e)
                     if(showAutoComplete)
                          SwingUtilities.invokeLater(new Runnable() {
                        public void run()      {
                        Point p = field.getLocationOnScreen();
                           frame1.setBackground(Color.white);
                        frame1.setSize(field.getWidth(), 200);
                        frame1.setLocation(p.x ,p.y+20);
                        frame1.setVisible(true);
                        frame1.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                        JPanel panel = new JPanel(new BorderLayout());
                        panel.setBackground(Color.WHITE);
                        panel.add(new JLabel("i am label"));
                        frame1.getContentPane().add(panel,BorderLayout.CENTER);
                        showAutoComplete = false;
                        requestFocus();
                        field.requestFocus();
                          public void changedUpdate(DocumentEvent e) {
         public static void main(String[] args) {
              new AutoCompletePer();
    }I tried this but it doesn't work atleast frame should remain infront of the main window, even I tried with dialog box but all in vain.
    Please suggest if there is any API defined for this in Java or any other wayOut.
    Please help.
    Alex

  • How to implement row level security using external tables

    Hi All Gurus/ Masters,
    I want to implement row level security using external tables, as I'm not sure how to implement that. and I'm aware of using it by RPD level authentication.
    I can use a filter condition in my user level so that he can access his data only.
    But when i have 4 tables in external tables
    users
    groups
    usergroups
    webgrups
    Then in which table I need to give the filter conditions..
    Pl let me know this ...

    You pull the Group into a repository variable using a session variable init block, then reference that variable in the data filters either in the LTS directly or in the security management as Filters. You reference it with the syntax VALUEOF("NQ_SESSION.Variable Name")
    Hope this helps

  • How do you add calculation columns to a table Region by using the Footer?

    I have a requirement to add some aggregate metrics at the bottom of my "tableRegion". The "TotalValue" property value for the table is not going to work for me since I the data I'm calculating is more complicated then doing a simple "sum".
    My first try (simple test case) was to use "OATableFooterBean". However, when it tries to find the table bean, it comes back as "null":
    if (empDetails != null) {
    OATableFooterBean tblFooter =(OATableFooterBean) empDetails.getFooter();
    if (tblFooter != null) {
    tblFooter.setAttributeValue("EmployeeName", "Merit Inc Target/Budget");
    I'm guessing it is due to not defining a "footer" region for my "table" region. When I click on the "Table" region, then due "New", I dot see "Region" listed as an option. So my question is how do I add a region "footer" to my "table" region? Once I have that, I'm sure it will solve the "null" exception I'm seeing for trying to get the table footer in the above code.
    Thanks

    Hi,
    For this create a transient attribute in the VO.
    Perform your required logic on this new transient attribute.
    Now create a footer region and create a styledtext and assign this transient attribute.
    Regards
    Sridhar

  • How to implement auto increment in jpa

    Hi all
    how can we indicate that the strategy for primary key generation in auto increment?( the database is mysql5)
    thanks for help

    Hi Rachid,
    Have a look at this...
    http://www.developerscrappad.com/408/java/java-ee/ejb3-jpa-3-ways-of-generating-primary-key-through-generatedvalue/
    Cheers,
    Vlad

  • How to implement SQL Over-ride on Source Tables in OWB?

    How can we acheive SQL-Override feature similar to the one available in informatica on OWB.
    We are thinking of using a view to filter the required data.And defiinig the view as the source in the mapping.
    Is this the best approach to go by,any thoughts suggestions?

    Informatica is a pipelined client/server ETL tool which means that if you read from a table and then apply a filter it will read all of the data onto the client (i.e. the application server, not a user machine) and then filter the data so it is not unusual for developers to want to put a lot of the logic into the SQL to reduce the number of records (which sort of defies the purpose of using the tool in the first place).
    OWB is more of a ELT/code generator so if you create a similar mapping with a table and filter it will generate the SQL with the filter included. To be honest, I'm not 100% sure about this bit but I believe if you have a source via dblink (or even ODBC) then that full generated SQL should be sent to the source. In other words, although some people might be more comfortable with custom SQL I dont think it is actually necessary in most if not all cases.

  • How to implement a page showing different database tables

    I am wondering what is the best way to implement the following task:
    On the left side of a page, there are two Listboxes. On the right side of the page, I want to display different database tables depending on the selected value from those two Listboxes.

    I am wondering what is the best way to implement the
    following task:
    On the left side of a page, there are two Listboxes.
    On the right side of the page, I want to display
    different database tables depending on the selected
    value from those two Listboxes.A Data Table component isn't really designed to dynamically swap which database table you're binding too (and therefore which set of columns you will display) under the covers. Here are a couple of general strategies to consider for accomplishing your functional requirements:
    * Create a separate Data Table component for each possible database table, all on the same page, and dynamically set the "rendered" property of the selected Data Table to true, while setting it to false for all other Data Tables. That way, only the corect one will be shown.
    * Create a separate page for each Data Table, using a similar look and feel so that it appears to the user like it's all the same page. To save cutting and pasting the list components, put them in a JSP Page Fragment so they can be reused on each page. ((SIDE NOTE: This is a very common technique for simulating what looks like tabbed panes, but where the implementation actually uses separate pages.))
    * Use frames so that the left frame (containing the list boxes) stays the same, and the right frame switches to a different page for each of the tables. This is essentially another way to share the list components across the pages.
    * Abandon all the ease-of-use stuff Creator provides for binding to data tables, and write code that programmatically erases all the old child components and creates new ones. This is the sort of thing you'd need to do for a "SQL BROWSER" sort of application, where the set of columns is not known ahead of time.
    Craig McClanahan

Maybe you are looking for

  • Project Server 2013 reporting database change in Schema from Project Server 2010

    I have a current Project Server 2010 implementation, I am planning to migrate to Project Online. We have Customized Reports that consume from the PS 2010 Reporting DB. Are there differences in the Reporting DB schema  between PS 2010 and Project Onli

  • Flash components

    Where I can get (download) it ? ("fl.*")

  • Photoshop CS5 problem

    When trying to set up a custom paper size in CS5 the application quits. This keeps me from either setting up a new size or changing one of the sizes that were set up before Yosemite. I've searched for CS5 Yosemite upgrade with no success. Can anyone

  • Regarding BADI CRM_UPLOAD_BEA_FILL

    How can we get the sales order from docflow Please provide me the table names for billing documents and doc flows and orders and contracts.

  • New line in smart form CL_ABAP_CHAR_UTILITIES= New line

    Hi We are trying to display new line in a table cell using the cl_abap_char_utilities=>newline but it display 'c' instead of newline while  concatenate the text and also we are trying with  cl_abap_char_utilities=>cl_rf but it display '#' instead of