I have three tables. One table is referred as two tables. How to display the table in the following manner.
Thanks in advance.
You can place components in table so you can create columns which contains tables. The down side is the inside table will be duplicated each row (with headers for each table). Perhaps the vaadin 7.4 Grid will make a better job here.
Please read the docs for this feature:
https://vaadin.com/book/-/page/components.table.html -> Components Inside a Table
http://demo.vaadin.com/book-examples/book/#component.table.components.components
Related
I am trying to utilize a single tabular form to handle a couple minor tables since I cannot have multiple updateable reports on a single page. The easiest way I could figure to adjust what table I was modifying was to use a select list to choose which table I am viewing/editing.
The select list contains a display of "Supervisor" and "School"
resulting in SUPERVISOR and SCHOOL respectively
the items name is P8_TABLE
Region Source:
select *
from #OWNER#."G06_" || :P8_TABLE
The tables are named G06_SUPERVISOR and G06_SCHOOL
However the query returns:
ORA-00933: SQL command not properly ended
I'm afraid that this won't work. As far as I can tell, tabular form is to be based on one table only (i.e. you can't have a JOIN in there; even if you're displaying values from some other table, you'd rather create functions which would return those values).
That being said, principle you'd like to use means that tabular form underlying table is unknown (as it can vary, depending on what you select in P8_TABLE select list item), which - in turn - means that column names also differ (unless all of those tables share the same column list).
If we presume that above is correct, then I'd suggest you to abandon that approach and maintain every "minor table" on its own tabular form page. It will be just a little bit more typing & clicking, but I wouldn't worry about it.
Hopefully, someone else knows how to do it the way you'd want it to.
You cant make a tabular form query source dynamic. And since the two tables you want to be displayed and be updatable doesnt have common number and usage of their columns, the only way I can think of is separating the two tables and diplaying one tabular form for each table. Though, Apex 4.1 or even the latest Apex 5 doesnt allow multiple tabular form, you can make this possible by using javascript's iframe. You'll need to use javascript since you want to modify the interface of the report/page.
I need to generate a report that groups by two fields the records of a table in an Axapta 3.0. The source table I have has this structure:
And the report I want to get looks like this:
What sections and properties should the report have in order to create such a design?
Thank you very much.
If you have backing tables for the fields 'LOTE' and 'DIARIO' then the easy option is to use them, the query should look like this, all inner joined:
LoteTable
DiarioTable
YourTable
Remember to set Relations to Yes on the two first tables (or define the relations your self).
If you do not have backing tables, you can create them as views on your table.
The LoteTable view should contain the following fields:
Lote
Proveedor
CountOfRecId (Aggregation Count)
The CountOfRecId field will make the view a group by on the first two fields.
I am beginner to titanium i would like to create table with multiple column with rows like as html please, any one assist me. thank's in advance .
You will have to use Views instead of a table - you can compare them to Divs in Html.
i display data in grid like this and want a crystal report like this print the data.
but i have no clue how to do this. Let me try to explain further this case.
for every row of main table i have displayed subdetails in subgridvew and this subgrid data is fetched by keys in main table and an other table (this table has fixed values).
this would be first report i would create.
please gimme clue or tell if i am not so clear about asking question
For this kind of requirement you need to use cross tab...where in rows you need to provide data from table 1 and for rows first take data from table then from table 2 which will geoup as per your requirement
HI,
I have a table with 3 columns Itemid(int),Itemname(string),ItemDesc(string).. Im trying to use a radpanelbar to display this information, where the bar initially shows the item name and on clik/expansion it will show the item description.. I tried looking at the examples on telerik site but didnt understand the point of datafieldid and datafieldparentid. What are they used for and what would their values be for my table.. I tried using different combination of column names for these two ids but I still didnt get it..
Can someone point me in the right direction..
Thanks,
J. Adams
These properties are used when you bind the panelbar to self-referencing hierarchical table with id->parentid columns related in primary->foreign key style. Your table structure does not seem to be hierarchical and you can populate the control only with root items or build its items with your own logic.