oracle-apex

CAS implementation to Oracle APEX

五迷三道 提交于 2021-01-29 09:58:03
问题 I'm trying to implement CAS into APEX application. I have some instruction how to implement it into typical java webapp. I know what to add into the web.xml with all configuration, and this is the easy part. I need to add some dependecies to pom.xml. How i can find it and is this possible to add some dependencies to apex application? Apex 19.1 is running on tomcat 9 on linux server. 回答1: I need to add some dependecies to pom.xml. How i can find it and is this possible to add some dependencies

Interactive grid in Oracle APEX - Only 40 rows are selected, if I do 'Select All'

♀尐吖头ヾ 提交于 2021-01-29 09:23:34
问题 I have an updatable interactive grid with 200 rows. If I do a select all on the grid, only 40 records gets selected. But then I scroll further down and then again do a select all, another 40 records i.e total of 80 records gets selected. If I scroll down till the end and do a select all, then all the 200 records gets selected.So, it appears that the rows gets selected in the chunks of 40 each time. Is it a bug/feature of interactive grid that the complete grid can't be selected at once,

Through Apex Item Checkbox checks want to store values in Item field

萝らか妹 提交于 2021-01-29 07:37:30
问题 I used Interactive report APEX_ITEM.CHECKBOX2(p_idx => 1, p_value => ST.ID, p_attributes => DECODE(ST.IS_HEADER_ROW ,'Y', 'DISABLED',NULL)). And I want to use highlighted IDs depending upon checks in Row ID field in Comma delimited format DYNAMICALLY. Further I will use that Row IDs value in another region report and will update values in DB after few validations. 回答1: On button press, you could run this JavaScript which concatenates all nominated checkboxes into a delimited string. $s('P1

Java 6 function working in command line, but not working on Oracle server (AES 256)

守給你的承諾、 提交于 2020-12-15 07:21:22
问题 I have a Java 6 function below: import java.net.*; import java.io.*; import java.security.*; import javax.crypto.*; import javax.crypto.spec.*; import javax.xml.bind.DatatypeConverter; public class decryptSEK { public static void main(String[] args) { String encryptedSek = args[0]; String appKey = args[1]; byte[] appKey32b = DatatypeConverter.parseBase64Binary(appKey); String decryptedSek = decryptBySymmetricKey(encryptedSek, appKey32b); System.out.println(decryptedSek); } public static

Java 6 function working in command line, but not working on Oracle server (AES 256)

荒凉一梦 提交于 2020-12-15 07:20:37
问题 I have a Java 6 function below: import java.net.*; import java.io.*; import java.security.*; import javax.crypto.*; import javax.crypto.spec.*; import javax.xml.bind.DatatypeConverter; public class decryptSEK { public static void main(String[] args) { String encryptedSek = args[0]; String appKey = args[1]; byte[] appKey32b = DatatypeConverter.parseBase64Binary(appKey); String decryptedSek = decryptBySymmetricKey(encryptedSek, appKey32b); System.out.println(decryptedSek); } public static

Values are not displaying with leading zero in oracle

試著忘記壹切 提交于 2020-12-13 03:12:13
问题 I have a table where i have data with leading zeros for a column( number datatype). When i try to query the column in apex - SQL Workshop, it is not displaying the leading zero. So i need to manually convert to display value with leading zeros. But there is a problem while converting. If i format explicitly using to_char then it is affecting the normal value. For example select to_char(colA,'0.99') from tab1 will give me 0.87 when value is .87 but we do have values without decimal also. in