Yearly Archives: 2021

Integrating Web History JavaScript API’s with Oracle Apex

1. Overview This Document is used to implement Incremental search on Interactive report and Interactive grid 2. Technologies and Tools Used The following technologies have been used to achieve this…

Read More

Split A String separated by Comma using oracle pl/sql Pipelined Fuction

Objective: To split the given string separated by special character as an individual column value using oracle pipelined Function. Step 1: Create table type of varchar:   create or replace…

Read More

How to Create the boot.properties in IDCS Asserter

Problem: When you are running the weblogic in production mode and when you try to start the weblogic using nohup then there is no  chance to enter the username and…

Read More

How Oracle Apex can transform your Enterprise Apps?

Oracle Application Express or Apex is a modernized and advanced web-oriented software development tool explicitly designed to run on the Oracle Database. It can support multiple database editions of Oracle…

Read More

How to Change APEX admin password using SQL

Steps to change APEX admin password using SQL, 1. Change the current schema to the one relevant for your APEX version ALTER SESSION SET CURRENT_SCHEMA = APEX_050000; 2. Find the…

Read More

FAILED_NOT_RESTARTABLE state. in weblogic 11g

  Server Failed_not_Restartable  State in Oracle Weblogic 11g when we have go through the weblogic console and see any  managed server in FAILED_NOT_RESTARTABLE state. In that case after checking logs…

Read More

Table Alter Script by comparing 2 schema

Table of Contents Overview Technologies and Tools Used Use Case Architecture Screen Shot   1. Overview This document will be helpful to compares Prod and Dev schema and generates alter scripts…

Read More

How to set the interactive grid column values to the page item

Overview This document talks about how set the interactive grid column values to the page item.this is achieved using JavaScript. Technologies and Tools Used The following technologies has been used to achieve the expected output. JavaScript Use Case Assume that we are having the interactive grid report. We want to do some operation based on the values on the interactive grid column then,we can use this method to achieve the same. This document explains how to achieve this requirement. Architecture Following steps explains in detail, Step 1: We needs to add the static ID to the interactive grid region. Step 2: We needs to create dynamic action on the Lose Focus event ,selection type as region and region as the which region you want to take the column values. True action of the dynamic action is execute JavaScript.we needs to add the below JavaScript to execute JavaScript region .   var data=””; var model = apex.region(“IG_REGION”).widget().interactiveGrid(“getViews”, “grid”).model; model.forEach(function(igrow) { //ENAME will be column name which you want to get values var test =igrow[model.getFieldKey(“ENAME”)]; //For some version above will not work for that use the below code //    var test =igrow[model.getFieldKey(“ENAME”)].d; //here d is display value ,even we can use return value r also.…

Read More

How does End-to-End Process Automation work for TTK Healthcare?

Have you ever wondered about the process of how an order reaches you? It is not a simple process of click, ship, and delivery. Time-consuming and mundane processes involving multiple…

Read More

ora- 01017- Invalid username/password log on denied

Cause : Apps account locked. Solution : unlock the Apps account in system using below command Sql > Alter user apps account unlock;  

Read More