Do you want to meet your fellow Oracle Apps Consultants ?? then join us @ Facebook
Order Management

Articles related to O2C Cycle of this blog.

HRMS

Articles related to HRMS of this blog.

Oracle Purchasing

Articles related to P2P Cycle of this blog.

iRecruitment

Articles related to iRecruitment of this blog.

AOL and SYSADMIN

Tips and Tricks with handy Scripts

Oracle Alerts »

[ 17 May 2013 | No Comment | 28 views]

What are Oracle Alerts?
Oracle Alert facilitates the flow of information within your organization by letting you create entities called alerts to monitor your business information and to notify you of the information you want.
What they are capable of?

Keep you informed of database exception conditions, as they occur.
Take predefined actions when it finds exceptions in your database, without user intervention.
Take the …

AOL and SYSADMIN, AOL SQL Scripts »

[ 9 May 2013 | No Comment | 37 views]
ConcurrentProgram_Assigned_to_RequestGroup_from_Application

We can not only create a concurrent program from backend but also assign the concurrent program to a Request Group by FND_PROGRAM.ADD_TO_GROUP api, below is the sample script.
Adding a Concurrent Program to Request Group from backend:

DECLARE
l_program_short_name VARCHAR2 (200);
l_program_application VARCHAR2 (200);
l_request_group VARCHAR2 (200);
l_group_application VARCHAR2 …

AOL and SYSADMIN, AOL SQL Scripts »

[ 9 May 2013 | No Comment | 29 views]
ConcurrentProgram_Paramter_from_Application

We need to use FND_PROGRAM.PARAMETER api to create an concurrent program parameter from backend database, below is the sample script.
Creating the Concurrent Program Parameter from backend:

DECLARE

l_program_short_name VARCHAR2 (200);
l_application VARCHAR2 (200);
l_sequence …

AOL and SYSADMIN, AOL SQL Scripts »

[ 9 May 2013 | No Comment | 20 views]
ConcurrentProgram_from_Application

We need to use FND_PROGRAM.REGISTER api to create an concurrent program from backend database, below is the sample script.
Creating the Concurrent Program from backend:

DECLARE

l_program VARCHAR2 (200);
l_application …

AOL and SYSADMIN, AOL SQL Scripts »

[ 1 May 2013 | No Comment | 43 views]
Executable_from_Application

We need to use FND_PROGRAM.EXECUTABLE api to create an executable from backend database, below is the sample script.
Creating the Executable from backed:

DECLARE

l_executable VARCHAR2 (200);
l_application VARCHAR2 (200);
l_short_name …

AOL SQL Scripts »

[ 12 Mar 2013 | No Comment | 83 views]

/*********************************************************
*PURPOSE: To list physical path of APPL_TOPs in unix *
* and its Parameters *
*AUTHOR: Shailender Thallam …

Oracle Learning Management »

[ 12 Mar 2013 | No Comment | 73 views]
Learning_Path_Components

Purpose of Learning Path:
A learning path is a catalog object that is used to group sequence of courses together and tracked as a whole. Learning path shows the way to achieve goals of a learner. Eg:- A new employee on board learning where the learner needs to complete a set of courses, by a relative targeted date (for example, 3 …

AOL SQL Scripts »

[ 12 Mar 2013 | No Comment | 111 views]

/********************************************************************
*PURPOSE: To list information about Executable, Concurrent Program *
* and its Parameters …

AOL and SYSADMIN, XMLP »

[ 11 Mar 2013 | No Comment | 165 views]

Some times we might end up in a situation to delete Data Definition and Template but interestingly oracle doesn’t provide the option to delete.. As a techie we can achieve this from back end, here is a method to delete Data Definition and Template from back end.

SET SERVEROUTPUT ON
 
DECLARE
— Change the following two parameters
var_templateCode …

AOL and SYSADMIN »

[ 11 Mar 2013 | No Comment | 91 views]

ICX_PARAMETERS table helps us to find out the application URL.

SELECT home_url FROM icx_parameters;

We can also get the application URL from profile option ‘Application Framework Agent’ which provides the host name and port number.

SELECT profile_option_value
FROM fnd_profile_option_values
WHERE profile_option_id =
(SELECT profile_option_id
FROM fnd_profile_options
WHERE profile_option_name =’APPS_FRAMEWORK_AGENT’
)
AND …

Oracle SQL »

[ 8 Feb 2013 | No Comment | 51 views]

SELECT e.empno,
e.ename ,
e.deptno ,
d.dname
FROM emp e,
dept d
WHERE 1 = 1
AND e.deptno=d.deptno;

The above query gives the same result when WHERE condition e.deptno=d.deptno is replaced with d.deptno= e.deptno.

SELECT *
FROM emp
WHERE ename LIKE …

Oracle PL/SQL »

[ 19 Jan 2013 | No Comment | 221 views]

Oracle has provided an API UTL_SMTP which can be used to send email from PL/SQL. UTL_SMTP uses SMTP (Simple Mail Transfer Protocol) sever to send the emails. To know more about UTL_SMTP API read oracle documentation here.
Below is a sample code snippet to send email using UTL_SMTP API.

DECLARE

v_from VARCHAR2(80) := ‘noreply@OracleAppsDNA.com’;
v_recipient VARCHAR2(180) := ‘shailender.thallam@appsassociates.com’;
v_recipient2 VARCHAR2(180) := ‘shailender0435@gmail.com’;
v_subject VARCHAR2(180) := …

AOL and SYSADMIN »

[ 17 Jan 2013 | No Comment | 145 views]

Method I : ‘ADIDENT’ utility
To find out a file version, oracle have provided ‘ADIDENT’ utility (AD Identification). This is an oracle apps based utility.
Syntax:- adident Header <file_name>
Eg:- adident Header OEXWFASG.rdf

Method II :’Strings’ utility
Strings is a UNIX based utility which is used to  print the strings of printable characters in files. We can use this utility to extract header information from …