More rows

Good Morning every one,
After adding a table, the result just shows that FK keys in the table.
Any idea!
Thanks again,
NY

Its all depend on data actually
can try with outer join something like
SELECT USERS.LNAME, LOCATIONS_RF.ADDR FROM CLASSES, COURSES, REGISTRATIONS, USERS, LOCATIONS, LOCATIONS_RF
WHERE (
(CLASSES.COURSE_ID = COURSES.COURSE_ID)
AND (REGISTRATIONS.CLASS_ID = CLASSES.CLASS_ID)
AND (REGISTRATIONS.USER_ID = USERS.USER_ID)
AND (LOCATIONS.CLASS_ID = CLASSES.CLASS_ID)
AND (LOCATIONS.LOC_ID = LOCATIONS_RF.LOC_ID)
AND (LOCATIONS.LOC_ID = REGISTRATIONS.LOC_ID)
AND (CLASSES.CLASS_ID=OVERRIDE_CREDITS.CLASS_ID (+))
OR
SELECT USERS.LNAME, LOCATIONS_RF.ADDR FROM CLASSES, COURSES, REGISTRATIONS, USERS, LOCATIONS, LOCATIONS_RF
WHERE (
(CLASSES.COURSE_ID = COURSES.COURSE_ID)
AND (REGISTRATIONS.CLASS_ID = CLASSES.CLASS_ID)
AND (REGISTRATIONS.USER_ID = USERS.USER_ID)
AND (LOCATIONS.CLASS_ID = CLASSES.CLASS_ID)
AND (LOCATIONS.LOC_ID = LOCATIONS_RF.LOC_ID)
AND (LOCATIONS.LOC_ID = REGISTRATIONS.LOC_ID)
AND (OVERRIDE_CREDITS.CLASS_ID=CLASSES.CLASS_ID (+))
Depending on your driving table

Similar Messages

  • Can we have a tooltip text, formatted on 2 and more rows

    Hello,
    I am interested if it is possible (in List GUIBB) to make a tooltip(on a list cell), containing additional description, formatted on 2 and more rows like bulleted list.
    As I can see the "tooltip" field in the fields description(parameter structure FPMGB_S_LISTFIELD_DESCR of below method) is of type char(100), but I can also assign "tooltip_ref" in method if_fpm_guibb_list~get_definition.
    I tried to insert some special symbol like "\n" but it was rendered exactly.

    I solved the problem already by using the special character  constant cl_abap_char_utilities=>newline for new-line-segmenting the tooltip text on lines.
    (In List GUIBB)I have added a technical field to the field catalog in method IF_FPM_GUIBB_LISTGET_DEFINITION and then in method IF_FPM_GUIBB_LISTGET_DATA assigned the field "tooltip_ref" (thus got limitation of 512 chars instead of "tooltip", which is limited at only 100 chars) of the field description structure to it.

  • Select-options in Selection Screen to show more rows for entering values

    Hi all,
    In my webdynpro abap  I have added the SELECT-OPTIONS componenet and working fine.
    User need  in the Selection Screen for select options  more rows to show entering values in single time.
    THe Default Rows show only 5 .
    user need to change to 10 or 15 Rows to show.
    Pl help .
    THanks in advance.
    Dev

    Hi,
    Here is the way which I just tested and found working.
    This is the main code which needs to be written.
    TYPES:
        ty_r_vbeln TYPE RANGE OF vbeln,
        ty_s_vbeln TYPE LINE OF ty_r_vbeln.
    data ls_vbeln type ty_s_vbeln.
    field-symbols <fs_range> TYPE INDEX TABLE.
    ASSIGN lt_range->* TO <fs_range>.
    do 10 times.
    APPEND ls_vbeln TO <fs_range>.
    enddo.
    For further refinement, you can create a input field in view for number of lines to be shown as enabled.
    The complete code is as below.
    DATA lo_cmp_usage TYPE REF TO if_wd_component_usage.
    lo_cmp_usage =   wd_this->wd_cpuse_select_options( ).
    IF lo_cmp_usage->has_active_component( ) IS INITIAL.
      lo_cmp_usage->create_component( ).
    ENDIF.
    DATA lo_interfacecontroller TYPE REF TO iwci_wdr_select_options .
    lo_interfacecontroller =   wd_this->wd_cpifc_select_options( ).
    DATA lo_r_helper_class TYPE REF TO if_wd_select_options.
    lo_r_helper_class = lo_interfacecontroller->init_selection_screen(  ).
    Creating range table
    DATA lt_range TYPE REF TO data.
    CALL METHOD lo_r_helper_class->create_range_table
        EXPORTING
          i_typename     = 'VBELN'
        RECEIVING
          rt_range_table = lt_range.
    Disabling the global options
    CALL METHOD lo_r_helper_class->set_global_options
      EXPORTING
          i_display_btn_cancel  = abap_false
          i_display_btn_check   = abap_false
          i_display_btn_reset   = abap_false
          i_display_btn_execute = abap_true.
           TYPES:
        ty_r_vbeln TYPE RANGE OF vbeln,
        ty_s_vbeln TYPE LINE OF ty_r_vbeln.
    data ls_vbeln type ty_s_vbeln.
    field-symbols <fs_range> TYPE INDEX TABLE.
    ASSIGN lt_range->* TO <fs_range>.
    do 10 times.
    APPEND ls_vbeln TO <fs_range>.
    enddo.
    Adding the selection field
    CALL METHOD lo_r_helper_class->add_selection_field
        EXPORTING
          i_id                         = 'VBELN'
          I_OBLIGATORY                 = ABAP_TRUE
          I_NO_EXTENSION               = abap_false
          i_value_help_type = if_wd_value_help_handler=>CO_PREFIX_SEARCHHELP
          it_result                    = lt_range.
    Edited by: Jayanthi Jayaraman on Dec 2, 2010 8:29 AM

  • Row Level PPR in Advanced Table with Add More Rows Button

    <br>
    I have programmatically fired PPR event on MessageChoice. But it is in Advanced Table with
    Add More Rows Button. When the value is changed in MessageChoice I Show/Hide Custom LOV
    through SPEL like this ${oa.BioEmployeePVO.EmpManagerRender} .
    But it is <b>hiding the all the ROWS</b> not just the row where the value has been changed.
    I even tried with this code and get NULL for rowReference.
    String rowReference = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    In Processrequest()
    String pageName = pageContext.getRootRegionCode();
         Hashtable params = new Hashtable (1);
         params.put ("param1", pageName);
         Hashtable paramsWithBinds = new Hashtable(1);
        paramsWithBinds.put ("param2",new OADataBoundValueFireActionURL (mcb, "{$AttendeeType}"));
        mcb.setFireActionForSubmit ("empPositionChange", params, paramsWithBinds,false, false);
    In ProcessFormRequest() {
    if ("empPositionChange".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))   
          String rowReference = pageContext.getParameter("param2");
        //    String rowReference = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
         Serializable[] parameters = { rowReference };
          am.invokeMethod("handlePositionChangeEvent", parameters);
    <br>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    HI Kumar,
    Answer to your last post is "yes".
    Now to your doubt regarding the code:
    Hi Anna
    I am trying to understand your code.
    FireAction firePartialAction = new FirePartialAction("fireHideEvent"+(i/noOfTlaColSpan));
    HideImgBean.setAttributeValue(PRIMARY_CLIENT_ACTION_ATTR,firePartialAction);
    1. What is this i/noOfTlaColSpan ?
    :)Forget abt this in your case it should be the event name which u r firing and capturing the it in the PFR.
    Like FireAction firePartialAction = new FirePartialAction("YOurEventName");
    and in PFR u can capture tht as:
    if("YOurEventName".equals(pageContext.getParameter(EVENT_PARAM)))
    //your logic to invoke AM method
    2. I believe this HideImgBean would be MessageChoice for me?
    :)Yep ur right
    3. This brcdOhInventoryViewUpdateVOImpl would be the Custom PVO(Extending Seeded Base VO)
    I create by adding the transient attributes?
    :)Yep ur right
    4. I cannot understand this code. Could you explain.
    :)Please look at my comments in some of the lines .I have explained wht i am doing
    if(updateIter==null)
    updateIter[0]= invViewVO.createRowSetIterator("updateIter");//This initViewVo should be ur custom VO object
    if(cnt>0)
    updateIter[0].setRangeStart(0);
    updateIter[0].setRangeSize(cnt);
    for(int i=0;i<cnt;i++)
    row = (brcdOhInventoryViewUpdateVORowImpl)updateIter[0].getRowAtRangeIndex(i);
    String selectFlag=(String)row.invokeMethod("getPartNumber");//This getPartNuber should be replaced by the Prim Key inoke methd of ur VO
    if(RowID.equals(selectFlag))
    //This is my logic to set the transient attributes based on the msgChoiceBean value ..u have to pass the value when u invoke this method
    if(reserveMethod.equals("BINARY"))
    System.out.println("In Binary");
    Boolean bVal= new Boolean("false");
    Serializable sr[]={bVal};
    Class []methodParamTypes = { bVal.getClass() };
    row.invokeMethod("setshowreservetxt",sr,methodParamTypes);
    Boolean bVal1= new Boolean("true");
    System.out.println("bVal1"+bVal1);
    Serializable sr1[]={bVal1};
    Class []methodParamTypes1 = { bVal1.getClass() };
    row.invokeMethod("setShowreservemsgchoice",sr1,methodParamTypes1);
    break;
    In my AM I am doing this. Am i doing right?:)Yep u r right
    BioPrescribersPVO is the custom VO(extending seeded base VO).
    public void handlePositionChangeEvent(String param)
    OAViewObject vo = (OAViewObject)findViewObject("BioPrescribersPVO");
    OARow row = (OARow)findRowByRef(rowReference);
    if (row != null)
    String position = (String)row.getAttribute("AttendeeType");
    if (("PRESCRIBER".equals(position)) )
    // BioEmpManagerRender is the transient attribute in BioPrescribersPVO.
    row.setAttribute("BioEmpManagerRender", Boolean.TRUE);
    row.setAttribute("BioPresManagerRender", Boolean.FALSE);
    else
    row.setAttribute("BioEmpManagerRender", Boolean.FALSE);
    row.setAttribute("BioPresManagerRender", Boolean.TRUE);
    } // end handlePositionChangeEvent()
    // Initializing the custom VO
    /*No need to initialize the VO because this is not a PVO(Propeties View object)
    U r just using the existing VO and tht vo shloud have a primary key.Tht way u can match the rowref u r getting with the actual row from the View object*/
    public void init()
    OAViewObject appPropsVO = (OAViewObject)getBioPrescribersPVO();
    if (appPropsVO != null)
    if (appPropsVO.getFetchedRowCount() == 0)
    appPropsVO.setMaxFetchSize(0); appPropsVO.executeQuery();
    appPropsVO.insertRow(appPropsVO.createRow());
    OARow row = (OARow)appPropsVO.first();
    row.setAttribute("RowKey", new Number(1));
    handlePositionChangeEvent("");
    } // end init()
    Thanks
    Anna

  • Outer join with first of zero or more rows

    Hi!
    I'm trying to make a join where one part is the first row of zero or more rows. I seem to be getting much poorer performance than I ought to be able to. My tables Node and RelayGroup have 6000 and 3000 rows respectively, while the CommandHist table has 10 million rows. Here are two queries that work, but are fairly slow:
    -- 37s, 28s, 27s
    SELECT DISTINCT n.NodeName,(SELECT Reason from commandhist where CommandHistId = (SELECT MAX(CommandHistID) FROM CommandHist WHERE NodeID = n.NodeID)) AS reason
    FROM RelayGroup rg
    JOIN Node n ON rg.NodeID = n.NodeID
    ORDER BY n.NodeName ASC ;
    -- 21s, 15s, 13s
    SELECT DISTINCT n.NodeName,(MAX(ch.Reason) KEEP (DENSE_RANK FIRST ORDER BY ch.CommandHistID DESC)) AS reason
    FROM RelayGroup rg
    JOIN Node n ON rg.NodeID = n.NodeID
    LEFT OUTER JOIN CommandHist ch ON ch.NodeID = rg.NodeID
    GROUP BY n.NodeName ORDER BY n.NodeName ASC ;
    I suspect that this could be made faster by using ROWNUM to get the first row from CommandHist -- what I'd like to do is
    SELECT n.NodeName, ch.CommandHistID
    FROM Node n
    JOIN RelayGroup rg ON n.NodeID = rg.NodeID
    LEFT OUTER JOIN (SELECT * FROM
    (SELECT CommandHistId, Reason, NodeID FROM CommandHist WHERE NodeID = n.NodeID ORDER BY CommandHistID)
    WHERE ROWNUM = 1) ch ON ch.NodeID = n.NodeID
    ORDER BY n.NodeName ASC;
    except n.NodeID cannot be used within the inner select. Is there a way to 'inject' the value of n.NodeID so that it can be seen from the inner select?
    Thanks in advance,
    -Lars

    Your requirement isn't exactly clear as you haven't provided any table information or example data for us to understand what you are talking about.
    If it's a performance issue take a look at these threads..
    [How to post a SQL tuning request|http://forums.oracle.com/forums/thread.jspa?threadID=863295&tstart=0]
    [When your query takes too long...|http://forums.oracle.com/forums/thread.jspa?messageID=1812597#1812597]

  • Choose from List in A matrix for choosing two or more rows at same time

    Hi Friends,
    Actually I m using choose from list to select Items in a row, i can select Two or more rows from the List but while clicking choose it is taking only one value.
    The no of rows are not activated tat i m choosing from list.
    Thanks in advance
    Vivek

    Hi.
    Here is a [link|https://forums.sdn.sap.com/click.jspa?searchID=12829558&messageID=5584893] where are you can find on of my example on CFL on matrix column.
    I think, you need to made some changes in code from these lines...
        Dim oDataTable As SAPbouiCOM.DataTable
        oDataTable = oCFLEvento.SelectedObjects
        for ...
        end for
    Reply if this guideline was usefull for you.
    Bye

  • Adding more rows in a html table(enclosed inside a jsf tabbed pane)

    hi,
    i m facing a problem. i have a html Table inside a jsf Tabbed Pane and a button to add more rows.whenever i click on the button it should add 5 more rows to the table using javscript.
    can anyone hlp me in solving this problem.
    thankx in advance

    Use the elegant JSF h:dataTable instead of plain HTML table with a heap of DOM stuff.

  • Add more rows problem

    I have an advanced table that displays a single row. Users can use Add more rows if they require more.
    I have 2 small isses.
    Firstly, there are 2 fields. Cost Centre and description. Cost centre has an LOV and description is mapped and populated from the LOV as well.
    When I click on add more rows, the description column of the first record is cleared.....I obviously want this to remain.
    Second issue. When I choose the value from the LOV on rows 2 and above i want to ensure this has not been chosen before in a previous record - any quick way to do this>?
    Robert

    Regarding 2: You can write your Lov VO query with NOT IN :1. Use the CO in your LOV and try to get the value entered by user in above row(s) and bind it in LOV VO query using your Lov CO. Please note that LOV CO might get called before coming to page CO processFormRequest. So try to keep a stringBuffer value in OADBTransaction, which shall concat the values selected in all above rows. Use this value in LOV CO each time.
    Hope it helps.

  • Add more rows with LOV

    I have an LOV based on a VO containing on transient attributes.
    The LOV has 3 return items, 1 is the item the LOV is attached to, the second is a messageStyledText field and the thirds is a formValue.
    When I click on Add more rows (above fields are the sole fields in a classic table) I get a new row, however the value in the messageStyledText is not retained.
    I was planning on storing the same value as the messageStyledText in a formValue and perhaps grabbing the addRows event and setting the values to be the same. Now I have not quite got this working yet.
    So the question is - is this the right approach and if so any pointers?
    If I continue to add rows will I have to continually look through the VO and re-map the formValue back to the messageStyledText?

    Thanks sumit
    This works perfectly. The issue I had was the formValue and messageStyledText were associated with different VO attributes. I was therefore catching the addRows event and setting the attribute manually.
    Thanks a lot

  • Warning  Query has exceeded 200 rows. Potentially more rows exist...

    Hi all,
    I am getting a following warning message on every page.
    Query has exceeded 200 rows. Potentially more rows exist, please restrict your query.
    In my code whatever VO i am using doesnt fetch more than 50 records still I am getiing warning as Query exceeded 200 rows.
    Even on helloWorld Page from Tutorial.jpr also I am getting the same warning.
    Any suggestions , how to remove it.
    Thanks and Regards,
    Anant.

    Its an oracle instance system profile. It will be in effect whether you are testing the page from jdev or the instance.
    --Shiv                                                                                                                                                                                                                                                                   

  • Warning - Query has exceeded 200 rows. Potentially more rows exist, please

    Hi Guys
    I am really stuck on this one did a snoop in the forum to find what the problem may be but have found nothing that can help me.
    I get the following error on my pages.
    I am using 11.5.10
    Warning - Query has exceeded 200 rows. Potentially more rows exist, please restrict your query.
    I had originally created a page and a view object with the relevent app module... and it was givin me the error. so what i did was delete the project
    created a page and just the app module with no view objects
    there is nothing on the page.. just that the page is linked to the app module via app module instance option.
    still givin the error
    i change the profile option for personal view object retrieval to 10 and still no avail..
    the message just change from
    Warning - Query has exceeded 200 rows. Potentially more rows exist, please restrict your query.
    to
    Warning - Query has exceeded 10 rows. Potentially more rows exist, please restrict your query.
    i have changed the max fetch size as well as the fetch size to limit the query..
    i have changed the max fetch size via code and setmaxfetchsize(1) via code on iniziliation..
    PLEASE HELP?>>>

    Hi George,
    What do you mean by, when you claim that the page still runs without your VO (i.e. Just the PG & AM)? Does it means that your webBeans in the page that references the VO Attributes, still comesup with no issues like (VO not found)?
    If yes, then your jdev. project is picking up the VO xml/class files else where from your classpath. Please check your classpath settings and library settings to see where the old file is still available.
    HTH.

  • More Rows or More Columns ?

    I have a table (a form) where 50 attributes have to be filled for each id. There may be some extra attributes be added or removed in this form.
    Which is better
    1) Going with more columns (50+) less rows.
    2) Going with less columns and more rows.
    I am more inclined towards more rows because of the main disadvantage of adding and removing the columns.
    Any descriptive answer will be of good help (any reference will also do good)

    CP wrote:
    Can you please elaborate on this. I have tried 2NF before but not 3NF.It actually sounds as though you are trying to design your database using some form of Entity Attribute Value (EAV) model, where you store a row for each attribute of an entity.
    e.g.
    +-----------+--------------+-----------------------+
    | Entity_ID | Attribute_ID | Attribute Value       |
    +-----------+--------------+-----------------------+
    |         1 |            1 | Mr.                   |
    |         1 |            2 | John                  |
    |         1 |            3 | Smith                 |
    |         2 |            1 | Mr.                   |
    |         2 |            2 | Joe                   |
    |         2 |            3 | Bloggs                |
    |         3 |            1 | Mrs                   |
    |         3 |            2 | Tiggy                 |
    |         3 |            3 | Winkle                |
    +-----------+--------------+-----------------------+This apparently makes for a very flexible data model because, if you need to add more attributes for an entity, we can just assign another Attribute_ID for this new attribute (e.g. 4 for a persons date of birth) and then store rows with data for those attributes.
    The problem with this however is that it is not using a relational database in the best way, and leads to major overheads in programming and consildating the data back to the single entity. EAV models have very few valid uses, and have been tried by many in the past to create "generic" or "flexible" database designs, typcially ending in disaster.
    Here's a good story to illustrate a company that had a developer create them an EAV model database...
    http://www.simple-talk.com/opinion/opinion-pieces/bad-carma/
    The proper design for a database would put all the attributes for an entity as individual columns on a single row. The required attributes should be known about at design time so, in most cases, there shouldn't be much need later on to add new attributes, and if there is, it's usually easy enough to add a new column to the table to cater for it, or in some cases create another relational table store the additional attribute(s) (especially if there is several attributes to be added). This is the nature of 3rd normal form (3NF)...
    http://en.wikipedia.org/wiki/Third_normal_form

  • Concatenate strings from more rows into one row.

    Hi,
    what's the name of that analytical function (or connect by) that
    would return strings from more rows as one row concatenated. i.e.:
    (I know this is possible using regular pipelined functions.)
    ROW1:   STR1
    ROW2:   STR2
    ROW3:   STR3
    select tadah().... from ...
    result:
    ROW1: STR1 STR2 STR3Thanks.

    Hi,
    Here's a basic example of SYS_CONNECT_BY_PATH.
    The query below produces one row of output per department, containing a list of the employees in that department, in alphabetioc order.
    WITH     got_rnum     AS
         SELECT     ename
         ,     deptno
         ,     ROW_NUMBER () OVER ( PARTITION BY  deptno
                                         ORDER BY          ename
                              ) AS rnum
         FROM     scott.emp
    --     WHERE     ...          -- Any filtering goes here
    SELECT     deptno
    ,     LTRIM ( SYS_CONNECT_BY_PATH ( ename
                                  , ','     -- Delimiter, must never occur in ename
               )          AS ename_list
    FROM     got_rnum
    WHERE     CONNECT_BY_ISLEAF     = 1
    START WITH     rnum          = 1
    CONNECT BY     rnum          = PRIOR rnum + 1
         AND     deptno          = PRIOR deptno
    ;Output:
    .   DEPTNO ENAME_LIST
            10 CLARK,KING,MILLER
            20 ADAMS,FORD,JONES,SCOTT,SMITH
            30 ALLEN,BLAKE,JAMES,MARTIN,TURNER,WARDThe basic CONNECT BY query would produce one row per employee, for example:
    .   DEPTNO ENAME_LIST
            10 ,CLARK
            10 ,CLARK,KING
            10 ,CLARK,KING,MILLER
            20 ,ADAMS
            20 ,ADAMS,FORD
    ...The WHERE clause: <tt>WHERE CONNECT_BY_ISLEAF = 1</tt> means that we'll only see the last row for every department.
    SYS_CONNECT_BY_PATH (which is a row function, by the way, not an analytic fucntion) puts a delimiter (',' in the example above) before every item on the list, including the first one.
    The query above uses LTRIM to remove the delimiter at the very beginning.
    WM_COMCAT (or the equivalent user-defined STRAGG, which you can copy from AskTom) is much more convenient if order is not important.

  • SQL query to find top 5 users having more rows/data in table

    Dear experts,
    OS = HP-UX
    Database = Oracle 9.2.0.8
    AC users = 600
    Ex:-
    select * from all_users where username like 'AC%';
    AC_1
    AC_2
    AC_3
    AC_4
    AC_5
    AC_6
    AC_.
    AC_.
    AC_.
    AC_600
    Each AC user having same tables INCOMING, OUTGOING
    Now i need to find top 5 users having more rows/data in INCOMING , OUTGOING tables. I tried this:
    SQL>conn AC_1/pwd
    select 'select count(*) from '||table_name||';' from user_tables;
    But i get max counts info only for this AC_1 user , however, i need top 5 users having more rows/max counts query.
    Thank you,

    source : oracle forums
    May be , this one.. not tested though.
    Before doing this you need to have select_catalog_role
    WITH tmp
         AS (SELECT owner,
                    table_name,
                    TO_NUMBER (
                       EXTRACTVALUE (
                          xmltype (
                             DBMS_XMLGEN.getxml (
                                'select /*+ PARALLEL*/ count(*) c from '
                                || table_name)),
                          '/ROWSET/ROW/C'))
                       Cnt
               FROM dba_tables
              WHERE 1 = 1 AND table_name IN ('INCOMING', 'OUTGOING')),
         tmp1
         AS (SELECT a.*,
                    MAX (cnt)
                       OVER (PARTITION BY a.table_name ORDER BY a.cnt DESC)
                       maxcnt
               FROM tmp a)
    SELECT DISTINCT a.*
      FROM tmp a, tmp1 b
    WHERE a.cnt = b.maxcnt AND a.table_name = b.table_name;

  • Start with more rows/columns in Numbers?

    How can I have the blank numbers template automatically start with more rows and columns? Currently for a new document, it defaults to 22 rows and 9 columns. I would like to start each document with more of each.

    Hi reese,
    Open the blank inbuilt template, add rows and columns to suit, then Save As Template. That will appear under My Templates in the Template Chooser. To automatically start with that custom template,
    Numbers > Preferences > General > for New Documents
    BTW, if you have that preference set, File > New (command n) will also open that custom template.
    Also, New From Template Chooser will disappear from the File Menu. To use Template Chooser, hold down the option key when accessing the File Menu.
    Regards,
    Ian.

  • Query returns more row than expected

    1. select * from view_name where col1 = 'value1' returns 12 rows
    2. select * from (view script) where col1 = 'value1' returns 24 rows
    i have a view called view_name. If i use view_name directly in the query, it returns 12 rows. But if i use the select script directly in from clause, it returns more rows. I am not able to find out why it is happening so. Any pointers will be helpful.

    Are you saying that the SQL for view_name and view_script are identical? Can you post them?

Maybe you are looking for

  • N73 ME Battery HEATING TOO MUCH - Please Help

    N73 ME Battery HEATING TOO MUCH - Please Help Hi Friends, I am from India Need Help/Suggestion from Mobile Gurus right here I have 1 Year Old N73 ME and I mainly use it for Calling and Texting. Very Occasionally I use it for Music/Gaming and Browsing

  • CSS on a template shows a different style on the actual web page.

    I have created a template and made my sub pages according to the template. Late I have made some changes to the template and all the changes (Basic HTML changes) got effected on the pages that referring the this template. The I attached a style sheet

  • Oracle Content unexpected error

    Hello. When I try to OCS Content Services, on my server, to appear me the following message: http://myserver/content/app/explorerPage.jspx Error: unexpected error. To try again. May you explain me which is the origin of the error and how resolve it ?

  • USE triggers in Oracle OBI PUBLISHER 10g

    hi guys, i´m not able to use 11g to use trigger events, so i have to use triggers in 10g version... How can i do that??? Can u give me example please....? Tks u all.. KR FC

  • Question: Apple TV Movie playback freezes very briefly but frequently

    Last night I rented a couple of HD movies from iTunes on my 160GB Apple TV and watched them. During playback there were quite a few very brief instants of the picture freezing during movie playback. It's the kind of thing some people may not notice (