Display/Edit Table Row in form's Header

Hi all,
I am going to develop a form with matrix. This form is connected to an UDO (with header and row tables).
The "special" requirement is that when a user selects a row, the row details must be shown in the form's upper part, out of the matrix. Also, editing these fields should be permitted and it should be the same as editing the row. (I hope I explained myself correctly).
My question is: has anyone done something like this before? How should I proceed?
At the moment I already created the form with two folders.
- Folder 1 shows the normal document header fields (CardCode, CardName, RefNum, etc.).
- Folder 2 shows the same fields as one matrix row. The fields in Folder 2 are connected to UserDataSources.
The matrix, document remarks and document total are always visible.
Tomorrow I'll start the code to make this work, but I would appreciate any input you experts can provide.
Thanks in advanced,
Vítor Vieira

Hi Binita,
Not quite, but close. Instead of having two matrix's I'll have 1 matrix and a set of User Fields (in the form's title) that should act has a single matrix row.
Please take a look my form so you can understand it better.
Production Memo
What I need it to code a solution were the user can edit the row value, either in the row itself or in the form's title fields.
In other words, I'll need to connect the selected row to the fields I created in the form's title...
Thanks for your help,
Vítor Vieira

Similar Messages

  • UseCase--Displaying a Editable table on a form

    Frnds,
    Help me in doing my usecase...
    Scenario@ Have to display an table on a form, such that selection of each row should navigate to another page(where we can edit that row content and updating to database).....
    Done, creating an view object and dragged binding control on to the JSF page as ADF Table.....
    Thanks
    Ashok B.

    Hahn,
    Iam Confused....
    I have an page(Home.jspx) displaying values(in read-only form)...
    ex:
    ID Name
    1035 Ashok
    1036 Babu
    clicking on the value of ID(like on 1035) should navigate to another page(Details.jspx) where displaying entire details of that particular row with editable option.
    As of now iam able to display the values of that table, but doesnot know how to make an link of that specific value....
    Thanks,
    Ashok B.
    Edited by: user12130057 on Apr 24, 2012 4:02 AM

  • Edit Table rows

    Hi,
    I am using java studio creator 2 update 1. I have a table(Basic component) and I want to edit a row when an 'edit' checkbox for that particular row is selected. I went through some tutorials but it uses dataTable component and the code is not complete. Any sample code I can refer to? Any pointers on how to do this. Please let me know.
    Thanks in advance,
    S

    You could use this technique to select a row in table:
    http://blogs.sun.com/roller/page/winston?entry=single_selectable_row_table_component
    And then you could use a set of UI components to edit the column values of the current row. Refer the sample app Single Page CRDU with Form, which does this.
    I believe, this could be more simpler, compared changing the component type (to editable ones) dynamically on selecting/choosing a row.
    Regards,
    Sakthi

  • How to display/edit timestamp in a Form Field ?

    Hello,
    i have a table which has a TIMESTAMP column and i have a form based on this. What i want is to be able to have a user see it during displaying in a form and be able to insert or modify these timestamp values. I looked through the various DATE pickers in Page Item | Display as, but i didn't find a suitable one for TIMESTAMPs. The closest one to my needs is that of DD/MM/YYYY HH24:MI but if i use it the user can't provide seconds and if form in update mode, when the user presses save without actually making any modifications the seconds part of the field is lost.
    Any idea how to solve this situation? Have you had such a similar problem in your implementation? How do you implement in your applications TIMESTAMPS?
    TIA
    Edited by: Dionyssis on 7 Ιαν 2010 3:12 πμ

    >
    Any idea how to solve this situation? Have you had such a similar problem in your implementation? How do you implement in your applications TIMESTAMPS?The DatePicker doesn't support timestamps. In our applications we have used non-database date fields to handle the user display/entry side of life and then manually populated these fields from the (hidden) timestamp fields during record 'build' and then used a process to set the timestamp field to match the user-updated date field during submit - in our case we're also using timezones.
    It's a pain... I'd like a better alternative!
    Andy

  • Display of table rows and columns in OAF

    Hi All,
    I am developing a custom page which has one table.
    This page table should display the fields and it's corresponding values side by side.
    for eg:
    Header1 Header2
    Lable1(field prompt) value1
    Lable2(field prompt) value2
    Lable3(field prompt) value3
    Lable4(field prompt) value4
    Lable5(field prompt) value5
    Here:
    Header1 is the prompt name of the header for Lables
    Header2 is the prompt name of Values
    Lables are the field names and values are its corresponding values.
    Is there any special region/options to achieve this on OAF page.
    Please help me
    Thanks,
    Srinivas

    Hi Srinivas,
    A table or advanced table can accomplish your requirements. Advanced tables have added features that can be included declaratively vs programatically. The dev guide has detailed examples on the various options.
    Regards,
    LC

  • Need to display my table rows as columns (have tried lots, still no luck)

    My data is as follows:
    attribute_name attribute_value
    VisitType Housing
    Priority 1
    I need it to come out in this format:
    VisitType Priority
    Housing 1
    It's set up this way to make some of the fields user definable. Therefore, VisitType is defined by the user and isn't set in stone.
    I don't like this model but I'm stuck with it. Have tried a few things but nothing works!!
    please help.

    may be this could help.
    Create table Att_tab (
    Attribute_name varchar2(30),
    Attribute_type varchar2(30))
    Insert into Att_tab
    Select 'VisitType', 'Housing' from dual
    union all
    Select  'Priority', '1' from dual;
    Select * from Att_tab;
    SELECT srno,
    LTRIM(MAX(SYS_CONNECT_BY_PATH(Attribute_name,',')) KEEP (DENSE_RANK LAST ORDER BY curr),',') AS Attribute_name,
    LTRIM(MAX(SYS_CONNECT_BY_PATH(Attribute_type,',')) KEEP (DENSE_RANK LAST ORDER BY curr),',') AS Attribute_type
    FROM (SELECT 1 srno,
    Attribute_type,
    ATTRIBUTE_NAME,
    ROW_NUMBER() OVER (PARTITION BY 1 ORDER BY Attribute_type) AS curr,
    ROW_NUMBER() OVER (PARTITION BY 1 ORDER BY Attribute_type) -1 AS prev
    FROM Att_tab)
    GROUP BY srno
    CONNECT BY prev = PRIOR curr AND srno = PRIOR srno
    START WITH curr = 1;

  • Display single line item in 2 rows in table in Adobe form

    Hi Experts am working on Adobe forms, my requirement is to display a table, but the issue is I 've 8 fields in my table and I want to display 3 in first line and 5 in second line. I could try with changing margins width and height but got no result as expected. Please help me out this is urgent for me.
    Thanks in advance
    Phalani M

    Sarath, as I mentioned my requirement is to display a table row in 2 lines, per suppose I have 5 line items then I want to display them in 10 (2*5) lines, same thing I want to display header also in 2 lines.
    Phalani M

  • How to create editable tablecells for a single table row dynamically?

    Hi
    How to make the cell of a tablerow editable based on flag in backing list object bound to row? I can't decide the editable property while creating table columns. So i can't use setCellFactory() during creation. However setCellFactory() makes all cells in table column editable.How to make non-editable table row cell editable and vice-versa based on flag?

    hi
    good
    if you want to create two different view for a same table than you cant give the same name for the same view,otherwise it would allow you to create the view.Try out with different view name as well as the function group name,i hope this ll work.
    thanks
    mrutyun^

  • Null Pointer Exception when working with editable tables

    We are using editable tables in various places in forms that are embedded in views in our application.
    A few weeks ago we have discovered that we receive an exception when first clicking into an editable cell (see below). I can't exactly pinpoint when this started happening (might have been when updating from Luna SR1 to Luna SR2 but I am not sure) but I am certain that we didn't used to have this issue in the beginning.
    Is this something, others are also experiencing? Is this an issue of forms that use DISPLAY_HINT_VIEW (we don't have any editable tables in popup forms)?
    !ENTRY org.eclipse.ui 4 0 2015-06-10 12:14:13.423
    !MESSAGE Unhandled event loop exception
    !STACK 0
    java.lang.NullPointerException
    at org.eclipse.jface.viewers.ColumnViewerEditor.activateCellEditor(ColumnViewerEditor.java:216)
    at org.eclipse.jface.viewers.ColumnViewerEditor.handleEditorActivationEvent(ColumnViewerEditor.java:452)
    at org.eclipse.jface.viewers.ColumnViewer.triggerEditorActivationEvent(ColumnViewer.java:675)
    at org.eclipse.scout.rt.ui.swt.basic.table.SwtScoutTable$P_TableViewerEx.triggerEditorActivationEvent(SwtScoutTable.java:1019)
    at org.eclipse.jface.viewers.ColumnViewer.handleMouseDown(ColumnViewer.java:650)
    at org.eclipse.jface.viewers.ColumnViewer.access$0(ColumnViewer.java:646)
    at org.eclipse.jface.viewers.ColumnViewer$1.mouseDown(ColumnViewer.java:95)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:192)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4353)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1061)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4172)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3761)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032)
    at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
    at ch.sbb.cisi.angebot.scout.client.ui.swt.application.Application.startSecure(Application.java:45)
    at ch.sbb.cisi.angebot.scout.client.ui.swt.application.Application$1.run(Application.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:415)
    at ch.sbb.cisi.angebot.scout.client.ui.swt.application.Application.start(Application.java:34)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:606)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1465)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1438)

    I experienced the same issue with editable boolean cells.
    Left mouse click events produce the mentioned Exception, which causes the mouse down event to be lost. The mouse up event is still fired though, thereby it's possible that the value of another cell in the same row is updated as the contextColum, which is set by the mouse down event, hasn't been updated.
    Right mouse click events work as expected.

  • What is the right  way to display a table in Java web dynpro using a node.

    Hi experts,
      I am trying to show a node of cardinality 0...n as a table in an adobe form in Java web dynpro. But its not showing it properly. Can anybody please tell me what is the right way to display a table on adobe form using a node of cardinality 0...n or 1...n in Java Webdynpro.  In ABAP webdynpro, we can drag and drop a node of cardianlity 0...n or 1...n to  show as a table and it works fine. Is the same possible in Java webdynpro also. Please help.
    Thanks and Regards.
    Vaibhav Tiwari.

    Please refer to my post.. you will get the answer
    Dynamic Table -  same data repeating in all rows
    Special care should be taken in designing the context for table attribute.
    The attribute type singletone also plays a important role. I have this doubt from the beginning when you have reported this problem for the first time but finally you marked it as solved so i thought there might be some other issues but again when you reported that again i did some analysis.
    Now coming to final solution :
    For designing a table in adobe interactive form you have consider following
    You have to design the view context upto three level, I am explaining you the properties
    PDFDataSource (Parent Level1) - Cardinality 1:1 - Signetone -True - This is assigned to datasource
    TableList (Parent Level2) - Cardinality (1:1) - Signetone -True
    TableWrapper(Parent Level3) - Cardinality (0:n) - Signetone -True
    TableData (Parent Level4) - Cardinality (0:1) - Signetone - false (This is the main point)
    Then under TableData value node, you have to put all your table attributes.
    This Value Node name can be anything but hierarchy should be same as I have mentioned above.
    Please try out these steps and get back to me if you have any doubt.

  • Display and edit currently selected row of ADF Table in ADF Form

    I have an ADF Read-only Table and ADF Form, which were created from the same Data Control.
    I need to be able to edit the selected row of the table in the form (just like in "Binding Data Controls to your JSF page" part of "Developing RIA Web Applications with Oracle ADF" Tutorial). However, I can't figure out how to do this :(
    I found the following solution on the Web: #{bindings.DeptView1.currentRow.dataProvider.dname} - but it doesn't work, since "the class oracle.jbo.server.ViewRowImpl does not have the property dataProvider".
    Sorry for the newbie question.
    Thanks in advance for any help!

    Hi,
    AFAIK, dataProvider is not supported on ADF BC, hence the error.
    If you have created ADF Read only table and form from the same data control you just need to refresh the form based on table selection to show up the selected record, to do which you just need to add partialTriggers property to the panelFormLayout and set its value to the id of table
    Sireesha

  • How to get more table rows to appear on form

    I'm looking for a way to have more table rows appear on the actual form.  I created a table with one header and one row with the add and delete button option.  I like how the purchase order form sample has it setup where in designer it shows one row and then on the form it appears the table has three rows to start with.  How do I do that?  I looked at the code on the sample and I couldn't find it anywhere.  Please help, thanks.

    Hi,
    The first part is easy to set up. If you select the object and go to the Object > Field palette. There you can click on display pattern and insert a null pattern, like "Name".
    When the field doesn't have data, it will display "Name", but as soon as the user clicks in, this will automatically disappear.
    The slight glitch is that by default this 'caption in the field' has the same text style as the rawValue, typically Myriad, black 10pt.
    To achieve a grey, italic font to the null values, will require a little script.
    If you look at page 2 of this example you will see how I have set up the three fields on the right:
    http://www.assuredynamics.com/index.php/category/portfolio/laying-out-form-objects/
    Hope that helps,
    Niall
    Assure Dynamics

  • Number of Rows, displaying a table with only one row

    Hello,
    I am doing my first VC tests on the discovery System.
    I have an input form where I put in the username, then choose a user from a table and with the user ID I want to show the user details in another table.
    Now since I am only pickling one user, the new table will only have one row. In VC I cannot set the no. of rows to 1 though, since I cannot edit the no. of rows field. I also cannot disable the scroll buttons.
    Why is that?
    Is there another way to display user details? I tried to display it in read-only form, but it is pretty ugly.
    Another question regarding designing in VC:
    Are there any design elements in VC for example to group form fields that belong together? Let's say I have street name, number, postal code and so on, could I use a design element to group them under the label "Address" ?

    Peter,
    For some reason the No. of Rows and Scroll Buttons options are only available if your compiler is set to Web DynPro. Whenever you compile to Flash they're disabled.
    Regards
    Hennie

  • Editable table with multiple rows

    Hi All!
    We're trying to develop some application in VC 7.0. That application should read data from some R/3 tables (via standard and custom functional modules), then display data to user and allow him/her to modify it (or add some data into table rows), and then save it back to R/3.
    What is the best way to do that?
    There's no problem with displaying data.
    But when I try to add something to table (on portal interface), I'm able to use only first row of the table... Even if I fill all fields of that row, I'm not able to add data to second row, etc.
    Second question. Is it possible to display in one table contents of output of several BAPIs? For example we have three bapis, one displaying user, second displays that user's subordinates, and the third one - that user's manager. And we want one resulting table...
    And last. What is the best way to submit data from table view in VC (portal) to R/3 table? I understand that we should write some functional module, that puts data to R/3. I'm asking about what should be done in VC itself. Some button, or action...
    Any help will be appreciated and rewarded :o)
    Regards,
    DK

    Here are some former postings:
    Editable table with multiple rows
    and
    Editable table with multiple rows
    Are you on the right SP-level?
    Can you also split up your posting: one question, one posting? This way you get faster answers, as people might just browse the headers.

  • How to delete empty table row in the form using formcalc

    Hi All,
    I am displaying a table in PDF which has a few empty rows in between.  I need to delete those specific rows when the form is generated, so that they do not appear on the form.
    Has anyone worked on this before? If so, can you please share the code or advise.
    Regards
    Aditi

    Hello,
    first: there MUST be same backend you get the data from right? So in this backend there is some data extraction coding, right? So the result of this coding is bad, like some unwanted extra rows are returned in the proper set of rows, right? So why don´t you change this backend coding not to return the unwanted rows?
    IF that is not possible (I don´t believe this!), but just to describe other possibilities, you can place a script on the row subform event like initialize and test if there is something missing there and if so, set the presence of such a row to hidden.
    JS: If (this.fieldA.rowValue == "") { this.presence = "hidden"; }
    Regards, Otto

Maybe you are looking for

  • T410s Optimus game performanc​e / heat

    Hello, I have a 2 year old T410s.  I'm  trying to play the Diablo 3 beta.  However, after a couple minutes of in-game action the game slows down to a crawl. I have Thinkpad Fan Control running at fan state 80 (6000+ RPMs) and even so the temperature

  • Error while creating purchasing documents

    Hi, Iam a new user to Material Management unable to create any Purchasing docments (PR,RFQ,P.o..etc). As Iam trying to procure a material for stock, selected the Accountassignment as Unknown. got following two errors 1.Unknown account assignment not

  • Firefox keeps crashing in Win 8.1

    I have a new system from HP. I installed firefox two days ago. It works for a while and then keeps crashing in Win 8.1. This usually happens together with a pop up saying something like a script is running, do I want to stop it or continue Can someon

  • Adobe Media Player does not show day 5

    On my computer, the Adobe Media Player does not show day 5. Shows days 1 through 4. Also on Day 4, trying to view the video "Create States and How to bind them" I get a "corrupt file" error when trying to watch using the Adobe Media Player... Also wi

  • Making eBay listings in Dreamweaver

    Can Dreamweaver be used to make your listings on eBay be more attractive ? What can it do and what can it not do, could you just make a page in Dreamweaver and copy and paste into the description on the eBay listings ? any help would be great thanks