How to create several colums if many rows

Hi,
I have a problem with finding a technical solution. If I have more than 30 records, I want to put them in the next column. How do I do this in xsl (HTML output):
|PCS|REV|DATE | |PCS|REV|DATE |
| 1 | 1 |xx.xx.xx| | 5 | 1 |xx.xx.xx|
| 2 | 1 |xx.xx.xx| | 6 | 1 |xx.xx.xx|
| 3 | 1 |xx.xx.xx| | 7 | 1 |xx.xx.xx|
| 4 | 1 |xx.xx.xx|
Is this something you can help me with?
Where can I learn more about xsl, xpath, xml, xslt etc?

My book Building Oracle XML Applications has a technical introduction to XML, XML Namespaces, XPath, XSLT, and contains 17 chapters of examples of using these technologies together with the Oracle XML platform in Java, PL/SQL, and with XSQL Pages. You can checkout reviews at: http://www.amazon.com/exec/obidos/ASIN/1565926919
Here's a solution to your XSLT problem.
Given an XML source like:
<terje>
<rec rev="a" date="xx.xx.xxxx"/>
<rec rev="b" date="xx.xx.xxxx"/>
<rec rev="c" date="xx.xx.xxxx"/>
<rec rev="d" date="xx.xx.xxxx"/>
<rec rev="e" date="xx.xx.xxxx"/>
<rec rev="f" date="xx.xx.xxxx"/>
<rec rev="g" date="xx.xx.xxxx"/>
<rec rev="h" date="xx.xx.xxxx"/>
<rec rev="i" date="xx.xx.xxxx"/>
<rec rev="j" date="xx.xx.xxxx"/>
<rec rev="k" date="xx.xx.xxxx"/>
<rec rev="l" date="xx.xx.xxxx"/>
<rec rev="m" date="xx.xx.xxxx"/>
<rec rev="n" date="xx.xx.xxxx"/>
<rec rev="o" date="xx.xx.xxxx"/>
<rec rev="p" date="xx.xx.xxxx"/>
<rec rev="q" date="xx.xx.xxxx"/>
<rec rev="r" date="xx.xx.xxxx"/>
<rec rev="s" date="xx.xx.xxxx"/>
<rec rev="t" date="xx.xx.xxxx"/>
<rec rev="u" date="xx.xx.xxxx"/>
<rec rev="v" date="xx.xx.xxxx"/>
<rec rev="w" date="xx.xx.xxxx"/>
<rec rev="x" date="xx.xx.xxxx"/>
<rec rev="y" date="xx.xx.xxxx"/>
<rec rev="z" date="xx.xx.xxxx"/>
<rec rev="aa" date="xx.xx.xxxx"/>
<rec rev="ab" date="xx.xx.xxxx"/>
<rec rev="ac" date="xx.xx.xxxx"/>
<rec rev="ad" date="xx.xx.xxxx"/>
<rec rev="ae" date="xx.xx.xxxx"/>
<rec rev="af" date="xx.xx.xxxx"/>
<rec rev="ag" date="xx.xx.xxxx"/>
<rec rev="ah" date="xx.xx.xxxx"/>
<rec rev="ai" date="xx.xx.xxxx"/>
</terje>the following stylesheet renders the columnized output as you want, with a parameterizable number of records per column.
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!--
| This controls the number of records in a column and can
| be changed by passing in a new value from outside the stylesheet
+-->
<xsl:param name="per-col" select="30"/>
<!-- Calculate the number of columns we'll need based on $per-col -->
<xsl:variable name="num-col" select="ceiling(count(terje/rec) div $per-col)"/>
<xsl:template match="/">
<html>
<body>
<table border="1" cellspacing="0">
<tr>
<!-- Print a heading for each column we need -->
<xsl:apply-templates mode="header"
select="terje/rec[position() mod $per-col = 1]"/>
</tr>
<!-- Process all the records in the FIRST column in "row" mode -->
<xsl:apply-templates mode="row"
select="terje/rec[$per-col >= position()]"/>
</table>
</body>
</html>
</xsl:template>
<!--
| Process the current "rec" element and all following sibling <rec>
| elements that are a multiple of $per-col away from the current one
+-->
<xsl:template match="rec" mode="row">
<tr>
<xsl:variable name="rowrecs"
select=".|following-sibling::rec[position() mod $per-col = 0]"/>
<xsl:variable name="num-rowrecs" select="count($rowrecs)"/>
<xsl:apply-templates select="$rowrecs"/>
<!--
| If the number of columns is greater than the recs in this row
| then generate an empty row to avoid blank table cells
+-->
<xsl:if test="$num-col > $num-rowrecs">
<xsl:call-template name="empty-row"/>
</xsl:if>
</tr>
</xsl:template>
<xsl:template match="rec">
<td><xsl:value-of select="count(preceding-sibling::rec)+1"/></td>
<td><xsl:value-of select="@rev"/></td>
<td><xsl:value-of select="@date"/>&lt                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ;/td>
</xsl:template>
<xsl:template match="rec" mode="header">
<th>PCS</th><th>Rev</th><th>Date</th>
</xsl:template>
<xsl:template name="empty-row">
<td>&#160;</td>
<td>&#160;</td>
<td>&#160;</td>
</xsl:template>
</xsl:stylesheet>Hope this helps.
Steve Muench
Lead Product Manager for BC4J and Lead XML Evangelist, Oracle Corp
Author, Building Oracle XML Applications
null

Similar Messages

  • How to create 2D array with 3 rows and unlimit column?

    how to create 2D array with 3 rows and unlimit column?

    Here are images of what I described in my previous post
    Message Edited by JoeLabView on 11-14-2007 07:56 AM
    Attachments:
    2D-array_code.PNG ‏7 KB
    2D-array_values.PNG ‏13 KB

  • HOW TO CREATE SEVERAL folder for the generation and READING FILE

    HOW TO CREATE SEVERAL folder for the generation and READING FILE WITH THE COMMAND utl_File.
    please give an example to create 3 folders or directories ...
    I appreciate your attention ...
    Reynel Martinez Salazar

    I hope this link help you.
    [http://www.adp-gmbh.ch/ora/sql/create_directory.html]
    create or replace directory exp_dir as '/tmp';
    grant read, write on directory exp_dir to eygle;
    SQL> create or replace directory UTL_FILE_DIR as '/opt/oracle/utl_file';
    Directory created.
    SQL> declare
      2    fhandle utl_file.file_type;
      3  begin
      4    fhandle := utl_file.fopen('UTL_FILE_DIR', 'example.txt', 'w');
      5    utl_file.put_line(fhandle , 'eygle test write one');
      6    utl_file.put_line(fhandle , 'eygle test write two');
      7    utl_file.fclose(fhandle);
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> !
    [oracle@jumper 9.2.0]$ more /opt/oracle/utl_file/example.txt
    eygle test write one
    eygle test write two
    [oracle@jumper 9.2.0]$
    SQL> declare
      2    fhandle   utl_file.file_type;
      3    fp_buffer varchar2(4000);
      4  begin
      5    fhandle := utl_file.fopen ('UTL_FILE_DIR','example.txt', 'R');
      6 
      7    utl_file.get_line (fhandle , fp_buffer );
      8    dbms_output.put_line(fp_buffer );
      9    utl_file.get_line (fhandle , fp_buffer );
    10    dbms_output.put_line(fp_buffer );
    11    utl_file.fclose(fhandle);
    12  end;
    13  /
    eygle test write one
    eygle test write two
    PL/SQL procedure successfully completed.
    SQL> select * from dba_directories;
    OWNER                          DIRECTORY_NAME                 DIRECTORY_PATH
    SYS                            UTL_FILE_DIR                   /opt/oracle/utl_file
    SYS                            BDUMP_DIR                      /opt/oracle/admin/conner/bdump
    SYS                            EXP_DIR                        /opt/oracle/utl_file
    SQL> drop directory exp_dir;
    Directory dropped
    SQL> select * from dba_directories;
    OWNER                          DIRECTORY_NAME                 DIRECTORY_PATH
    SYS                            UTL_FILE_DIR                   /opt/oracle/utl_file
    SYS                            BDUMP_DIR                      /opt/oracle/admin/conner/bdumpRegards salim.
    Edited by: Salim Chelabi on Apr 4, 2009 4:33 PM

  • How to create several fast loading big albums in iWeb using your own templates

    hi guys - here comes one for the real cracks.
    i am trying to create a nice PICTURES page containing about 100 albums with each of it containing up to 100 individual pictures on my website, where i also have several videos online and (soon) audio files - everything available for download.
    my problem is that the main "My album" page in iWeb will always ALL sub albums on just one page, which would in my case lead to endless loading time - i have now 30 albums online and it already takes ages to display all of them.
    so i want to create several album pages, each of them displaying only 6 individual sub albums and this way allow a decent page loading time. this is usually done by just adding a new "my album" page using one of apple's templates. and here is my problem: my web site design is made from scratch and is not similar to any of apple's templates. since iWeb does not allow you to save your individual pages as "templates" i had to go a long way around, using iWebsites and merge a newly created picture template page (containing my own duplicated "my album") with ma main site. for some reason this did almost work out but in the end not really - if you are interested have a look at the separate discussion in this forum
    https://discussions.apple.com/message/15532580#15532580  (how to save any iWeb page as a template)
    so my question here is if any of you know of any other way to achieve my goal of getting several individual main albums containing 6 subalbums (this way it fits on one page and allow NOT having to scroll down at all) and this in a way which will fit the design of my web page. have a look at the now existing pictures page and imagine that i want more or less the same but divided in individual pages containing only 6 albums per page:
    http://www.giorgiodellapietra.com/giorgiodellapietra.com/PICTURES/PICTURES.html
    here an example of how it should look like in the end:
    http://www.giorgiodellapietra.com/giorgiodellapietra.com/PICTURES/Seiten/MIXED.h tml#0
    thank you very much for your impact.
    cheers
    george

    hi folks
    don't worry, i have given up as it really seems iWeb can not do this.
    however, i have identified 2 possible solutions. the one i have chosen is to simply add new albums by choosing one of apple's templates and then modify it until it fits my design. i have created 15 additional main albums this way and it took me (because of the "mass production") only 15 minutes per album to get it done. now i have enough empty albums spare for the next few years...
    the other way to accomplish what i wanted would have been to make the main "my album" page invisible for visitors and use it only for administration (so it can contain 100 albums but nobody would ever have to wait until they load). then create a new page which i call picture (copy any of my other pages and modify it) on which i will post some "virtual albums", which means use any picture out of an album and create a direct link to the album. i could use a vary low resolution version of the main pic and this way i would have a "picture" page which loads extremely fast but is actually nothing else than a link to the real album. then just copy this page as many times as i need albums and change the pictures and the links in it. the advantage is that it loads very fast, the disadvantage that i loose the ability to scroll through albums by moving the mouse over it, as what you see is of course only a picture and not the album.
    i have chosen the first version because it has the advantage to be able to move albums as one pleases. however, both versions would be fine.
    it's already done and eaten.
    thanks anyway for reading yourself through this...
    cheers
    george

  • How to create several youtubeclips in different videocontainers

    Hi guys,
    i'm new in edge and in this forum:
    I've read all the discussion about create several youtube clips in a single container :
    http://forums.adobe.com/message/4722007#4722007
    What i need to do is to have diffrent containers in the same page with different you tube videos.
    I've tried one single container and the method suggested by RUSSmsn :
         1. RussMSN, 
           18-set-2012 5.05    in reply to Kirch12
         So, the way I did it was like this:
         Create the button and open the code panel for that button.  Create a click action.  Within the code panel, paste this:
         var youtubevid = $("<iframe/>");
         sym.$("vcontainer").empty().append(youtubevid);
         youtubevid.attr('type','text/html');
         youtubevid.attr('width','425');
         youtubevid.attr('height','350');
         youtubevid.attr('src','http://www.youtube.com/embed/ykF1y2EJ2nI');  // url/Video_Id
         youtubevid.attr('frameborder','1');       // 1 | 0
         youtubevid.attr('allowfullscreen','0');   // 1 | 0
         What that does is empty the existing vcontainer, and places a new one with the new youtube video.  You can add this to as many buttons as you like,      obviously changing the URL ID for each, and it Should swap the video for you on click.
         Hope that helps!
         Russ
    and it works perfectly....
    The problem is i want to add more videos in the same page...
    I've tried to create
    var youtube2 and vcontainer2 but it didn't work....
    So i tried moving my first vcontainer to the second position in my page adding a label "button2" :
    //start code
         sym.play("button2");
    var youtubevid = $("<iframe/>");
    sym.$("vcontainer").empty().append(youtubevid);
    youtubevid.attr('type','text/html');
    youtubevid.attr('width','800');
    youtubevid.attr('height','390');
    youtubevid.attr('src','http://www.youtube.com/embed/ykF1y2EJ2nI');  // url/Video_Id
    youtubevid.attr('frameborder','1');       // 1 | 0
    youtubevid.attr('allowfullscreen','0');   // 1 | 0
         //end code
    but this solution didn't work neither....
    I'm asking if is possible to have 2 videos in the same page...
    I've followed also the suggestion of .heathrowe :
    http://www.heathrowe.com/adobe-edge-preview-4-append-youtube-video/
    Again in the stage action panel after creating a composition ready i've tried to add a second var youtubevid2 and a second container vcontainer2 like this:
    //start
    var youtubevid = $("<iframe/>");
    sym.$("vcontainer").append(youtubevid);
    youtubevid.attr('type','text/html');
    youtubevid.attr('width','800');
    youtubevid.attr('height','390');
    youtubevid.attr('src','http://www.youtube.com/embed/GqcPh3OXoNo');  // url/Video_Id
    youtubevid.attr('frameborder','1');       // 1 | 0
    youtubevid.attr('allowfullscreen','0');   // 1 | 0
    var youtubevid2 = $("<iframe/>");
    sym.$("vcontainer2").append(youtubevid);
    youtubevid.attr('type','text/html');
    youtubevid.attr('width','800');
    youtubevid.attr('height','390');
    youtubevid.attr('src','http://www.youtube.com/embed/DF6QvYNHjQ');  // url/Video_Id
    youtubevid.attr('frameborder','1');       // 1 | 0
    youtubevid.attr('allowfullscreen','0');   // 1 | 0
    //end
    ----but again it didn't worked
    To be clear i want to create a page similar to www.bestofyoutube.com with a list of two or more videos in the same page...
    Any suggestions ??
    Thanks in advance

    I use code
    var youtubevid = $("<iframe/>");
    sym.$("Rectangle").append(youtubevid);
    youtubevid.attr('type','text/html');
    youtubevid.attr('width','853');
    youtubevid.attr('height','480');
    youtubevid.attr('src','https://www.youtube.com/embed/Rmin8zXzF5g?rel=0');  // url/Video_Id
    youtubevid.attr('frameborder','5');   // 1 | 0
    youtubevid.attr('allowfullscreen','0');   // 1 | 0
    I In Use button that closes the container, all is well it works!
    but if you close the container when the video started, the audio from YouTube continues to play, tell me what code to hang on the Close button to stop the video from YouTube?

  • How to Create the new Field ( Table - Row) in SAP B1

    I have a scenario in which the Purchase calculation is based on LR, so for that we have to add new field in Purchase  Document. that filed is not available in form setting.  kindly let me know how to Create a new field in Purchase document.
    Thanks

    Hi,
    I have adding new & existing forms and creating User Defined Field in row. example on adding a field in an existing Form and its corresponding to the database, including user input validations?
    I want to add a new field in the detail section ( row area ) of a Production Document, and save it to database and read it back when the document is opened.
    Thanks.
    Syed Waqar Khurshid

  • How to create several Adobe Forms ??

    Hi everybody:
    I need to create several Adobe forms in my webdynpro application, for example: take data from a table and create such forms as rows in table. Right now, my app. only is able to create 1 adobe form (with the data of the first row). It is posible or not???
    Thanks in advance!
    any idea would be util....
    Les.-

    Hi,
    Look at this eLearning Documents. This a good way to start.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/interactiveforms-elearning">SAP Interactive Forms by Adobe eLearning Catalog</a>
    Regards.
    Marcelo Ramos

  • How to create a table with 5 rows ready for user entry

    Hello All,
      Can someone kindly advise on how can I achieve the above ? Everytime the table is created, the fields are not enabled for entry . I am trying to create a ytabel that consists of 8 columns. Of which 2 of them are date fields and another 2 of them are dropdown listboxes (by key).
      Thank you very much.
    from
    Kwok Wei

    Hi,
    Conside you have Valuenode which is bound to table and valueattributtes bound to Tablecolumns.
    Create a elements of the Nodetype.
    Ex: IPrivate<<ViewName>>.INodeElement ele=wdContext.create<Node>Element();
    ele.set<<Attrib1>>(Value1);
    ele.set<<Attrib2>>(Value1);
    ele.set<<Attrib3>>(Value1);
    ele.set<<Attrib4>>(Value1);
    ele.set<<Attrib5>>(Value1);
    ele.set<<Attrib6>>(Value1);
    ele.set<<Attrib7>>(Value1);
    ele.set<<Attrib8>>(Value1);
    wdContext.node<<NodeName>>.addElement(ele);
    The above statements should be in a loop so that it will add 5 rows in Table. )
    Regards, Anilkumar

  • How to create several procedures from several script files?

    Hello,
    I have several procedures for SAP HANA. Every procedure is stored in a script file. I can only use SAP HANA Studio.  How can I easily  run all script files to create all procedures on a schema? Can somebody help me?
    Best regards,
    Y.Hu

    Hi Fernando,
    Thank you very much for you explanation.
    My scripts contain native sql statements for creation stored procedures “CREATE PROCEDURE … AS BEGIN … END”. They are not objects for or from Content/package. The procedures should be created direct in a project schema.
    The option with hdbsql command line is not possible because I may not use hdbsql (unfortunately not allowed for me).
    The option all scripts into a big file is a possible option for me. The big file has only 1600 lines. But there is a  strange problem with the text “FOR” in script (please see the thread http://scn.sap.com/thread/3728741 ). Unfortunately SAP HANA Studio cannot run my big script. 
    I hope there is a solution or workaround for this problem.
    Best regards,
    Y.Hu

  • How to create an applet, with many squares inside?

    Hey,
    I'm having problems creating an applet. Heres the image I need to recreate. The drawing should scale, so that it reaches the full width and
    height of the applet.
    http://img503.imageshack.us/my.php?image=graphicsafx5.jpg
    I created a similar one (the code is below), but don't know how to modify it to create the image in the above link. Do I need a for loop? like for ( int i = 0; i < 10; ++i )
    import java.applet.Applet;
    import java.awt.*;
    public class AprilTest1 extends Applet
       public void paint(Graphics g)
            Graphics2D g2 = (Graphics2D)g;
            int width = getWidth();
            int height = getHeight();
            g2.setColor( Color.black );
            g2.fillRect( 0, 0, width, height);
            int pen_width = width/90 + 1;
            g2.setStroke(new BasicStroke(pen_width));
            g2.setColor( Color.white );
            g2.drawRect( width/4, height/4, width/2, height/2);
    }

    As CeciNEstPasUnProgrammeur said you do need a loop. You can probably make good use of the % operator inside your loop also.
    for(int i=0; i<NUMBER_OF_RECTANGLES; i++){
         if(i % 2 == 0) {
             //draw black rectangle
         } else {
             //draw white rectangle
    }Just think about what you need to do:
    -Start 1 rectangle at (0,0) and have its width and height as getWidth() and getHeight().
    -Pick an increment [this will be the 'width' of each rectangle]
    -Now for each rectangle you want to move your x and y points right and down by your increment. Moreover, you want to make your width and height smaller by your increment*2
    Essentially what I did is initialize 3 variables to 0 [say x, y, and z]. In your for loop use the % operator in an if-else block. If the loop is on an even number make a white rectangle, if the loop is on an odd number make a black rectangle. Set the x and y position to x+z and y+z respectivley. Set the height and width to getHeight()-(z*2) and getWidth()-(z*2) and then increment z by...lets say 10.
    This means on the first loop:
    x = 0
    y = 0
    width = getWidth()
    height = getHeight()
    Second loop:
    x = 10
    y = 10
    width = getWidth()-20 [10 to compensate for the shift, and 10 for the width]
    height = getHeight()-20
    Here is what I came up with - hope it helps.
    import java.applet.Applet;
    import java.awt.*;
    public class AprilTest1 extends Applet {
         private int x, y, z = 0;
         public void paint(Graphics g) {
              for(int i=0; i<10; i++){
                   if(i%2==1){
                      g.setColor( Color.white );
                      g.fillRect(x+z, y+z, getWidth()-(z*2), getHeight()-(z*2)); 
                   } else {
                      g.setColor( Color.black );
                      g.fillRect(x+z, y+z, getWidth()-(z*2), getHeight()-(z*2));
                   z += 10;
    }Any questions, feel free to ask :)

  • How to create several custom packaged kernels?

    Hi all,
    Yesterday I created my own kernel with makepkg and obtained a kernel-*.tar.gz package. After
    pacman -U kernel-*.tar.gz
    it replaced my old kernel image and (probably) libraries. I realize that this kind of action is a bit dangerous and it is preferrable to have several kernel images living happily next to each other, having lilo or grub for selecting between them.
    What should one do in order to get several packages with different kernel images so that they would not conflict?
    Thanks,
    Jan

    This was posted by orelien a little while ago.  I've adjusted it for my needs but here's the original.  It probably has to be modified to fit more of what the arch kernel looks like now.
    # $Id: PKGBUILD,v 1.20 2003/03/20 00:19:48 judd Exp $
    pkgextraver=-custom
    pkgname=kernel$pkgextraver
    pkgver=2.4.20
    pkgrel=1
    pkgdesc="The Linux Kernel"
    backup=('boot/kconfig-'$pkgver$pkgextraver)
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-$pkgver.tar.bz2
    config mkinitrd mkinitrd.conf linux-2.4.20-ptrace.patch)
    build() {
    kernel_version=$pkgver$pkgextraver
    rm -rf $startdir/pkg/*
    cd $startdir/src/linux-$pkgver
    patch -Np1 -i ../linux-2.4.20-ptrace.patch
    cp Makefile Makefile.backup
    sed "s/EXTRAVERSION =/EXTRAVERSION=$pkgextraver/" Makefile.backup > Makefile
    cp ../config ./.config
    yes "" | make config
    make dep clean bzImage modules || return 1
    mkdir -p $startdir/pkg/{lib/modules,boot,bin}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    cp System.map $startdir/pkg/boot/System.map-$kernel_version
    cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz-$kernel_version
    # cp $startdir/src/nash $startdir/pkg/bin
    mkdir -p $startdir/pkg/usr/src/linux-$kernel_version/include
    cp -a include/linux $startdir/pkg/usr/src/linux-$kernel_version/include/
    cp -a include/asm-i386 $startdir/pkg/usr/src/linux-$kernel_version/include/
    cd $startdir/pkg/usr/src/linux-$kernel_version/include && ln -s asm-i386 asm
    chown -R root.root $startdir/pkg/usr/src/linux-$kernel_version
    cd $startdir/pkg/lib/modules/$kernel_version &&
    (rm -f build; ln -sf /usr/src/linux-$kernel_version build)
    cd $startdir
    # ./mkinitrd -k "$pkgver" -o image
    install -D -m644 src/config $startdir/pkg/usr/src/linux-$kernel_version/.config
    install -D -m644 src/config $startdir/pkg/boot/kconfig-$kernel_version

  • HT4314 How to create several game center accounts using one apple id?

    I have both ipad and iphone. How can i play with my wife/son via game center?

    varjack:  I guess we're just talking about semantics at this point.  What I was saying is:  you absolutely can have multiple accounts in Game Center and still use the same Apple ID to sign in / make purchases across multiple devices - which I think was what the OP was asking.  I would call them "Game Center accounts" instead of Apple IDs because you never actually log into your device using those accounts - only Game Center.  What you are saying is that they are also Apple IDs.  Either way, the terminology is confusing.
    Suffice to say:  the OP can have multiple accounts through Game Center - one for each device - but still keep the "main" Apple ID for making purchases and sharing apps across both devices.  To do this, make a new account in Game Center for the second device.
    Luisno9:  If you're asking is it possible to merge the data from the two accounts, my guess is no.  If you're asking how to log in using only one account excusively, you could try deleting the second account (if that's possible - I haven't tried), although I'm sure you'd lose your place in the game.  Finally, if nothing else works I'd suggest only opening your apps using the same method each time to avoid the problem.  Sorry that's not more help!

  • How to create several DB sessions, in ApEx 3.0

    Hi, I need more than one DB session in ApEx 3.0.
    When I used ApEx 2.2 I can changed using dads parameter: PlsqlMaxRequestsPerSession.
    Now it doesn't work. I set it 1000, and when I test it in 3 computers, adding data in temporary table, i can see the same information in each computer.
    Best Regards, Kostya Proskudin.

    Hi gaja,
    I got a similar situation in my application.I dont know whether the solution was suitable for u.
    what i did was
    1.created a tabular form for the (master table) so that the user can create mutiple records.
    2.Created another tabular form for the (detail table).This one is a manual tabular form.And i made the (detail tabular form as a conditional display for the selected master tabular form).
    But in my case my tables has just 5-6 columns thats why i have managed with the tabular forms.If the table has more columns u cant do this using tabular forms.
    Thanks
    phani

  • How to create two or more Automated Row Fetch on 1 Page

    Hello!
    Please help me to create 2 ARF processes from 2 different tables but on one Page. Is it possible in Apex 4.0?
    Thank you!

    Hi,
    Nope, i dont think so. If you want to make a form from only one table then use ARP. If you want to develop form based on two or three tables then write a custom pl/sql process of your own and you cannot able to use ARP.
    Brgds,
    Mini
    Mark Answers Promptly

  • How to Create Passport Size Photo (many photo in a single page) using photoshop cs

    Can anyone here tell me to  create and print same photo (passport size) in a single page i mean full page will cantain my photo multiple times of same size I have printer which suports A4 size paper
    vishal verma
    Ebuzznet

    Good day!
    What are your options under Edit > Automate?
    Regards,
    Pfaffenbichler

Maybe you are looking for

  • Update just installed and now iPhoto won't open.

    The Software Update message appeared ... so I updated.  After that a message appeared that my iPhoto library would need to be updated in order to open.  Sfar ... Fine! ... This is as per usual.  It went through Upgrading Steps to 9 of 9. But now ...

  • Merging of two text files

    HI All,, I have a text file A with four fields and text file B with two fields. I wanted to club these two text files to a single text file with certain condition and that to be uploaded to a standard table through BDC. am I clear?? Please suggest me

  • Internet Explorer: Java Console Not showing

    Hello, I'm curious why my java console is not displaying when i click on it? Internet Explorer: View: Java Console and it doesn't work does anyone know why this maybe? Thank you...

  • DGCserver Message

    My weblogic Server keep on giving this message: <Jun 24, 2002 6:06:19 PM GMT+08:00> <Info> <DGCserver> <Tried to renew lease on lost reference: '286'> <Jun 24, 2002 6:07:19 PM GMT+08:00> <Info> <DGCserver> <Tried to renew lease on lost reference: '28

  • Write one Exception Object

    Hi to all. I'm trying to write an Exception object (one own written Exception "MyException") The real problem is that I don't know what's the way for MyException's object to pass to the exception process the Trowable object it builds (from message pa