Hareesh Pothuguntla

Hareesh Pothuguntla's Oracle Apps Techno Functional Consultant

A blog to share maximum knowledge to Oracle Applications
Technical Consultants, Functional Consultants, Techno
Functional Consultants.

  • Rated3.5/ 5
  • Updated 1 Year Ago

Recent blog posts from Oracle Apps Techno Functional Consultant


Set Custom CSS inline property in OAF
Import the below library  import oracle.cabo.style.CSSStyle; Create new CSS Style CSSStyle noteStyle = new CSSStyle(); Add the Style propert......
1 Year Ago
BlogAdda
String Functions and Operators
The concatenation operator (||) is used for joining two strings. String functions are: ASCII(x); CHR(x); CONCAT(x, y); INITCAP(x); INSTR(x, ......
1 Year Ago
BlogAdda
PLSQL - LOOP
LOOP: LOOP statements; END LOOP; EXIT: There are two forms of the EXIT. EXIT EXIT-WHEN LOOP statements; IF THEN EXIT;   -- exit ......
1 Year Ago
BlogAdda
PLSQL - Nested Loops
Syntax: DECLARE BEGIN LOOP EXIT WHEN TRUE LOOP EXIT WHEN TRUE END LOOP END LOOP END Example for Nested Loop: declare v_de......
1 Year Ago
BlogAdda
PLSQL - Difference between While and Loop
While Loop v/s Basic Loop While loop will execute only when condition evaluates true declare x number; Begin x := 1; while x > 15 Lo......
1 Year Ago
BlogAdda
PLSQL - While Loop
  WHILE : We can use While loop to evaluate before each iteration Statement executed and control resumes at the top of the loop when conditi......
1 Year Ago
BlogAdda