Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Create update, add button in interactive report Oracle apex
Ok sure and let me know if still any issues. Thanks.
Ok sure and let me know if still any issues. Thanks.
See lessCreate update, add button in interactive report Oracle apex
Yes the same logic works with classic report as well.
Yes the same logic works with classic report as well.
See lessCreate update, add button in interactive report Oracle apex
Hi Vinish Can you apply the same to a Classic report?
Hi Vinish
Can you apply the same to a Classic report?
See lessCreate update, add button in interactive report Oracle apex
Hi Vinish, Thank you for the reply. Yes, we do have a create button, but I will try both methods you have suggested. Thank you very much.
Hi Vinish,
Thank you for the reply.
Yes, we do have a create button, but I will try both methods you have suggested.
Thank you very much.
Create update, add button in interactive report Oracle apex
Hi Palesa, First of all, I have a question, do you have a Create button already on your interactive report? If yes, then you can replace any column of the interactive report to the Link type and then click on its Link target property and pass the primary key values for the same page you are openingRead more
Hi Palesa,
First of all, I have a question, do you have a Create button already on your interactive report?
If yes, then you can replace any column of the interactive report to the Link type and then click on its Link target property and pass the primary key values for the same page you are opening with the Create button.
Then the page which you were using for the Create option will automatically open in the Edit mode.
But if the Create button is not there, then maybe you don’t have the target page available to create or edit records. Then you need to create a dialog form for the same table the interactive report based on. And then, you should call it by converting a report column to the link.
This is the best way in Oracle Apex, to open a form in edit mode for the existing records.
Please let me know if still any doubts.
See lessSubscription Option In Oracle apex
Hi Ram, You can download a CSV directly from the interactive report using the following syntax: f?p=&APP_ID.:10:&SESSION.:CSV:NO:RP:P10_EMPID:&P3_EMPLOYEE_ID. In the above example, it will call the report, which is on page number 10, by passing the CSV parameter after the session variablRead more
Hi Ram,
You can download a CSV directly from the interactive report using the following syntax:
In the above example, it will call the report, which is on page number 10, by passing the CSV parameter after the session variable. Also, passing the report parameters employee id. You can omit this if not required. For the full tutorial, check this link Download CSV from Interactive Report using URL.
Another way is you can write a database procedure to extract the data into a CSV file.
Check this link Download CSV using PL/SQL procedure.
See lessCreating APEX Workspace Shared Components
Hi Greg, yes, you can create not only static but dynamic objects too, such as navigation menu based on the query, application process, and Lov, etc. You can check the following links: Creating LOVs in Shared components Creating Application Process in Oracle Apex Or if I am not correct, then please eRead more
Hi Greg, yes, you can create not only static but dynamic objects too, such as navigation menu based on the query, application process, and Lov, etc.
You can check the following links:
Or if I am not correct, then please elaborate on your requirement so that I can understand better.
See lessRefreshing Page with Classic Report on Apex
You can do two things in this case. On the submit button, create a dynamic action to refresh only that classic report region instead of loading the whole page. Because when your page loads, it will clear that item. Check the menu option, from where you are calling the page having the classic report.Read more
You can do two things in this case.
Let me know if it still not works.
See lessTools to build https://orclqa.com/
It is built on WordPress using the PHP language.
It is built on WordPress using the PHP language.
See lessDifference in Current and previous row item value
Hi Babu, You can handle this using the data block based on the From Clause. Check this link Create Data Block Based On From Clause Query In Oracle Forms. The from clause blocks are based on the SQL query and in SQL query you can use the Lead or Lag analytical function to solve your purpose. Here isRead more
Hi Babu,
You can handle this using the data block based on the From Clause. Check this link Create Data Block Based On From Clause Query In Oracle Forms.
The from clause blocks are based on the SQL query and in SQL query you can use the Lead or Lag analytical function to solve your purpose. Here is an example:
Here the Lab expression value is the previous row exp_time and exp_time is the current row value.
First, you can test your query only in Oracle. You will get the desired result.
See less