I'm trying to do a relationship between an Interactive Report and an Interactive Grid. I tried using the relation of interactive reports as a default, but it does not return any results on the grid.
Does anyone know of any way to make this relationship between an interactive report and an interactive grid? because I'm looking on the internet and nobody talks about how do this type of relationship.
Related
I have a master form and a detail interactive grid.
And I have two LOV's on the interactive grid, both of them are built on Rest Web Source.
First LOV is a master & the second one is the cascading LOV with a parameter from the master.
The problem is that the cascading LOV does not fetch any data.
I noticed that when I make the master LOV to be in the form (not in the IG), the cascading LOV works fine and fetches data.
But if both of them are on the IG, the parameter of the first LOV not passed to the cascading LOV, so it returns no rows.
I don't know if this is a bug in APEX 20.2 or what.
if anyone can help, I will appreciate that a lot.
Thanks,
Master LOV
Cascading LOV
!Parent IG Column
Child IG Column
When you turn on Debug, and review debug output for your Interactive Grid, are there any error messages logged?
Can you stage a test case for your issue on apex.oracle.com, so that we can see what you actually implemented and review?
For the test case, you might use SQL Workshop > REST Services to create simple REST APIs on the EMP and DEPT tables, which you could use for REST Data Sources and for the LOVs.
I'm new to oracle apex so this might be simple.
I have an application that i'm currently building. I have an 'employee' table in the SQL workshop. When i attempt to create a form linked to the table there is no option to edit, delete, or add entries into the table ,once the form is completed?
This is essentially what i need help with. I need to be able to manipulate the 'employee' table through the form created rather than through anything within the sql workshop. Just for context i am not the workspace admin, however i am a contributor.
I would appreciate if anyone could provide me with a quick step by step guide into creating this desired form accurately.
I'd suggest you to create (using the Wizard, of course) Report with Form on Table. It will create
interactive report you'd use to view data stored in that table
form which will be used to insert/update/delete data
the same form will be called when you push
the "Create" button in order to create new rows, or
icon at the beginning of every line in the report in order to update/delete rows
This combination (report + form) works nicely for ages, so ... try it. I hope you'll find it useful.
I have craeted two tables. I have also created a page and shown all data as classic report by inner joining between two tables. Now I want to know how can I create a form to update both table at a time?
For single table it can be done easily by creating form and report page. But In case of multiple table what will be way?
Thanks
Create new page by the new page creation wizard using the Form > Single Page Master Detail template.
It will guide you.
Here's one option: create a view, then create instead-of trigger(s) upon that view. Use the same view as a data source on the Apex page.
I know for sure that it works in Oracle Forms; never tried it in Apex, though, but I believe that it should be just fine.
Good morning! What would be the best way to filter an analysis off of an Essbase subject area based on the value of a prompted presentation variable? For example, if the user selects the "Widgets" parent entity it would display its direct children as rows in a table view. There would be 6 or so different choices that would all have different children. Would a CASE statement work?
Can I create a form in APEX which creates/updates records in multiple tables? For example two tables with a one-to-one relationship.
If you are using Automated Row Fetch mechanism, you can use two different ARF for two tables. If you want to have more control, you can define your INSERT/UPDATE statements yourself usign Page Processes.
A simple way would be to create a view that returns the joined tables and base the Apex form on that. You may need to add INSTEAD OF triggers to the view to be able to insert and update successfully.