Wednesday 15 December 2021

How to resolve error "This installer must be executed using a Java Development Kit (JDK) "but your jdk path" is not a valid JDK." while installing weblogic server

 Hi

Sometimes we face "not a valid jdk" error while installing weblogic server 


to resolve the above error use the following command and wait some time installation process will start shortly 

"C:\Program Files\Java\jdk1.8.0_311\bin\javaw.exe" -jar F:\Software\servers\weblogic\fmw_12.1.3.0.0_wls.jar









Wednesday 1 December 2021

Query to get cash receipts information in oracle fusion

 /* Formatted on 12/2/2021 11:37:58 AM (QP5 v5.294) */

SELECT *

  FROM ar_cash_receipts_all

 WHERE     receipt_number = '1'

       AND NVL (TRUNC (RECEIPT_DATE), SYSDATE) =

              TO_DATE ('28-11-21', 'DD-MM-YY')

Query to get Business unit (ORGANIZATION_ID) Detail in oracle Fusion

  SELECT HAO.ORGANIZATION_ID AS BUSINESS_UNIT_ID,         HAOT.NAME,         HAO.BUSINESS_GROUP_ID,         HAO.EFFECTIVE_START_DATE,       ...