Suggestion for APEX/HTMLDB FAQ

Hi!
Have/would you consider searching this forum for the posts that are most referenced from other posts and pulling out the answers and examples and putting them into the FAQ? Of course you should give the credit to the folks who posted the answers! I have noticed that same questions get asked alot and often the answer is a reference to another forum posting or thread. These seem to be the best practice and most usefull answers. Also alot of very good technical info is found in these referenced threads.
Just an idea. What do the rest of you think about this?
Dave Venus

Hello,
I think it's a great idea. There is a FAQ section on the APEX wiki hosted on shellprompt.net.
http://wiki.shellprompt.net/bin/view/Apex/FaqCategory
It might be a bit nicer to have it hosted there as it's a bit easier for the community to keep the information updated.
Carl

Similar Messages

  • Need EXPERT's suggestion for APEX CHART SERIES

    Hello Everyone,
    I have been trying to solve an issue with my apex line chart. The scenario is as follows:
    I have a table called revenue. revenues per year are saved in it. and revenues are generated from three sources which are also saved in the same table.
    I have made a line chart on it. works well.
    Now I have to show that if the value of one of the sources had fallen, how must have it affected the total. I made a number field that takes an estimated change value, and build my sql query with it. it works but the problem is that it changes the non-affected source too. it must change the value of the affected source only and hence the total value.
    I hope I make sense and anybody can suggest something.
    bold or I will put it this way, how can I write a select statement for a chart series so that one of the rows value does not change and the other two change. ... ?
    Edited by: Samooray92 on May 30, 2013 2:41 PM

    Samooray,
    Let's work with this question since there is more detail here than in the other one. {thread:id=2543702}
    First it's always help to know:
    Full APEX version
    Full DB/version/edition/host OS
    Web server architecture (EPG, OHS or APEX listener/host OS)
    Browser(s) and version(s) used
    And sometimes this information as well.
    Theme
    Template(s)
    Region/item type(s)
    When a question goes unanswered for a while, there is no need to reply to it or to start a new question. You can edit the original question and just add "Bump" at the bottom and save the changes. This will bump it back to the top of the question list. And by that time, you might think of additional information you can add to the question.
    Say, why would a question go unanswered? Well, easy questions and frequently asked questions with well-known answers can be answered right away. Your question seems more complicated and I don't think we have all the information we need to understand exactly what the question is.
    You are doing a "series" chart. What kind of series chart: bar, column, line? What is each series? For example, components of revenue might be 1) sales, 2) licensing revenue and 3) other. Then you might have one series for sales, a second for licensing revenue and a third for other.
    Could you mock up a trivial example on apex.oracle.com http://apex.oracle.com/pls/apex/f?p=4700:1:0::::: ?
    Regards,
    Howard

  • New suggestion for APEX Poll

    I wondered what type of people are using APEX?
    - DBA
    - Developer
    - Between the two; DBA4DEV
    - End-user
    - Manager
    - Other
    Maybe this is a good question for the next poll?
    I see myself as a DBA4DEV.

    I would clearly consider myself a professional Oracle developer, with a strong focus on web applications. I did a lot of Oracle Portal stuff, too.
    ~Dietmar.

  • Suggestion for additions and corrections to FAQ's

    The FAQ forum will constantly evolve as issues are added and updated. Since the topics are read only other than to forum workers, we wanted to give users a special topic where they can add their suggestions for additions and corrections.
    Please keep in mind that all forum workers are volunteers, they do this because they enjoy helping other users.

    Chris,
    Like I said, Im relatively new to PhotoShop and PS forum. I have researched the PS manual, PS help topics and this forum. I am not an individual that would ask a question of hard-working volunteers about a subject that I have not already researched. And yes, I know and understand what FAQs are and how they are generally presented on the web.
    Huh? The FAQ section is for administrators to add things to, not users. If you have a question, you ask in the main forum. If many people ask the same question, then the administrators add an entry to the FAQ.
    Okay if this is true, how was I able to post a message? I wasnt aware that I couldnt post a FAQ suggestion to the FAQ suggestion Forum? Hmm, maybe I missed the
    small print on that one.
    Look ... I do NOT want to create any hostility with you. You have given me some answers and I appreciate your comments. I will go back and "wade through" all of the forums to look for basic or frequent problems that may answer some frequent questions.
    Cheers!
    Dennis

  • How to avoid error "HTP 404" when working with "Google Suggest" and Apex 3?

    Hi,
    I am trying to implement the GOOGLE SUGGEST function in an APEX application (a sample of Google Suggest + APEX can be found in http://htmldb.oracle.com/pls/otn/f?p=22777:6:4312817919732414 or http://teradata.weizheng.net/2009/08/using-google-suggest-in-apex.html).
    The release of APEX is 3.2.1 and of RDBMS is 9.2.0.8 (64 bits). They are installed on a SOLARIS 9 SPARC 64-bits server, where i have an EBS 11.5.9 application. So, i´m using RDBMS and Apache of EBS 11.5.9 to work with APEX 3.2.1.
    I can see the list generated by javascript function when i type in P2_REPORT_SEARCH, but when i SELECT an item (pressing ENTER), i have got an "HTP 404 error". Looking in the logs in the apache, i have found this error:
    http://prigaudi1.sote.tasa.com.ar:8002/pls/apex/wwv_flow.accept
    [Tue Jul 26 10:12:53 2011] [error] mod_plsql: /pls/apex/wwv_flow.accept ORA-0
    wwv_flow.accept: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: AQ,OQ
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:
    I think that "AQ" and "OQ" are variables of "ac.js" javascript.
    The JAVASCRIPT procedure that is situated on HTML HEADER of PAGE 2 is :
    <script src="/i/BASE_CONOCIMIENTO/ac_google/ac.js" type="text/javascript"> </script>
    <script language="Javascript" type="text/javascript">
    function iac()
    { InstallAC(document.wwv_flow,document.getElementById
    ('P2_REPORT_SEARCH'),"","ASKTOM.incsearch_articulo","en"); }
    </script>
    The JAVASCRIPT function that is situated on HTML BODY ATTRIBUTE is:
    onLoad="iac()"
    My "INCSEARCH" procedure is described below:
    CREATE OR REPLACE PROCEDURE IncSearch_ARTICULO(qu VARCHAR2, hl VARCHAR2, js VARCHAR2,
    client VARCHAR2 default null) AS
    l_List1 varchar2(10000);
    l_Query varchar2(255);
    l_separator varchar2(10) default '';
    BEGIN
    l_Query := qu || '%';
    FOR x IN (select TIT_TOPICO,NULL AS COMPLEMENTO from BAC_TOPICO where Upper(TIT_TOPICO) like Upper
    (l_Query) order by 1)
    LOOP
    l_list1 := l_List1 || l_separator || '"' || x.TIT_TOPICO || '"';
    l_separator := ',';
    END LOOP;
    owa_util.mime_header('text/html', false);
    owa_util.http_header_close;
    htp.p('sendRPCDone(frameElement, "'|| qu ||'", new Array(' || l_List1 || '), new Array(""), new Array(""));');
    END INCSEARCH_ARTICULO;
    I think this procedure is working fine on Apache Server:
    Example:
    http://prigaudi1.sote.tasa.com.ar:8002/pls/apex/asktom.incsearch_articulo?qu=A&hl=A&js=a <enter>
    sendRPCDone(frameElement, "A", new Array("Ayuda Como crear un topico en la base de conocimiento"), new Array
    (""), new Array(""));
    I would like to know how i can solve this problem of HTP 404 and "SIGNATURE (parameter names) MISMATCH"
    Best regards,
    Sergio Coutinho

    Hi,
    Maybe i provided too much information about my problem,
    Well, i tried to implement the solution "Google Suggest" in my APEX 3.2 application, but i´m having now an "HTTP 404 error" when i select an iten in the list buided by "google suggest".
    Can anybody make a suggestion of how i could analize this error and fix it?
    Best regards,
    Sergio Coutinho

  • Please allow posting in the suggestions to Ps Win FAQ thread.

    I wanted to post in this thread: http://forums.adobe.com/thread/375803?start=100&tstart=0 in order address an easier version of the suggestion from the following post: 2. As right-clicking the tool icon of the option bar in CS5 gets the reset tool/reset all tool contextual menu, easier than going through two drop down menus to find that hidden yet useful option. But the suggestions threads is locked, nobody can post in there, and the FAQ forum is in dire need of facelift. I could work on it in my spare time, like Mathias used to do it, and as I did in the Camera Raw FAQ.

    I agree that perhaps a sticky, or similar, would be useful. I cannot recall seeing anything in the Profiles that defines a MOD/Host. In many cases, these folk are "Community Experts," but there are several exceptions.
    I generally put " 2 & 2" together, when I see that ____ has branched a thread, moved it to a sub-forum, has locked it, etc., but that is not always the case. In one particular product forum, we are blessed with several Adobe employees, who also do some "housekeeping" from time to time, so they have a MOD console, but are not active MOD's. Some tell me that in the product forum, where they spend time, there seem to be no MOD's around, or at least visible. I know that some resent any sort of touchy-feely, or the concept of a community, but having the MOD's say hello, would not be a bad idea. We have had a few retire, and they usually stopped by to say goodbye. I am sure that there were subscribers who asked, "who was that? Were they actually a MOD here?"
    In my case, the ability to PM a MOD can be very useful. Often posters will fall into the wrong forum, or especially sub-forum. As I cannot move their post to the appropriate location, I just drop a MOD a quick PM, with my suggestion for where the poster would get the most "eyes" and also quicker help. These are usually new posters, who do not read the little messages at the top of, say a FAQ sub-forum, or post with an urgent problem to the Tips & Tricks sub-forum, which is basically a repository for articles on how to do things regarding video-editing, and not really a Q & A forum. Also, I am one of the only people, who go there, as I link to the various articles. Most folk never even see that sub-forum's main page, and only the linked article. A question could well languish for months, before someone stumbled upon it - there, all a MOD needs to do is move the post out to the main forum to get views.
    I like your idea, but would anticipate a bit of push-back from some. You get MY vote...
    Glad that Adobe Admin got things sorted out for you.
    Hunt

  • Suggestions for new router/switch

    I have a wired Ethernet network in my office, and have been using a Linksys BEFSR81 router with it since installation. The following machines are connected:
    MacPro early 2009 OSX.5.7
    G5 2.0 dual OSX.5.7
    iMac flat panel 700 mHz OSX.4.11 (2 identical machines)
    HP 2300n printer
    Brother multifunction printer/fax/copier
    The router is dying and needs to be replaced. The whole network is hard wired but I could use a wireless router (e.g. Linksys WRT310) with a switch (I need at least 6-7 ports total. The selection of wired-only routers is very limited; what would people suggest for replacing the Linksys BEFSR81?

    Check these pages out first on how to install. NOTE, to look for the"GL" version, as the G, GL, GS, GX are all on the same page.
    http://www.dd-wrt.com/wiki/index.php/Installation
    http://www.dd-wrt.com/wiki/index.php/Linksys_WRT54G/GL/GS/GX
    http://www.dd-wrt.com/wiki/index.php/Index:FAQ
    For the GL, you need to flash 2 firmwares initially in the beginning.
    You first need to flash a mini generic (or micro); just go with mini, to the router first. Then after the mini is installed, flash the standard generic.
    To easily find the right versions. Go to the dd-wrt homepage, and then look for the tab that says "supported hardware". Click on that and type in: WRT54GL (which is your router name, the one I recommended). The model GL model will show up, and click on it. There you will have all the firmwares that can be used with the WRT54GL.
    There are a few different ones, but the ones you need to download are the "mini generic" AND "standard generic" (non-usb standard generic, if you're connecting through ethernet. Only if you use usb to connect to the internet then the usb version). Look at the file name to confirm.
    Flash mini first, then standard second. And you only have to do this once.
    Make sure to read through the above installation guide carefully, and just basically take your time. Some things to look out for are mainly just 2 things:
    (1) Doing 30/30/30 hard-resets before AND after flashing.
    (2) Use Internet Explorer to do the initial flash. DO NOT use firefox (maybe not even safari). This is only for the initial flash with the linksys firmware on. Once dd-wrt firmware is on, any browser will do. This is in the install guide, but basically any PC with IE will do fine. If you don't have access to a PC, you can even use the "old" IE for mac. That will work too.
    Again just take your time, read things, and double check them. It's actually a very easy process after you've done it once.
    Reply back if you need any help

  • Suggestion for future release

    Where should I post suggestions for future releases of SQL Developer or/and Data Modeler?
    Please give me a link.
    Thanx,
    Chris
    One suggestion for Data Modeler:
    In the "Model Properties" of a relational model, there should be a "scripts" folder like in the "Table Properties".
    In this script I'd like to generate some global statements for the DDL generation,
    for example:
    before (=begin of generated script): set define off; alter session set nls_numeric_characters='.,'; nls-config
    after (=end of generated script): commit; (when table inserts are used and no ddl-statement is following; otherwise you have to use 'commit' in each table-script; After the last table create (ddl-) statement there is no implicit 'commit')
    I know, that I can edit the generated script to add my statements, but if you often generate code there is a good change to forget to change the script afterwards.

    Hi,
    You can submit any feature requests at Oracle SQL Developer Exchange - https://apex.oracle.com/pls/apex/f?p=43135:1:2266866887402592:::::

  • Suggestions for forum improvements

    Wishlist (in sequence of appearence):
    <ol>
    <li> [Distinction between answeredsolved closedunsolved functionality|Suggestions for forum improvements]
    <li> [Enhance SCN search|Re: How to close a question which is not answered]
    <li> [Friends-And-Foes functionality|Re: "Kill List" suggestion;
    <li> [Metrics for quality measure|Re: How to close a question which is not answered]
    <li> [and information on the direction of the forums|Re: How to close a question which is not answered - and other improvements...]
    <li> [FAQ collection forum|Re: How to close a question which is not answered]
    <li> [An open, overall SDN suggestions site|Re: How to close a question which is not answered]
    <li> [More abuse categories|Re: How to close a question which is not answered - and other improvements...]
    <li> [Personal status of the person posting|Re: Suggestions for forum improvements]
    <li> [Improvement of formatting issues|Formatting issues in SDN postings (character limit and code tags)]
    <li> [Stricter moderation|Re: Suggestions for forum improvements]
    <ul style="list-style:circle!important;">
    <li> [Penalising whoever answers basic questions|Re: Suggestions for forum improvements]
    <li> [Cutting points/guestifying responders|Re: Suggestions for forum improvements]
    </ul>
    <li> [Visibility of number of people following a thread|Re: Suggestions for forum improvements]
    <li> [Invention of u2018honour badgesu2019|Re: Suggestions for forum improvements]
    <li> [Substitution of the points-system by:|Recognize the contributor;
    <ul style="list-style:circle!important;">
    <li>[Introduction of a secondary point-system|http://forums.sdn.sap.com/post!Re: Suggestions for forum improvements]
    <li>[Designing a u2018recognition and votingu2019 system|http://forums.sdn.sap.com/post!Re: Suggestions for forum improvements]
    <li>[Considering the honeypot system|http://forums.sdn.sap.com/post!/community [original link is broken] 9111575#9111575]
    <li>[Inventing an event driven honouring|http://forums.sdn.sap.com/post!/community [original link is broken]9135164#9135164]
    </ul>
    <li>[Bring transparency to the moderator-elevation and maintenance process|How to become a Moderator in SDN Forums;
    </ol>

    Hi Marilyn,
    Thanks a lot for the reply, it's good to see that even the not-so-polite rant postings are taken serious and get attention. I think that most of us truly appreciate the platform SAP is providing, but we're a bit tired with some of the application features/limitations. So I hope nobody takes offense when we're venting a bit...
    Waiting for more input here.
    I neither understand the <em>more input</em> (for what and by whom) nor the <em>here</em> (this thread or this forum). The missing functionality for dealing with unanswered questions seems obvious enough. At least that should be one topic that everybody agrees on. I suspect that the same applies to the rather poor <em>search capabilities</em>. Though as we can see in the forums, lots of people apparently seem to prefer to quickly shoot some questions instead of wasting their time with any research...
    Continue to convince us please.
    Is that a polite way of saying <em>keep on whining</em>? If yes, then no problem, I think we all need to do that from time to time...
    If the feedback from the community is truly important, I'd say that there should be a public system for posting bugs/feature requests on which people could vote. This should be prominently placed in the forums and would allow easier feedback. The voting feature could be used to possibly limit the bugs/requested features to look at (e.g. top ten list) and then be classified by SAP based on implementation effort (with the usual disclaimer that no feature might ever be implemented just because it's wanted). Needless to say that it should be easy to search for already existing requests, but in general I'd assume that fairly soon there would be more voting (on top requests) than posting new ones...
    To channel requests and avoid too many silly postings in this bug/feature tool one could imagine using earned <em>forum points</em> possibly as a currency for putting a value to the requests (i.e. I could vote to say if feature A gets implemented I'd pay it with N forum points, which are deducted from my account once the feature is present). I'm not sure if that is a good idea, but at least it might ensure that people who truly care about the platform enter their comments. At least it seems that often systems, which implement some artificial monetary system and try to optimize on cost, yield very good results...
    Cheers, harald

  • Change Control tools for APEX development

    I have a customer who is using APEX and would like to have change control, version, and synchronization of APEX pages...
    Basically we are talking about Configuration management capabilities

    Well, since APEX is mostly pl/sql based, the other poster's idea of SQL Developer is valid... The other items.... you are on your own for test scripts (again sql developer for the pl/sql required...)
    What it sounds like is your are wanting a oracle designer wrap-around for APEX.. Don't know what to tell you.. I would suggest you look at some type of version control system.. Subversion is a good one, MS Source Safe works too...
    Thank you,
    Tony Miller
    Webster, TX
    While it is true that technology waits for no man; stupidity will always stop to take on new passengers.

  • Regarding the inbuilt log and audit tables for APEX 4.1

    Hi,
    When we acces the Administrator login then we can view various logs like the sql commands that have been recently fired,user list for a workspace,access to each application.Where are these data stored and fetched.Also could we get the inbuilt audit and log table for APEX 4.1 ?
    Thanks and Regards

    >
    Please update your forum profile with a real handle instead of "935203".
    When we acces the Administrator login then we can view various logs like the sql commands that have been recently fired,user list for a workspace,access to each application.Where are these data stored and fetched.Also could we get the inbuilt audit and log table for APEX 4.1 ? This information is available through APEX views. See:
    <li>APEX views: Home > Application Builder > Application > Utilities > Application Express Views
    <li>Monitoring Activity Within a Workspace
    <li>Creating Custom Activity Reports Using APEX_ACTIVITY_LOG
    Note that the underlying logs are purged on a regular basis, so for the long term you need to copy the data to your own tables, as Martin handily suggests here.

  • Any suggestions for maintenance on my 2008 MBP?

    So I bought my 2.4Ghz MBP last October. It works pretty good, and I run all media software programs (Photoshop, Illustrator, Logic, Ableton Live) But after time it seems like my maching is running sluggish. I get the rainbow windmill a lot now (mainly when I'm on the internet) and it just seems to drag more....
    Can anyone lend me some SOLID methods of maintenance??? I'm not familiar with any kind of maintenance on Macs.... Your help would be appreciated Thanks!

    Kappy's Personal Suggestions for OS X Maintenance
    For disk repairs use Disk Utility. For situations DU cannot handle the best third-party utilities are: Disk Warrior; DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible. TechTool Pro provides additional repair options including file repair and recovery, system diagnostics, and disk defragmentation. TechTool Pro 4.5.1 or higher are Intel Mac compatible; Drive Genius is similar to TechTool Pro in terms of the various repair services provided. Versions 1.5.1 or later are Intel Mac compatible.
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep. Dependence upon third-party utilities to run the periodic maintenance scripts had been significantly reduced in Tiger and Leopard.
    OS X automatically defrags files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive. As for virus protection there are few if any such animals affecting OS X. You can protect the computer easily using the freeware Open Source virus protection software ClamXAV. Personally I would avoid most commercial anti-virus software because of their potential for causing problems.
    I would also recommend downloading the shareware utility TinkerTool System that you can use for periodic maintenance such as removing old logfiles and archives, clearing caches, etc.
    For emergency repairs install the freeware utility Applejack. If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the commandline. Note that AppleJack 1.5 is required for Leopard.
    When you install any new system software or updates be sure to repair the hard drive and permissions beforehand. I also recommend booting into safe mode before doing system software updates.
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    1. Retrospect Desktop (Commercial - not yet universal binary)
    2. Synchronize! Pro X (Commercial)
    3. Synk (Backup, Standard, or Pro)
    4. Deja Vu (Shareware)
    5. Carbon Copy Cloner (Donationware)
    6. SuperDuper! (Commercial)
    7. Intego Personal Backup (Commercial)
    8. Data Backup (Commercial)
    9. SilverKeeper 2.0 (Freeware)
    10. MimMac (Commercial)
    11. CloneTool Hatchery (Shareware)
    12. Clone X (Commercial)
    The following utilities can also be used for backup, but cannot create bootable clones:
    1. Backup (requires a .Mac account with Apple both to get the software and to use it.)
    2. Toast
    3. Impression
    4. arRSync
    Apple's Backup is a full backup tool capable of also backing up across multiple media such as CD/DVD. However, it cannot create bootable backups. It is primarily an "archiving" utility as are the other two.
    Impression and Toast are disk image based backups, only. Particularly useful if you need to backup to CD/DVD across multiple media.
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore.
    Additional suggestions will be found in Mac Maintenance Quick Assist.
    Referenced software can be found at www.versiontracker.com and www.macupdate.com.

  • Suggestions for settings for web HD similiar to QT Trailers

    Hi everyone,
    I'm looking for suggestions for settings for Compressor for setting up high quality
    but not to large of files....similiar to what Apple is using for the HD QT Trailers.
    Any suggestions?
    thanks

    Open one of the trailer with Quicktime and see what numbers they use, kbits/s. And read this:
    http://thedvshow.com/faq-pro/?action=article&cat_id=016001&id=764&lang=

  • Suggestions for helping us respond to your ?s

    In an effort to help us address your questions more efficiently, we'd like to appeal to our audience and make some suggestions for the content and format of the topics, and the type of information we need in the body of the message itself.
    For the content of the message, please try to include the following:
    1. Version of JDeveloper you are using.
    2. Type and Version of the server (if any). For example, Oracle 8i 8.1.6, Oracle Lite 8.1.6, OAS 4.0.8.2, Apache 2.0, etc.
    3. If the problem is on the client side, what kind of client are you using (JSP, DAC applet, Java application, Servlet, etc.)
    4. If you're getting an error, what is the error (stack trace is helpful), and what steps did you take that lead to the error. Information from the trace files for the database is helpful if the problem is with accessing an EJB/CORBA object on an 8i server.
    5. Which version of the JDK are you using (both client and server if applicable).
    6. If the problem is related to a connection please include what driver (thin, OCI) and connection type (named host, TNS, etc.) as well as details about the server you are trying to connect to.
    The more detail and specifics you can give us, the better we are able to track down the source of the problem.
    For the topics, if you can include some keywords, we can better direct the content experts to those posts. Keywords could include one or more of the following:
    Applet
    BC4J
    Connection
    DAC (for Data Aware Controls/Infobus)
    Debugging
    Deployment
    Design Time
    EJB
    JDBC
    JDK (JDK 1.2, JDK 1.3...)
    JSP
    Oracle8i
    Runtime
    Servlet
    SQLJ
    Thanks for your patience and your feedback.
    The JDeveloper Team

    Chris,
    Like I said, Im relatively new to PhotoShop and PS forum. I have researched the PS manual, PS help topics and this forum. I am not an individual that would ask a question of hard-working volunteers about a subject that I have not already researched. And yes, I know and understand what FAQs are and how they are generally presented on the web.
    Huh? The FAQ section is for administrators to add things to, not users. If you have a question, you ask in the main forum. If many people ask the same question, then the administrators add an entry to the FAQ.
    Okay if this is true, how was I able to post a message? I wasnt aware that I couldnt post a FAQ suggestion to the FAQ suggestion Forum? Hmm, maybe I missed the
    small print on that one.
    Look ... I do NOT want to create any hostility with you. You have given me some answers and I appreciate your comments. I will go back and "wade through" all of the forums to look for basic or frequent problems that may answer some frequent questions.
    Cheers!
    Dennis

  • What is limit to load csv file for Apex Utility?

    What is limit to load csv file for Apex Utility?
    How many records can I load through apex load utility?
    I am loading csv files.
    Thank you.

    Hi,
    You download the report that is displayed in APEX which is limited to 65k. There may be some way of creating a custom file based off the table rather than using APEX's built in export to csv option but I don't know of any being released. Denes produced an export to .xls option but I don't know how many rows that caters too: http://htmldb.oracle.com/pls/otn/f?p=31517:108:1512181285516724::NO:: -- I assume 65k too though.
    Mike

Maybe you are looking for

  • After effects CS6

    why dose my after effects CS6 crash

  • Queue sometimes not picking the message

    Hi, In my project from JCD I am calling jar methods when needed when I call methods with parameters it will create xml and keep in queue. And the queue has to process the message. Every thing is working fine but some times queue suddenly stops pickin

  • Applet startup screen

    Hi I have a simple question, Is the startup screen of a Java Applet replacable by a custom image or somethimng like that? I mean the screen you get when the Applet is busy loading. The one with the Java logo in the center with a 'gray-rotating' 18-po

  • User Profiles - MVP Advice Needed

    Hi I'm looking for some guidance around how to/best practice to complete full-cycle synchronization of user profile properties. Oracle HR is the source of truth for people related data. We run a synchronization to Active Directory of the people data

  • GRC 10.1 custom security policy

    On GRC Java system, I am not able to create custom security policy under UME->Configuration->Security Policy. I am able to create on all other systems except GRC and NWDI system   I it related to support pack level or facility is not available on the