How to put the form fields (items) to the header level

Hi all

I have a requirement in which i need to display a few fields on each page of the report as a header, it's like

Page 1 of 4

column name ColDate


Other fields in page 1


Page 2 of 4

column name ColDate


Other fields on the page 2

so, how can I manage display the name column and field ColDate on every page. Any advice would be very helpful.

Thanks in advance.

Thank you
Pratap

You can not form fields in the header/footer section. You must place the actual tag there as

Tags: Business Intelligence

Similar Questions

  • How to put the text in the cell and support in detail in read-only?

    Hello world

    In Hyperion 11.1.1.3, nobody knows how to put the text in the cell and the support of the details read-only after that the budgeting process is done in order to avoid people to change their comments.

    Thank you!

    Published by: Ouizmie on February 3, 2011 11:14

    There is no way to restrict the entry of text in the cell
    If you specify the description to charge you like details in support, which can be made read-only.
    but cell text comments to review, which can be changed. Even if you only read your form, users will be able to enter the text in the cell as long as they have access to the intersections of data...

    You can do a process to enter the descriptions of the charges, as supporting details only...

  • Hi, could you tell me how to put the app icon

    Hi, could you tell me how to put the app icon. By what your code?

    usually, set you the application icon in the properties of your application.

    You can also use the HomeScreen class to change the icon or set an icon of overview.

  • How to put the names of programs in the control panel in the order of the alphabet

    How to put the names of programs in the control panel in the order of the alphabet

    Hi maguma,.

    Please use the Microsoft Windows Forum.

    When you go to Control Panel , click on "view by" at the top right of the screen and select 'large icons or small icons' , she will change in alphabetical order.

    If you are referring to the programs and features in Control Panel, you can right-click in the empty space of the programs and features page > click on 'View' and click on 'Name' , IT ' l be alphabetical.

    Kind regards
    Aziz Nadeem - Microsoft Support

  • How to put the bookmarks bar in alphabetical order

    Original title: Favorites

    I looked at the question of how to put the bookmarks bar in alphabetical order, and he said that I had to do a right click on a site that was on My Favorites bar.  What I did and I don't have anything other that (open another tab, edit, and delete).   Your answer did not work for me, is there another solution.  I'm on Windows 8.

    Try asking in the forum of EI for the version of Internet Explorer you are using.
     
    Internet Explorer forums
    http://answers.Microsoft.com/en-us/IE 
  • How to put the screen name? (edited by Mod..)

    Hi I want to know how to put the screen on my Ant name

    Hi Yuvrajm65418840,

    Please see the document shared for more information:

    Getting started on the Adobe Forums

    I hope this helps!

  • How to put the first page to run?

    How to put the first page to run?

    Dimitri Gielis Blog (Oracle Application Express - APEX): Change the page (first) by default in APEX

  • How to show the ink levels on the computer for Officejet 6600

    How to show the ink levels on the computer for Officejet 6600

    What is the full product name or product number?

    is your printer?

    This is the Manual of your printer the following image was derived.

    You can use the printer's built-in web server to get the status of the printer information from a browser.

  • How to get the battery level and status in the cpp file?

    Hi all

    BatteryInfo class so I can I know how to get the battery level and the State in .cpp class?

    Hi Benecore,

    I have Add method below,

    #include

    But I only variable BatteryInfoPrivate not get variable BatteryInfo. You can also check on your side.

    So let me know how to get batteryInfo instance?

  • How to display the header in the mail window 8 application?

    How to display the header in the mail window 8 application?

    Original title: Mail

    How to display the header in the mail window 8 application?

    Hi Daniel

    The Mail App is a cloud application, you get local copies of emails where you can view the header information.

    You must either display your email with your browser or a desktop e-mail application, such as Windows Live Mail.

    Concerning

  • How to find the child level for each table in a relational model?

    Earthlings,

    I need your help, and I know that, "Yes, we can change." Change this thread to a question answered.

    So: How to find the child level for each table in a relational model?

    I have a database of relacional (9.2), all right?
    .
         O /* This is a child who makes N references to each of the follow N parent tables (here: three), and so on. */
        /↑\ Fks
       O"O O" <-- level 2 for first table (circle)
      /↑\ Fks
    "o"o"o" <-- level 1 for middle table (circle)
       ↑ Fk
      "º"
    Tips:
    -Each circle represents a table;
    -Red no tables have foreign key
    -the picture on the front line of tree, for example, a level 3, but when 3 becomes N? How is N? That is the question.

    I started to think about the following:

    First of all, I need to know how to take the kids:
    select distinct child.table_name child
      from all_cons_columns father
      join all_cons_columns child
     using (owner, position)
      join (select child.owner,
                   child.constraint_name fk,
                   child.table_name child,
                   child.r_constraint_name pk,
                   father.table_name father
              from all_constraints father, all_constraints child
             where child.r_owner = father.owner
               and child.r_constraint_name = father.constraint_name
               and father.constraint_type in ('P', 'U')
               and child.constraint_type = 'R'
               and child.owner = 'OWNER') aux
     using (owner)
     where child.constraint_name = aux.fk
       and child.table_name = aux.child
       and father.constraint_name = aux.pk
       and father.table_name = aux.father;
    Thought...
    We will share!

    Thanks in advance,
    Philips

    Published by: BluShadow on April 1st, 2011 15:08
    formatting of code and hierarchy for readbility

    Have you looked to see if there is a cycle in the graph of dependence? Is there a table that has a foreign key to B and B has a back of A foreign key?

    SQL> create table my_emp (
      2    emp_id number primary key,
      3    emp_name varchar2(10),
      4    manager_id number
      5  );
    
    Table created.
    
    SQL> ed
    Wrote file afiedt.buf
    
      1  create table my_mgr (
      2    manager_id number primary key,
      3    employee_id number references my_emp( emp_id ),
      4    purchasing_authority number
      5* )
    SQL> /
    
    Table created.
    
    SQL> alter table my_emp
      2    add constraint fk_emp_mgr foreign key( manager_id )
      3         references my_mgr( manager_id );
    
    Table altered.
    
    SQL> ed
    Wrote file afiedt.buf
    
      1   select level lvl,
      2          child_table_name,
      3          sys_connect_by_path( child_table_name, '/' ) path
      4     from (select parent.table_name      parent_table_name,
      5                  parent.constraint_name parent_constraint_name,
      6                  child.table_name        child_table_name,
      7                  child.constraint_name   child_constraint_name
      8             from user_constraints parent,
      9                  user_constraints child
     10            where child.constraint_type = 'R'
     11              and parent.constraint_type = 'P'
     12              and child.r_constraint_name = parent.constraint_name
     13           union all
     14           select null,
     15                  null,
     16                  table_name,
     17                  constraint_name
     18             from user_constraints
     19            where constraint_type = 'P')
     20    start with child_table_name = 'MY_EMP'
     21*  connect by prior child_table_name = parent_table_name
    SQL> /
    ERROR:
    ORA-01436: CONNECT BY loop in user data
    

    If you have a cycle, you have some problems.

    (1) it is a NOCYCLE keyword does not cause the error, but that probably requires an Oracle version which is not so far off support. I don't think it was available at the time 9.2 but I don't have anything old enough to test on

    SQL> ed
    Wrote file afiedt.buf
    
      1   select level lvl,
      2          child_table_name,
      3          sys_connect_by_path( child_table_name, '/' ) path
      4     from (select parent.table_name      parent_table_name,
      5                  parent.constraint_name parent_constraint_name,
      6                  child.table_name        child_table_name,
      7                  child.constraint_name   child_constraint_name
      8             from user_constraints parent,
      9                  user_constraints child
     10            where child.constraint_type = 'R'
     11              and parent.constraint_type = 'P'
     12              and child.r_constraint_name = parent.constraint_name
     13           union all
     14           select null,
     15                  null,
     16                  table_name,
     17                  constraint_name
     18             from user_constraints
     19            where constraint_type = 'P')
     20    start with child_table_name = 'MY_EMP'
     21*  connect by nocycle prior child_table_name = parent_table_name
    SQL> /
    
           LVL CHILD_TABLE_NAME               PATH
    ---------- ------------------------------ --------------------
             1 MY_EMP                         /MY_EMP
             2 MY_MGR                         /MY_EMP/MY_MGR
             1 MY_EMP                         /MY_EMP
             2 MY_MGR                         /MY_EMP/MY_MGR
    

    (2) If you try to write on a table and all of its constraints in a file and do it in a valid order, the entire solution is probably wrong. It is impossible, for example, to generate the DDL for MY_EMP and MY_DEPT such as all instructions for a table come first, and all the instructions for the other are generated second. So even if NOCYCLE to avoid the error, you would end up with an invalid DDL script. If that's the problem, I would rethink the approach.

    -Generate the DDL for all tables without constraint
    -Can generate the DDL for all primary key constraints
    -Can generate the DDL for all unique key constraints
    -Can generate the DDL for all foreign key constraints

    This is not solidarity all the DOF for a given in the file object. But the SQL will be radically simpler writing - there will be no need to even look at the dependency graph.

    Justin

  • How to put the form into insert mode without clicking a button insert new record

    Hi all

    I use apex 4.2 on windows, internet Explorer 10 on oracle 11g R2, all 64 bits.

    I'm creating mobile applications.

    I have a list page, I put the links on this page.

    one of the links is a form of opening and passing some values that form.

    the form I open with custome plsql trigger to generate the primary key.

    I do not include an Insert button in the form, I call you, I want to just the user to type something in the column remarks of the newly opened form.

    and when the user clicks the Save button, the folder must be inserted as a new record in the table of underscore.

    now, the pk is not because I do not press on the Insert button, since I do not include the Insert button.

    now when I navigate my list Page by clicking on the point list and in the newly open shape, I enter some data in the Notes field and click on the button, save

    It is not saving the table or give any error?

    How to solve this problem?

    Kind regards.

    Mahjoor,

    If your form is wizard generated then

    Change your suite save button and put

    and confirm that regardless of the Page item Insert Source values contains more

    If you manually insert values shaped then write a Page process to insert this page elements values in the table

    during the click on the button Save.

    I hope this helps you.

    Leave.

  • How to TOGGLE OFA form field according to the conditions

    Dear all,

    I'm new to OAF and started learning the OFA.

    I have a requirement as below,

    The Window(OAF Page) provider, there is a tab named 'key to purchase Setups '.

    Here if the provider's site is already created and 'Pay' and "Level summary invoice" columns is to have values, questioning the site begging, I want to disable (not editable) the two fields 'Invoice Summary Level' and 'Pay' for all users except IE a user Guru

    Using customization, I can put the READ ONLY option, but I need to be implemented for the above condition.

    Can anyone suggest me how to proceed?

    Thank you

    Kind regards

    Guru

    Hello.

    I think that your condition is the same as it

    Dynamically set read-only columns in the tabular presentation at record levels

    I already mentioned solution.

    Same would apply to you.

  • How to put the menu in the cells or the lines of a web form

    Simple question: How can I put the menu in cells or rows of a web form?
    Would be - this "menu" in the form of web?

    I don't think you can put a menu on the 'data cells' form. You can put them on line members or column. I think this is the area of the 'required dimension' when you change the content of the menu that determines where you right click on the form to get the menu. But still, I don't think that you can configure it to work on a data cell. You right click a member in the rows or columns.

    We use them mainly to connect shapes and launch business rules. In general we are connecting to some sort of form summarized in a more detailed form, or a form where users can make adjustments.

    -Jake

  • How to put the component to BPC become a form of circle

    How instead of the item display as the image below? I'm trying to go to ultiboard. Thanks for help

    Hi Marxurs,

    Ultiboard, there is an option to display angle curves all and this is useful when you work on a point in polar coordinates.  Select Options > customize the User Interface, on the 'Orders' tab select 'Place' in the 'Catégories' window, then select "place the Angle line (Place) ' under the 'Orders' box, hold down the left mouse and drag this option and drop it somewhere on your toolbar to place an icon.  If you prefer, instead of placing an icon in your toolbar, you can create a keyboard shortcut.  Select the "Keyboard" tab in the Customize dialog box, and then locate the place all the lines of the angle and assign the keyboard shortcut for this option.

Maybe you are looking for