GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Tech FAQs  >  Oracle Apps

 Print  |  
Question:  Profie Options and User Exits

Answer: Explian What are Profie Options and User Exits


August 08, 2008 03:52:50 #1
 babind   Member Since: August 2008    Total Comments: 1 

RE: Profie Options and User Exits
 
Profile options is a collection of changeble option this option you can steup then your way of application is running is change.  The porfile option are 4 types they are given below
 
1=>  user level
2=>  site level
3=>  application level
4=>  Responsibility level

user exists: It is external function in executed in the repots 6i builder. It will pass the control from reports to another oracle product or 3 generation language products and return the control to report builder this maily used in before report trigger and after report trigger because to match the reports parameters and requist id at runtime

before report
begin
SRW.USER_EXIT('FND SRWINIT');
  return (TRUE);
end;

AFTER REPORT

begin
  SRW.USER_EXIT('FND SRWEXIT');
  return (TRUE);
end;
     

 

Back To Question