A placeholder is a column for which you set the datatype and value in PL/SQL that you define. Placeholder columns are useful when you want to selectively set the value of a column (e.g., each time the nth record is fetched, or each time a record containing a specific value is fetched, etc.). You can set the value of a placeholder column in the following places: the Before Report Trigger, if the placeholder is a report-level column a report-level formula column, if the placeholder is a report-level column a formula in the placeholder's group or a group below it (the value is set once for each record of the group)
Above answer was rated as good by the following members: sumanpani
A placeholder is a column for which you set the datatype and value in PL/SQL that you define. Placeholder columns are useful when you want to selectively set the value of a column (e.g. each time the nth record is fetched or each time a record containing a specific value is fetched etc.). You can set the value of a placeholder column in the following places: the Before Report Trigger if the placeholder is a report-level column a report-level formula column if the placeholder is a report-level column a formula in the placeholder's group or a group below it (the value is set once for each record of the group)
Place holder column is the name of variable which can hold a calculated value like ( sum avg..) or the value can be set by function or by a pl/sql block.
use of place holder column for aggrigate function is not advised for that use summary column.
RE: Hi,what is place holder column?where we can use other than formula column?
A placeholder is a column for which you set the datatype and value in PL/SQL that you define. You can set the value of a placeholder column in the following places:
n the Before Report Trigger if the placeholder is a report-level column
n a report-level formula column if the placeholder is a report-level column