apex

在ORACLE 12C 上安装APEX 19.2

别说谁变了你拦得住时间么 提交于 2020-03-17 15:29:16
安装环境 操作系统:win 10 x 64 中间件:本文尝试了三个安装环境 PL/SQL gateway/ORDS独立模式/Apache + ORDS 数据库版本:采用windowns X64 版本的 oracle db 12.1.0 目标容器:安装在PDB中(已经自建好名字为apexpdb) 提前修改好pdb的sys用户的密码并熟记 参考官方文档:https://docs.oracle.com/en/database/oracle/application-express/19.2/ 安装步骤(通用步骤): 下载apex安装包 并解压到ORACLE_HOME目录下的 apex文件夹中,并切换到apex目录中, sqlplus / as sysdba 登录数据库: PS C:\app\oracle\oracle\product\ 12.1 .0 \dbhome_1\apex > sqlplus / as sysdba SQL * Plus: Release 12.1 .0 .2 .0 Production on 星期日 3 月 1 16 : 43 : 59 2020 Copyright ( c ) 1982 , 2014 , Oracle . All rights reserved . 连接到: Oracle Database 12 c Enterprise Edition

Apex クラスなど

久未见 提交于 2020-03-03 00:25:38
Apex では、最上位クラス (外部クラスとも呼ぶ クラス内に定義されているクラスである内部クラスの両方を定義できます 内部クラスの宣言にはアクセス修飾子を使用する必要はありません。 これが内部クラスのデフォルトアクセスです。つまり、内部クラスにア クセス修飾子を指定しない場合、private とみなされます。 global アクセス修飾子は、このクラスがすべての Apex コードで表示されることを宣言します。webservice キーワードで定義されているメソッドを含むすべてのクラスはglobal として宣言する必要があります。 with sharing およびwithout sharing の各キーワードはこのクラスの共有モードを指定します。 virtual 定義修飾子は、このクラスが拡張や上書きを許可することを宣言します。クラスがvirtual と して定義されていない場合、override キーワードを使用したメソッドの上書きはできません。 abstract 定義修飾子は、このクラスに抽象メソッド (署名のみが宣言され、本文が定義されていないメ ソッド) が含まれることを宣言します。 override を使用して上書きできるのは、virtual またはabstract として定義されたクラスの メソッドのみです。 プリミティブデータ型引数は値によってメソッド引数を渡す

How to send multiple documents for signature DocuSign for Salesforce

為{幸葍}努か 提交于 2020-01-17 05:43:09
问题 Please can someone assist me. I am new to DocuSign. I have a project I am working on whereby the customer wants to be able to send multiple documents to a recipient for signature. From the standard DocuSign set up, you can add documents upon envelope creation but I am looking for a way to automate this. For instance I created a custom button that automatically sends the envelope to a recepient. But it seems I can only add one document template there. Could someone please advise me on what to

ApexCharts barchart vertical categories logic in ReactJs?

百般思念 提交于 2020-01-16 17:27:31
问题 I am having a problem trying to figure out how to display the correct data to the correct category. My data is in this format from a json API: { "name" : "product1", "records": "5", "month" : "Jan", }, { "name" : "product1", "records": "10", "month" : "Feb", }, { "name" : "product1", "records": "20", "month" : "March", }, { "name" : "product2", "records": "5", "month" : "Feb", } an example of the data model. this.state = { barChart: { options: { plotOptions: { xaxis: { categories: [] }}}

ApexCharts barchart vertical categories logic in ReactJs?

拟墨画扇 提交于 2020-01-16 17:27:28
问题 I am having a problem trying to figure out how to display the correct data to the correct category. My data is in this format from a json API: { "name" : "product1", "records": "5", "month" : "Jan", }, { "name" : "product1", "records": "10", "month" : "Feb", }, { "name" : "product1", "records": "20", "month" : "March", }, { "name" : "product2", "records": "5", "month" : "Feb", } an example of the data model. this.state = { barChart: { options: { plotOptions: { xaxis: { categories: [] }}}

Salesforce(apex) Query select with Where toLowerCase

大城市里の小女人 提交于 2020-01-15 05:56:08
问题 I using Salesforce (apex), I need to Query with a WHERE statement with toLowerCase ,i.e. I have a list (MyNames_list) with LowerCase values but the table values are not lowerCase. In my Query when I check the Name in MyNames_list it will make toLowerCase value and then check it in the MyNames_list. Something like this: Name | LastName BOBY | Testovich1 DANY | Testovich2 Ron | Testovich3 and in my list: MyNames_list :boby,dany,ron That still will return me all rows, because WHERE statement

How the target response Date is calculate in an Entiltment Process Milestone?

醉酒当歌 提交于 2020-01-07 05:05:13
问题 I am new to the Entitlement Process and Milestones using the OOTB implementations. In my org, two business hours (1 for SLA and 1 for OLA) set with different timezone. Each business hours configured to work 9 AM to 6 PM . Extending the question from link : What will be the time trigger value based on the Business hour in salesforce? . I have some SLA which has 5 days of deadline. As per formula ((EOB-SOB) * MPH) * NOBD) , I need to get clarification on below if its correct: EOB = Assume 5

Salesforce(apex) Query return values with toLowerCase

£可爱£侵袭症+ 提交于 2020-01-07 03:46:29
问题 I using Salesforce (apex), i need Query that will select values from table and return them in toLowerCase. some think like this: //only example (not working code) for(Users user:[select Name.toLowerCase(),LastName.toLowerCase() from Users ] ) { //code.... } For example if i have table Users with Name | LastName Boby | Testovich1 Dany | Testovich2 Ron | Testovich3 Query need to return me all values with toLowerCase: b oby t estovich1, d any t estovich2, r on t estovich3 I can do this like this

Remote host closed connection during handshake with Nest API

£可爱£侵袭症+ 提交于 2020-01-06 15:33:12
问题 Trying out the Nest API, I got the OAuth flow working without problems, made the first API call (to https://developer-api.nest.com/devices.json ), got the 307 redirect as expected, but then my call to the redirect location fails with Remote host closed connection during handshake . I went to the Nest developer event in San Francisco last night, and Lev Stesin told me to post a full log here and mention his name. Code (Apex, running on Force.com): public with sharing virtual class

Facing issue in creating dynamic objects from JSON

徘徊边缘 提交于 2020-01-06 06:46:34
问题 I am working on the requirement where a User can fetch the data from production box and insert it into developer sandbox by just giving production URL and creds. I am able to fetch data but somehow not able to convert the JSON to required object type. As I am newbie in Salesforce please don't mind for basic questions. Below is the working logic and issue: for(DataMigrationNAP__c d : dataMigrationNAP) // this loop will give all NAP object names and its corresponding fields like {'Account',