to add more fields to a report just below existing fields

Hello
there is report in which the following fields are displayed

jobnumber   customername  rig              well  
 124             abc                 r-90            w-10


the requiremnt is to add more fields  and place them just below the above fields
this enitre thing is in  a main frame  say M_GP
the job number ,customer name is in another main frame  say M_HD
and the data 124 etc is in a  repeating frame R_date

ie M_GP encloses M_HD and R_date

kindly guide as to how to include the remaining fields just below these fields so tht the 
output looks like this

jobnumber   customername  rig              well  
 124             abc                 r-90            w-10

contract    material SIR service_SIR     Service_or_num
12455         48878        9909090           28278

all these fields r part of the same query and same table


     select OPN_JOB_DESC  "Job Number",
ENTRY_DATE "Date",
RIG "Rig",
WELL "Well"
,JOB || '-'  || JOB_TYPE  "Job Type",
CUSTOMER_NAME "Customer",
SERVICE_ORDER_NUM "Service Order No:",
MATERIAL_SEQ   "Material SIR",
SERVICE_SEQ      "Service SIR",
CONTRACT           "Contract"
from xxnp_opn_joblog_001
 where OPN_JOB_DESC =:P_JOB_NUMBER
kindly Guide

thanking in advance

Hello
Keep the labels and fields both repeating frame and define the position that you have demonstrated.

-Clément

Tags: Oracle Development

Similar Questions

  • Generation of XML to add more fields?

    I have several tables. My requirement is to generate an XML file for each relationship manager hierarchically. So far, I'm able to generate the XML file below (shown the output below). However, I have 2 data more tables that must be attached and add some fields such as acc_type, acc_code and txn_code in the respective file in XML. But I could not add these fields. Can someone suggest a solution to add these fields? Also is there a way to generate the XML file for each relationship manager dynamically. (Note I used a where clause clause to pull records for rltp_mngr = 10). Looking to combine the rltp_mngr and generate a XML file automatically instead of one.

    drop table rltp_mngr;
    drop table product;
    drop table cust;
    drop table account;
    drop table transaction;
    drop table acctype;
    drop table txntype;
    
    create table rltp_mngr(rltp_id number,rltp_name varchar2(50));
    Insert into rltp_mngr values(10, 'Phil');
    Insert into rltp_mngr values(20, 'Jack');
    
    create table product(rltp_id number,prod_id number,prod_name varchar2(50));
    Insert into product values(10,1, 'Personal');
    Insert into product values(20,1, 'Business');
    
    create table cust(rltp_id number,prod_id number,cust_id number,cust_name varchar2(50));
    insert into cust values(10,1,2,'Fixed');
    insert into cust values(20,1,2,'Fixed');
    
    Create table account(rltp_id number,prod_id number,cust_id number,acc_id number,acc_name varchar2(50),acc_balance number(18,2));
    insert into account values(10,1,2,3,'Savings',3000);
    insert into account values(10,1,2,7,'Savings',3000);
    insert into account values(20,1,2,3,'Savings',3000);
    
    create table transaction(rltp_id number,prod_id number,cust_id number,acc_id number,txn_id number,txn_amt number(18,2));
    insert into transaction values(10,1,2,3,4,500);
    insert into transaction values(10,1,2,3,5,500);
    insert into transaction values(10,1,2,3,6,500);
    insert into transaction values(10,1,2,7,8,500);
    insert into transaction values(20,1,2,3,4,500);
    
    create table acctype(rltp_id number,prod_id number,cust_id number,acc_id number,acc_type varchar2(5),acc_code varchar2(10));
    insert into acctype values(10,1,2,3,'X','ZZ');
    insert into acctype values(10,1,2,3,'X','YY');
    insert into acctype values(10,1,2,3,'X','AA');
    insert into acctype values(10,1,2,3,'X','BB');
    
    create table txntype(rltp_id number,prod_id number,cust_id number,acc_id number,txn_id number,txn_code varchar2(10));
    insert into txntype values(10,1,2,3,4,'11');
    insert into txntype values(10,1,2,3,4,'12');
    insert into txntype values(10,1,2,7,8,'11');
    insert into txntype values(10,1,2,7,8,'12');
    insert into txntype values(10,1,2,7,8,'13');
    
    
    select
                   XMLElement("transactiondetails",
                             XMLElement("rltp_id", rltp_id),
                             XMLElement("rltp_name", rltp_name),
                                (SELECT XMLAGG(XMLElement("product",
                                              XMLElement("prod_id", p.prod_id),
                                              XMLElement("prod_name", p.prod_name),
                                    (SELECT XMLAGG(XMLElement("customer",
                                                  XMLElement("cust_id", cust_id),
                                                  XMLElement("cust_name", cust_name),
                                             (SELECT XMLAGG(XMLElement("account",
                                                        XMLElement("acc_id", acc_id),
                                                        XMLElement("acc_name", acc_name),
                                                        XMLElement("acc_balance", acc_balance),
                                                    (SELECT XMLAGG(XMLElement("transaction",
                                                           XMLElement("txntrack",
                                                           XMLElement("txn_id", t.txn_id),
                                                           XMLElement("txn_amt", t.txn_amt))))
                                                    FROM transaction t
                                                    WHERE t.rltp_id                 =a.rltp_id
                                                    AND t.prod_id      =a.prod_id
                                                    AND t.cust_id        =a.cust_id
                                                    AND t.acc_id=a.acc_id)))
                                        FROM account a
                                        WHERE c.rltp_id=a.rltp_id
                                        AND c.prod_id=a.prod_id
                                        AND c.cust_id=a.cust_id)))
                                    FROM cust c
                                    WHERE p.rltp_id = c.rltp_id
                                    AND p.prod_id = c.prod_id)))
                                 FROM product p
                                 WHERE p.rltp_id = r.rltp_id )       
                                ) AS xml
    FROM
      rltp_mngr r
      WHERE rltp_id='10';
    
    
    
    

    Output:-

    <transactiondetails>
      <rltp_id>10</rltp_id>
      <rltp_name>Phil</rltp_name>
      <product>
        <prod_id>1</prod_id>
        <prod_name>Personal</prod_name>
        <customer>
          <cust_id>2</cust_id>
          <cust_name>Fixed</cust_name>
          <account>
            <acc_id>3</acc_id>
            <acc_name>Savings</acc_name>
            <acc_balance>3000</acc_balance>
            <transaction>
              <txntrack>
                <txn_id>4</txn_id>
                <txn_amt>500</txn_amt>
              </txntrack>
            </transaction>
            <transaction>
              <txntrack>
                <txn_id>5</txn_id>
                <txn_amt>500</txn_amt>
              </txntrack>
            </transaction>
            <transaction>
              <txntrack>
                <txn_id>6</txn_id>
                <txn_amt>500</txn_amt>
              </txntrack>
            </transaction>
          </account>
          <account>
            <acc_id>7</acc_id>
            <acc_name>Savings</acc_name>
            <acc_balance>3000</acc_balance>
            <transaction>
              <txntrack>
                <txn_id>8</txn_id>
                <txn_amt>500</txn_amt>
              </txntrack>
            </transaction>
          </account>
        </customer>
      </product>
    </transactiondetails>
    
    
    
    

    Expected results: -.

      <transactiondetails>
      <rltp_id>10</rltp_id>
      <rltp_name>Phil</rltp_name>
      <product>
        <prod_id>1</prod_id>
        <prod_name>Personal</prod_name>
        <customer>
          <cust_id>2</cust_id>
          <cust_name>Fixed</cust_name>
          <account>
            <acc_id>3</acc_id>
            <acc_name>Savings</acc_name>
            <acc_balance>3000</acc_balance>
            <acc_type>X</acc_type>
            <acc_code>ZZ</acc_code>
            <acc_code>YY</acc_code>
            <acc_code>AA</acc_code>
            <acc_code>BB</acc_code>
            <transaction>
              <txntrack>
                <txn_id>4</txn_id>
                <txn_amt>500</txn_amt>
                <txn_code>11</txn_code>
                <txn_code>12</txn_code>
             </txntrack>
            </transaction>
            <transaction>
              <txntrack>
                <txn_id>5</txn_id>
                <txn_amt>500</txn_amt>
                <txn_code/>
              </txntrack>
            </transaction>
            <transaction>
              <txntrack>
                <txn_id>6</txn_id>
                <txn_amt>500</txn_amt>
                <txn_code/>
              </txntrack>
            </transaction>
          </account>
          <account>
            <acc_id>7</acc_id>
            <acc_name>Savings</acc_name>
            <acc_balance>3000</acc_balance>
            <acc_type/>
            <acc_code/>
            <transaction>
              <txntrack>
                <txn_id>8</txn_id>
                <txn_amt>500</txn_amt>
               <txn_code>11</txn_code>
                <txn_code>12</txn_code>
                <txn_code>13</txn_code>
              </txntrack>
            </transaction>
          </account>
        </customer>
      </product>
    </transactiondetails>
    
    
    
    

    Thank you very much for your help odie_63. I will check this code and let you know as soon as possible.

  • Equium A100-303: looking to add more RAM

    Hello

    I recently bought a laptop equium A100-303 and am lookin to add more RAM. I was just wondering if it should be buffered or non-buffered or is it important?

    I currently have 1 GB of ram (512 + 512 MB as it is a dual core processor) and I'm looking to move to 2 GB (1024 + 1024). I know that the guy is PC4200, 200 pin SODIMM.

    Also where would be the cheepest place to buy these? Thank you.

    Hello

    > just wondering if it should be buffered or non-buffered or is it important

    Well, Toshiba has recommended using own memory as PA3411U-2M1G modules, but I put t find any information if the module supports ECC (means stored stamped) or Non - ECC (means not stamped)
    To my knowledge, the buffer ECC is about 30% slower than Non - ECC modules.

    He name of your choice what you will buy, but I would recommend purchasing a brand s module.
    I know modules without name are cheaper brand modules are much faster and performance, but the quality is better in the form of modules without name.

    So googel a bit and you will find many offers online. Simply compare prices

  • Q: very simple you can add more than 1 table to a Word report? -If Yes, how

    Hi all

    As described in the topic, is it possible to add more than 1 table to a Word report?

    Very simply, I have some test data in a table and added to my report with the addition of the report table vi.

    I have the same thing again to send data to a different table which I would like to insert in my report in table form. I placed a second addition table report vi directly after the previous vi, but it doesn't work.

    ... Am I stupid? or this function is only meant to be used at the same time? Maybe I need an another vi after adding table vi before you can add another?

    Feel free to enlighten me because I am confused,

    Thank you!

    Change the width of two column Table add to Report.vi from 10 to 1. Setting the value to 10 (unit are inches) will throw an error.

    Ben64

  • SortItemsOn, method (sorts data by more fields)

    Hello

    I have a DataGrid that I want to be sorted by two fields in one place. (it works fine with one paid however)

    I use the SortItemsOn() method which, according to the documentation, sorts the elements of the current data provider by one or more of its fields.

    However, if I add two fields I get a weird result. for example

    datagrid.sortItemsOn ("Field1, Field2", Array.NUMERIC);

    Field1 is of date data type and the text field Field2 so maybe that is why he does not give the expected result.

    Thank you very much

    I know nothing about flash.  There are several for flex.

    but for flash, just make your own by using a custom sort. for example,.

    function sortGridF (): void {}

    var datagrid.dataProvider = dp:DataProvider;

    dp.sortOn (["Field1, Field2"], Array.NUMERIC);

    }

    p.s. Please check the useful/correct.

  • How can I add more possible answers to a question of sequence?

    Hello

    I inserted a sequence question slide (survey, unmarked).

    The default value is just two possible answers: a) and b). How can I add more possible answers (also known as [Default Question Answer Style] "?) I have about 6 responses I would get (a, b, c, d, e, f).

    The I tried by pressing return and typing, press the tab and copy and paste b) reply text area field.

    Thank you!

    I just found the answer.

    DUH!

    I didn't know I could do this via the Quiz properties panel.

    THX

  • Add several fields of detail Page

    Hello

    Is it possible to add several fields to the product details page? As the tag details capture but more.

    We seek to create a store to print business cards where users submit information through a number of areas.

    Thank you

    Tom

    Just saw this and have a look now

    http://forums.Adobe.com/docs/doc-1872

  • Add more:

    I would like to send an email to 10 people, but only allows me to Thunderbird 3. How to add more people?

    How it limits you three? Add a recipient, click back and it opens a new addresses for the next. Look for the scroll bar that allows you to scroll through the addresses.

    If you use the Visual Contacts bar, just keep using the "add to...". "and it will do this for you.

    If you take the line of horizontal separation just above the text area of message with the mouse, you can drag down, increasing the amount of space to display addresses and therefore see more than three lines by default.

  • Can I add more ram?

    Hello.i have a laptop computer hp laptop g62 (a80sv I think) and I have 2 GB of ram (ddr3 elpida in 1 ram) I have room to add more ram (I want to add more than 2 GB), but I don't know if my laptop can recognize it.also I want to know how much it costs to buy another one.i am from Greece and I went to the store and he told me that it costs 70 euros but now I don't know if this price is real.do you know if it's old price or something? Thank you

    Hello:

    The best thing to do is to run the crucial memory free analysis tool, who will report what type and how much memory you can install on your laptop.

    http://www.crucial.com/systemscanner/

    Since I live in the United States, I will not be able to help you memory source or prices in Greece.

  • SL500 and I want to add more RAM

    Howdy.

    I have a new Thinkpad SL500, such as here: http://www.hemini.com/products/product_details.aspx?prodid=425737&cp=1&sc=1&sct=

    It has an Intel Core 2 Duo (T6670) 2.2 GHz processor and 2048 MB of RAM.

    I want to add more RAM to make it even more effective that I use a lot of programs, sometimes at the same time.

    I wish it have 4 GB, and what I understand is the maximum that it is supposed to be able to handle.

    Then what should I do? I buy a 4 GB of RAM and remove the 2 GB that I have now and install the 4 GB one?

    Or should I leave the 2 GB RAM inside and just buy a 2 GB of RAM and add together inside?

    In addition, the brand has a role? Wouldn't be brand of Lenovo? What other groups are good for RAM?

    They are all the other things I have to consider buying RAM. ?

    Thank you very much.

    If you use 32 bit os I works perfectly with 4 GB but system uses 3 GB. Add the next module that means you probably have 2 GB module inserted. You can simply put another beside it mounted origin. Check with everest, aida, cpu - z or any other things how many modules is placed on your motherboard and you have free banks.

  • Integrated e-mail client: never add more than one account

    Hello

    User of Z2 Tablet here. I would really like to be able to use his email Client because I think it's rather a good search. But I can't add more than one account. Whenever I have add a new one, in this case:

    I enter all of my information, they are correct, no error, I type the account name and my name of the sender in the last screen. And then, when I click on 'Next', poof, it's gone. There is a small bubble near the bottom of the screen that says "account not found. It may have been deleted"(in German, this is a rough translation). And faithfully, it not there no other account e-mail anywhere in the application.

    What can I do?

    Thank you!

    Old thread, but still just want to share my experience.

    I had the same problem. After the upgrade to the lollipop everything worked fine, but then I had to clean the cache and reset the email client and after that, I could not add more than one account... until I cleared the cache partition.

    To do this, follow these steps:

    -On the home screen, press volume up and hold

    -At the top by pressing volume, press the power button and hold the two keys until the phone turns off (you will feel a slight vibration when stopping)

    -Switch on your phone as usual

  • Add a field to a manager internal vertical field (vertical field managers are nested) on a screen, will eventually call the sublayout of the screen. Can someone explain the mechanism of notification concerned?

    Hi-

    I have a screen with vertical field managers nested (that is the top of the screen on the display stack) when I add a field for the internal more vertical domain manager, I see that is called the method sublayout of the screen. I understand that we add a field to the vertical field manager and the screen currently, the State of the screen becomes so he made a layout, followed by the painting.

    But I want to know how the screen (or the user interface engine) will know that a field is added to one of its managers of content vertical field (is there a notification for this mechanism). I mean when I add a field to the Interior more vertical field Manager how will be the vertical field Manager that knows a level up to this topic, and finally how the screen also know this about and new provision itself. (The sequence of method calls etc... Will be useful)

    Again this is not breaking anything in my application and everything works as expected, but it will be useful if I can understand the underlying reasons for the above.

    This is my first Forum announcement ever, bear with my presentation (suggestions are welcome).

    Concerning

    Ravi

    each field can call getManager to check if it is added to another Manager. If a field is added to a manager that this Manager notifies its topmanager, it notifies its topmanager etc. until the highest level is reached.

  • How to add more pictures to the picture puzzle gadget in Windows 7 Home premium?

    I'm tired of the same images in the picture puzzle gadget, which I enjoy. I'm not a developer - just a non-geek user. It seems to me that the puzzle photo should have a feature that allows the user to add more photos or replace with new ones for the originals, & a "reset" button that restores its original. Any ideas?

    Hello

    I'm not even sure who you could contact to get this Gadget changed?

    If you like the puzzle-Gadgets, there are about 130 of these gadgets on the Gallery website. Here is a link.

    http://Gallery.live.com/results.aspx?BT=1&PL=1&DS=2&La=en&tier=0&St=3&p=1&q=puzzle&c=0

    Kind regards.

  • How can I add more details in the Details view

    When you display files in Details view, you have the option to add more columns/details by right clicking on the column headers, you can chosse from a long list anything from an e-mail address to a phone number... How & where can I change these details?

    1. the fields from and to which appear in the list of options of details apply to the and see you in Outlook?

    2. When you change these >

    I don't know the answers to any of these questions.  I did a little experiment from saving an email (xxx.msg) in a new folder.  I made the following observations:

    1. in the file properties, were the only items in the tab "Details":

    • Name
    • Type
    • Folder path
    • Size
    • Date of creation
    • Modification date
    • Attributes
    • Shared with
    • Owner
    • Computer

    2. None of the above can be changed.

    3. There is also a "Custom" tab in the file properties.  This is a list of 27 'elements of properties' that you can manually add to the metadata of the file.

    4. the worms and from the items in the list of details in the submenu "Chose the details" menu of the folder view do not display the sender or the recipient of the original e-mail.  Even if the custom details that can be added is "Received from", information entered into this field (which appears if you look at the "Custom" of the file properties tab) do not show if you add 'From' as one of the columns to display in the folder.

    If you want to dig deeper into that, you might try asking in the TechNet Windows 7 User Interface forum or possibly the Microsoft Community forum Outlook or Outlook TechNet forum. If you ask another forum, provide a link to this thread so that potential stakeholders must not repeat things already said.

  • How to add more than one electronic signature on a model

    Hi, I searched online and on the Bulletin Board in regard to trying to add more than one additional signature area to the I am working on a form template, which requires more than one signature. I went through the whole process and placed all the boxes of signature for each participant (3 in total), but whenever I send on should be dealt with by my colleagues and we have try to sign, it only allows us to do an e-signature and not the other 2 signatures that must be included with the paperwork. Please can someone advise if there is a step that I might be missing?

    Thank you.

    Hi karlac94348387 ,

    Please provide the application & version of the OS installed on your system.

    Also share you workflow & name of the application using what document is signed.

    If you submit this form using Acrobat application place digital signature fields, make sure that save you the form with Reader features Extended so that if other users have only the Reader app they can fill out the form as well. (File > save as other > Reader Extended PDF > allow more tools)

    You can also place electronic signature fields after the role definition for all participants for the respective fields using "send to the signature" (if you have Acrobat Pro DC continuous version), more on this please refer to the article:- adding form fields. Tutorials

    Send agreements and collecting signatures

    Let me know how it goes.

    Kind regards

    Christian

Maybe you are looking for