oracle-apex-19.1

How to convert string value returned from oracle apex 20.1 multiselect item into comma separated numbers array

泪湿孤枕 提交于 2020-07-10 10:29:05
问题 I have a multi select enabled select list. I want to use all the selected ids inside an IN () operator in pl/sql query. Selected values are returned as below, "1","5","4" I want to use em as numbers as below, 1,5,4 My query is like, UPDATE EMPLOYEE SET EMPSTAT = 'Active' WHERE EMPID IN (:P500_EMPIDS); 回答1: This is the employee table: SQL> select * from employee; EMPID EMPSTAT ---------- -------- 1 Inactive 2 Inactive 4 Inactive 5 Inactive SQL> This is a way to split comma-separated values

Oracle Apex - View option in each row of interactive grid

一笑奈何 提交于 2020-07-10 10:27:08
问题 I've a report table in Oracle Apex. I need to add a view button in each row, as the last column. On click on the view button, I need to popup a interactive grid /interactive report/classic report with some more details. Hard to describe, please refer the attachment. I'm using apex version is 19.1.0.00.15 each rows are having different set of where clause in SQL statement . Each row navigate to different pages, where i want to show the application/db/interface footprints 来源: https:/

Oracle Apex column value conditional display

时光毁灭记忆、已成空白 提交于 2020-05-17 06:33:19
问题 I used the query below in interactive report and turned escape special characters off. This is just coloring text whereas requirement is to highlight entire row. Any suggestions? Ex: SELECT "P_IT_ISSUES"."ISSUE_SUMMARY" as "ISSUE_SUMMARY", decode("P_IT_PEOPLE_1"."PERSON_NAME",NULL,'Unassigned', "P_IT_PEOPLE_1"."PERSON_NAME") as "ASSIGNED_TO", case when "P_IT_ISSUES"."STATUS" ='Open' then '<aaab style= " color: green; " >' ||"P_IT_ISSUES"."STATUS"||'</aaab>' when "P_IT_ISSUES"."STATUS" ='On

Oracle Apex column value conditional display

允我心安 提交于 2020-05-17 06:32:27
问题 I used the query below in interactive report and turned escape special characters off. This is just coloring text whereas requirement is to highlight entire row. Any suggestions? Ex: SELECT "P_IT_ISSUES"."ISSUE_SUMMARY" as "ISSUE_SUMMARY", decode("P_IT_PEOPLE_1"."PERSON_NAME",NULL,'Unassigned', "P_IT_PEOPLE_1"."PERSON_NAME") as "ASSIGNED_TO", case when "P_IT_ISSUES"."STATUS" ='Open' then '<aaab style= " color: green; " >' ||"P_IT_ISSUES"."STATUS"||'</aaab>' when "P_IT_ISSUES"."STATUS" ='On