Please tell me what is wrong in the below query:
(Very Urgent)
=================================================
function BeforePForm return boolean is
begin
if :from_invoice_date is null OR :to_invoice_date is
null then
aiv.PERIOD_NMAE:=:gl_period
elsif :gl_period is null then
aiv.INVOICE_DATE between :from_invoice_date
and :to_invoice_date
end if;

return (TRUE);
end;

Answers were Sorted based on User's Feedback



Please tell me what is wrong in the below query: (Very Urgent) ===================================..

Answer / hari

else if body is not correct.

Is This Answer Correct ?    2 Yes 0 No

Please tell me what is wrong in the below query: (Very Urgent) ===================================..

Answer / sudipta santra

The function will be like that:-

function BeforePForm return boolean is
begin
if :from_invoice_date is null OR :to_invoice_date is null
then
aiv.PERIOD_NMAE:=:gl_period
elsif :gl_period is null or aiv.INVOICE_DATE between
:from_invoice_date and :to_invoice_date then
aiv.PERIOD_NMAE:=<insert value>
end if;

return (TRUE);
end;

Like that way it will be solved. In else part the assigned
value should be fixed how it would between two range of date?

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle Forms Reports Interview Questions

what is a display item?

1 Answers  


What are the default extension of the files created by library module?

1 Answers  


What is WHEN-Database-record trigger?

1 Answers  


What are the triggers associated with the image item?

1 Answers  


How can a break order be created on a column in an existing group?

1 Answers  


Can you have more than one content canvas view attached with a window?

2 Answers   TCS,


what is difference between group above and group left report

0 Answers   Oracle,


how to create parameterised form in oracle 10g? and create another form from the value of the form? AND how to assign value to a parameter? sincerly your mamun

2 Answers  


How can I message to passed to the user from reports?

1 Answers  


what are different types of canvas views?

3 Answers  


Give built-in routine related to a record groups?

1 Answers  


how to use buttons,check boxes in paper layout,paper design and paper parameter form in oracle report developer 10g

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1808)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)