What is lexical parameter in report? Explain benefits and usage of lexical parameter?

Questions by kundan_mca12

Showing Answers 1 - 12 of 12 Answers

Lexical parameters r used to provide the sql clauses at runtime .
these r used for adhoc queries if u r not known the condition at runtime at that time we can use lexical parameters.
generally these r useful in datawarehousing applications.
these can be used in all clauses of select stmts.

  Was this answer useful?  Yes

bharani

  • Oct 25th, 2007
 

Can anybody explain in detail. How to pass Column names dynamically in runtime?

  Was this answer useful?  Yes

devenar

  • Nov 19th, 2007
 

You can create a lexical parameter(references) by entering an ampersand (&) followed immediately by the column or parameter name.
Lexical parameter are placeholders for text that you embed in a SELECT statement and at runtime the values are replaced according to the conditions(e.g if else etc).
You can use lexical references(parameters) to replace the clauses appearing after SELECT, FROM, WHERE, GROUP BY, ORDER BY, HAVING, CONNECT BY, and START WITH.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions