How can I insert a table in headnote so it will show on each page?

I would like to insert a table in the headnote, but I don't know how with this new pages layout. Suggestions?
Thank you much

It isn't possible to do. Maybe can make the tables as an backround image. http://help.apple.com/pages/mac/5.0/?lang=en#/tan9fdc65243

Similar Messages

  • How can I insert a table in the header?

    The question is easy: How can I insert a table of one row in the header.
    Thanks in advance.
    Jesús.

    There are multiple versions of Pages in circulation on Mavericks and Yosemite. Telling us which one helps with a more accurate answer.
    If you are referring to Pages v5, then you cannot insert a table into the header or footer, because implicitly, these are table cells too. The discontinued Pages ’09 v4.3 would allow table insertion in the document header/footer fields.

  • HT4623 How can I update ios if "software update" option is not showing on the page "General"?  On my Iphone, it only show "About" and "Usage" next to each other.

    How can I update iOS 4.2.1 to the latest iOS if "software update" option is not showing on the page "General"? On my Iphone, it only show "About" and "Usage" . Please help.

    See the chart below to determine whether you can upgrade your device and what you can upgrade to.
    IPhone, iPod Touch, and iPad iOS Compatibility Chart
         Device                                       iOS Verson
    iPhone 1                                      iOS 3.1.3
    iPhone 3G                                   iOS 4.2.1
    iPhone 3GS                                 iOS 6.1.x
    iPhone 4                                      iOS 6.1.x
    iPhone 4S                                    iOS 6.1.x
    iPhone 5                                      iOS 6.1.x
    iPod Touch 1                               iOS 3.1.3
    iPod Touch 2                               iOS 4.2.1
    iPod Touch 3                               iOS 5.1.1
    iPod Touch 4                               iOS 6.1.x
    iPod Touch 5                               iOS 6.1.x
    iPad 1                                          iOS 5.1.1
    iPad 2                                          iOS 6.1.x
    iPad 3                                          iOS 6.1.x
    iPad 4                                          iOS 6.1.x
    iPad Mini                                     iOS 6.1.x
    =====================================
    Select the method most appropriate for your situation. If you are trying to upgrade to iOS 5 or higher, then you will have to connect your device to your computer and open iTunes in order to upgrade.
    Upgrading iOS
       1. How to update your iPhone, iPad, or iPod Touch
       2. iPhone Support
       3. iPod Touch Support
       4. iPad Support
         a. Updating Your iOS to Version 6.0.x from iOS 5
              Tap Settings > General > Software Update
         If an update is available there will be an active Update button. If you are current,
         then you will see a gray screen with a message saying your are up to date.
         b. If you are still using iOS 4 — Updating your device to iOS 5 or later.
         c. Resolving update problems
            1. iOS - Unable to update or restore
            2. iOS- Resolving update and restore alert messages

  • How can i make that in the ComboBox control it will show only part of each item name without the Win32_ in the start of each item ?

    This is my form1 code:
    using System;
    using System.Collections;
    using System.Management;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    namespace GetHardwareInfo
    public partial class frmMain : Form
    public frmMain()
    InitializeComponent();
    cmbxOption.SelectedItem = "Win32_Processor";
    cmbxStorage.SelectedItem = "Win32_DiskDrive";
    cmbxMemory.SelectedItem = "Win32_CacheMemory";
    cmbxSystemInfo.SelectedItem = "";
    cmbxNetwork.SelectedItem = "Win32_NetworkAdapter";
    cmbxUserAccount.SelectedItem = "Win32_SystemUsers";
    cmbxDeveloper.SelectedItem = "Win32_COMApplication";
    cmbxUtility.SelectedItem = "Win32_1394Controller";
    private void InsertInfo(string Key, ref ListView lst, bool DontInsertNull)
    lst.Items.Clear();
    ManagementObjectSearcher searcher = new ManagementObjectSearcher("select * from " + Key);
    try
    foreach (ManagementObject share in searcher.Get())
    ListViewGroup grp;
    try
    grp = lst.Groups.Add(share["Name"].ToString(), share["Name"].ToString());
    catch
    grp = lst.Groups.Add(share.ToString(), share.ToString());
    if (share.Properties.Count <= 0)
    MessageBox.Show("No Information Available", "No Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
    return;
    foreach (PropertyData PC in share.Properties)
    ListViewItem item = new ListViewItem(grp);
    if (lst.Items.Count % 2 != 0)
    item.BackColor = Color.White;
    else
    item.BackColor = Color.WhiteSmoke;
    item.Text = PC.Name;
    if (PC.Value != null && PC.Value.ToString() != "")
    switch (PC.Value.GetType().ToString())
    case "System.String[]":
    string[] str = (string[])PC.Value;
    string str2 = "";
    foreach (string st in str)
    str2 += st + " ";
    item.SubItems.Add(str2);
    break;
    case "System.UInt16[]":
    ushort[] shortData = (ushort[])PC.Value;
    string tstr2 = "";
    foreach (ushort st in shortData)
    tstr2 += st.ToString() + " ";
    item.SubItems.Add(tstr2);
    break;
    default:
    item.SubItems.Add(PC.Value.ToString());
    break;
    else
    if (!DontInsertNull)
    item.SubItems.Add("No Information available");
    else
    continue;
    lst.Items.Add(item);
    catch (Exception exp)
    MessageBox.Show("can't get data because of the followeing error \n" + exp.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Information);
    private void RemoveNullValue(ref ListView lst)
    foreach (ListViewItem item in lst.Items)
    if (item.SubItems[1].Text == "No Information available")
    item.Remove();
    #region Control events ...
    private void cmbxNetwork_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxNetwork.SelectedItem.ToString(), ref lstNetwork, chkNetwork.Checked);
    private void cmbxSystemInfo_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxSystemInfo.SelectedItem.ToString(), ref lstSystemInfo, chkSystemInfo.Checked);
    private void cmbxUtility_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxUtility.SelectedItem.ToString(), ref lstUtility, chkUtility.Checked);
    private void cmbxUserAccount_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxUserAccount.SelectedItem.ToString(), ref lstUserAccount, chkUserAccount.Checked);
    private void cmbxStorage_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxStorage.SelectedItem.ToString(), ref lstStorage, chkDataStorage.Checked);
    private void cmbxDeveloper_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxDeveloper.SelectedItem.ToString(), ref lstDeveloper, chkDeveloper.Checked);
    private void cmbxMemory_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxMemory.SelectedItem.ToString(), ref lstMemory, chkMemory.Checked);
    private void chkHardware_CheckedChanged(object sender, EventArgs e)
    if (chkHardware.Checked)
    RemoveNullValue(ref lstDisplayHardware);
    else
    InsertInfo(cmbxOption.SelectedItem.ToString(), ref lstDisplayHardware, chkHardware.Checked);
    private void cmbxOption_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxOption.SelectedItem.ToString(), ref lstDisplayHardware, chkHardware.Checked);
    private void chkDataStorage_CheckedChanged(object sender, EventArgs e)
    if (chkDataStorage.Checked)
    RemoveNullValue(ref lstStorage);
    else
    InsertInfo(cmbxStorage.SelectedItem.ToString(), ref lstStorage, chkDataStorage.Checked);
    private void chkMemory_CheckedChanged(object sender, EventArgs e)
    if (chkMemory.Checked)
    RemoveNullValue(ref lstMemory);
    else
    InsertInfo(cmbxMemory.SelectedItem.ToString(), ref lstStorage, false);
    private void chkSystemInfo_CheckedChanged(object sender, EventArgs e)
    if (chkSystemInfo.Checked)
    RemoveNullValue(ref lstSystemInfo);
    else
    InsertInfo(cmbxSystemInfo.SelectedItem.ToString(), ref lstSystemInfo, false);
    private void chkNetwork_CheckedChanged(object sender, EventArgs e)
    if (chkNetwork.Checked)
    RemoveNullValue(ref lstNetwork);
    else
    InsertInfo(cmbxNetwork.SelectedItem.ToString(), ref lstNetwork, false);
    private void chkUserAccount_CheckedChanged(object sender, EventArgs e)
    if (chkUserAccount.Checked)
    RemoveNullValue(ref lstUserAccount);
    else
    InsertInfo(cmbxUserAccount.SelectedItem.ToString(), ref lstUserAccount, false);
    private void chkDeveloper_CheckedChanged(object sender, EventArgs e)
    if (chkDeveloper.Checked)
    RemoveNullValue(ref lstDeveloper);
    else
    InsertInfo(cmbxDeveloper.SelectedItem.ToString(), ref lstDeveloper, false);
    private void chkUtility_CheckedChanged(object sender, EventArgs e)
    if (chkUtility.Checked)
    RemoveNullValue(ref lstUtility);
    else
    InsertInfo(cmbxUtility.SelectedItem.ToString(), ref lstUtility, false);
    private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
    linkLabel1.LinkVisited = true;
    System.Diagnostics.Process.Start("http://www.test.net");
    #endregion
    What i get is in the end that in the ComboBox in this case i call it cmbxNetwork i see in it many items all start with Win32_ For example when i click on ComboBox i see the first item is: "Win32_NetworkAdapter"
    Instead Win32_NetworkAdapter i want to see in the ComboBox only: NetworkAdapter But when i select the item it should be selected as Win32_NetworkAdapter but the user should see and select only NetworkAdapter.
    I want to remove as test from the ComboBox items the Win32_ But only that the user will see it without Win32_
    Also in the constructor when i'm doing now: cmbxNetwork.SelectedItem = "Win32_NetworkAdapter"; so instead if i'm doing: cmbxNetwork.SelectedItem = "NetworkAdapter"; it will be enough. THe program will use the "Win32_NetworkAdapter";
    but again what i see and user in the ComboBox as item is only the NetworkAdapter

    Hi Chocolade1972,
    >> I want to remove as test from the ComboBox items the Win32_ But only that the user will see it without Win32_  Also in the constructor when i'm doing now: cmbxNetwork.SelectedItem = "Win32_NetworkAdapter"; so instead if i'm doing:
    cmbxNetwork.SelectedItem = "NetworkAdapter";
    Do you mean that you want the ComboBox show the value of “NetworkAdapter” in the text, but when you refer the value of the cmbxNetwork.SelectedItem, it will be “Win32_NetworkAdapter”? If so, I am afraid that you need create your own ComboboxItem and override
    the ToString() method to return the text you want.
    You could modify the code below for your own achievement.
    public partial class Form0417 : Form
    public Form0417()
    InitializeComponent();
    public class ComboboxItem
    public string Text { get; set; }
    public object Value { get; set; }
    public override string ToString()
    return Text;
    private void Form0417_Load(object sender, EventArgs e)
    ComboboxItem item1 = new ComboboxItem();
    item1.Text = "Processor";
    item1.Value = "Win32_Processor";
    ComboboxItem item2 = new ComboboxItem();
    item2.Text = "DiskDrive";
    item2.Value = "Win32_DiskDrive";
    cmbxOption.Items.Add(item1);
    cmbxOption.Items.Add(item2);
    //MessageBox.Show((cmbxOption.SelectedItem as ComboboxItem).Value.ToString());
    private void cmbxOption_SelectedIndexChanged(object sender, EventArgs e)
    MessageBox.Show((cmbxOption.SelectedItem as ComboboxItem).Value.ToString());
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I insert values from table object into a regular table

    I have a table named "ITEM", an object "T_ITEM_OBJ", a table object "ITEM_TBL" and a stored procedure as below.
    CREATE TABLE ITEM
    ITEMID VARCHAR2(10) NOT NULL,
    PRODUCTID VARCHAR2(10) NOT NULL,
    LISTPRICE NUMBER(10,2),
    UNITCOST NUMBER(10,2),
    SUPPLIER INTEGER,
    STATUS VARCHAR2(2),
    ATTR1 VARCHAR2(80),
    ATTR2 VARCHAR2(80),
    ATTR3 VARCHAR2(80),
    ATTR4 VARCHAR2(80),
    ATTR5 VARCHAR2(80)
    TYPE T_ITEM_OBJ AS OBJECT
    ITEMID VARCHAR2(10),
    PRODUCTID VARCHAR2(10),
    LISTPRICE NUMBER(10,2),
    UNITCOST NUMBER(10,2),
    SUPPLIER INTEGER,
    STATUS VARCHAR2(2),
    ATTR1 VARCHAR2(80),
    ATTR2 VARCHAR2(80),
    ATTR3 VARCHAR2(80),
    ATTR4 VARCHAR2(80),
    ATTR5 VARCHAR2(80)
    TYPE ITEM_TBL AS TABLE OF T_ITEM_OBJ;
    PROCEDURE InsertItemByObj(p_item_tbl IN ITEM_TBL, p_Count OUT PLS_INTEGER);
    When I pass values from my java code through JDBC to this store procedure, how can I insert values from the "p_item_tbl" table object into ITEM table?
    In the stored procedure, I wrote the code as below but it doesn't work at all even I can see values if I use something like p_item_tbl(1).itemid. How can I fix the problem?
    INSERT INTO ITEM
    ITEMID,
    PRODUCTID,
    LISTPRICE,
    UNITCOST,
    STATUS,
    SUPPLIER,
    ATTR1
    ) SELECT ITEMID, PRODUCTID, LISTPRICE,
    UNITCOST, STATUS, SUPPLIER, ATTR1
    FROM TABLE( CAST(p_item_tbl AS ITEM_TBL) ) it
    WHERE it.ITEMID != NULL;
    COMMIT;
    Also, how can I count the number of objects in the table object p_item_tbl? and how can I use whole-loop or for-loop to retrieve values from the table object?
    Thanks.

    Sigh. I answered this in your other How can I convert table object into table record format?.
    Please do not open multiple threads. It just confuses people and makes the trreads hard to follow. Also, please remember we are not Oracle employees, we are all volunteers here. We answer questions if we can, when we can. There is no SLA so please be patient.
    Thank you for your future co-operation.
    Cheers, APC

  • How can I Insert data into my msaccess Database table

    Hello all,
    I am new to Java programming and I have problem that how can i insert name into my database table.
    The code which i have written is following:
    String filename = "d:/test.mdb";
    String database = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
    database+= filename.trim() + ";DriverID=22;READONLY=true}";
    Connection con = DriverManager.getConnection(database,"","");
    String s = String.valueOf(text.getText());
    int k =10;
    Statement st = con.createStatement();
    st.execute("create table Test123(name text)");
    st.execute("INSERT INTO Test123 values" +s);
    on the INSERT program throws exception???
    can any one help me how to insert data into tabel.
    Thanks

    he INSERT program throws exception???
    can any one help me how to insert data into tabel.I have never used the jdbc driver to access, but what do you think that the flag READONLY=true means? An insert is not a read.
    Kaj

  • In ADF how can i insert data in multiple table if they have foreign key

    I have started working on ADF and can anybody inform me in ADF how can i insert data in multiple table if they have foreign key,please?
    Thnak you very much.

    Hello,
    Still no luck.I am surely doing silly mistakes.Anyway,Here are my workings-
    1> student_mst (id(pk),studentname) and student_guard_mst(id(fk),guardianname)
    2> created EO from both of the tables,made id in both EO as DBSequence and an association was also generated.
    3> i made that association composite by clicking the checkbox
    4> i created 2 VO from 2 EO.
    5> put those VO in Application Module.
    6> dragged and dropped 2 VO on my jspx page and dropped them as ADF Form.
    Now what to do please?

  • How can I insert a new table whose cells are linked to Cell Styles?

    How can I define a Table Style so that cells in new tables are automatically linked to my Cell Styles? (Not sure if "linked" is exactly the appropriate word....I'm going for "connected in such a way that when the Style is changed, the character/paragraph/cell/table/object updates to reflect the change.")
    I thought the whole point of using Cell Styles in Table Styles would be so the cells can be automatically linked to the desired Cell Styles when the table is created -- but that isn't happening for me. I don't know if I'm just confused or if this is a bug:
    When I insert a new table of a Table Style I have defined, it seems all cells in the new table are simply linked to Cell Style [None], with overrides for each cell that are consistent with the applicable Cell Style as it was defined when the table was inserted. So although the appearance of each cell is consistent with the Cell Style I defined for for that region of the table, the cells don't update if I later make changes to the Cell Styles I defined.
    (If, after inserting a new table, I manually select each cell and apply the desired Cell Style, then the cells do (of course) update when I change the Cell Styles.)
    Is it possible to have cells be actually linked to Cell Styles when a new table is inserted, instead of cells being simply linked to style [None] with overrides?
    (I'm using the up-do-date 2014 release of InDesign CC, in case that's relevant.)

    there is a example on Page 1149 of book Graphic Java 2 mastering the JFC
    by David M. Geary. ISBN: 0-L3-079667-0, Try to take a look the code. It will help.

  • How can I inserting file's line into a oracle table in physycal order

    How can I insert the file's line into a oracle table in the same physycal order that they exists in the file ?
    I am using "SQL to FILE" km to performing file load into Oracle table, but the order which the records are insered into the oracle table doesn't match with the order of file's lines
    How can I guarantee the same file's physycal order in the oracle table( target ) and file( source ) ?
    Is it possible throught ODI ?
    Thanks,
    Luciana

    Hi,
    although I understand why use "File to Oracle( SQLLDR )" KM, I haven't the guarantee that in the agent's machine the Oracle Client installed and because when I openned the others projects I saw that anyone in my company use this KM( "File to Oracle( SQLLDR )" )
    Tha's why I ask for anyone lead me whith the modification of the previous post in the "uLKM File to SQL", specifing the km step e where put the RECNUM pseudo column
    This is fundamental for my ODI project
    When I try to alter the "Create Work Table" and "Load Data" step of my "uLKM File to SQL" km, the execution returned me the error below:
    =====================> Create Work Table Step
    create table <@= vWorkTable @>
         C1_LINHA_ARQ     VARCHAR2(500) NULL, RECNUM NUMBER(10)
    =====================> Load Data Step
    select     LINHA_ARQ     C1_LINHA_ARQ
    from      TABLE
    /*$$SNPS_START_KEYSNP$CRDWG_TABLESNP$CRTABLE_NAME=ARQ_INSS2SNP$CRLOAD_FILE=/arquivos_odi/ccrs/in/#CCRS_CAD_INSS.vpNOME_ARQUIVOSNP$CRFILE_FORMAT=DSNP$CRFILE_SEP_FIELD=09SNP$CRFILE_SEP_LINE=0D0ASNP$CRFILE_FIRST_ROW=0SNP$CRFILE_ENC_FIELD=SNP$CRFILE_DEC_SEP=SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=LINHA_ARQSNP$CRTYPE_NAME=STRINGSNP$CRORDER=1SNP$CRLINE_OFFSET=1SNP$CRLENGTH=500SNP$CRPRECISION=500SNP$CR$$SNPS_END_KEY*/
    insert into ODI_RUN_CONV.C$_0TMP_ODI_INSS_DADOS_ARQ
         C1_LINHA_ARQ, RECNUM
    values
         :C1_LINHA_ARQ, RECNUM
    =====================
    984 : 42000 : java.sql.BatchUpdateException: ORA-00984: column not allowed here
    984 : 42000 : java.sql.SQLSyntaxErrorException: ORA-00984: column not allowed here
    java.sql.BatchUpdateException: ORA-00984: column not allowed here
         at oracle.jdbc.driver.DatabaseError.throwBatchUpdateException(DatabaseError.java:629)
         at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:9409)
         at oracle.jdbc.driver.OracleStatementWrapper.executeBatch(OracleStatementWrapper.java:211)
         at com.sunopsis.sql.SnpsQuery.executeBatch(Unknown Source)
    ...Thanks again gyus,
    Luciana
    Edited by: 933810 on 31/05/2012 06:04
    Edited by: 933810 on 31/05/2012 06:07
    Edited by: 933810 on 31/05/2012 06:14

  • How can I insert data into the standard CRM tables ?

    Hi Experts,
    Scenario----
    I need to download few attributes (fields) from SAP MDM to SAP CRM via SAP XI. I'm using the 'COMT_PRODUCT_MAINTAIN_API' API for it.
    The attributes(fields) that are present in the strucutres of API are downloaded into CRM system (by executing the Inbound proxy that is created based on the Message Interface created on XI) by calling the functions present in the API.
    And for those fields that are not present in CRM, but need to be downloaded into CRM, I'm creating the Set Type attributes in CRM, which get appended to the API.
    My query is:
    There are fields in CRM into which I need to insert the values. But they are not listed in the API. So, how can I insert(/download) the values into these standard fields?
    Regret the long description. Intended to be clear.
    TIA. Points will be awarded.
    Regards,
    Kris
    Edited by: Kris on Jul 21, 2008 8:00 AM

    he INSERT program throws exception???
    can any one help me how to insert data into tabel.I have never used the jdbc driver to access, but what do you think that the flag READONLY=true means? An insert is not a read.
    Kaj

  • How can I Insert pictures in the text? Is there another way besides attaching a file?

    How can I insert a picture in the text email instead attaching file?

    The feature to add images in tables is gone, ike about another 90 features that exists in Pages 09.

  • How can I insert Query in a Workbook

    Hi,
    I am new in BI 7.0. I am trying to insert a query in a workbook. but the tools button is not giving me the option to insert query like 3.X
    How can i insert query in 7.0
    Can anybody please give me the step by step instruction.
    Thanks in Advance

    1. Open BEx ANalyzer.
    2. Create new excel workbook by hitting the "New" icon in Excel.
    3. Logon to a backend BI system.
    4. Click the design mode icon.
    5. Put your mouse on a cell and insert a table.
    6. Assign a dataprovider to this table.
    7. Switch off design mode.
    Hope it Helps
    Chetan
    @CP..

  • How can I fill a table of objects from cursor with select * bulk collect???

    Hi All, I have a TYPE as OBJECT
    create or replace type dept2_o as object (
    deptno NUMBER(2),
    dname VARCHAR2(14),
    loc VARCHAR2(13));
    I can fill a table of objects from cursor with out select * bulk collect...., row by row
    declare
    TYPE dept2_t IS TABLE of dept2_o;
    dept_o_tab dept2_t:=dept2_t();
    i integer;
    begin
    i:=0;
    dept_o_tab.extend(20);
    for rec in (select * from dept) loop
    i:=i+1;
    dept_o_tab(i):=dept2_o(
    deptno => rec.deptno,
    dname => rec.dname,
    loc =>rec.loc
    end loop;
    for k IN 1..i loop
    dbms_output.put_line(dept_o_tab(k).deptno||' '||dept_o_tab(k).dname||' '||dept_o_tab(k).loc);
    end loop;
    end;
    RESULT
    10 ACCOUNTING NEW YORK
    20 RESEARCH DALLAS
    30 SALES CHICAGO
    40 OPERATIONS BOSTON
    But I can't fill a table of objects from cursor with select * bulk collect construction ...
    declare
    TYPE dept2_t IS TABLE of dept2_o;
    dept_o_tab dept2_t:=dept2_t();
    begin
    dept_o_tab.extend(20);
    select * bulk collect into dept_o_tab from dept;
    end;
    RESULT
    ORA-06550: line 6, column 39;
    PL/SQL: ORA-00947: not enough values ....
    How can I fill a table of objects from cursor with select * bulk collect???

    create or replace type dept_ot as object (
    deptno NUMBER(2),
    dname VARCHAR2(14),
    loc VARCHAR2(13));
    create table dept
    (deptno number
    ,dname varchar2(14)
    ,loc varchar2(13)
    insert into dept values (10, 'x', 'xx');
    insert into dept values (20, 'y', 'yy');
    insert into dept values (30, 'z', 'zz');
    select dept_ot (deptno, dname, loc)
      from dept
    create type dept_nt is table of dept_ot
    declare
       l_depts dept_nt;
    begin
       select dept_ot (deptno, dname, loc)
         bulk collect
         into l_depts
         from dept
       for i in l_depts.first .. l_depts.last
       loop
          dbms_output.put_line (l_depts(i).deptno);
          dbms_output.put_line (l_depts(i).dname);
          dbms_output.put_line (l_depts(i).loc);    
       end loop;
    end;
    /

  • In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    You're in luck. Create the first field and then right-click it (in Form Edit mode) and select Create Multiple Copies. You'll be able to specify how many copies of the fields to generate, and at what intervals. The nice thing is that although the properties of the new fields will be identical to the source one, they'll each have a unique name, so you'll get an instant "table" of fields.

  • How can i insert the variable value in MS ACCES Query

    i am creating one Query (query1) in MS ACCESS ( like we creaate Tables, Forms and Reports in MS ACCESS ) in this Query i have given 2 constent value in BETWEEN CLAUSE , after that i Created a CROSS QUERY which is based on the privious Query (query1).
    Now i want to insert the variable value using JSP and HTML in to Query(query1).
    Doing this i want to execute the Query (query1) with variable perameters and
    wants to get the risponce form CROSS QUERY.
    In this matter how can i insert the value in Query(query1) using JDBC and JSP.

    The query is
    Select ZMSGMAP.GROUP_CODE as 'group', ZMSDSTATE.STATE_DESC as 'state', ZMSTRN.YRMON, sum(ZMSTRN.CMAQTY) as 'qty' from ZMSDSTATE,ZMSGMAP,ZMSTRN Where ZMSTRN.STATE=ZMSDSTATE.STATE and ZMSTRN.PLANT=ZMSGMAP.PLANT_CODE and ZMSTRN.YRMON between "+p1+" and "+p2+" Group by ZMDGMAP.GROUP_CODE, ZMSDSTATE.STSTE_DESC, ZMSTRN.YRMONUsing this query i m trying to display the risult but the YRMON is displaying in a single column, i want to display it ia seperat columns. here p1 and p2 is YRMON(it is the yer month like 200102), for this solution i have created Cross table Query which is based on uper Query (query1) and design it column wise Display, it is givng the right display, but the problem is this i m not getting the technique throw which i can insert the variable values in to the query1 (which is designed in MS ACCESS).
    u can contact me on [email protected] for more details.

Maybe you are looking for

  • Can you rcover your bookmarks from a downed computer and if so How?

    The Win 7 computer that I use has 3 hard drives. on the first drive is the OS, the second has all my programs installed on it, and the third just has files. The OS drive has just died but the others are still good, so I'm getting a new drive for the

  • Issue on Creating RFx in webdynpro ABAP application - SRM Business Package

    Hi We are in to SRM 7.0 with the same version of Business Package in SAP Portal also. I am trying to create a RFx from Portal which in turn calls the webdynpro ABAP application (Strategic Purchasing->Strategic Sourcing->Create Documents->RFx) sap/bc/

  • Number Format in Query Designer

    Hi, I have changed the properties of key figure to 6 decimal places from 2 decimals in the Infoobject Properties.But in Query designer it is still displayed as (from key figure 0.00). As i have mentioned 6 decimal places in the key figure , why it is

  • N1 and port conflict

    Hi all, i try to install N1 1.3 but i have an error. Solaris 10 U6 There is no 8083 port in /etc/services. Nothing in netstat -an and nothing in lsof. Could you help me please? N1SM Installer (version 1.3 on SunOS) 1. Install OS packages. [Completed]

  • Out of memory error when creating an array

    I'm trying to create 3D array of Bytes. Byte[][][] disk = disk = new Byte[11][9][25344]; This is where I get an OutofMemory error. Please help!!!