Need to know at what point does file get copied to table

Hi.
I'm looking at the file browse page item and wanted to find out at what point does the file's data get placed in wwv_flow_files?
Does it do it automatically on page submit/refresh?

Hi Alistair,
there is no name for this process since it is not an APEX process. The mod_plsql or
PL/SQL embedded Gateway code is responsible for this. That's also the reason why
this must be configured in the modplsql's dads.conf file.
The insertion of files into WWV_FLOW_FILES is a process which you cannot
influence in an APEX environment. What you can do is coding an onSubmit process
which SELECTs the file from WWV_FLOW_FILES and inserts it into your own
table ... but the file will always take the path via WWV_FLOW_FILES
Does this help ...?
-Carsten
Oracle 11g Release 2 ist freigegeben!
http://www.oracle.com/global/de/community/index.html
SQL und PL/SQL: Tipps, Tricks & Best Practice
http://sql-plsql-de.blogspot.com

Similar Messages

  • I need to import data from a CSV file to an Oracle table

    I need to import data from a CSV file to an Oracle table. I'd prefer to use either SQL Developer or SQL Plus code.
    As an example, my target database is HH910TS2, server is ADDb0001, my dB login is em/em, the Oracle table is AE1 and the CSV file is AECSV.
    Any ideas / help ?

    And just for clarity, it's good to get your head around some basic concepts...
    user635625 wrote:
    I need to import data from a CSV file to an Oracle table. I'd prefer to use either SQL Developer or SQL Plus code.SQL Developer is a GUI front end that submits code to the database and displays the results. It does not have any code of it's own (although it may have some "commands" that are SQL Developer specific)
    SQL*Plus is another front end (character based rather than GUI) that submits code to the database and displays the results. It also does not have code of it's own although there are SQL*Plus commands for use only in the SQL*Plus environment.
    The "code" that you are referring to is either SQL or PL/SQL, so you shouldn't limit yourself to thinking it has to be for SQL Developer or SQL*Plus. There are many front end tools that can all deal with the same SQL and/or PL/SQL code. Focus on the SQL and/or PL/SQL side of your coding and don't concern yourself with limitations of what tool you are using. We often see people on here who don't recognise these differences and then ask why their code isn't working when they've put SQL*Plus commands inside their PL/SQL code. ;)

  • I am going crazy changing passwords that do not get recognized by the different services when it is time to use them, until I am asked to change the password again, until the next time I need to use it and it does not get recognized again. Is there any fi

    I am going crazy changing passwords that do not get recognized by the different services when it is time to use them, until I am asked to change the password again, starting the vicious cycle again: i need to use the password, it does not get recognized three times, then the system asks me to change it again, and again, and I am stuck!! Is there any fix for this "glitch?

    The first thing I would suggest is for you to go to the folder containing your catalog, using your system browser. There will be a folder that has the extension .lrdata. Delete that folder, and then try to start Lightroom. If that doesn't work, replace your catalog with your most recent backup.

  • Ordered Quantity does not get copied to Invoice by  DIAPI

    Hi All,
    I am stuck with an issue in Invoice creation using  DI API by code.The field Ordered Qty (DB Filed INV1.OrderedQty) does not gets copied to Invoice line from delivery lines. But while we add invoice from delivery >Copy To> AR Invoice , it gets copied to Invoice lines. This OrderedQty field is not exposed through DI API, so we cant set that field throgh code. What I do in Invoice creation code is as follows.
    SAPbobsCOM.Documents oINV;
                        oINV = (SAPbobsCOM.Documents)
                            modups.oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices);
                        oINV.CardCode = oDLN.CardCode;
                        for (int i = 0; i < oDLN.Lines.Count; i++)
                            oDLN.Lines.SetCurrentLine(i);
                            string str = oDLN.Lines.ItemCode;
                            if (i != 0)
                                oINV.Lines.Add();
                            //oINV.Lines.ItemCode = oDLN.Lines.ItemCode;
                            //oINV.Lines.Quantity = oDLN.Lines.Quantity;
                            oINV.Lines.BaseType = Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oDeliveryNotes);
                            oINV.Lines.BaseEntry = oDLN.DocEntry;
                            oINV.Lines.BaseLine = oDLN.Lines.LineNum;
                            taxcode = oDLN.Lines.TaxCode;
    if (DeliveryExpenseCount > 0)
                                for (int i = 0; i < DeliveryExpenseCount; i++)
                                    oDLN.Expenses.SetCurrentLine(i);
                                    if (i != 0)
                                        oINV.Expenses.Add();
                                    //oINV.Expenses.ExpenseCode=i;
                                    oINV.Expenses.ExpenseCode = oDLN.Expenses.ExpenseCode;
                                    oINV.Expenses.LineTotal = oDLN.Expenses.LineTotal;
                                    oINV.Expenses.TaxCode = oDLN.Expenses.TaxCode;
                                    oINV.Expenses.BaseDocEntry = oDLN.DocEntry;
                                    oINV.Expenses.BaseDocLine = oDLN.Expenses.LineNum;
                                    oINV.Expenses.BaseDocType = 15;
    int retVal = oINV.Add();
                        if (retVal != 0)
                            int lErrCode; string sErrCode;
                            modups.oCompany.GetLastError(out lErrCode, out sErrCode);
    Any help will be appreciated..
    Deepesh

    Hi Gordon,
    Thank you for your reply.But it didnt fix the problem.The only change of previous code with this one was oINV.Lines.Add() method is called in the last of the loop.But it wont fix issue. 
    Updated on 20/10/2011
    I have found the issue.The issue is causing if we update the resulting invoice's expense lines.
    If we copy the expense lines from delivery and update any line with an amount it works fine and resulting invoice has "Ordered Qty" in its lines. Code is
    for (int i = 0; i < DeliveryExpenseCount; i++)
                        oDoc.Expenses.SetCurrentLine(i);
                        if (i != 0)
                            oINV.Expenses.Add();
                        string s = oDoc.Expenses.TaxCode;
                        oINV.Expenses.TaxCode = oDoc.Expenses.TaxCode;
                        oINV.Expenses.BaseDocEntry = oDoc.DocEntry;
                        oINV.Expenses.BaseDocLine = oDoc.Expenses.LineNum;
                        oINV.Expenses.BaseDocType = 15;
                        oINV.Expenses.LineTotal = oDoc.Expenses.LineTotal;
                        if (radioButton2.Checked == true && i == 0)
                            oINV.Expenses.LineTotal = oDoc.Expenses.LineTotal + Convert.ToDouble(txtExp.Text);
    But if the delivery has no expense lines or we are adding a new expense line to the invoice while invoice creation from delivery , the resulting invoice does not have "Ordered Qty " in its lines..
    Code is
    if (DeliveryExpenseCount > 0)
                            oINV.Expenses.Add();
                        oINV.Expenses.ExpenseCode = 1;
                        oINV.Expenses.TaxCode = taxcode;
                        oINV.Expenses.LineTotal = Convert.ToDouble(txtExp.Text);
    If I try to add lines
    oINV.Expenses.BaseDocEntry = oDoc.DocEntry;
      oINV.Expenses.BaseDocType = 15;
    to the above code it may show either "Internal error" or " No matching records found".
    Is this a bug in DI API?

  • At what point does the iPhone 5 need to charge?

    At what voltage does the iPhone 5 need to charge?

    When it gets low, typically at about 10% you get a prompt.  It is a good idea to let it go completely flat once a month

  • At what point does iM 09 reputedly drop the 2nd frame of video

    Reading the boards it seems to be accepted that iM 09 drops every other frame of video in it's processing as opposed to iMHD 6 which is reputed to produce superior video quality.
    At what point in the video processing does iM 09 skip that second frame? Is the quality lost when initially transferring the video info into the program or when the edited info is transferred to iDVD for burning?

    iMovie 'drops' the frames of video footage that is in DV format upon export of the video, not import. All the frames are imported, but not used when iMovie is 'shared.'
    That is what Steve Mullen addresses in his 'fix' to get best quality with DV footage in iMovie 9. See his comments in this thread: http://discussions.apple.com/thread.jspa?threadID=1882630&tstart=0
    WAAAAY down in the comments, he says:
    +It makes no difference how you get DV into iM.+
    +All these posts about 06 miss his point -- which is that there is NO WAY to export interlaced DV from iM09 (or 08). One field is always missing so quality is always lost.+
    +Currently, for standard definition video (PAL/NTSC) iM09 will export full quality interlaced video ONLY if it is AIC. So you've got to convert DV to AIC. iM likes AIC. For example, AVCHD is always converted by iM to AIC.+
    +Bottom line -- you must edit AIC because iM will not edit either DV or AVCHD.+
    +The difference is that iM will automatically convert AVCHD during import. With DV you need to do it yourself. Of course, you need to do it correctly.+
    +And, you must export it correctly. You cannot Share to iDVD. You must Share to QT.+

  • NEED TO KNOW HOW TO VIEW .ASHX FILES

    TO LOOK AT OLD BANK STATEMENTS, I NEED TO BE ABLE TO SEE THESE FILES. AS THE WINDOW POPS UP IN THE BROWSER, IT SHOWS NOTHING BUT BLACK. I USED TO BE ABLE TO READ THESE STATEMENTS.
    DONT KNOW IF THEY CHANGED THEIR FORMAT OR I SOMEHOW CHANGE A SETTING.

    Is your Caps Lock stuck, or are you yelling?... very hard to read that way.
    http://discussions.apple.com/thread.jspa?messageID=6279197

  • All i need to know is what to search!

    I'm actually not trying to duplicate this, but it's the
    easiest way to describe it.
    I need to know what i should search in order to achieve an
    effect similar to the intro of an XBOX consol (the green floaty
    ball thing)
    I need to know how to manipulate an object so it looks like
    its round (photoshop, i bet.) and possibly spinning ( i dont know
    what it's called to create objects that can have unseen features
    like spinning a ball that has 1 on one side and 2 on the other, so
    that both numbers show up at a certain time.)
    also i would like to know how i can manipulate an object with
    an animation similar (but probably more emphasised) to the
    stretching ( i guess) one in place on the console.
    So i'm basically looking for terms that decribe what i'm
    talking about or tutorials that teach it. Helpful advise is good
    too.
    Thanks

    3d animation.

  • I have this refurbished I pod touch 4G and I just got it like a month ago. I held it in the sunlight and I spot a tiny hairline crack on the screen it's from the edge to up a little. I haven't dropped it at all. I need to know ASAP what to do

    I need to know ASAP how this will affect me what will happen over time and what should I do. I can't spend more money!

    Make an appointment at the Genius Bar of an Apple store. Explain what happened. Frequently with normal use a crack can grow causing problem with the touch function of the screen.

  • I need to know if there is anyway to get deleted notes back if i didn't back up my iPod 5g???

    does anyone know if you can retrieve deleted notes if i didnt back up my ipod? i really need anyones help at this point.

    Maybe a data recovery company can do it. Not cheap.

  • HT1751 when one copies their itunes library to an external device, does the iPad apps and other files get copied also?

    When copying iTunes files to an external device, do the Apps and other files for an iPad get copied also?

    If the instructions are followed and the ENTIRE iTunes folder is copied, then all the contents of the folder (including apps) will be copied.

  • I am replacing my Hard Drive and need to know how to xfer my files

    Hi all, and thanks for taking the time to read this. I will be upgrading my HD on my Powerbook 15 AL and wanted to know what the best way of transferring, not only the files themselves, but also all the preferences (iphoto, safari etc..) bookmarks, etc.
    I have a LaCie USB HD connected to my computer and wanted to know...if I just copy every folder to my external HD then copy it all back to the new HD (when I get it) will the applications still all run correctly? Is there anything else I need to do?
    Thanks so much

    Hey JDee - I waited a few weeks for DW 3.0.3 to be released before I was able to run it on my brand new 10.4 installation last April. What I found was astonishing 29% of my files were out of order! Some other Level 4s posted about this in The Lounge at the time, and I believe that 19% out of order was the minimum. At first I chalked it up to the amount of data I transfered from my 10.3.9 clone using Migration Assistant, but as it turned out, with every clone, I find the same thing. Same when I upgraded my HD last September (I think it was), and cloned to it from my original drive.
    So, yes, I do recommend using DW before and after every clone (before on the source, and after on the target). I don't actually know if it's necessary to do regularly with incremental backups, but doing it once in a while can't hurt.
    (BTW, How on earth did Richard Tuttle get famous? Yeesh.)

  • Reducing file size #1...what exactly does file, reduce file size do?

    Questions on reducing a pages to pdf file size…I will post each question seperatly.
    1) I was surprised to see page reduce file size take it from 50 megs to 20 megs…when I looked at a large jpeg file, its size went form 230k to 70k, but the entire image (not just the visible part after the mask) was there (I was hoping it would crop to the mask).
    I am curious, what exactly is reduce file size doing?
    Is it applying a quartz filter that I can control through colorsync (I think not)?
    Thanks, bob

    You will need to test the results, but I suspect it is definitely lowering the resoltion to either screen resolution (72dpi) or double (150dpi) and upping the compression of the .jpegs.
    In contrast to the Quartz filters, the results from file reduction in Pages is disappointing with a hefty loss of quality for not so much file reduction.
    I would work with known distiller settings in Acrobat Pro for a better result.
    Peter

  • I need to know how to import xml files into indesign cs6.

    My client wants to send me xml text files to import into Indesign for a multi-page publication. I don't have a clue where to start. Can you point me to a tutorial that would help me figure this out?
    I have a sample file that looks like this:
    <?xml version="1.0"?>
    <providers>
      <provider>
        <name>Bow Valley College</name>
        <description>Putting the Community back in college&#x2026;in the Bow Corrid
    ANY TIME, ANY PLACE, ANY PATH, ANY PACE LEARNING.
    Designated as the comprehensive community college for Calgary &amp; its
    surrounding region, Bow Valley College offers you learning opportunities
    through flexible delivery options, including classrooms, online or self
    paced modules. Whether you are taking a course for interest, to enhance
    your career skills or to finish high school you have access to all of the
    traditional Bow Valley College student supports.
    Visit our website [2] or come see us at our Canmore campus.
    BOW VALLEY LEARNING COUNCIL MEMBER.
    Links:
    [1] http://www.bowvalleycollege.ca/bow-corridor.html
    </description>
        <contact_information>Canmore Campus
    Provincial Building, 800 Railway Ave.
    Canmore, AB&#xA0; T1W 1P1
    OFFICE HOURS: 8:30am - 4:30pm, Monday - Friday (except from 12 - 1pm)
    PHONE: (403) 678-3125
    FAX: (403) 678-3127
    BANFF CAMPUS: Lower Level, Banff YWCA, 102 Spray Ave., Banff (ONLY OPEN
    WHEN COURSES OFFERED).&#xA0;</contact_information>
        <email>[email protected]</email>
        <website>www.bowvalleycollege.ca/bow-corridor</website>
        <registration_information>Cancellation policy: Once your course has begun no refunds or credits will
    be given. Compassionate grounds may be considered with official
    documentation. There are no refunds, transfers, or credits if you cancel
    within one week of the course start date.
    BY PHONE: (403) 678-3125. Payment by Visa or Mastercard
    IN PERSON: Canmore Campus, Provincial Building, 800 Railway Ave., Canmore.
    Payment by cash, Visa or Mastercard.
    &#xA0;
    FUNDING ASSISTANCE&#xA0;MAY BE AVAILABLE FOR THOSE ON A LOW INCOME ON SOME
    COURSES. PLEASE ASK FOR MORE INFORMATION.</registration_information>
        <courses>
          <course>
            <title>Computer Basics/Windows 7 - Instructor led, Canmore</title>
            <description>An instructor will lead the class through the basic features of Microsoft
    Windows, the Internet and Email. Find out how to start programs, create,
    save and organize your files and use the online help feature. You&#x2019;ll also
    get an introduction to surfing the internet and setting up an email
    account. This course is designed for those with little or no computer
    experience &#x2013; and is still our most popular course. 18 HR COURSE.</description>
            <schedule_entries>
              <entry>
                <date>Mon 6:30 - 9 pm, Oct 7 - Dec 2</date>
                <date>Thu 6:30 - 9 pm, Oct 10 - Dec 5</date>
              </entry>
            </schedule_entries>
          </course>
          <course>
            <title>Word 2010 Introduction - Self-paced</title>
            <description>Explore the basics of Microsoft Word to produce professional letters and
    documents. This course guides you through the effective use of the Word
    Ribbon and Quick Access Toolbar. You&#x2019;ll learn how to efficiently edit,
    move and copy text; manipulate fonts; apply bullets and numbering; borders
    and shading; insert and re-size Clip Art; enter headers and footers; insert
    page numbers; set alignment and indents; and change page settings. You&#x2019;ll
    learn to use the AutoCorrect feature and finish documents using the
    spelling, thesaurus and grammar features.
    Self-paced, 18 hr course.
    Prerequisite recommended: Computer Basics or equivalent experience.</description>
            <schedule_entries>
              <entry>
                <date>Mon 7:30 - 9 pm, Oct 7</date>
                <date>Thu 7:30 - 9 pm, Dec 5</date>
              </entry>
            </schedule_entries>
          </course>
          <course>
    AND SO ON...FOR 64 PAGES WORTH OF CONTENT
    HELP!!!
    SGAREN

    Hello Sally,
    First, I have only heard/read good things about the book Steve recommends. It is on my to buy list one day. Been awaiting a long deserved vaction to pick it up to read.
    I approach XML files pretty much like I do any text file I am sent in that I will import or copy/paste a text file into a frame in ID and begin setting my styles. With XML, though, I first clean it up, move closing tags up to their logical close lines, remove spurious codes that mean something in HTML but don't necessarily belong in the XML file (like &#x2019 which is an apostrophe so I do a search and replace. But for &#xA0; which is a non-breaking space I simply search and replace with a regular space in general), and make sure the XML validates.
    Validation is much like making sure an HTML page is formed properly. I use an XML editor (XML BluePrint) and a text editor (UltraEdit) for these tasks. If I had to only have one or the other, I suppose the XML editor is what I would use.
    I always show the import options when I import the XML and make sure that I link to the file.
    So once a sample of the XML is on a page in ID (via File | Import XML), I highlight text within a tag, say like in your example above, the Providor name, and make it like I want and then create a new style. I generally name the styles as per the XML tag. Later on, that makes mapping tags to styles a little easier.
    Once I set up all the styles preliminarily, I map the tags to styles. You can do that either via the Tags palette or via the Structure Pane that will appear once the XML is imported. In both cases, it is found via the flyout menu at the top right of their respective windows.
    After mapping my styles to the tags, I select the root element in the Structure Pane (the topmost element. In your sample above it is "providors" and delete it. This removes the XML in your ID file. But the styles and tags are still present.
    Then I import the XML again and look to makes sure all the tags/elements are styled as intended. I then correct any errors/ommissions. Then...I'll delete the XML again and import the full XML file.
    I can upload what I did with your XML sample above so you can compare it to your source file if you would like. You would then see how/where I moved tags. Now, moving the tags is only "necessary" to avoid all the extra blank paragraphs. That can be accomplished by ID's search/replace, too. But I like to start out with the XML cleaned up, so I take the few minutes to do it.
    Take care, Mike

  • I need to know the names of this files that are inside Users/-username-/AppData/Local/Adobe - Please help

    I just had the absolute worst experience ever with some idiot at Adobe's chat support. He took control of my computer and started renaming files to old, without keeping the original name (original.old) like he should have.  What he was trying to do did not work. Then he just cut the connection and ran.  I am furious.  I need help to rename these back to their original name so that Adobe Creative Cloud will open.  I have Acrobat, AcroCef, AIR, CameraRaw, Color, InDesign, OOBE, the one he renamed to old and PII.  Please help. It should be a file related to Illustrator.

    Hi Daniel,
    We have some user specific preferences files under this folder.
    Kindly provide some more information so that we can try to assist you with it.
    OS version:
    Error message if any:
    Thanks,
    Atul Saini

Maybe you are looking for

  • Tab Pages in WAD

    Hi all! I'm having some problems with Tab Pages Web Item. It only allows me to reference a Analysis Web Item as Subordinate Web Item. It doesn't show any other web item already included on Tab Pages on the combo box to do the selection. I need to ref

  • ICloud does not recognize IE 9 or 10

    I am trying to sync my bookmarks with IE 10.  The iCloud control panel does not seem to recognize that IE is installed.  It works with Chrome and Firefox OK, but not IE.  I have tried downgrading to IE 9 and it still doesn't see it. Thoughts?

  • I am unable to download any files in firefox (.zip, .doc, .tar.gz, .pdf, .otf, .bin, etc)

    I am unable to open nor download any files apart from images and html. pdf.js won't work either.

  • Offline disk problem in aperture

    I have imported photos in a project as referenced files on my Macintosh HD. Now aperture doesn't find the masters and say that the disk is offline! I've tried to mount the disk in the "located referenced files.." window but it doesn't work! please he

  • Moving .rpt files from a regular Crystal project to a Web project

    I created several reports in a regular Crystal Reports project, and I would like to move these to a Web Project.  What is the best way to do this?