When can I find the APIs about htmldb_collection(wwv_flow_collection)?

When can I find the APIs about htmldb_collection(wwv_flow_collection)?When I update some members to a collection,error occurs:
' wwv_flow_collection.update_member(
p_collection_name => 'precontract',
p_c001 => :P9_PRE_DATE,
p_c002 => :P9_PRE_TIME);'
How can I deal with it?I need update some members to the colletion by then collection name.
Thanks for any help.

"lastgod god",
The HTML DB collections API is documented in Chapter 12, "Advanced Programming Techniques", in the Oracle HTML DB User's Guide.
It appears you're missing the p_seq parameter in your call to update_member. update_member() operates on a single member of a collection, hence, you need to specify which member via the p_seq parameter.
Joel

Similar Messages

  • When can i find the Oracle Portal 3.0 Casebook?

    When can i find the Oracle Portal 3.0 Casebook provided in the
    Portal online help?

    Hi
    The case book (full title: Building Advanced Portals Instructions) and its zip files for the exercises are located at
    http://portalstudio.oracle.com.
    (http://portalstudio.oracle.com/servlet/page?_pageid=478&_dad=ops&_schema=OPSTUDIO&7655_MAINPAGE_39847486.p_subid=40679&7655_MAINPAGE_39847486.p_sub_siteid=73&7655_MAINPAGE_39847486.p_edit=0)
    Hope that it is helpful.
    Cheryl

  • Where can I find the API specifications??

    Hi,
    I have been searching on the SUN website for the API specifications for J2ME. However so far I did not have any luck!
    I found the following document that can be seen from this link:
    http://java.sun.com/j2me/docs/pdf/cldc11api.pdf
    However I went to search for the Form class in this document but could not find it. Therefore I searched on Google for J2ME API, however I could not find anything either.
    Can someone please refer to me from where can I find the J2ME API specifications? Because without them I can hardly develop anything
    thanks & regards,
    sim085

    Download the sun WTK 2.2 and look in the docs folder

  • Where can i find the doc about xml config file of 9ias?

    i cant find the "Oracle9iAS Containers for J2EE User’s Guide",
    it should contains the info about the xml config file, i dont
    know why oracle launch a product without the config guide, i
    have read ton of material for learning the configuration of 9ias
    but still have not find the answer!
    i cant find it in otn:
    http://otn.oracle.com/tech/java/oc4j/content.html#technicaldocs,
    it have jsp, servlet....etc guide but no config guide, if
    someone seen it in microsoft or sun or borland website, please
    call me :)

    i mean the deployment config file in the application server like: server.xml, application.xml, web.xml, it is the J2EE standard, and can be used between all application server, tomcat, 9ias, weblogic........

  • Where can I find the API documentation for MIDP?

    on the website of sun.com there is only the API documentation of CLDC. However, the API doc of MIDP is missing. how are we supposed to program without the documentation?
    Thanx

    search jcp.org and you'll get the following:
    MIDP 1.0 http://www.jcp.org/aboutJava/communityprocess/final/jsr037/
    MIDP 2.0 http://www.jcp.org/aboutJava/communityprocess/final/jsr118/

  • Where can i find the api document of Oracle JDBC driver

    coz i find if u using stream to retrieve the Oracle LONG data field. Sometime it throwed an IOException (from the oracle.jdbc.driver.OracleInputStream). And i found there is a method in this class named resetLong(). So i wanna get some stuff to read, then i can know how does it work

    YiNing,
    Did you check this link,
    http://help.sap.com/saphelp_nw04/helpdata/en/87/3ef4403ae3db12e10000000a155106/content.htm
    Does it help? Also did you look into the Java Docs Section,
    https://help.sap.com/javadocs/index.html
    Regards
    Bhavesh

  • Where can I find the instruction about using a web hosting on my Mac?!

    I really don't understand what I need to do. It is very difficult for me. Sorry for my mistakes - I am from Russia, but living here, and sometimes I have problem with English.

    It would helpful to indicate what information from the previous postings were confusing; where you need more help. This topic area does get somewhat complex, and there are technical terms which might not translate all that well into English, much less into another language, unfortunately.
    Apple has available documentation for OS X Server, and that's a good starting point for an overview and for learning the server and its various services.
    In general, get local IP networking going, then configure the OS X Server DNS server, and only then start activating and configuring and testing other services as necessary.  Once you get the local network stable and working, only then will you want to set up the port forwarding and external (public) DNS services for remote access into your server.
    As an alternative, various Apple Stores have classes on various topics as well as specialists that can answer various questions; see what the local store is offering for OS X Server.  It can also sometimes be expeditious to have somebody set it up for you.

  • Help...where can i find the api for XSLTProcessor

    Anyone can help me on tis....
    i hav already
    import org.apache.xalan.xslt.*;
    to my program which look like tis
    //program Simpletransform.java
    //necessary import files
    import org.apache.xalan.xslt.*;
    import org.w3c.dom.Document;
    import org.xml.sax.SAXException;
    import org.apache.xerces.parsers.DOMParser;
    //Here we can load the given XML and XSL files,
    //transform the XML and store it in the output file.
    public class SimpleTransform {
    public SimpleTransform(String xmlFile, String xslFile, String outFile) throws
    java.io.IOException, java.net.MalformedURLException,
    org.xml.sax.SAXException {
    // Load the XSLT Processor.
    XSLTProcessor xsltProc = new XSLTProcessorFactory.getProcessor();
    // XSLTProcessor xsltProc = XSLTProcessorFactory.getProcessor();
    xsltProc.process(new XSLTInputSource(xmlFile),
    new XSLTInputSource(xslFile),
    new XSLTResultTarget(outFile));
    System.out.println("************* The result is in the " + outFile +
    " file*************");
    //method : main is for testing the program and just creates an instanceand tests the results.
    public static void main(String[] args) {
    try {
    SimpleTransform st = new
    SimpleTransform("example.xml", "example.xsl", "example.out");
    catch (Exception e) {
    System.out.println("Exception caught = " + e);
    public SimpleTransform() {
    but still there is error which look like tis
    C:\A>javac -classpath C:\j2sdk1.4.2\lib\xerces.java;C:\j2sdk1.4.2\lib\xalan.jar
    SimpleTransform.java
    SimpleTransform.java:6: package org.apache.xerces.parsers does not exist
    import org.apache.xerces.parsers.DOMParser;
    ^
    SimpleTransform.java:19: cannot resolve symbol
    symbol : class XSLTProcessor
    location: class SimpleTransform
    XSLTProcessor xsltProc = XSLTProcessorFactory.getProcessor();
    ^
    SimpleTransform.java:19: cannot resolve symbol
    symbol : variable XSLTProcessorFactory
    location: class SimpleTransform
    XSLTProcessor xsltProc = XSLTProcessorFactory.getProcessor();
    ^
    SimpleTransform.java:22: cannot resolve symbol
    symbol : class XSLTInputSource
    location: class SimpleTransform
    xsltProc.process(new XSLTInputSource(xmlFile),
    ^
    SimpleTransform.java:23: cannot resolve symbol
    symbol : class XSLTInputSource
    location: class SimpleTransform
    new XSLTInputSource(xslFile),
    ^
    SimpleTransform.java:24: cannot resolve symbol
    symbol : class XSLTResultTarget
    location: class SimpleTransform
    new XSLTResultTarget(outFile));
    ^
    6 errors
    CAn onyone help me???Thank you

    you are using an older version of xalan, & the latest version of xalan.jar does not have these classes anymore. to transform the given xml, use the following code :
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.Source;
    import javax.xml.transform.stream.StreamResult;
    import javax.xml.transform.stream.StreamSource;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    //Here we can load the given XML and XSL files,
    //transform the XML and store it in the output file.
    public class SimpleTransform
    public SimpleTransform() throws TransformerException, FileNotFoundException
    // Load the XSLT Processor.
    TransformerFactory tFactory = TransformerFactory.newInstance();
    Source xslSource = new StreamSource( "config/birds.xsl" );
    Transformer transformer = tFactory.newTransformer( xslSource );
    transformer.transform( new StreamSource("config/birds.xml"),new StreamResult( new FileOutputStream( "config/birds.out" )));
    System.out.println("************* The result is in birds.out file*************");
    //method : main is for testing the program and just creates an instanceand tests the results.
    public static void main(String[] args)
    try
    SimpleTransform st=new SimpleTransform();
    catch(Exception e)
    System.out.println("Exception caught = " + e);
    also, use the latest version of the xalan jar, which is xalan2.6.jar

  • Where can i find the information about how to install eclipse IDE?

    JUST AS THE TOPIC, THANKS

    The Eclipse web site doesn't seem to have a "how to install this" document -
    although I might have missed something...
    For Windows, I have always unzipped the downloaded file and just fired up the
    executable - ie it doesn't seem to need to be "installed". (If you need to you can set
    the java runtime to be used and the location of startup.jar: but the former is only
    a concern if you have multiple runtimes, and I've never needed to set the latter except
    on Linux where Eclipse is started via a link in /usr/bin or whereever).

  • My computer is saying it can't find the file 'iTunes64.msi' when I try to update or redownload iTunes how do I fix this? I've tried just about everything I can think of. I am using a dell laptop running windows 7 and have tried changing the file loca

    My computer is saying it can't find the file 'iTunes64.msi' when I try to update or redownload iTunes how do I fix this? I've tried just about everything I can think of. I am using a dell laptop running windows 7 and have tried changing the file location to run the update in all of my iTunes files as well as when I've tried reinstalling it.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • When I click "about this mac" to check on my storage, I get a number of different sections music, movies, etc. but also I get a section called backups, where can I find the files in this section?

    When I click "about this mac" to check on my storage, I get a number of different sections music, movies, etc. but also I get a section called backups, where can I find the files in this section?

    Welcome to Apple Support Communities
    All the storage in "Backups" is taken up by local snapshots, which are made automatically in all MacBooks, MacBooks Pro and MacBooks Air with OS X Lion or newer and Time Machine turned on.
    See > http://pondini.org/TM/30.html I recommend you to leave them there, because they will be removed automatically. However, if you want, you can disable or remove them manually if you want, even if there's no reason to do this. Have a look at the link above for more information

  • I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  My iBook library does not show up in iTunes.

    I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  Some of my iBooks show up in my iTunes but they are "grayed" out.  The only books that respond in iTunes are audiobooks and that's not what I'm looking for.  Is this a stupid question?

    Nevermind - I answered my own question, which is I CAN"T READ ANY BOOKS I purchased in iBooks on my MacBook Pro.  If I want to read on my mac I have to use Kindle or Nook.  Which means any book I've already purchased through iBooks has to be read on my iPad.  Kind of a drag because there are times when it's more convenient for me to read while I'm sitting with my Mac.

  • I just got a new Mac Mini, and now when I try to import photos into Lightroom, iPhoto try to load them first, then Lightroom can't find the files.  Big problem.  What to do?

    I just got a new Mac Mini, and now when I try to import photos into Lightroom, iPhoto ties to load them first, then Lightroom can't find the files.  Big problem.  What to do?

    Simple:
    File -> Export to get your photos out of the iPhoto Library. In the Export dialogue you can set the kind to Original and you'll get back exactly what you put in.
    Apps like iPhoto2Disk or PhotoShare will help you export to a Folder tree matching your Events.
    Once exported, you can then trash the iPhoto Library - just drag it from the Pictures Folder to the trash and empty it.
    After that, if you're entirely neurotic about it, just put the iPhoto app in the trash and empty it.
    Regards
    TD

  • Where can I find the detail document about certain method of a class?????

    Moved to correct forum by moderator
    Hi everyone,
    where can I find the detail document about certain method of a class?????
    e.g.  the class CL_GUI_ALV_GRID , when I was going through the class and looking
    at the methods, sometimes the method description is just like the method name,
    and I cannot know what the method does. 
      so, I am wondering  where I can find the detail information about the class???
    Edited by: Matt on Dec 4, 2008 11:55 AM

    Hi,
    Most of the times the SAP itself provides the documentaion of the CLASS. when you click on the METHOD name the METHOD DOCUMENTATION button you can see on the application tool bar.
    more over the names of the methods suggest what it is going to do.
    SET_ATTRIBUTE( sets the attribute)
    GET_ATTRIBUTE( gets the attribute value that is provided to the method)
    GET_CHILDNODE
    BIND_TABLE
    etc
    like this
    regards
    Ramchander Rao.K

  • When I try to open my project, where can I find the requested file 00000.mts2?

    When I try to open my project, I am asked where to find file 00000.mts2?
    I see almost all scenes in my project in color red  with the text 'media off-line'. But it is impossible to find this requested file 00000.mts2 on my computer. What can I do to solve this problem?
    Thank you for your answer.
    Hans

    Thank you. I have done what you told me. It was a long search, but at the end I was succesful. Again: thank you for your useful answer.
    Greetings,
    Hans
    Verstuurd vanaf mijn iPad
    Op 26 feb. 2015 om 00:29 heeft Peru Bob <[email protected]> het volgende geschreven:
    When I try to open my project, where can I find the requested file 00000.mts2?
    created by Peru Bob in Photoshop Elements - View the full discussion
    This is the Photoshop Elements forum.  Are you using Premiere Elements? If so, ask here:
    Premiere Elements
    By the way, if you moved your media files or they are on an external drive, you will have to relink them.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7230757#7230757 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7230757#7230757
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Photoshop Elements by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

Maybe you are looking for

  • How to determine which locale uses the specific process

    Hi, I would like to get to know which locale uses the specific process. I mean that when the process starts it should use the current system locale. Where I can check that information which locale are used by the running process? I ask because I woul

  • Drive Cache Errors in Logs

    I noticed that the same two entries in /var/log/errors are flooding my logs and I would like to know if this is an issue I can resolve or a red flag for bigger things... Jun 2 11:18:12 ghost kernel: sd 2:2:0:0: [sda] Asking for cache data failed Jun

  • Is This Supposed To Happen?

    Hello; I am getting some "mail activity" that I don't understand. When I finish writing an email, I notice that the little "MAIL ACTIVITY" bar thing starts going and reading "outgoing messages - 1 of 2" before I even send the email. I just sent like

  • SXI_Cache  and CPA Cache..

    Hi All, J2EE engine components : SLD, IR, ID, RWB, AE,Adapters(except IDOC and HTTP sender), Mapping Runtime. ABAP engine components : BPE, IE. Now pls tell me the where does SXI_Cache reside and its purpose in simple defination. Where does CPA Cache

  • Skype won't recognize my M-audio usb interface

    I am planning to offer online bass guitar lessons through skype. To accomplish this, I have an audio usb interface where I connect my bass guitar to. I can hear my bass perfectly but for some reasons, skype doesnt recorgnize any coming from my audio