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.

Tags: Database

Similar Questions

  • 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

  • Does anyone know how I could free more space/add more space to my backup drive?

    Original title: save file/disk

    Dear all,

    As usual, I used part of my hard drive to back up files, etc.

    In my last scheduled backup, windows informed me that he could not perform the cause there wasn't enough space in my backup disk.

    Does anyone know how I could free more space/add more space to my backup drive?

    Thanks in advance

    George

    On Tuesday, October 5, 2010 06:46:38 + 0000, GeorgeMachairas wrote:

    As usual, I used part of my hard drive to back up files, etc.

    In my last scheduled backup, windows informed me that he could not perform the cause there wasn't enough space in my backup disk.

    Does anyone know how I could free more space/add more space to my backup drive?

    Please be aware that the second part of your hard drive backup is
    far the lowest form of backup exists. It is only very
    slightly better than no backup at all, because it let you
    sensitive to the simultaneous loss of the original and the backup on many of
    the most common dangers: drive failure, head goes down, severe feeding
    glitches, near lightning, virus attacks, same flight of the
    computer.

    In my view, secure backup must be on a unguarded and removable media
    in the computer. For backup really secure (required, for example, if the)
    the life of your company depends on your data), you should have several
    generations of backup and at least one of these generations must be
    stored off-site.

    You can read this article on the backup that I wrote: 'save '.
    "Your computer regularly and reliably" to
    http://www.computorcompanion.com/LPMArticle.asp?ID=314

    Ken Blake (MS-MVP)

  • 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 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

  • Java to add two fields, use total with Paypal

    I know it's simple, but all resources more complicated things and I can't understand it.  How can I add several fields numbers, user entered (ID 'Number 1', 'Number2') in real time to calculate a total displayed in another area.  And the total number or text field?

    Second part of the question is I added a PayPal button down which will understand through Paypal, but it will not fix the price is I want PayPal to take the price of the total. How could I get this?

    #1 JAVA (Oracle) is not the same as JavaScript.  They are 2 very different programming languages.

    Here is an example of summation of the fields with values defined using jQuery

    jQuery sum field radio - JSFiddle

    #2 that it will depend on the PayPal account type you have.  Here are the basics for PP Standard payments.

    Form HTML Basics for Standard payments PayPal - PayPal Developer

    Nancy O.

  • How to add the field or a query to THE field of the process send e-mail Page

    Hello world

    Can you help me please?

    How can I add a field or a query in "to THE" field of the process to send a Page in e-mail?

    I use the 4.1.0.00.32 and oracle 10g Express Application.

    Hi User11131067, please update your grip via profile to something more personal.

    Here's how I did it:

    DECLARE

    l_body CLOB.

    l_to VARCHAR2 (255);

    BEGIN

    l_body: =.

    "Thank you for your interest in the APEX_MAIL package."

    || UTL_TCP. CRLF

    || UTL_TCP. CRLF;

    l_body: = l_body | "Sincerely,". UTL_TCP. CRLF;

    l_body: = l_body | "Dev APEX team | UTL_TCP. CRLF;

    -Get the email addresses of administrators from point of harvest

    WITH the admins

    AS (SELECT person_tbl.email_address_txt,

    ROW_NUMBER () OVER (ORDER BY email_address_txt) rn,

    COUNT (*) NTC)

    OF harvest_admin_tbl, person_tbl

    WHERE harvest_admin_tbl.active_ind = 'Y' - use active Admins only

    -Eliminate Admin Act

    AND harvest_admin_tbl.internal_employee_id <> v_payroll_id

    AND harvest_admin_tbl.internal_employee_id =

    person_tbl.employee_ghrs_id)

    -Concatenate addresses into a single string

    SELECT LTRIM (SYS_CONNECT_BY_PATH (email_address_txt, ",") ",") catvalues

    IN l_to

    Admins

    WHERE rn = NTC

    START WITH rn = 1

    CONNECT BY PRIOR rn = rn - 1;

    apex_mail. Send (p_to => ' [email protected]', - change to your email address)

    P_FROM-online l_to

    p_body-online l_body,

    p_subj => 'APEX_MAIL Package - message in plain text');

    END;

    /

  • 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.

  • Forms - sign me up-more fields, I can do

    Hi, I can make more fields "I want to register", for the tick/check in adobe forms muse? Like this one below... Jacob

    Screen Shot 2014-Sign me up for.png

    Hi Jacob,

    You can not add checkbox fields to a form in Muse. However, you can do in Business Catalyst. For more information, please visit the following link http://docs.businesscatalyst.com/videos#! / crm/web-forms/creation-form-custom fields

    Kind regards

    Aish

  • Generation of XML in the query

    IM generation of xml from a table which works very well. Here is an example of what Im doing.


    Oracle Database 10 g Express Edition Release 10.2.0.1.0 - product

    create table ("VTEST"
    VARCHAR2 (50 BYTE) "NUMERO_PROJET."
    VARCHAR2 (50 BYTE) "ORDER_NUMBER"
    VARCHAR2 (50 BYTE) "PART_NUMBER",.
    VARCHAR2 (50 BYTE) "COMPANY."
    VARCHAR2 (50 BYTE) "PART_DESCRIPTION."
    VARCHAR2 (50 BYTE) "PART_DETAILS."
    VARCHAR2 (50 BYTE) "SUB_NUMBER".
    )
    -DROP TABLE VTEST

    INSERT INTO vtest VALUES (12345, 111, 19, '1', 'DESC1', 'DETAILS1', 999);
    INSERT INTO vtest VALUES (12387, 111, 25, 'COMPANY2', 'DESC2', 'DETAILS2', 888);
    INSERT INTO vtest VALUES (12343, 569, 96, 'COMPANY3', 'DESC3', 'Détails3', 777);
    INSERT INTO vtest VALUES (12340, 274, 13, 'Mémorandum4', 'DESC4', 'DETAILS4', 666);
    INSERT INTO vtest VALUES (15645, 385, 13, 'COMPANY5', 'DESC5', 'DETAILS5', 555);
    INSERT INTO vtest VALUES (22347, 996, 13, 'COMPANY6', 'DESC6', 'DETAILS6', 444);
    INSERT INTO vtest VALUES (35622, 825, 13, '1', 'DESC7', 'DETAILS7', 333);
    INSERT INTO vtest VALUES (42335, 111, 19, '1', 'DESC8', 'DETAILS8', 222);

    -SELECT * FROM VTEST

    SELECT
    XMLElement ("APP",
    XMLAttributes (VTEST as "NAME")
    , XMLElement ("WEB",
    XMLAgg)
    XMLElement ("numero_projet",
    XMLAttributes (NVL("ORDER_NUMBER",' ') AS ORDER_NUMBER,
    NVL("PART_NUMBER",' ') ACE PART_NUMBER,
    NVL("COMPANY_NAME",' ') ACE COMPANY_NAME,
    NVL("PART_DESCRIPTION",' ') AS PART_DESCRIPTION,
    NVL("PART_DETAILS",' ') AS PART_DETAILS,
    NVL("SUB_NUMBER",' ') AS SUB_NUMBER
    ),

    XMLForest)
    NVL("ORDER_NUMBER",' ') ACE ORDER_NUMBER,
    NVL("PART_NUMBER",' ') ACE PART_NUMBER,
    NVL("COMPANY_NAME",' ') ACE COMPANY_NAME,
    NVL("PART_DESCRIPTION",' ') AS PART_DESCRIPTION,
    NVL("PART_DETAILS",' ') AS PART_DETAILS,
    NVL("SUB_NUMBER",' ') AS SUB_NUMBER
    )
    )
    )
    )
    )

    OF VTEST


    It works very well.
    But I also want to generate xml data a second where each item is listed with unique values as follows:

    < APP NAME = "VTEST" >
    < WEB >
    < ORDER_NUMBERS >
    < > 111 ORDER_NUMBER < / ORDER_NUMBER >
    < > 569 ORDER_NUMBER < / ORDER_NUMBER >
    < > 274 ORDER_NUMBER < / ORDER_NUMBER >
    < > 385 ORDER_NUMBER < / ORDER_NUMBER >
    < > 996 ORDER_NUMBER < / ORDER_NUMBER >
    < > 825 ORDER_NUMBER < / ORDER_NUMBER >
    < / ORDER_NUMBERS >
    < PART_NUMBERS >
    < PART_NUMBER > 19 < / PART_NUMBER >
    < PART_NUMBER > 25 < / PART_NUMBER >
    < > 96 PART_NUMBER < / PART_NUMBER >
    < PART_NUMBER > 13 < / PART_NUMBER >
    < / PART_NUMBERS >
    < COMPANY >
    company 1 < COMPANY_NAME > < / COMPANY_NAME >
    COMPANY2 < COMPANY_NAME > < / COMPANY_NAME >
    COMPANY3 < COMPANY_NAME > < / COMPANY_NAME >
    COMPANY4 < COMPANY_NAME > < / COMPANY_NAME >
    COMPANY5 < COMPANY_NAME > < / COMPANY_NAME >
    COMPANY6 < COMPANY_NAME > < / COMPANY_NAME >
    < / COMPANIES >
    < PART_DESCRIPTIONS >
    DESC1 < PART_DESCRIPTION > < / PART_DESCRIPTION >
    DESC2 < PART_DESCRIPTION > < / PART_DESCRIPTION >
    DESC3 < PART_DESCRIPTION > < / PART_DESCRIPTION >
    < PART_DESCRIPTION > DESC4 < / PART_DESCRIPTION >
    < PART_DESCRIPTION > DESC5 < / PART_DESCRIPTION >
    < PART_DESCRIPTION > DESC6 < / PART_DESCRIPTION >
    < PART_DESCRIPTION > DESC7 < / PART_DESCRIPTION >
    < PART_DESCRIPTION > DESC8 < / PART_DESCRIPTION >
    < / PART_DESCRIPTIONS >
    < PART_DETAILS >
    < PART_DETAILS > DETAILS1 < / PART_DETAILS >
    < PART_DETAILS > DETAILS2 < / PART_DETAILS >
    < PART_DETAILS > details3 < / PART_DETAILS >
    < PART_DETAILS > DETAILS4 < / PART_DETAILS >
    < PART_DETAILS > DETAILS5 < / PART_DETAILS >
    < PART_DETAILS > DETAILS6 < / PART_DETAILS >
    < PART_DETAILS > DETAILS7 < / PART_DETAILS >
    < PART_DETAILS > DETAILS8 < / PART_DETAILS >
    < / PART_DETAILS >
    < SUB_NUMBERS >
    < SUB_NUMBER > 999 < / SUB_NUMBER >
    < SUB_NUMBER > 888 < / SUB_NUMBER >
    < SUB_NUMBER > 777 < / SUB_NUMBER >
    < SUB_NUMBER > 666 < / SUB_NUMBER >
    < SUB_NUMBER > 555 < / SUB_NUMBER >
    < SUB_NUMBER > 444 < / SUB_NUMBER >
    < SUB_NUMBER > 333 < / SUB_NUMBER >
    < SUB_NUMBER > 222 < / SUB_NUMBER >
    < / SUB_NUMBERS >
    < / WEB >
    < / APP >


    Ive been trying and just can't understand it. Thus, each section formularies its unique values.
    Thanks for any help.

    A similar technique that your previous question - deduplicate each section by itself:

    select
    xmlelement(
       app
     , xmlattributes('VTEST' as name)
     , xmlelement(
          web
        , xmlforest(
             (
                select xmlagg(xmlelement(order_number,order_number) order by order_number)
                  from ( select distinct order_number from vtest )
             ) as order_numbers
           , (
                select xmlagg(xmlelement(part_number,part_number) order by part_number)
                  from ( select distinct part_number from vtest )
             ) as part_numbers
           /* etc */
          )
       )
    )
    from dual
    /
    

    I just got the order_numbers and part_numbers and leave the rest for you ;-)

    Maybe it's not the most effective method that it accesses the table several times. But xmlagg does not support a 'distinct' clause, as for example to count (distinct order_number), so I can't think offhand of a more effective solution.

    Maybe if you are very strong to create XLS stylesheets to transform your original XML output for output desired using XQuery - then perhaps it could be done without access to the table several times. But probably it would be more effective anyway, because it would then do a job a lot of in-memory (or TEMP).

  • 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.

  • How can I add more shapes to my shapes menu pages?

    How can I add more shapes to my shapes menu pages?

    There is no provision for adding forms customized forms in the menu in Pages ' 09 v4.3 or in any version of v5 Pages.

    You can keep your forms customized in a separate document of the Pages and then paste them as needed in your present work.

    You can copy the form customized to the Clipboard and then choose in the menu file preview: new from the Clipboard. Now you can export this form in your favorite image format and re-use in the future efforts of Pages.

Maybe you are looking for