INBOUND INTERFACE: Suppose I have 100 Records of employees
in flat file.When moving the records from flat file to
STAGING table using >CTl file, I want to restrict the
records whose salary is less than 500.what are the
validations(or conditions) you write to achieve this.

Answers were Sorted based on User's Feedback



INBOUND INTERFACE: Suppose I have 100 Records of employees in flat file.When moving the records fr..

Answer / abdul

in control file at sal column write "(:sal>500)"
ex:
sal "(:sal>500)";

then we insert only sal >500 records into staging table

Is This Answer Correct ?    5 Yes 0 No

INBOUND INTERFACE: Suppose I have 100 Records of employees in flat file.When moving the records fr..

Answer / ramesh babu v

we can werite the condition in trailing null cols
like
trailing nullcols(sal number(10)check(sal<500));

Is This Answer Correct ?    1 Yes 0 No

INBOUND INTERFACE: Suppose I have 100 Records of employees in flat file.When moving the records fr..

Answer / santosh kumar

In ctl file sql statements can be used by placing within "***"

eg :

SAL "(:sal>500)" ,

by which only salary above 500 will be loaded

Is This Answer Correct ?    1 Yes 0 No

INBOUND INTERFACE: Suppose I have 100 Records of employees in flat file.When moving the records fr..

Answer / shaikshavali

BY USING BUSINES RULE VALIDATION WE CAN.

Is This Answer Correct ?    0 Yes 0 No

INBOUND INTERFACE: Suppose I have 100 Records of employees in flat file.When moving the records fr..

Answer / harish

by using when clause in ctl file
ex:
load data
infile ''
fields terminated by...
trialing....
INTO TABLE tab WHEN sal>500
(col1 ...
......
.....
)

Is This Answer Correct ?    0 Yes 1 No

INBOUND INTERFACE: Suppose I have 100 Records of employees in flat file.When moving the records fr..

Answer / ram

As per my knowledge we can not have custom validations in
loader file...the only way is have a custom validation to
restrict the records haviing sal less than 400 in your
package or procedure.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Oracle Apps Technical Interview Questions

which is the table for storing organization information?

9 Answers   Infosys, Scan Steel,


What is the concept of soa governance?

0 Answers  


How many schemas we have? how many you have used?

0 Answers  


In oracle application how do you debug or trace errors?

0 Answers  


FLEX FIELDS?

2 Answers  






What are the validations you don in .CTL file in inbound interface process?

1 Answers  


HOW CAN U KNOW THE RESPONSIBILITY BELONGS TO OPERATING UNIT LEVEL OR NOT

2 Answers  


when we run payment batch what are the 3 concurrent programs?

1 Answers   Genpact, Wipro,


Can we create tables in apps schema?

0 Answers  


What is workflow?Explain with a example?

2 Answers   Oracle,


Can u define DFF with in the DFF,How?

1 Answers   Satyam,


where is setup of business group done?

2 Answers   TCS,


Categories
  • Oracle Apps Technical Interview Questions Oracle Apps Technical (547)
  • Oracle Apps Financial Interview Questions Oracle Apps Financial (793)
  • Oracle Apps Manufacturing Interview Questions Oracle Apps Manufacturing (53)
  • Oracle Apps HRMS Interview Questions Oracle Apps HRMS (169)
  • Oracle Apps CRM Interview Questions Oracle Apps CRM (9)
  • Oracle Apps SCM Interview Questions Oracle Apps SCM (141)
  • Oracle Install Base Interview Questions Oracle Install Base (62)
  • Oracle Service Contracts Interview Questions Oracle Service Contracts (101)
  • Oracle Apps AllOther Interview Questions Oracle Apps AllOther (114)