Table format used in the 'sums' table

Hello,
If you ask numbers to insert a table of the type 'sums', then a table is inserted which has a a thick white line above the last row.
I have many tables and I would like to format them like the sum table.
Therefore, I would like to know how I can insert a thick white line above the last row?
Thanks,
Sanjay

Please open Numbers then click Help > Numbers User Guide, it contains much useful information. If after doing all that you cannot find your question or an appropriate answer to your question then by all means come back and ask your question. We'll be pleased to assist you.
These discussions are user to user, not Apple employees answering the question. Questions will be answered as a user such as yourself finds time, desires to, or is willing to respond.
Welcome to Numbers discussions, have fun.
Sincerely,
Yvan KOENIG (from FRANCE dimanche 2 novembre 2008 11:28:16)

Similar Messages

  • Whats the Actual use of the Setup table apart from the Full/Init  loads

    Hi  guru's
      could u explain  whats the Actual use of the Setup table apart from the Full/Init  loads  in Lo Extraction

    Hello Guru,
    The Setup table is used mainly for storing the Historical data whereas the new and changed records will be maintained in the Update table.
    By storing the Historical data in the setup table you don't need to disturb the Application table anymore.
    Please go through the following blogs
    /people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
    /people/sap.user72/blog/2004/12/23/logistic-cockpit-delta-mechanism--episode-two-v3-update-when-some-problems-can-occur
    /people/sap.user72/blog/2005/01/19/logistic-cockpit-delta-mechanism--episode-three-the-new-update-methods
    /people/sap.user72/blog/2005/04/19/logistic-cockpit-a-new-deal-overshadowed-by-the-old-fashioned-lis
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    /people/vikash.agrawal/blog/2006/12/18/one-stop-shop-for-all-your-lo-cockpit-needs
    https://websmp201.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002719062002E
    Hope it helps
    Thanks,
    Chandran

  • Can firefox support "file:///" format to access local files (note 3 fw slashes) this works for IE but not firefox and is the format used in the "afghan war diary" from wikileaks

    can firefox support "file:///" format to access local files (note 3 fw slashes) this works for IE but not firefox and is the format used in the "afghan war diary" from wikileaks

    See http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • Inserting into Table-in-Table after re-execution the Outer Table query

    Hi Gurus,
    I have a problem with inserting into Table-in-Table after re-execution the Outer Table query:
    The problem:
    I have two tables; both tables are based on VO; tables have a VL between them;
    The Inner Table is hidden when page lode.
    I'm executing the Outer Table, open the details to see the Inner Table, I can add rows to the Inner Table. Everything is OK.
    But-
    After I'm executing the Outer Table again –
    Adding new rows to the Inner Table is not work anymore, despite I'm executing the Inner Table RowSet query.
    Scenario is:
    In processRequest():
    In the processRequest() I'm calling executeQuery() of the Outer Table Only.
    (So the Details executeQuery() will be done by VL and Its works fine.)
    In processFormRequest():
    User opens the details to see the Inner Table.
    On some event, I'm executing the Outer Table query.
    On some other event, programmatically I am inserting a new row to the Inner Table, and a new row is displayed in the Inner Table as I wanted.
    In this way, one row after another, I can add as many rows as I wish, without any problem.
    (This scenario should behave as same clicking on button of type "Add-Another-Row", just adding the row automatically)
    The code for the inserting (as specified in the chapter "Classic Tables" --> "table-in-table"):
    OARow newRow = (OARow) innerRowSet.createRow();
    innerRowSet.insertRow(newRow);
    innerRowSet.setRangeSize(innerRowSet.getRangeSize()+ 1);
    innerRowSet.executeQuery();
    If the user won't cause to re-execution of the outer table – no problem occurs.
    * Should I add something after the Outer Table VO execution?
    * Maybe to the inserting to the Inner Table code?
    Please help…

    Hi, Thanks.
    I don't know which one of the Outer Table rows is the current row,
    But-
    Only the Details (the Inner Tables) who where opened before the executeQuery() of the Outer table are not acts as they should.
    All the Details who where closed before the executeQuery() of the Outer table are still works fine.
    Please advise.

  • Import data from few tables and export into the same tables on different db

    I want to import data from few tables and export into the same tables on different database. But on the target database, additional columns have been added
    to the same tables. how can i do the import?
    Its urgent can anyone please help me do this?
    Thanks.

    Hello Junior DBA,
    maybe try it with the "copy command".
    http://download.oracle.com/docs/cd/B14117_01/server.101/b12170/apb.htm
    Have a look at the section "Understanding COPY Command Syntax".
    Here is an example of a COPY command that copies only two columns from the source table, and copies only those rows in which the value of DEPARTMENT_ID is 30:Regards
    Stefan

  • Show date in dd/mm/yyyy format using ODataModel in a table.

    Hi,
    I am populating a table using ODataMoel in which one of the columns is 'DatePicker' control and I want to map a date being passed in one of the fields of data from server to this DatePicker control. It's getting mapped but I want to show the date in DatePicker in 'dd/mm/yyyy' format.
    I happened to go through links but they were talking about JSonModel.
    How would that be implemented using ODataModel. Please find my sample code below.
    var oTable = new sap.ui.table.Table("dprTable",{
      visibleRowCount: 4,
      //firstVisibleRow: 3,
      visible: true,
      navigationMode: sap.ui.table.NavigationMode.Paginator
      //selectionMode: sap.ui.table.SelectionMode.Single
    var oColumn = new sap.ui.table.Column({
      label: new sap.ui.commons.Label({text: "DBR/DPR"}),
      template: new sap.m.Link({
      "target": "_blank",
      press:[controller.onClickDemoNo,controller]
      }).bindProperty("text","DemoId")
      width: "auto"
    oTable.addColumn(new sap.ui.table.Column({
      label: new sap.ui.commons.Label({text: "Required Date"}),
      template: new sap.ui.commons.DatePicker("",{
      value:{
      path:"/ReqDate",
      type: new sap.ui.model.type.Date({pattern: "yy-MM-dd"})
      change: function(){
      console.log('the date is changed and it\'s value is'+value);
        width: "auto"
    oTable.addColumn(oColumn);
    var oModel = new sap.ui.model.odata.ODataModel("/sap/opu/odata/sap/ZSECENTRAL_SRV",true);
      oTable.setModel(oModel);
      oTable.bindRows("/DEOPENDBRSet");
    This(red colored code) is not showing the date in the DatePciker in the form of 'dd/mm/yyyy', in fact it's not populating the date too. Any help would be appricitated.
    Thanks,
    Supriya Kale

    Hi Supriya,
    Just give the source pattern of the date and remove the / in the path mentioned.
    Please make sure that the source pattern is correct.
    template = new sap.ui.commons.DatePicker({
    value:{
    path:"ReqDate",
    type: new sap.ui.model.type.Date({source: {pattern: "yyyyMMdd"},pattern: "yy-MM-dd"})
    Hope it works.
    Regards,
    Jeffin George

  • List of SA,Tables,Columns used in the reports

    Hi Experts,
    We have 5 dashboards and nearly 35 reports from different subject areas now we want to make a list in the excel which
    subject areas,tables,column names ,formulas used in that columns as been used in the particular reports.
    As we have complex reports so it is very hard to check manually is there any option to check all these.
    Thanks,

    Use catalog manager to build a report.
    Open catalog then Select folder->Tools->Create Report
    save it as .csv and open in spreadsheet
    You may have to generate rpd doc since expressions are shared in report level and also in rpd level
    Pls mark correct/helpful

  • Getting the tables actively used in the schema

    Hello,
    We are in need of releasing space from the schema we use.
    Can anyone please suggest how to find the tables that has not been used for a given amount of time. So that we can drop the tables which are not effectively used by the application..
    Thanks and Regards.
    Sathiya

    user13299583 wrote:
    Thanks for the replies ..
    Actually the application was designed/created long back .. Lots of changes has been incorporated and lots of features has been removed from the application..
    But in the backend the associated tables were not removed and we feel that it occupies huge space in the server ..
    I am afraid i can enable auditing as it is a production instance and lots of formalities are involved if we have restart the server ..
    Is there any other way to find out the tables which has not been touched, for a period of time ..
    The project has been switched over to many people so there are no proper documentation available .. So we are forced to find some alternatives to identify the unused tables ..
    Thanks,
    Sathiya.What about using triggers and logging?

  • Reg :-maintain a table maintenance view for the z table.suggest me the code

    i have question.i have created a z table related to pp module.the requirement is to maintain {table maintenance view} for this z table.how could this be done.can any one suggest me the code for this?

    Hi ,
    We have a lots of queries on table maintainance creation in the forum posted and replied to.Pls have a look at it first.
    In se11 -> change mode of the ztable -> goto -> utilities -> table maintainance generator -> click on it...
    it will give a new screen-> enter the required details like function group , authorisation(use &NC& or leave it blank if you dont know)  and screens
    2 step and 1 step means=> number of screens displayed in maintainace
    if step1 is selected then we have a screen which will be like a table control for data entry.........
    for step2 we have a table control screen and a more detailed individual field display as second screen
    click on the button 'find screen numbers' so that system automatically proposes the screen numbers
    after which click on the "create" button and follow the required instructions/messages
    once done go to SM30 enter the table name to check if maintainance has been created properly
    Hope it helps,Pls check and revert
    Regards
    Byju

  • PL/SQL Trying to update a table through trigger on the same table

    Hi everyone my name is Edwin and I'm new to this forum. I hope I can learn a lot from this community and over time contribute to it.
    The problem I'm facing at the moment is a tough one. I need to update a table (table a) with a value called block_id. This block_id is generated by a procedure I have written myself, the end result is stored in another table (table b). This block_id needs to be generated after certain rows of table a get updated with a trans_id. The trans_id is all the same for these rows in table a, but the generated block_id isn't. In my code I use an after update on collumn a of table a trigger. So if the the collumn gets updated the trigger fires. The trigger calls the procedure that generates the block_id and the procedure generates table b with all the block_id's. But then I want to update the rows in table a with the generated block_id in table b. The problem is that this self-deadlocks.
    You might think that this would call a recursive trigger, but I have written code in the trigger that checks if the block_id isn't allready filled in on table a.
    Also I really need all the values wich get updated (table a), so I believe a before update is also out of the question.
    And the first update of table a is done through an erp-packet and I can't get at that code, otherwise I would just have run my code from there.
    Message was edited by:
    user625855

    CREATE OR REPLACE TRIGGER block_id_trigger AFTER UPDATE ON unload_details_tab
    DECLARE
    current_transport_id NUMBER;
    check_value NUMBER;
    check_block_id NUMBER;
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    current_transport_id := get_curent_trans_id; --function that gets the current transport_id
    check_value := check_site_and_directive(current_transport_id); --function checks if this transport_id should have a block_id
    check_block_id := check_for_block_id(current_transport_id); --function checks if there isn't allready a block_id set.
    IF check_value = 1 AND check_block_id = 0 THEN
    create_blok_id_table(current_transport_id); --this procedure creates the blok_id in temptable
    UPDATE unload_details_tab a SET a.block_id = (SELECT DISTINCT b.blok_id FROM temptable b WHERE b.mark = a.mark_1) WHERE a.transport_id = current_transport_id; --this statement should update the table back, if I leave it out everything works fine, but when I leave it I get the self-deadlock error.
    ELSE
    null;
    END IF;
    END block_id_trigger;
    Ok, I cleaned the code somewhat.
    user625855

  • Dimension table is larger than the fact table

    Hi Community,
    How can we explain the phenomenon when a dimension table has MORE records in it than the fact table ?  What are the conditions that would cause this to occur ?
    Thank you !
    Keith

    Thanks, Bhanu,
    I am wondering specifically how to explain the output from program SAP_INFOCUBE_DESIGNS when the dimension table is shown to have a fact table ratio that is greater than 100%
    I believe that SAP_INFOCUBE_DESIGNS already takes into consideration both the E and also the F-fact table when calculating the ratio.  So in this case, we could not explain it by your first suggestion (after compression - but looking at only the F table).
    In the case where selective deletions have been performed, how can we correct the situation ?  For example, how could we clean out the records in the dimension tables which no longer have any facts in the fact table ?  (I think the BW system should do this automatically as a part of the selective deletion, don't you agree ?).
    Also, is there any other explanation for how the dimension table could arrive at greater than 100% the size of the fact table(s) ?
    For example, lets say that (theoretically) we placed many very dynamic characteristics together into the same dimension.. which we know you should not do.  Would it be possible for the combination of these very many dynamic characteristics to cause so many DIM IDs that the dimension table overtakes the record count of the fact table ?  Is this situation then made worse by compression if the number of fact table records is reduced thanks to removal of the request ID ?

  • Set thesecond table content acording to the first table selected

    Hi,
    I have to table. Both table content  will fill from SQL. My Question is How can i fill the second table content from the which value i select from first table. I have written code like this.
    But when i click first element it will display the content in second table when i click next row it should change the content according to that. How can i do that.
    Here is my code.
    wdContext.currentContextElement().setVisiblity(WDVisibility.VISIBLE);
                   int n = wdContext.nodeFirstTable().size();
              int leadSelected = wdContext.nodeFirstTable().getLeadSelection();
                   for (int i=0;i<n;i++)
                        if(leadSelected==i)
                             IFirstTableElement ele=wdContext.nodeFirstTable().getFirstTableElementAt(i);
                        Date datesec=ele.getMyDate();
                        java.sql.Date datesec1=new java.sql.Date(datesec.getTime());
                        wdComponentAPI.getMessageManager().reportSuccess(
                                       "lead selection  " + i +"laed   "+leadSelected);
                        try{
                        CallableStatement cStmt = con.prepareCall("{CALL Usp_TimeSheet_IUSDL1(?,?)}");
                        wdComponentAPI.getMessageManager().reportSuccess(
                                                           "lead selection  " + datesec1.toString());
                        cStmt.setInt(1,id);
                        cStmt.setDate(2,datesec1);
                        cStmt.execute();
                        ResultSet rsDetail=cStmt.getResultSet();
                        IPrivateEntryView.ISecTableElement sel=wdContext.nodeSecTable().createSecTableElement();     
                        while(rsDetail.next())
                             wdComponentAPI.getMessageManager().reportSuccess("rsDetail first");
                             String coun=rsDetail.getString(3);
                             wdComponentAPI.getMessageManager().reportSuccess("Date   "+coun);
                             sel.setCountry(coun);
                             String rdr=rsDetail.getString(5);
                             wdComponentAPI.getMessageManager().reportSuccess("RDR   "+rdr);
                             sel.setBRR(rdr);
                             String      act=rsDetail.getString(6);
                             wdComponentAPI.getMessageManager().reportSuccess("Act   "+act);
                             sel.setActivity(act);
                             float hrs=rsDetail.getFloat(8);
                             sel.setHrsWorked(hrs);
                             String com=rsDetail.getString(10);
                             sel.setComments(com);
                             String sta=rsDetail.getString(15);
                             sel.setStatus(sta);
                             String appcom=rsDetail.getString(18);
                             sel.setAppComments(appcom);
                             wdContext.nodeSecTable().addElement(sel);     
                        rsDetail.close();
                   catch(Exception e)
                        wdComponentAPI.getMessageManager().reportSuccess(e.toString());
    Regards,
    H.V.Swathi

    Hi Swathi,
    For your requirement you can create two table say TableA and TableB.In Which the TableB vivibility is set to blank or none.
    So first the data gets popolated in TableA. Now on click of row from TableA  create a action and pass the value you want to pass and populate the TableB with the required data and make the vivibility of TableB  to visible.
    Again say on click of Row 2 of TableA you need to show the diffrent data in TableB so for that every time you need to invalidate the node first in that method.
    e.g Vn_TableB_Node.inValidate();
    Hope this will help.
    please revert if you need more info.
    Regards
    Narendra

  • Photoshop Elements 10  plug-in required for the new Camera RAW file format used by the new Canon 6D

    I have a new Canon 6D and prefer to use Camera RAW.  This new file format is not compatable with Elements 10.  A new plug-in maybe is required.
    Can anyone help?
    Regards,
    gordo422209

    I can't find Canon 6D in the list of supported cameras for even ACR 7.3. I would thus suggest you converting your raw files to dng using dng convertor tool and then open the dng files in ACR.
    Download and install the free Adobe DNG converter to convert your raw files to the Adobe universal Raw format and the files will open in all versions of PSE (keep your original raw files as backups and for use in the manufacturers software)
    Windows download click here DNG Converter 7.2
    Mac download click here DNG Converter 7.2
    You can convert a whole folder of raw images in one click. See this quick video tutorial:
    You Tube click here for DNG Converter tutorial
    Source: http://forums.adobe.com/message/4893342#4893342 curtsey of 99jon

  • Proper use of the sum function of Expression

    I want to get the sum of three number fields and use the value in a between function of ReportQuery as part of the selection criteria. I have tried a number of ways to do this, but can't seem to get it correct. Can some give me some code examples as to how to do this.
    Thanks,
    Jay

    You should be able to use the ExpressionMath.add() API to do this.
    i.e.
    Expression sum = ExpressionMath.add(ExpressionMath.add(eb.get("salary"), eb.get("raise")), eb.get("bonus"));

  • How to I link the table MARC with all the forecast table, eg MPOP

    Hi,
    Can anyone tell me how do I link the marc table with all the forecast structure?
    I am trying to create an abap extraction query
    thanks

    Hi,
    Please check the below links..
    MM43: Forecast Values Table
    http://www.se80.co.uk/sapfms/m/mass/mass_marc_read.htm
    http://www.se80.co.uk/sapfms/m/mass/mass_marc_merge.htm
    and also try with FM - MATERIAL_FORECAST_DISPLAY..
    Hope it may help you...
    Kuber

Maybe you are looking for

  • Satellite A105 Windows XP won't Load

    My laptop is a Toshiba Satellite A-105 with Windows XP installed as a factory OEM.  I have a Hard Drive Recovery Disk, but no separate disk for XP installation or repairs.  Problem:  Windows XP screen comes up and then laptop wants to constantly rebo

  • Video streaming from external URL-adress

    Preparing a large document with videosamples I want to include videofilms without burden the document with embedding. The document will end up in pdf. Is it possible to link til an external stored videofile, for instance flash or whatever format? (It

  • Cherokee problem with php after upgrade

    Hello! Some weeks ago I upgraded cherokee to version 1.0.2.....! Now php files in  user directories http://localhost/~user/foo.php are processed correctly, but php files in the main server directory /srv/http give the following error message:     No

  • No clearing procedures were carried out( f.13)

    Hi Friends, I am clearing GL account by ususing F.13, but at the last i am getting error " No clearing procedures were carried out". IN OB74: i have maintained 1. CHA, 2.acct type, 3.account ( 2 to 9999999999) 4.Criteria(ZUONR) 5.(BELNR) Could you pl

  • Where can I get more information on Cryptography Extension ??

    Hi. Does anyone know how to set up the Jarsafe product ? Another thing is, how to set security for the Cryptography Extension ?? can anyone tell me where can i get more information on this ?? Thank you.