D2K Report Builder 6 Page Number Variable

In a total 5 pages report, on page 1,3,5 margin area can see the information of "Approved by xxxx", whereas on page 2,4 will not see (or hide) the same information. How will you do that with D2K report Builder 6? Since If cannot access page number as a variable?

  
Showing Answers 1 - 3 of 3 Answers

Mayank Jain

  • Jun 22nd, 2016
 

Write the format trigger on that particular item see example below
function F_2FormatTrigger return boolean is
page_num number;
begin
srw.get_page_num(page_num);
if page_num in (1,3,5) then
return (TRUE);
else
return false;
end if;
end;

  Was this answer useful?  Yes

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