Making a Table cell editable. Please Help

Hello there,
I have written an Inner class called CallHeaderRenderer
which is used to select to highlight a row from a table.
But i am unable to edit the column data I click on.
Please can any one tell me how to edit the column value when you double click on it??
Attached is my Inner class used to select the concerned row.
I am unable to edit the concerned column.....
Please help.!!!
What is the statement to make the cell editable!!!
class CallHeaderRenderer extends DefaultTableCellRenderer{
public CallHeaderRenderer(){
super();
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column){
// Set the highlight for record chosen.
super.getTableCellRendererComponent(table,value,isSelected,hasFocus,row,column);
return this;
}

A renderer has nothing to do with editing the cell. I suggest you read this section from the Swing tutorial on "Using Tables" for an explanation of how tables work. The tutorial will give one method for making a cell editable:
http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
Here is an alternate way to make a cell editable:
table = new JTable( ... )
    public boolean isCellEditable(int row, int column)
        //  All columns, except the first, are editable
        if (column == 0)
            return false;
        else
            return true;
};

Similar Messages

  • Migration Oracle 9iR2 - Oracle Database 10g Express Edition, please, help

    Good day!
    Now I study examples from tutorial book "Oracle 9iR2 Data Warehousing"
    (translated to Russian) written by Lilian Hobbs, Susan Hilson, Shilpa Lawande. However my Oracle is "Oracle Database 10g Express Edition" and ( as I thought ) for this reason I can't perform these examples.
    Please, help me, if it no hard.
    First example founded on using "Oracle Database Configuration Assistant"
    and "Oracle Enterprise Manager Console". However, I not found them at
    "Oracle Database 10g Express Edition".
    Now I use only "Oracle Application Express" ( and SQL ). Please, tell me,
    if "Application Express" has enough functionality with comparision to
    "Oracle Database Configuration Assistant" and "Oracle Enterprise Manager Console"
    and how I need to do ? (It must, because 10 > 9)
    Second example founded on using SQL. First 80% SQL-commanfs of this executed succesfully. But command "CREATE TABLE easydw.purchases" has error message
    "PARTITIONing is not available." Really, in "2 Day Developer Guide"
    (SQL Reserved Words ) PARTITION is not exist.
    Can I CREATE TABLE easydw.purchases by "Oracle Database 10g Express Edition"
    (with PARTITIONing by other means of SQL )?
    There is full text of this SQL-Command:
    CREATE TABLE easydw.purchases
    (product_id varchar2(8)
    constraint not_null_product_id NOT NULL
    constraint fk_product_id
    REFERENCES product(product_id),
    time_key date
    constraint not_null_time NOT NULL
    constraint fk_time
    REFERENCES time(time_key),
    customer_id varchar2(10)
    constraint not_null_customer_id NOT NULL
    constraint fk_customer_id
    REFERENCES customer(customer_id),
    purchase_date date,
    purchase_time number(4,0),
    purchase_price number(6,2),
    shipping_charge number (5,2),
    today_special_offer varchar2(1)
    constraint special_offer
    CHECK (today_special_offer IN ('Y','N')) )
    PARTITION by RANGE (time_key )
    partition purchases_jan2002
    values less than (TO_DATE('01-02-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchases_jan2002,
    partition purchases_feb2002
    values less than (TO_DATE('01-03-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchases_feb2002,
    partition purchases_mar2002
    values less than (TO_DATE('01-04-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchasee_mar2002 );
    Naturally, I also shall continue try find solution.
    Winni.

    Winni,
    Partitioning is only available with Oracle Enterprise Edition.
    Here is a list of features by edition:
    http://www.oracle.com/database/product_editions.html
    DBCA is not needed with Express edition because you can only have one XE database per server, and all options are pre-configured.
    Enterprise Manager Console is not included with XE - only with the other editions.
    You can get most of the functionality through SQL, Application Express and SQL Developer.

  • Table cells editing

    I have a table with few rows and columns filled up with certain values. I edit a cell. Now if i get the DataVector of the table this edited value is not obtained. If I try clicking some other cell after editing then get the DataVector the edited value is obtained. Why is this??? Should I have any Listeners added?? Please reply in depth

    Hi,
    hmm ... it seems, that the editing progress was not finished in the first case. JTable updates an entry in the datamodel only if the editing process is finished. As long as you see the blinking cursor in this field, editing is in progress and you can avoid storing by pressing ESC - but when you TAB to another cell or click another cell, the editing process is finished and the data is updated in the datamodel.
    greetings Marsian

  • Lock cell formula Please Help

    Hello
    I have been setting up prices for a new business in the latest version of numbers. I was having no luck on iCloud making a formula that linked sheets by clicking cells I had to put each one in individually. I then downloaded it to my macbook and got that to work (any help there would be great but not essential) I managed to do my formulas fine once it was on my hard drive but there is one formula which is a combination of 2 sheets. The formula works fine which is in sheet 2. However, in sheet 1 everything is A-Z and if the formula for example is regarding cel B2, if i insert a new row and that cell then becomes C2 my formula is messed up. I have tried using the preserve tick boxes and manually insert the $ but it is not locking it. I want the cell to know that if I move cell B2 anywhere it still keeps that information.
    Here is the actual formula
    =SUM($Price $'Sugar)'÷$Price Per $'Sugar')×$B$6
    Price = cell B2 in Sheet 1
    Price per = B2 in sheet 2
    I have tried with and without $
    Please help I am trying to get a business plan together and the last thing I want is to change something without realising it has altered the formula.
    Thanks in advance

    Hi Egor,
    It would be clearer if you turned off "Use header names as labels". Even so each cell needs a column and a row designation.
    Price = cell B2 in Sheet 1,  Price per = B2 in sheet 2
    These statements cannot be true.
    That said, there are some things that are clear.
    If you are dividing one value by another you do not need the SUM() function. As far as I can tell you are not adding anything.
    There is an extra ")" in your formula.
    Whats with the quotes around 'Sugar'?
    What does your formula look like without the "Use header names as labels" checked?
    quinn

  • Table cell editing

    how to edit table cells ? i am trying it since 2 days. with different errors. it's throwing some null pointer exception.
      public TableView getTableview() {
             TableView<Contact> fx2TableView = new TableView<Contact>();
             public  TableColumn<String> firstNameCol = new TableColumn<String>("First Name");
            fx2TableView.setLayoutX(260);
            fx2TableView.setLayoutY(20);
            fx2TableView.setOnMouseClicked(new EventHandler<MouseEvent>() {
                public void handle(MouseEvent event) {
                       if(event.getClickCount()==2) {
                       System.out.println(fx2TableView.getEditingCell().getRow());
            AccountDb myTableData = new AccountDb();
            ObservableList<Contact> teamMembers = FXCollections.observableArrayList(myTableData.mymain());
            fx2TableView.getItems().clear();
            fx2TableView.setItems(teamMembers);
            firstNameCol.setDataRetriever(new Callback<CellDataFeatures<String>, String>() {
                public String call(CellDataFeatures<String> c) {
                    return ((Contact) c.getValue()).getFirstName();
            TableColumn middleNameCol = new TableColumn("Middle Name");
            middleNameCol.setDataRetriever(new Callback<CellDataFeatures<String>, String>() {
                public String call(CellDataFeatures<String> c) {
                    return ((Contact) c.getValue()).getMiddleName();
            TableColumn<String> lastNameCol = new TableColumn<String>("Last Name");
            lastNameCol.setDataRetriever(new Callback<CellDataFeatures<String>, String>() {
                public String call(CellDataFeatures<String> p) {
                    return ((Contact) p.getValue()).getLastName();
            fx2TableView.getColumns().addAll(firstNameCol, middleNameCol, lastNameCol);
            return fx2TableView;
        }now i can see the data from table . how to edit it . i tried few statements to print a particular cell data.
    by using
      System.out.println(fx2TableView.getEditingCell().getRow()); or
                      fx2TableView.edit(fx2TableView.getColumns(fx2TableView.getEditingCell()));
                   System.out.println(fx2TableView.getRowFactory().call(CellDataFeatures<String> c) {
                    ((Contact)c.getValue()).getFirstName()));
                 fx2TableView.getOnEditStart(new EventHandler<EditEvent>()) {
                  public void handle(EditEvent e) {
                    }); what to write ? i am totally lost . any example how to edit , save and cancel on tableview edit ?
    Thanks.
    Edited by: 809387 on Jun 9, 2011 9:49 AM

    Hello User you can easily modify your Table Cell . In context of your code I've made one sample editing cell for your 'first column'.
    firstNameCol.setCellFactory(new Callback<TableColumn<String>,TableCell<String>>(){
                public TableCell<String> call(TableColumn<String> param) {
                    final StackPane stack = new StackPane();               
                    final Label label = new Label("test");
                    final TextBox box = new TextBox("test");              
                    box.setVisible(false);
                    //adding children to stack z-index
                    stack.getChildren().add(label);
                    stack.getChildren().add(box);
                    final TableCell cell = new TableCell();
                    cell.setNode(stack);
                    //event listener for textbox
                    box.setOnKeyPressed(new EventHandler<KeyEvent>(){
                        public void handle(KeyEvent event) {
                            if(event.getCode()==(KeyCode.ENTER)){                           
                                box.setVisible(false);
                                label.setText(box.getText());                           
                                box.setFocusTraversable(false);
                    //property Change Listener of Focus in textbox               
                    box.focusedProperty().addListener(new ChangeListener<Boolean>(){
                        public void changed(ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) {
                            if(!newValue){           
                                box.setVisible(false);
                                label.setText(box.getRawText());
                    //finally trigerring the visibility of textbox on double click
                    cell.setOnMouseClicked(new EventHandler<MouseEvent>(){
                        public void handle(MouseEvent event) {                      
                            if(event.getClickCount()==2)
                                box.setVisible(true);                       
                                box.requestFocus();
                    return cell;
            });The above code runs the editing textbox when tablecell is double clicked.
    You can manage the item of TableCell and make tablecell setNode() for more modification.
    Please read the API for more information.
    Thanks.
    Narayan

  • Table heights inconsistent - Please help!

    I'm not at all savvy with web programming. I have lots of
    experience creating HTML e-mails in DreamWeaver but this is the
    first complete site I've designed and built using DW8.
    http://www.10speedstudio.com/testsite
    I'm almost done except I cannot figure out why two of the
    pages, "contact" and "creative brief", are taller than the other
    pages.
    http://www.10speedstudio.com/testsite/about_brief.html
    http://www.10speedstudio.com/testsite/about_contact.html
    Everything checks out in DW layout mode; every container
    table adds up to 561 pixels high. However, when I look at these two
    pages live (or in browser preview) they are not only taller than
    the portfolio pages, they're off by different amounts.
    I thought perhaps I had added top/bottom margins in CSS that
    weren't showing in DW layout mode but my brief moment of
    inspiration was proven to be incorrect.
    I'd appreciate your input as to what I can do to fix this.
    Thanks in advance!

    Yeah - it's not really good news.
    Layout Mode makes such a godawful mess on your pages it's
    very hard to just
    offer a concise solution that doesn't involve the words
    "start over". For
    example, read this page -
    http://apptools.com/rants/spans.php
    Then look at the code on your page, and count how many
    instances of
    'colspan' and 'rowspan' you see. My quick look came in at
    more than 10.
    Let me just say that your DESIGN for the pages is very
    pleasant. It's clear
    that you do this well.
    And looking at your code, there is ANOTHER huge problem with
    this page - you
    have not used DW's templates properly. I can see that what
    you have done is
    to open a template page, insert unique content for this page,
    and then
    resave the page with an *.html extension. That's just not
    going to work.
    How do I know this? Look here -
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>10 speed | contact</title>
    This is from the Contact page - note the "Template" in the
    comment above the
    title tag?
    The same thing is true on the other page -
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>10 speed | creative brief</title>
    I really don't know what to suggest to you other than to
    either take the
    time to learn the tool, or hire a developer to work with you
    on these
    projects.
    For what it's worth, I removed the HEIGHT="209" from one of
    the table cells
    at the bottom of the table, and you can see the result here -
    http://murraytestsite.com/10speed-contact.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "tenspeedsf" <[email protected]> wrote in
    message
    news:[email protected]...
    >>> Everything checks out in DW layout mode
    >
    > >There's problem #1 - using layout mode to build your
    pages.
    >
    > >> every container table adds up to 561 pixels
    high.
    >
    > >There's problem #2 - using table heights (invalid
    HTML).
    >
    > >> I'm not at all savvy with web programming.
    >
    > >There's problem #3 - and the root of the other two
    problems.
    >
    > Ouch.
    >
    > Frankly, I'm not that interested in learning web
    programming. I'd rather
    > leave
    > that stuff to the folks that enjoy it and spend more of
    my own time doing
    > print
    > design work. Thanks for pointing out everything I don't
    know. Would you
    > mind
    > offering some solutions?
    >
    > I removed the offending heights from my code and, as you
    predicted, it
    > threw
    > my lay-out out of whack.
    >
    > Aside from spending a big chunk of time I don't have
    learning CSS box
    > model
    > for lay-out (and growing gray in the process) what would
    you suggest?
    > Should I
    > use another table-based mode other than Layout Mode? Or
    a WYSIWYG
    > application
    > other than DW? I mean, if it were any good would it
    allow me to use Layout
    > Mode
    > in the first place?
    >
    > I would like to fix this issue and launch my site as
    quickly as possible
    > so
    > that I may go back to my billable work. If you can help
    me out, I'd
    > appreciate
    > it.
    >

  • Unable to see the ebook in digital editions, please help!

    I puchased a ebook, it downloads fine, opens up the digital editions when it is done but then I don't see any ebook in it. I have checked the default problems and .acsm is connected to adobe digital editions. I have tried deleted temporary files but I still can't see the ebook after it downloads, can anyone please help. I have vista...
    thank you very much.

    I puchased a ebook, it downloads fine, opens up the digital editions when it is done but then I don't see any ebook in it. I have checked the default problems and .acsm is connected to adobe digital editions. I have tried deleted temporary files but I still can't see the ebook after it downloads, can anyone please help. I have vista...
    thank you very much.

  • I need to know how to connect different projects in final edit - please help!

    Okay, here's my predicament:
    I'm editing a movie, but I've been putting each scene together individually. I have a different file for each scene, and sometimes even small parts of a scene were edited in a seperate file. Now I need to piece them together, but I don't know how. I'm a beginer with this, I only have a basic understanding of Premiere. I don't understand all of the technical stuff. It was hard to even word this properly, so I couldn't just search for an answer.
    My original idea was to export all of the seperate scenes and then put those video files together in a project, but that didn't work. The size of the video too small. It only took up half of the preview screen. Again, it's hard to really explain what I mean, since I don't know the technical term for it. After that didn't work, I tried copying each clip from one file to another, but I didn't expect that to work. It didn't.
    Is there perhaps some export setting that will not make the video too small? There are too many settings, and I couldn't try them all. Or is there something else I could do? Please help!

    Put all your Premiere projects into the same folder (optional).
    Create a new project.
    Go to FILE > IMPORT
    Select either
    The entire folder where your projects are located (hence step 1) or,
    The individual projects you want to bring in
    Drag/drop whatever you want to a master timeline sequece in the new project and
    Sell your movie.

  • How to have the check box fields in the table ...Please help me out.

    Hi
    can any one give me code save the checkbox field to save in the table.
    I have displayed the checkboxes using the loops from the table but when i am clicking the checkboxes and pressing the button save its not saving in the database table.
    please help me out. Its urgent .
    Thank you very much suneetha

    DOnt duplicate the thread...Reply to the below thread..
    Re: In the loop to display checkboxes.
    Raja T

  • Stuck in IDCS4 Table H*ll--Please Help

    I'm working on updating a parts catalog for my company (800+ pages) and it's my first big project using IDCS4. We've separated each section into an individual document (most between 50-80 pages, but a couple of the sections are 100+ pages).
    Due to the nature of the project, I've attempted to make my documents as flexible as possible.  Over the next few years we will be inserting new information at different places in the catalog, as we begin to carry new items.  Because of this possibilty, the current information for each section is placed in an single table that overflows from the first page through the last page of that document.
    The problem I keep running into, is that the table rows for different parts of the same document have to be formatted differently to achieve a consistent appearance. There are a few parts that have additional information that requires splitting and/or merging table cells.
    Here are a few issues I've come across:
    * When I try to Shift + drag a cell border, ID will not allow me to drag it past the threshhold of another cell in a higher or lower row.  For example, I have a 3 inch cell in Row 2 of my document that begins at 0" and ends at 3".  Further down at row 7, I have divided the 3" row vertically.  The right half of the divided cell has been merged to the adjacent cell (to the right).  When I try to drag the left wall of this cell toward the left, ID won't let me drag it past the 3" mark on the ruler (in fact, it stops about 1/16" short).  Is there a way to override this and freely drag the cell wall to whatever size I want it to be?
    * My other issue is attempting to paste rows from one ID document to another.  Occasionally, ID allows me to do it, but it plays heck with my formatting when it does.  Most times, even when the rows seem to be right at or very close to the same dimensions, the Paste function is not available after I Cut or Copy the rows from the older document.
    Can anyone provide advice/solutions or even explain to me that I'm going about this all wrong, or have I come across an inherent weakness of InDesign's capabilities.  I understand that an application that does every single thing you'll ever want or need isn't out there, but it seems like it's those things I want or need most that ID refuses to do.
    Thanks in advance!
    RW

    Thanks for all of your help.  I checked out catalog plugins and downloaded a couple of the trial versions.  They seem to be a great tool and something I'll probably pursue in the future.  Unfortunately, their parameters weren't compatible with the amount of work I've already put into this project and in the interest of time-saving, I'm going to pursue another path for this version of the catalog so I can take my time working on the prep it would take make the most of the catalog plugins.
    I did some homework on the linked text frames solution and have proceeded down that path.  Due to some of the formatting (some of the pages were a lot more difficult than the sample I uploaded), I'm still using tables to preserve a consistent look, but I've broken down each product section into a separate table (of no more than 20-30 product listings per table).  I don't know why that didn't occur to me earlier, I guess I was in the dark about the reflow feature that keeps objects flowing consecutively.
    One other problem I'm having that I haven't found a suitable answer to:  When pasting rows from one table to another, most help databases I've seen praise the flexibility of InDesign to copy from one table and *as long as there are enough rows to add the new info*, pasting from one table to another is a snap.  However, I've found limited success with this feature.  I'm not sure if it has to do with my tables, some of which became very complex (through splitting and merging cells to preserve a consistent appearance throughout a section), but InDesign will allow me to cut rows from one table and insert them as a new table into a text frame; however, when I try to copy more rows from the first table (formatted the same as the first rows that I cut), the Paste feature is inactive.  Other than the first series of rows being cut from one table and pasted as a new table, their is no difference between them and the next section of rows I'm attempting to add to the end of the table.
    Any thoughts on the seeming inconsistency?
    RW

  • Expandable list - Table of Contents -  Please Help

    I used the code found on the following page to create an expandable list that worked great:        Expandable list :  at www.learningmovabletype.com
    I created a table of contents for our Policies and Procedures that showed the main topics and when clicked listed each policy subcategory.  The following link is for this page:http://bsacapheadstart.com/PoliciesandProcedures.html
    My company bought the Adobe CS4 package that included Dreamweaver several months ago and I am trying to create this same page using it.                          http://grantee.bsacapheadstart.com/Policies%20and%20Procedures.htm
    The problem as you will notice if you go to this page and click on the categories, is that only the first topic will expand and all the others will not.
    I have reviewed the code several times and do not see any differences between the first topic heading and the others; nor between the code that works on the first page and the page I am creating using Dreamweaver.
    I have thought about using the Spry Collapsible Panel or Accordian but it is not exactly what we want.  Besides everyone is already comfortable with this layout.
    If anyone could please help, it would be greatly appreciated! Thanks!

    Start with valid code.  It makes trouble shooting much simpler.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.grantee.bsacapheadstart.com%2 FPolicies%2520and%2520Procedures.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • HOST ROUTING TABLE IS EMPTY please HELP

    HELLO THERE PLEASE HELP ME , MY HOST ROUTING TABLE IS EMPTY
    WHAT DO I DO NOW?

    Hi and Welcome to the Community!!
    With a strong carrier network signal (not WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to arrive to your Messages app
    2) Resend Service Books
    KB02830 Send the service books for the BlackBerry Internet Service
    Please wait for "Activation" Messages, one per already configured email account, to arrive in your Messages. If you have no already configured email accounts, please wait 1 hour.
    3) Batt Pull Reboot
    With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should contact your mobile service provider for formal support...it is, after all, your carrier network that must populate these items to your BB.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • BDC - table control - experts please help

    Hi experts,
    Please help. I am in need of your help.
    I am working with BDC and I have a table control in one of the screen. Table control has a check box in the first column. While recording how I entered the data is : I select the check box in a row, enter two values in next two columns of that row and then hit enter then the other columns in that row turn from grey to white (initially these columns are greyed out).
    NOw in BDC when I run my session in foreground, I am able to check(select) the check box and enter the values in next two columns and then I have a Enter OKCODE. But when I hit enter it is not able to recognize the row and its unable to turn the greyed out columns in that particular row to white.
    Is there a way to specify in my program that I am hitting enter in one particular row.
    Please help. Let me know if something is not clear. Very urgent . Pleasee respond. Thanks

    Hi Rich,
    Thanks for the replies. I will try that. I got one more doubt. While manually creating the recipes using C201, there is a screen Recipe header. When I record this transaction, I see a different screen for the Recipe header. Fro example the screen numbers are like 4210(manual) and 4211(recording).
    But my problem is there are two fields which are missing in the screen which I am getting while recording C201. These two fields are present on the screen for manual creation. I need to enter those two fields while I record. But how can I do this.
    Please help.

  • How to maintain entries in table T158G? Please help!

    Hi Experts,
        We want to maintain new movement type entries in the table T158.
        How do we maintain entries in this table? is there any tcode or FM to do that?
        Please help.
    Thanks
    Gopal

    Hello Gopal,
    You should go through the transaction OMJJ by creating a new movement type as copy from a standard movement.
    Table T158G contains which transactions can be assigned to BAPI_GOODSMVT_CREATE.
    Each transaction has a GM code (assign code) for BAPI_GOODSMVT_CREATE.
    With this method, the system does not support goods movements that are initiated by other application components via BAPI.
    I hope this information helps you.
    Best Regards,
    Fábio Almeida
    MM Support Consultant

  • Pivot table problem. Please help me create this report

    Hi friends..I'm new to OBIEE. We can create the grand total column in pivot table. I need grand total as well as Grand average. How can I create a new column in pivot table that is same as grand total but calculates average.
    My table structure is like this.
    Facility......Date........totaldays
    A..........01/01/08......210
    B..........01/01/08......215
    C..........01/01/08......917
    A..........02/01/08......211
    B..........02/01/08......211
    C..........02/01/08......911
    A..........03/01/08......210
    B..........03/01/08......215
    C..........03/01/08......917
    I need the report like this..
    Facility.....01/01/08......02/01/08....03/01/08...Total....AVG
    A...............210.............211............210.....631......210.3
    B...............215.............211............215.....641.....213.6
    C...............917.............911............917.....2745....915
    For this report..I created pivot table but I'm not able to calculate the average..
    Can you please help..I'm new to OBIEE...
    Thanks in advance

    Please change your username....
    Here is what you need to do...
    1) In the Pivot Table View, click on the Measures column and select New Calculated Item.
    2) In the pop-up window complete as follows:
    Name: type "Total Average"
    Function: Select "Average" from the drop-down window.
    Click on the values in the right pane that you wish OBI to calculate the average for.
    3) Click "OK."
    You now have another column that is the average of the values in each row.

Maybe you are looking for

  • Goods Receipt value in Purchase Order History

    Hi Experts, I raised a PO with Account Assignment category as "K" for 100 quantity with a value of 1000. GR non-valuated option is ticked in "Delivery" tab in line items. When posted a GR for 25 NUmbers the Purchase Order History is updated with "0,0

  • Prints only a few pages when I print duplex.

    I'm on a Apple MacBookPro running Mac OS X 10.7.5 using Adobe Reader 11.0.2, current as of 01-March-2013, and I noticed that I'm having problems printing duplex with an Toshiba eStudio 351c copier. I have a 50 page document that I want to print duple

  • Cover Art All Screwed Up

    I recently had to restore my Ipod classic as it was not sending play counts back to Itunes... that problem is now fixed, but I have another. Much of the cover art is now missing when I play tracks on my Ipod, and what there is is now all jumbled up.

  • Changing B&W to 2 colors

    Hi Guys, My name is Louis, so nice to meet every fella that will potentially read my post and reply to it! I have a photograph that it's in Black and White, due to my client needs and to give it a more personalized look, I want to change it to Purple

  • BadPaddingException while decripting Given final block not properly padded

    Hi all, i am using PBEWithMD5AndDES for encryption and decryption.it's working fine. but for some out onlyi am getting this error " BadPaddingException while decripting Given final block not properly padded". please help me to debug this error. my ma