4.0 EA1 - New Worksheet

In previous versions if you were on a tab and opened a new worksheet it would open the new worksheet to the right of the one you were focused on. In 4.0 EA1 no matter which existing tab you are on it always seems to open a new worksheet on the right most side.
The previous functionality was useful as you could then group your tabs together if across multiple instances, now they can get muddled up or i'll have to drag them out to get them grouped together.

Jeff,
I appreciate the update and i wasn't really trying to get into "best practices for database development and security for the data dictionary".
All i was trying to ask/understand is why now certain standard functionality doesn't work any more when logged in as APPS. I would have expected that to get an explain plan i should just be able to get one esp if logged in as APPS but however this is not always the case anymore. I don't have a problem with DB security and am happy for to ask for privileges for things but I'd rather know i need them to use some functionality than have to ask/work it out for myself.
Thanks
Paul

Similar Messages

  • How can I create a new worksheet every time that one cell it´s filled

    I was looking in the references formulas and I find the formula "Direcction".
    My goal it´s to create a new worksheet everytime that some cells are filled.
    So I need one formula that alows me to put this reference and open automaticaly a new worksheet and this new table inside of this worksheet.
    It is clair the question?
    Someone can help me wiht that?

    Hi Wayne, Not really, the smaller table it´s not really important, I was trying to do the new sheet with it in that case.
    What I want is to use the dates in the row with the items markeds to create a new worksheet.
    I made an example donw here.
    I have the first table, than from it, I want to do 4 new tables
    I mean, everytime that I finish with one column I want to have a new table (in a new work sheet) with that items markeds.
    Do you think that script it´s possible to solve this?
    How can I do it?

  • Applescript - coping columns in a new worksheet in Excel 2004

    Dear all,
    I’m new to Applescript and would appreciate a help on the following:
    I'm trying to copy in different worksheets of a new Excel 2004 workbook(New _WB.xls) different columns (blocs of text + data) in the same worksheet (lest’s call it file1 of a workbook named Old_WB.xls). The columns are separated by 2 empty rows.
    I've searched solutions online with no luck.  Can anyone show me how to code the solution of this problem in Applescript?
    Thanks in advance.
    Ghan

    well, then you want something like so:
    tell application "Microsoft Excel"
              open alias "path:to:workbook"
              set x to value of used range of worksheet 1 of workbook 1
    end tell
    set block to {}
    set idx to 1
    repeat with thisLine in x
              if thisLine as list = {"*", "", ""} or thisLine as list = {"", "", ""} then
      -- empty line means end of block; make sure some block has been collected then process
                        if block is not {} then
                                  set rowCount to count of block
                                  tell application "Microsoft Excel"
                                            tell workbook 1
                                                      set nws to make new worksheet at end
                                                      tell nws
                                                                set name to "file" & idx
                                                                set value of range ("A1:C" & rowCount) to block
                                                      end tell
                                            end tell
                                  end tell
                                  set idx to idx + 1
                                  set block to {}
                        end if
                        if thisLine as list = {"*", "", ""} then
      --all done
                                  exit repeat
                        end if
              else
                        copy thisLine to end of block
              end if
    end repeat
    I've used a "*" character o signify the end of data - you'll need to change that to what you use in lines 9 and 25. Be careful that there's nothing else written outside of the data range because the used range command will pick up on it and goof things up.

  • How do I add a new worksheet to an excell file utilizing a template with the report generation toolkit?

    Hello,
    My vi is gathering data from a piece of machinery. At varrious points durring the process, my vi must create printable reports. I am using the report generation tool kit to do this. What I want to do is for every report generated durring the run, add it as a new worksheet in an Excell workbook. My excell template works fine for the initial master report and I can add new data to new worksheets. What I am having a problem figuring out is how do I add the new data to a new worksheet using an excel template? I have 5 different reports that need to be generated at different times with some more often than others. I would like all these reports to be in the
    same master excel file. Thanks in advance
    -Greg
    Gregory Osenbach, CLA
    Fluke

    Hi Greg,
    There is no built-in support in LabVIEW to add a new worksheet to an existing Excel report simply because this functionality does not exist in the Excel application itself.
    My suggestion would be to open up the template you wish to use for the new worksheet. Copy the cells from the template and paste them into your new worksheet that you've created. Then close the original template and you have another copy of the template in which you can populate with data values.
    I have attached an example program of how to Copy and Paste a Cell in Microsoft 97 Using ActiveX in LabVIEW to this post. Hope this helps!
    Kileen C.
    Applications Engineer
    National Instruments
    Attachments:
    XL_cell_copy_and_paste.llb ‏76 KB

  • Is it possible to open a new Worksheet without creating a new *.sql file

    Hello Community,
    Declaimer: It may be a trivial question. I just willing to make SQL Developer my default day to day tool.
    I is possible to open a new Worksheet without creating a new *.sql file. Like in an MS Word. If I just need some space to write something and than destroy the file without saying. I can quickly click < ctrl + N > and get the space.
    In SQL Developer to get a new "space"/work sheet i
    -a- < ctrl + N >
    -b- choose "SQL File"
    -c- confirm default location
    -d- choose the connection to be used (right top conner)
    This process is way to long for getting a new sheet to put write an SQL.
    Can you suggest a better way to get a workspace with current connection assigned in no time (like in MS Word)?
    Please ;)
    Yury

    There is no need to create new .sql file.
    I don't know why you need new SQL Worksheet when you can simply do the space by pressing Enter, but you can open a new one from Tools -> SQL Worksheet. There is also a toolbar button for this.

  • Copying Query & Formatting on Worksheet to New Worksheet in Same Workbook

    Hi,
    Can anyone advise me the quickest way to copy a query that is working on one worksheet to a new worksheet. More importantly how do I retain the formatted features of the worksheet from which I am coping from? I have tried to copy the query to a new worksheet which is OK but I cannot seem to retain the format features from the original worksheet. Am I missing something simple?  We are on version 3.5.
    Thanks

    Shanky_621: Thanks for taking the time to help. The following blog article talks about what I'm trying to do:
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;914288
    The goal is to recreate the inefficent plan on a test database without copying the data. The article talks about this as a "statistics only copy".
    You noted, "SQL server generating query plan is internal mechanism into which we cannot interfere unless we use Query hint...". The engine uses statistics and histograms to generate plans then choose the most efficent one for execution. Those statistics
    are generated from data in the database, and that process is done periodically. You don't think the engine actively scans each table in a query each and every time a query is run? Right! That would be crazy. It just checks the stats. What I'm trying to
    do is pull the stats from one database into another. The article does a better job explaining this.
    JRStern (Josh): Yes brother! You understand what I'm trying to do. Like you, I am wrestling with a feature/process I've only read about. The actual execution is... not as expected. I actually just found the article I noted to Shanky. I'm trying that process
    now. I'll tell you how it goes.
    Adam

  • HOW CAN I ADD NEW WORKSHEET(TAB) TO EXCEL USING ABAP pROGRAM?

    i want to add new tabs to my excel file using abap.... can someone help me on this?

    hi,
    PERFORM add_worksheet USING 'Test 1'.
    *& Form ADD_WORKSHEET
    FORM add_worksheet USING i_name.
    Add new worksheet
      IF g_first_ws <> 'N'.
        g_first_ws = 'N'.
        GET PROPERTY OF g_excel 'ACTIVESHEET' = g_worksheet.
      ELSE.
        CALL METHOD OF g_worksheets 'Add' = g_worksheet.
      ENDIF.
      SET PROPERTY OF g_worksheet 'NAME' = i_name.
      g_row = 1.
      g_col = 1.
    ENDFORM. " ADD_WORKSHEET

  • Funcionallity "Add Drilldown to characteristic in new Worksheets" crashes

    Hello comunnity,
    in BEx 7 Analyzer I opened a query. In the filter section you have the characteristics to do your OLAP-activities and filtering.
    In the context menu of the characteristics there's the funcionallity "Add Drilldown to characteristic in new Worksheets".
    Some of our users discovered that this funcionallity crashes/is very slow (more than 30 minutes) with some characteristics. Beside aggregates that should not be happening.
    For example with "0calyear" which has about 7 different values it's working within 45 seconds. I can live with that. But taking "0INFOPROV" which should only have 3 different values in that query, it is crashing or taking more than 30 Minutes.
    I have absolutely no idea what's the background to that. I have tried out different queries and the behaviour is more or less the same.
    Got someone an idea how to get that working? Any help is welcome.
    Bye Harry

    Hi,
    As also mentioned by Leszek I also would start with testing if the same problem occurs as well in transaction RSRT when running the underlying query.
    You may also check where the query is "hanging" that long while the problem is actually happning (via transaction SM50/SM66). In case that it is reading from the database (SQL-statement execution) then this indicates a database related problem (see SAP note 1681396).
    BR Bernhard

  • Create and name new worksheets in existing excel spreadsheet

    Hello-
    I am running LabVIEW 6i and excel2000. I need to write data acquired in LabVIEW to new worksheets of an already existing excel spreadsheet, and also name these new worksheets. I have been able to create the new worksheets but haven't yet figured out how to name them. I'm new to activeX and any help would be greatly appreciated.
    Thank you

    Hi Paul,
    Programming using ActiveX can be tricky, especially knowing just what kind of datatypes the different methods and properties are expecting. There are 2 ways I would recommend for users to find out about ActiveX parameters:
    1. Right-click and choose Help for the specific property/method.
    When you have a method or property selected on the Property or Invoke Node, you can right-click and there will be 2 help options--one for the generic Property Node or Invoke Node, the other for the specific method or property that is selected in the node itself. If you select the help for the specific property/method, a Microsoft Visual Basic Reference Help should appear that will provide you with explanations and examples of the datatypes that method/property is expecting given the object that is in use.
    2. Go to the MSDN Library >> Excel Object Model
    This has an overview of Microsoft's Excel Object Model and will also show you how to use Microsoft's Excel Object Model.
    Keep in mind that because ActiveX can be tricky, NI also offers the Report Generation Toolkit to make programming to Word and Excel much easier! Nice tutorials and examples are provided too.

  • JDev 10.1.3. EA1 - new version = new bugs

    I was very surprised to read about the new EA1 version.
    Download - unzip - run - convert from 10.1.3 preview - disapointment...
    *.hta are now accepted as html files - fine!
    <tr> after <table> is not expected = error - hmmm ???
    attribute styleClass not defined in html:text = warning - hmmm ???
    onBeforeUnload not defined in body tag = warning - for IE 6 the event is correct
    Where is Jalopy from the preview version?
    The java code analysis seems to work much better than in the preview version! A lot of warnings help me to optimize my code. But the analysis of JSP code seems to me very strange.
    Has anyone of the developement team ever tested EA1 against the webstarterapp 2 code?
    This version of JDeveloper does not seem to work for me. I am waiting for the next version and go on coding with the preview.
    -Detlef.

    Your request is my commandk, Shay. Thanks for looking at it.
    The code originates in the webstarterapp 2 application and is a bit modified.
    <%@ page contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
    <jsp:useBean id="logonBean" scope="session" type="model.LogonBean"/>
    <jsp:useBean id="uploadForm" scope="request" type="org.apache.struts.action.DynaActionForm"/>
    <%@ page import = "model.common.Constants"%>
    <html>
    <head>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
    <%--
    <meta http-equiv="cache-control" content="no-cache">
    --%>
    <link rel="stylesheet" charset="UTF-8" type="text/css" href="./styles/coba_style.css">
    <title><bean:message key="APPLICATION_NAME"/></title>
    <script language="javascript" type="text/javascript">
    var servletPath = "<%=request.getContextPath()%>";
    function cancel()
    // manually build cancel url , as multipart forms are special
    var windowId = document.uploadForm.elements["windowId"].value;
    var url = servletPath + "/browseDirectory.do?windowId="+ windowId;
    document.location=url;
    function changePageno(pageno)
    document.uploadForm.elements["pageNo"].value=pageno;
    document.uploadForm.submit();
    </script>
    <script language="JavaScript" type="text/javascript" src="jsscripts/overlib.js"></script>
    </head>
    <BODY class="Background" onBeforeUnload="HandleOnClose()" onKeyDown="javascript:return HandleOnClose();" >
    <noscript>
    <bean:message key="NO_JAVASCRIPT"/>
    </noscript>
    <div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div>
    <jsp:include page="header.jsp"></jsp:include>
    <table width="100%" summary="" border="0" cellspacing="2" cellpadding="0">
    <tr>
    <td align="left" valign="bottom">
    <H1 class="OraHeader">
    <bean:message key="UPLOAD_PAGE_TITLE"/>
    </H1>
    </td>
    <td align="right" valign="top">
    <%-- no buttons available --%>
    </td>
    </tr>
    </table>
    <table summary="" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td align="left">
    <table width="100%" summary="" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td class="OraPromptText">
    <bean:message key="CURRENT_USER"/>: 
    </td>
    <td class="OraDataText">
    <jsp:getProperty name="logonBean" property="username"/>
    <logic:equal scope="session" name="logonBean" property="userOrAdmin" value="Admin">
     [<jsp:getProperty name="logonBean" property="UserOrAdmin"/>]
    </logic:equal>
    </td>
    </tr>
    <tr>
    <td class="OraPromptText">
    <bean:message key="CURRENT_DIRECTORY"/>: 
    </td>
    <td class="OraDataText">
    <%=uploadForm.get(Constants.CURRENT_DIRECTORY_PATH_KEY)%>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    <jsp:include page="errorMessage.jsp"></jsp:include>
    <jsp:include page="warningMessage.jsp"></jsp:include>
    <P>
    <span class="OraInstructionTextStrong">
    <bean:message key="UPLOAD_FILES_TO_UPLOAD"/>:
    </span>
    </P>
    <html:form action="/upload.do" enctype="multipart/form-data">
    <html:hidden name="uploadForm" property="windowId"/>
    <html:hidden name="uploadForm" property="currentDirectoryPath"/>
    <html:hidden name="uploadForm" property="pageNo"/>
    <table style="border-collapse:collapse" cellpadding="1" cellspacing="0" border="0" width="100%">
    <colgroup>
    <col width="12%">
    <col width="45%">
    <col width="43%">
    </colgroup>
    <tr>
    <th class="OraTableColumnHeader" scope="col" style="border-left:1px solid #f7f7e7">
    <bean:message key="OVERWRITE"/>
    </th>
    <th class="OraTableColumnHeader" scope="col" style="border-left:1px solid #f7f7e7">
    <bean:message key="FILE"/>
    </th>
    <th class="OraTableColumnHeader" scope="col" style="border-left:1px solid #f7f7e7">
    <bean:message key="DESCRIPTION"/>
    </th>
    </tr>
    <tr>
    <td class="OraTableCellText" align="center"
    style="border-bottom:1px solid #cccc99"
    headers="overwriteHeaderId">
    <label for="overwriteFile1">
    <span class="invisible">
    <bean:message key="SELECT_ITEM"/>
    </span>
    </label>
    <input name="overwriteFile1" title='<bean:message key="OVERWRITE"/>'
    type="checkbox" value="<%=Constants.OVERWRITE%>">
    </td>
    <td class="OraFieldText" style="border:1px solid #cccc99">
    <html:file property="uploadFile1" size="40"/>
    <span class="invisible">
    <label for="uploadFile1">
    <bean:message key="FILE"/>
    </label>
    </span>
    </td>
    <td class="OraFieldText" style="border:1px solid #cccc99">
    <html:text name="uploadForm"
    styleClass="OraDataText"
    property="uploadDescription1"
    size="50"
    maxlength="50"/>
    <span class="invisible">
    <label for="uploadDescription1">
    <bean:message key="DESCRIPTION"/>
    </label>
    </span>
    </td>
    </tr>
    <tr>
    <td class="OraTableCellText" align="center"
    style="border-bottom:1px solid #cccc99"
    headers="overwriteHeaderId">
    <label for="overwriteFile2">
    <span class="invisible">
    <bean:message key="SELECT_ITEM"/>
    </span>
    </label>
    <input name="overwriteFile2"
    title='<bean:message key="OVERWRITE"/>'
    type="checkbox"
    value="<%=Constants.OVERWRITE%>">
    </td>
    <td class="OraFieldText" style="border:1px solid #cccc99">
    <html:file property="uploadFile2" size="40"/>
    <span class="invisible">
    <label for="uploadFile2">
    <bean:message key="FILE"/>
    </label>
    </span>
    </td>
    <td class="OraFieldText" style="border:1px solid #cccc99">
    <html:text name="uploadForm"
    styleClass="OraDataText"
    property="uploadDescription2"
    size="50"
    maxlength="50"/>
    <span class="invisible">
    <label for="uploadDescription2">
    <bean:message key="DESCRIPTION"/>
    </label>
    </span>
    </td>
    </tr>
    </table>
    <p/>
    <table style="border-collapse:collapse" cellpadding="1" cellspacing="0" border="0" width="100%" summary="">
    <tr>
    <td align="right">
    <table>
    <tr>
    <td align="right">
    <input type="submit"
    name="<bean:message key="UPLOAD_BUTTON"/>"
    value="<bean:message key="UPLOAD_BUTTON"/>">
    </td>
    <td align="left">
    <html:button property="cancelButton" onclick="javascript:cancel()">
    <bean:message key="CANCEL_BUTTON"/>
    </html:button>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </html:form>
    <jsp:include page="footer.jsp"/>
    </body>
    </html>

  • EA1 - New Things I Love!

    All,
    Despite all of the "soon to be fixed" problems with EA1, I wanted to take a moment to let all of the developers know how much of an improvement EA1 is over its predecessor.
    Here are the top 5 new things I've noticed and really appreciate:
    1. Visual Enhancements - It looks great!
    2. Holy SQL Formatter Batman - Perhaps still a little lacking but moving in the right direction.
    3. SQL History as dockable window is awesome!
    4. Hiding stored procedure signatures until mouse over - much easier to read.
    5. Saving files is easier with buttons into My Docs and the Desktop.
    There are, of course, many other updates that I'm happy to see and many more I have yet to find I'm sure. Great job guys, keep up the good work.
    Dan

    Yeah, code insight is really usable for the first time. Gave me a fuzzy warm feeling when I had it pop up during writing my first 1.5 query. Other versions were so slow that rarely happened.
    Internal queries and connection management obviously improved also: up to now I didn't get any unwanted automatic connection. Before, just invoking a connection's context menu already needed being connected. Still missing a Reconnect option there though...
    I'm also glad to see the work done for file based development, in preparation for version control: the new History tab is really great. Bummer version control and the compare feature aren't operative yet, but all in it's time.
    Still a lot to try out, but I'm pretty confident 1.5 will be meeting most expectations.
    More later,
    K.

  • RAS export to Excel - new Worksheet by group

    Hi,
    I have a report sales by salesperson ( group by salesperson) . New page after each salesperson.
    Printing is fine, however now I have the request when exporting to Excel to make each salesperson its own worksheet in the excel workbook.
    Is this possible using RAS to for Excel export ?
    Thanks
    Oskar

    Adam, Ludek,
    thanks.
    At least I now know what I cannot do ...
    Then probably the only way is to write the stuff into one worksheet - to file - and then either modify the file or use office interop
    Thanks
    Oskar

  • EA1 - bug: worksheet not updated when switching between tables of same name

    Consider this scenario: two schemas, A, B. Each schema has a table X.
    Look at A.X data by selecting A/Tables/X in the connection list and clicking the Data tab.
    Now immediately look at B.X data by selecing B/Tables/X in the connection list.
    Bug: the worksheet viewer does not switch to B.X, but still shows A.X.
    Workaround: Click to another table before going from A.X to B.X.

    I had the same issue (bug: showing data in tables with same name, 2 different databases but I can't reproduce either...
    K.

  • EA1 - new line in title on error message

    My database connection is oracle 10.2.
    Into a workbook type "select" and press F9 to run the script
    The title of the error message is ORA-00936: missing expression
    However, at the end there is a new line character.
    This displays under window 2000 as a square box, and under windows XP it puts the text off centre vertically in the caption.
    This seems to happen for any error code.

    Yes it does and I hope they can fix it as part of 1.5, but it has been there for ages.

  • 2.1 EA1 Bug: Worksheet Keyboard/Screen lag when default path is set

    If you set a value in the default path to look for scripts in preferences > database > worksheet the performance of the editor degrades significantly.

    Hi,
    I tried a simple test with code in development to test the default path:
    -calling a file containing 'prompt hello' 100 times first with no default path then with a default path (default path directory containing 200 files),
    but I did not see a serious issue (both runs came in at around 0.1 seconds (though both runs could vary even with the same setup between 0.05 and 0.15)).
    There was a bug being worked on where large amounts of worksheet output causes a slow down.
    1/Do you have a better test case?
    2/Should this be enough to see your issue?
    -Turloch

Maybe you are looking for