What are the built -ins used for Modifying a group's structure?
Answer / guest
ADD-GROUP_COLUMN (function)
ADD_GROUP_ROW (procedure)
DELETE_GROUP_ROW(procedure)
| Is This Answer Correct ? | 0 Yes | 0 No |
i have a repeating frame that prints on every page for a product code. But when on page ends the info associated with that product code is truncated and not overflowed to the next page.On the next page data with the new product code is displayed. I want the data for one product code to be continued on the next page if it does not fit on a single page. The values are as: repeating frame vertical = variable horizontal = variable page protect = 0 print object on = first page base printing on = enclosing object for the outermost frame which encloses the repeating frame: print object on = last page base printing on = anchoring object end of layout section = yes rest all the values are same as the repeating frame
Can a property clause itself be based on a property clause?
State any three mouse events system variables?
What SYNCHRONIZE procedure does ?
how to pass 2 parameters from one form to other in oracle applications?
based on parameter value layout of report should change
Commited block sometimes refer to a BASE TABLE ? True or False.
What is a matrix report and how many minimum groups are required to prepare the same?
When a form is invoked with call_form, Does oracle forms issues a save point?
Why is a Where clause faster than a group filter or a format trigger?
What is the difference when confine mode is on and when it is off?
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;