Apex 4.1.0 only not paid by the option worksheet compared to point 4.1.1?

Hello

I worked on 4.1.1 earlier and was able to download data from an excel spreadsheet. Now, on a different project I 4.1.0. The 4.1.0 has the possibility to add the download of the data from the CSV etc? When you create a new application, it has the ability to load data into a table from a csv file. But do not see the wizard for adding an option to load data in the application

Thank you

In my view, that it should be.

It is listed here in version 4.1 original
http://www.Oracle.com/technetwork/developer-tools/Apex/application-express/Apex-41-new-features-459652.html

And some questions are attached to the 4.1.1 patch notes
http://www.Oracle.com/technetwork/developer-tools/Apex/application-express/411-Patchset-notes-1528994.html

Scott

Tags: Database

Similar Questions

  • ORA-20987: APEX - interactive report region does not exist in the application

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query (nPage_id number)

    return varchar2

    as

    l_report apex_ir.t_report;

    l_query varchar2 (32767).

    l_list varchar2 (32767).

    number of nRegion_id;

    number of nIR_id;

    OWA.vc_arr nm;

    VL owa.vc_arr;

    BEGIN

    SELECT region_id

    IN nRegion_id

    Of apex_application_page_regions

    WHERE application_name = "E-BRIL.

    AND page_id = nPage_id

    AND source_type = "interactive report";

    nIR_id: =.

    apex_ir.get_last_viewed_report_id (p_page_id = > nPage_id,)

    p_region_id = > nRegion_id);

    NM (1): = "DUMMY_JUST_TO_SET_UP_OWA_UTIL";

    VL (1): = 'WHATEVER ';

    OWA.init_cgi_env (nm.count, nm, vl);

    l_report: = APEX_IR. () GET_REPORT

    p_page_id = > nPage_id,

    p_region_id = > nRegion_id,

    p_report_id = > 0);

    l_query: = l_report.sql_query;

    because me in 1.l_report.binds.count

    loop

    l_list: = l_list | i||'. '|| l_report. Binds (i) .name | » ='|| l_report. Binds (i) .value;

    end loop;

    Return l_query;

    end;

    /

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    Thanks in advance.

    Reg,

    Chris

    1717220 wrote:

    Please update your forum profile with a recognizable username instead of "1717220": Video tutorial how to change username available

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query(nPage_id IN number)
    return varchar2
    as
    l_report  apex_ir.t_report;
    l_query  varchar2(32767);
    l_list  varchar2(32767);
    nRegion_id number;
    nIR_id number;
    nm  owa.vc_arr;
    vl  owa.vc_arr;
    BEGIN 
    
        SELECT region_id
        INTO nRegion_id
        FROM apex_application_page_regions
        WHERE application_name = 'E-BRIL'
          AND page_id = nPage_id
          AND source_type = 'Interactive Report';
    
        nIR_id :=
          apex_ir.get_last_viewed_report_id (p_page_id        => nPage_id,
                                            p_region_id      => nRegion_id);
    
        nm(1) := 'DUMMY_JUST_TO_SET_UP_OWA_UTIL';
        vl(1) := 'WHATEVER';
        owa.init_cgi_env( nm.count, nm, vl );
    
        l_report := APEX_IR.GET_REPORT (
                        p_page_id  => nPage_id,
                        p_region_id => nRegion_id,
                        p_report_id => 0); 
    
        l_query := l_report.sql_query;
        for i in 1..l_report.binds.count
        loop
            l_list := l_list||i||'. '||l_report.binds(i).name||'='||l_report.binds(i).value;
        end loop;
    
    return l_query;
    end;
    

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    The '0' in line 31 should be "nIR_id".

    What is the purpose of the lines 24-26?

  • Profile does not show that I have a paid subscription. Need to download programs and does not give me the option of.

    Profile does not show that I have a paid subscription. Need to download programs and does not give me the option of.

    If your cloud subscription does not appear on your account page, https://accounts.adobe.com/ , and then click Plans & products at the top, you need to contact Adobe for support hours

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">
    Don't forget to stay signed with your Adobe ID before accessing the link below

    Creative cloud support (all creative cloud customer service problems)
    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

  • Is there a way to backup the catalog only not listed in the catalog? "CATALOGUE START WITH" generates double entry.

    The version of DB is 11.1.0.7.

    The 'CATALOGUE START WITH' not only added the backup set that are not in the RMAN catalog, but also added a second copy of files that are already in the catalog.
    The files are not a second copy; they are the same file in the same directory.

    Having two copies of the catalogue, by mistake when you explicitly delete the backups.
    We must add the force clause to avoid the error.
    RMAN > delete backup FORCE tag "off site-1';

    The clause of power ignores any IO error.
    The removal is part of our regular off-site backup script, which returns a false positive error when the clause is omitted.
    I don't want the clause, in order to be informed if the backup set that are supposed to be on the disk is not here, for example, if someone had removed the files manually at the level of the BONE without using rman.

    Is there a way to backup the catalog only not listed in the catalog?
    or maybe delete the copy entry #2 of the catalog?

    Find below an example test scenario:

    RMAN > list backup tag summary "off SITE-1';
    Backup list
    ===============
    S LV TY Device Type delay #Pieces compressed #Copies Tag key
    ------- -- -- - ----------- ------------------ ------- ------- ---------- ---
    12. A DISC 11 JUNE 13 09:41:45 1 1 NO OFF SITE-1
    13. A DISC 11 JUNE 13 09:43:31 1 1 NO OFF SITE-1
    14. A DISC 11 JUNE 13 09:43:33 1 1 NO OFF SITE-1
    15. A DISC 11 JUNE 13 09:43:34 1 1 NO OFF SITE-1

    RMAN > CATALOGUE START WITH "C:\backups\offsite_disk\IBISdatabase\scheduled_offsite";
    the search for all files that match the pattern C:\backups\offsite_disk\IBISdatabase\scheduled_offsite
    ...
    cataloging done
    List of cataloged files
    =======================
    File name: C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\scheduled_offsite\06OBTJEP_1_1
    File name: C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\scheduled_offsite\07OBTJI3_1_1
    File name: C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\scheduled_offsite\08OBTJI5_1_1
    File name: C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\scheduled_offsite\09OBTJI6_1_1

    RMAN > list backup tag summary "off SITE-1';
    Backup list
    ===============
    S LV TY Device Type delay #Pieces compressed #Copies Tag key
    ------- -- -- - ----------- ------------------ ------- ------- ---------- ---
    12. A DISC 11 JUNE 13 09:41:45 1 2 NONE OFF SITE-1
    13. A DISC 11 JUNE 13 09:43:31 1 2 NONE OFF SITE-1
    14. A DISC 11 JUNE 13 09:43:33 1 2 NO OFF SITE-1
    15. A DISC 11 JUNE 13 09:43:34 1 2 NONE OFF SITE-1

    RMAN > DELETE BACKUP TAG "off SITE-1';
    List backup items
    BP key BS Pc # Cp # status Type room nom_peripherique
    ------- ------- --- --- ----------- ----------- ----------
    24 18 1 1 AVAILABLE DISK C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\06OBTJEP_1_1 < <-same file
    30 18 1 2 AVAILABLE DISK C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\06OBTJEP_1_1 < <-same file
    25 19 1 1 AVAILABLE ON THE DISC C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\07OBTJI3_1_1
    31 19 1 2 AVAILABLE ON THE DISC C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\07OBTJI3_1_1
    26 20 1 1 AVAILABLE ON THE DISC C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\08OBTJI5_1_1
    32 20 1 2 AVAILABLE ON THE DISC C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\08OBTJI5_1_1
    27 21 1 1 AVAILABLE ON THE DISC C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\09OBTJI6_1_1
    33 21 1 2 AVAILABLE ON THE DISC C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\09OBTJI6_1_1

    remove the item from backup
    = RECID C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\06OBTJEP_1_1 backup piece handle = STAMP 24 = 821470356
    remove the item from backup
    = RECID C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\07OBTJI3_1_1 backup piece handle = STAMP 25 = 821470356
    remove the item from backup
    = RECID C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\08OBTJI5_1_1 backup piece handle = STAMP 26 = 821470356
    remove the item from backup
    = RECID C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\09OBTJI6_1_1 backup piece handle = STAMP 27 = 821470357
    6 objects deleted

    RMAN-06207: WARNING: 4 items could not be removed for DISC due channels
    RMAN-06208: status do not match.  Use the OVERLAP command to set status
    RMAN-06210: list of relevant objects
    RMAN-06211: =.
    RMAN-06212: filename/Type object Handle
    RMAN-06213: --------------- ---------------------------------------------------
    RMAN-06214: part C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\06OBTJEP_1_1 of backup
    RMAN-06214: part C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\07OBTJI3_1_1 of backup
    RMAN-06214: part C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\08OBTJI5_1_1 of backup
    RMAN-06214: part C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\09OBTJI6_1_1 of backup

    Hello

    List of Files Unknown to the Database
    =====================================
    File Name: /oracle/product/10.2.0/db_2/dbs/hc_db10g.dat
    File Name: /oracle/product/10.2.0/db_2/dbs/initdb10g.ora
    File Name: /oracle/product/10.2.0/db_2/dbs/lkDB10G
    File Name: /oracle/product/10.2.0/db_2/dbs/.initTestDB.ora.swp
    File Name: /oracle/product/10.2.0/db_2/dbs/snapcf_db10g.f  
    
    Do you really want to catalog the above files (enter YES or NO)? no
    

    Here you can see the database says 'Unknown files to the Database list' and then asks to added above files. These files are of no use to the RMAN. So I went no.. But the backup in the directory file is cataloged twice already, but watch copy 1 when asked of RMAN. Probably, it might be a bug and it is advised to increase SR with oracle to resolve the problem.

    Thank you!!

  • Already purchased music does not give me the option to download

    Bought the songs awhile back, they may not appear in the history of my purchase, but when I search on the itunes store, it says 'buy' and does not give me the option to download. I bought like 350 songs and now I can only download 150 of them, only, this has started to happen after I started the free 90 day trial of apple's music, which has since expired.

    Help! I want my music back.

    They do not show in the tab purchased in the app Store on your phone for redownloading iTunes and iTunes from your computer section (click on your name / icon to the top right of iTunes then click purchased on the popup)? If they don't then check if you have hidden the cloud: mask and unmask purchases iTunes or iBooks on your Mac or PC - Apple support.

  • Netflix bought through iTunes does not give me the option 4K

    Netflix bought through iTunes does not give me the option 4K

    What, instead, have you done so far? Netflix Checked site help or a FAQ section? Contacted Netflix? If none of these give a solution contacted iTunes Support (http://reportaproblem.apple.com)?

  • hyperlink Google SOLVED calendar: create a new calendar [a Lightning does not appear in the Options]

    I downloaded TB 38, which incorporated the lightning. I want to connect Google Calendar, but say instructions select Lightning tab in Options and then file, add the new calendar. Lightning does not appear in the Options window. I have restarted Thunderbird since upgrading several times, but still no option of lightning.

    You do not connect a calendar in Google Calendar. You create a new calendar. In doing so, you select the option "on the network" and then follow the advice given by Matt to enter the address of your Google Calendar.

    At first glance it seemed to be disappointing and awkward. I had a lot of things implemented in the 'House' calendar, and given that it was not in the new calendar connected to the network, none of my existing stuff would be automatically shared.

    At the time, I started to use it, there is no obvious way to move items from one calendar to the other. One method would be to export an event to an ics file and then import it into the new calendar. I think now that if you open an event for editing, you have an option to select the schedule to record it again to.

    I don't know if the address given by Matt still works. See this: https://blog.mozilla.org/calendar/2013/09/google-is-changing-the-location-url-of-their-caldav-calendars/

    You can use Google provider if you need and then the address you use will be one such as described by Matt, but the entry point is always file | New | Calendar. Forget the Tools | Options of.

  • I've just updated to Firefox Beta 20. Not happy! The options "View Background Image" and "Image Mode" when you right-click is missing. How can I get that back?

    I've just updated to Firefox Beta 20. Not happy! The options "View Background Image" and "Image Mode" when you right-click is missing. How can I get that back?

    These entries should still be there if you right click on an image or an area with a background image.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the start safe mode window or make changes.
  • How I don't know what to uninstall if I'm not familiar with the options?

    Original title: drive full D

    How I don't know what to uninstall if I'm not familiar with the options?

    Hello

    Click Start > computer > is to see it as the size of the D: drive (how much GB)

    It is under 15-20GBs, that is the recovery partition

    The D: partition is normally the recovery partition and should not be touched by you, except to make the recovery disks from.

    For any problems with it, contact the manufacturer of your computer.

    See you soon.

  • The desktop ICONS: I use window Vista Basic in my laptop icon changes little icon real player and it is not editable by the option in their original form.

    I use window Vista Basic in my laptop icon changes little icon real player and it is not editable by the option in their original form.

    What can I do there is no virus I have AVG anti virus

    Try to rebuild the icon cache using the following: http://www.vistax64.com/tutorials/117229-icon-cache-rebuild.html.

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • How can I set the time on the toolbar of the low wing? When I click on the taskbar do a right-click and then click Properties, it does not give me the option to display the time?

    How can I set the time display on the toolbar of the low wing?  When I click with the right button on the taskbar, and click show properties, it does not give me the options to display the time?  Where should I go in windows 7 to do this?  I clicked on the date and time also, and it does give me an option to add there either. Please help.

    Thank you

    How can I set the time display on the toolbar of the low wing?  When I click with the right button on the taskbar, and click show properties, it does not give me the options to display the time?  Where should I go in windows 7 to do this?  I clicked on the date and time also, and it does give me an option to add there either. Please help.

    Thank you

    Right-click the taskbar, and then select Properties. On taskbar you of the tab, click Customize. Scroll to the clock and change the "behaviours" on it.

  • Buenas tardes, tengo el photoshop cs6 en mi pc wont is, not me appears the option of 3d, debo instalar o debo hacer extended photoshop?

    Buenas tardes, tengo el photoshop cs6 en mi pc wont is, not me appears the option of 3d, debo instalar o debo hacer extended photoshop?

    Hi urielceron,

    Could you please confirm if you have installed Photoshop CS6 extended.

    Also, please see the following link: Photoshop CS6 GPU FAQ

    Let me know if it helps.

    Kind regards
    Tanuj

  • I bought the pack, but it does not give me the option to download the full version. Just the thr trial

    I bought the pack, but it does not give me the option to download the full version. Just the trial thr. Why?

    If these solutions do not work, please contact our staff of support directly by following this link: contact Adobe customer service.

    For more information, please visit: FAQ: how to contact Adobe for support?

  • Since Acrobat Reader downloaded DC I can't sign my PDF documents. It does not give me the option more and yes I am connected. On the old version, I got no problem with clicking on "signature" and draw the area where I needed my signature, put passw

    Since Acrobat Reader downloaded DC I can't sign my PDF documents. It does not give me the option more and yes I am connected. On the old version, I got no problem with clicking on "signature" and draw the area where I needed my signature, put the password and "POOF" my signature would be there. With this new version, it won't do that or give me the option. The online help is useless. I need to explain to me how connect you as I used too?

    Hi nicholass35183848,

    I assumed that you had a digital signature created in your player application of old and whenever you use to fill out a pdf with a signature field signed you it. But in order to draw and then sign you must use Acrobat Pro DC no DC drive.

    Thank you

    Abhishek

  • Hi, I currently pay monthly to the handset Lightrrom 5/Photoshop but I need to be able to merge several images in "Merging HDR" but is not one of the options I can choose currently highlighted.  I guess I'll have to move to Lr 6 but I"

    Hi, I currently pay monthly to the handset Lightrrom 5/Photoshop but I need to be able to merge several images in "Merging HDR" but is not one of the options I can choose currently highlighted.  I guess I'll have to move to Lr 6 but I am struggling to see online how to change the plan?

    I suppose you're running a 32-bit Windows version - if PS CC 2015 is available but LR CC 2015 is not.

    Help / System Info in LR 5 and look for Application Architecture and System Architecture a few lines down in the list of information.   Something with a 32 or x 86 is 32-bit.  Something with x 64 is 64-bit.

    You will need a 64 bit OS to run LR CC or LR 6.

Maybe you are looking for

  • Turn off the problem on Satellite Pro A210

    I'm having a problem with my Satellite Pro A210, running on XP. It seems to turn off without reason. I don't think it's a problem of overheating as it can sometimes after only a few minutes of use, and can stay on the day without problem. It is as if

  • F5 and F55 Masterclass training New York City NOV 18

    All, We do for free a Master class training for the F5, F55 in New York on 18 NOV. Details below and download below To RSVP click on this link: https://www.eventbrite.com/e/F5-F55-operator-training-workshops-New-York-tickets-13932858555 Chelsea Piers

  • Hp stream13 factory reset

    I received this brand new HPSTREAM13 in the new year. What I have to do a back up for if things go haywire? I'm surfing for money and you do not need for keeping files images etc. I just need to get the laptop to the State of the Moose, when it is fi

  • Dynamic translation with re-translation

    Hello I'm trying to implement a dynamic conversion in my application using re-translation (http://developer.blackberry.com/cascades/reference/bb__cascades__qmlretranslate.html) My translations already working when you change the regional settings in

  • Signature of the activity of the BitTorrent Client shooting guard

    Hye All, I will say thank you for the answers to my previous questions. My IPS (AIP-SSM-10) alerts shooting guard caused by the / * Style Definitions * / table. MsoNormalTable {mso-style-name : « Tableau Normal » ; mso-tstyle-rowband-taille : 0 ; mso