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.
Apply validation on Delete button when click
This is just to give you a flavor of how it works in simple case. Assuming you have an item CUSTOMER_ID, table CUSTOMER_INFO and a button called DELETE. While in the design mode of your page; GO to Processing Right click on Validating Create Validation Identification = Check if exists Validation: TyRead more
This is just to give you a flavor of how it works in simple case.
Assuming you have an item CUSTOMER_ID, table CUSTOMER_INFO and a button called DELETE.
While in the design mode of your page;
It’s just a sketch you may want to accommodate to your needs.
See lessHow to insert item data with default IG in IG table?
Let say you have a page, page item P_ITEM and Interactive Grid having column DEPENDANT. Depending on what you want to achieve you may either set a default source(1) for this column or default value in case of new row(2). Expand columns of your interactive grid end click on the column name you whishRead more
Let say you have a page, page item P_ITEM and Interactive Grid having column DEPENDANT.
Depending on what you want to achieve you may either set a default source(1) for this column or default value in case of new row(2).
Expand columns of your interactive grid end click on the column name you whish to modify, follow either option 1 or 2.
How to add one column data to another column in same row in Interactive Grid on oracle apex?
If I get your problem correctly you want to simply pass a value from one column to another in case initial value has changed. If that's the case let me use EMP table as an example. DEPENDANT ("virtual") column I added just for the purpose of this example. It would react on change of EMPNO column. ThRead more
If I get your problem correctly you want to simply pass a value from one column to another in case initial value has changed.
If that’s the case let me use EMP table as an example. DEPENDANT (“virtual”) column I added just for the purpose of this example. It would react on change of EMPNO column.
This is source query for your interactive grid:
SELECT E.*, NULL AS DEPENDANT FROM EMP E
Here is explanation:
With this in place whenever you change value of EMPNO and then navigate to different cell, DEPENDANT will be updated.
Bi Publisher Report QR code will show the link of the report.
Please Explain More. link report will be public
Please Explain More. link report will be public
See lessBi Publisher Report QR code will show the link of the report.
In the BI publisher report MS Word file, create an image object for QR code and specify the link (Apex format) for your another BI publisher report.
In the BI publisher report MS Word file, create an image object for QR code and specify the link (Apex format) for your another BI publisher report.
See lesswith Interactive Gird data from table Table1 and insert Table Table2. How can I insert it? Is it possible? How?
You can write a process to transfer data from table1 to table2 using the same condition you used for the interactive grid. For example, you specified the following condition to the interactive grid: deptno = :p1_deptno Now in the page process, use this same condition to transfer the records. Below iRead more
You can write a process to transfer data from table1 to table2 using the same condition you used for the interactive grid.
For example, you specified the following condition to the interactive grid:
Now in the page process, use this same condition to transfer the records. Below is an example:
See lessHow to add one column data to another column in same row in Interactive Grid on oracle apex?
Sir, data set after click every cell. not automatic set for all cell when change bill_month item. when set action:change in dynamic action on bill_month DA fired but return null.
Sir, data set after click every cell. not automatic set for all cell when change bill_month item.
when set action:change in dynamic action on bill_month DA fired but return null.
See lesshow to download multiple view/table data in one excel
Below is an example to download the CSV file using the Ajax process. To download the file in XLSX format, you need a third party package to convert the query result into the Excel format. The CSV file will also open in Excel. Create a database procedure that will return the CLOB data type for the daRead more
Below is an example to download the CSV file using the Ajax process. To download the file in XLSX format, you need a third party package to convert the query result into the Excel format. The CSV file will also open in Excel.
Create a database procedure that will return the CLOB data type for the data return by the query having multiple tables:
Then create an Ajax callback process in Oracle Apex to call the above procedure and convert CLOB to BLOB and download. Add the following code in the Ajax callback text area:
Now you can call the above Ajax callback process on the button click as follows:
Where download_emp_csv is the Ajax process name.
See lessHow to highlight row based on condition using Classic Report
step 1--- report query like-- select EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO, to_date(to_char(sysdate,'dd-mm-yyyy'),'dd-mm-yyyy')-to_date(to_char(HIREDATE,'dd-mm-yyyy'),'dd-mm-yyyy') as dummy from EBA_DEMO_CHART_EMP step-2 column-name-- HIREDATE KEEP HTML EXPRESSION LIKE -- <span dataRead more
step 1—
report query like–
select EMPNO,
ENAME,
JOB,
MGR,
HIREDATE,
SAL,
COMM,
DEPTNO,
to_date(to_char(sysdate,’dd-mm-yyyy’),’dd-mm-yyyy’)-to_date(to_char(HIREDATE,’dd-mm-yyyy’),’dd-mm-yyyy’) as dummy
from EBA_DEMO_CHART_EMP
step-2 column-name– HIREDATE
KEEP HTML EXPRESSION LIKE — <span data-id=#DUMMY#>#HIREDATE#</span>
step-3 make dummy column as hidden column
step-4
give class name for your report like– emp
at report region , appearance section “CSS Classes” => emp
step-5
create a dynamic action at page load
action == execute javascript code
like–
//– replace your conditional column with HIREDATE
$(‘.emp [headers=”HIREDATE”]’).each(function(index,element){
var x= element.innerHTML;
//console.log($(element).children().attr(‘data-id’));
var text= parseInt($(element).children().attr(‘data-id’));
if (text > 1){
See less$(this).closest(“tr”).children().css({“background-color”:”red”});
}
});
How to add one column data to another column in same row in Interactive Grid on oracle apex?
Thank you so much sir.
Thank you so much sir.
See less