Amene Khalili
Amene Khalili

Reputation: 31

create before header procees in zero pages of oracle apex

I want to add a process in before header of zero oage. but it has not this event. i neet to set value a page item in before header. zero page has before header or not? if yes , how we can use it? I am using apex 23.1

add a comput process

Upvotes: 2

Views: 295

Answers (1)

Koen Lostrie
Koen Lostrie

Reputation: 18685

If you want to use a variable across pages, then consider using an Application Item instead of a Page Item. Application items are defined as shared components since they are shared between pages. An application item can be set in multiple ways, but for your question the following are relevant:

  1. A Computation (shared components > Computations) for the application item with a computation point of "Before Header".
  2. An Application Process (Shared Components > Application Processes) with a process point of "On Load: Before Header (page template header)"

Upvotes: 3

Related Questions