0% found this document useful (0 votes)
4 views

Quick Recap

Uploaded by

lpuatharva
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

Quick Recap

Uploaded by

lpuatharva
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 20

1. What is AOL Application Object Library ?

2. What is Interface & Its Type?


(Inbound Process)

1. Get data from legacy system Called Flat file.

2. Load the flat file data into temporary table called staging table using sqlloader

(control files are used .ctl extensions)

3. Validate the data in staging table using pl/sql procedures to define rules of validation.

4. Successful Validation rakes up the data to the interface tables.

5. These Validate data can be directed to base tables using predefined Seeded programs.

(Outbound process)

outbound Interface Process:


=============================

1)Develop the PL/SQL Program (Either Procedure or Package)

2)Write the Cursor to retrieve the data from database tables.

3)Create file or Open the File by using UTL_File.fopen().

4)Open the Cursor

5)If any validations are there write the validations

6)Transfer the Data into File by using UTL_File.Put_Line().

7)Close the Cursor.

8)Close the File by using UTL_File.fclose();

9)Register the Procedure or Package as Concurrent Program and submit from SRS Window.
We will use following three functions to generate the file.

1)Utl_File.fopen = To open (or) Create the file


2)Utl_File.Put_line = To Transfer the data into the File.
3)Utl_File.fclose = To close the File after Data transfer.

3. What are value sets & its validation types?

Validation Type:

• None: You use a None type value set when you want to allow
users to enter any value so long as that value meets the value
set formatting rules. Because a None value set is not validated,
a segment that uses this value set does not provide a list of
values for your users. That is, Values are not checked against an
approved values list but Values are checked for expected data
type,length, and so on. A segment that uses this value set (that
is, a non-validated segment) cannot use flexfield value security
rules to restrict the values a user can enter.Use the validation
type None when the actual values to be input cannot be
anticipated in advance. Eg: Phone Number.

• Independent: An Independent value set provides a predefined


list of values for a segment. So the input must exist on
previously defined list of values. Independent values are stored
in an Oracle Application Object Library table.

• Table: A table-validated value set provides a predefined list of


values like an independent set, but its values are stored in an
application table. You define which table you want to use, along
with a WHERE cause to limit the values you want to use for
your set. Typically, you use a table-validated set when you have
a table whose values are already maintained in an application
table.Table-validated value sets are useful when the set of
approved values is large, changes frequently, and is maintained
by the application.

• Dependent: A dependent value set is similar to an independent


value set, except that the values available in the list depend on
independent value set defined prior to this. You must define
your independent value set before you define the dependent
value set that depends on it.

• Special and Pair: Special and pair value sets provide a


mechanism to allow a “flexfield-within-a-flexfield”. Special value
set uses entire KFF as its value and for Pair Value set two
flexfields linked together specify a range of valid values. These
value sets are primarily used for Standard Request Submission
parameters.

• Translatable Independent and Translatable Dependent: Its


similar to Dependent and Independent value set provided
translated values can be used.That is, it can contain display
values that are translated into different languages. For format
validation, translatable value sets must use the format type
Char. The maximum size must be no greater than 150. The
Number Only option and the Right-justify and Zero-Fill
Numbers option cannot be used with translatable value sets.
The values will be validated against a original hidden value that
is not translated.
4.
9
DOCUMENTAION INFO

You might also like