Whats the purpose of  these OAWebBeanConstants.

in both the setForwardURL and ...ToCurrentPage is has
OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
OAWebBeanConstants.IGNORE_MESSAGES
after searching the manual and websites, i havent found out the purpose of these and if i can/cant remove them.
does anyone know what they are used for

When we traverse a series of pages, a series of links appears on top of page for each traversed page. Thats bread crumb.
OAWebBeanConstants.ADD_BREAD._CRUMB_YES means those links will appear.
Abdout IGNORE_MESSAGES, I am not sure. However, It seems that it deletes all messages from dialog messages (OAExceptions) from memory and if set to null, messages will persist over forward requests between two pages.
Help provided with JDeveloper has description of all these constants (In a tabular form as I remember).
Please locate this in JDev help n share here also.
Trouble, how about your original problem?
Abdul Wahid

Similar Messages

  • Whats the difference between these two queries ? - for tuning purpose

    Whats the difference between these two queries ?
    I have huge amount of data for each table. its takeing such a long time (>5-6hrs).
    here whice one is fast / do we have any other option there apart from listed here....
    QUERY 1: 
      SELECT  --<< USING INDEX >>
          field1, field2, field3, sum( case when field4 in (1,2) then 1 when field4 in (3,4) then -1 else 0 end)
        FROM
          tab1 inner join tab2 on condition1 inner join tab3 on condition2 inner join tab4 on conditon3
        WHERE
         condition4..10 and
        GROUP BY
          field1, field2,field3
        HAVING
          sum( case when field4 in (1,2) then 1 when field4 in (3,4) then -1 else 0 end) <> 0;
    QUERY 2:
       SELECT  --<< USING INDEX >>
          field1, field2, field3, sum( decode(field4, 1, 1, 2, 1, 3, -1, 4, -1 ,0))
        FROM
          tab1, tab2, tab3, tab4
        WHERE
         condition1 and
         condition2 and
         condition3 and
         condition4..10
        GROUP BY
          field1, field2,field3
        HAVING
          sum( decode(field4, 1, 1, 2, 1, 3, -1, 4, -1 ,0)) <> 0;
    [pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    My feeling here is that simply changing join syntax and case vs decode issues is not going to give any significant improvement in performance, and as Tubby points out, there is not a lot to go on. I think you are going to have to investigate things along the line of parallel query and index vs full table scans as well any number of performance tuning methods before you will see any significant gains. I would start with the Performance Manual as a start and then follow that up with the hard yards of query plans and stats.
    Alternatively, you could just set the gofast parameter to TRUE and everything will be all right.
    Andre

  • Whats the difference between these versions of photoshop?

    First of all to make things clear I want to mention this first that I lives in Pakistan and Adobe doesn't support my region so in order to buy the Adobe Photoshop CC I have to contact the authorized resellers, after contacting them and asking for a invoice proposal for Adobe Photoshop CC, they send me several invoice proposals (per user team liscense). But I just got in a trouble as these proposals are offering Photoshop CC different versions so its like kinda making me double mind, i am just confused which to buy as prices are differ too and kinda noticeable. As for making my intentions clear I also wanna mention that I am looking for Single App Liscense i mean i just wanna buy Photoshop CC thats it. But for sure its not gonna be that photography version nor student one. Also i wanna know that whats the difference between these two versions and also tell me the pros and cons.
    So please help me choose which one is better for me as I am really confused with it.
    Here are the links
    Note: You will have to translate these pages into english
    Link one:
    [65224660BA01A12] ราคาพิเศษ จำหน่าย Photoshop CC ALL Multiple Platforms Multi Asian Languages Licensing Subscription Mo…
    Link two:
    [65226001BA01A12] ราคาพิเศษ จำหน่าย Photoshop CC ALL Multiple Platforms Multi Asian Languages Licensing Subscription Mo…
    I've attached screenshots too

    The features in both of the Photoshop CC are identical, there is a difference in price because, the higher priced is the original Photoshop price, the less priced is the promotional priced Photoshop CC eligible only if you have CS3 or later version of Adobe creative suite product.
    Hope this answers your question.
    Regards
    Rajshree

  • Whats the purpose of files with the prefix .SM.gul?

    Whats the purpose of files with the prefix .SM.gul and who creates them?

    Neurobasher wrote:
    Whats the purpose of files with the prefix .SM.gul and who creates them?
    No idea, but have a look what Linc has to say about them in this thread, it may help.
    https://discussions.apple.com/thread/3358529?start=0&tstart=0
    Good Luck

  • What the difference between these functions

    hi all
    please I'd Like to know what the differnces between these function
    1-sql_code
    2-dbms_sql_code
    3-sqlcode
    thanks in advance

    Did you search in the documentation ?
    http://www.oracle.com/webapps/online-help/forms/10g/state?oldNavSetId=_&oldNavId=2&navId=2&vtTopicFile=&navSetId=_&value=1&sPhrase=&action=search&locale=&searchType=simple&phrase=sqlcode&event=update&source=
    http://www.oracle.com/webapps/online-help/forms/10g/state?navSetId=_&navId=3&vtTopicFile=f1_help/builtd_f/dbmserco.html&vtTopicId=
    Francois

  • Whats the purpose of the web.xml file?

    Hi
    What is the purpose of the web.xml fle?
    and does it have any impact on deployment?
    I get this msg when I am compiling .
    ignoring C:\JDeveloper9iRC\jdev\mywork\MIS_IntranetWS\mis_intranet\public_html\WEB-INF\web.xml; not on sourcepath
    I cannot deploy but for what reason I don't know. Am wondering if this is related at all
    Thanks

    The web.xml file is the standard deployment descriptor for a J2EE web application (or "web module" when it is part of a J2EE Application). The full details of what the web.xml is for is described in the Servlet 2.2 spec (if you're using J2EE 1.2) or the Servlet 2.3 spec (if you're using J2EE 1.3). You can download the Servlet spec from http://java.sun.com/products/servlet/download.html
    The web.xml file is used when deploying a WAR file to a J2EE app server. However the message you cite isn't indicating a deployment failure. When you get a deployment failure, you should see a message in the JDev Log Window indicating the reason for the failure. Be sure the Log Window is visible by selecting View | Log Window from the main menu.

  • Whats the purpose of the 32gb SSD that came with my u410?

    A few days ago i purchased a u410, I love it ! It came equipped with a 750gb HDD and a 32gb SSD.
    First off, what is the purpose of the small SSD?
    Second, I was thinking of performing a clean windows 8 install from a retail disk, to remove some the bloatware and such.
    Would this be a bad idea?
    Thirdly, can i install the OS to the SSD for a speed boost, and then map the other program files and user files to the HDD? Would this actually give me a speed boost?
    I have also read that maybe the SSD is for a cache drive, but i dont quite understand this concept. I have looked around for a few hours now and cant find much information on this, so i'd appreciate if someone could shed a little light on the subject.
    Thanks!!!

    The SSD is mainly used for Intel Smart Response Technology. SRT is shortly defined as using the SSD to preload program cache files in the SSD so that when you launch a program or boot Windows, you experience the speed of SSD without having the OS on the SSD. That SSD space is not enough to support the OS along with all of its Windows updates and driver updates. You can search using Google about Intel SRT and how to set it up if you are reformatting and reinstalling Windows.
    Lenovo Y470: i7-2670QM | 8 GB DDR3 1333 MHz RAM | Nvidia GeForce GT 550M | 500 GB 7200 RPM Seagate HDD | ASUS PCE-AC56 802.11ac Network Adapter | Windows 7 Professional 64-bit

  • Whats the purpose of the USB cord on the REVERE?

    I just bought the REVERE and was excited when I noticed the dual charge/USB cord. But when I tried connecting to my laptop I was informed of no drivers found. Upon further searching I read that I can't even transfer pics from phone to computer or visa verse. So really, whats the point of the USB?.

    this is from another thread, and i believe is the best response i've seen:
    Re: Transfer pictures from the LG Revere?
    Verizon4now Apr 10, 2012 10:57 AM (in response to BruceBox)
    BitPim is a program that will access the directories in your phone. You must have your phone's drivers on your computer for BitPim to work. The software on your phone may need upgraded. An LG software upgrade assistant can be found on this page also.
    Click here to download the drivers, manuals, software upgrades for your mobile device:
    http://www.lg.com/us/support-mobile/lg-LGVN150
    Download BitPim to open folders in your phone:
    http://www.bitpim.org
    Open BitPim
    Click "Filesystem"
    Click folder in the second panel
    Click "Synced"
    Click "My Pictures"
    Right click on desired photos
    click save
    it is a hassle, but the usb cord can serve a purpose. you just need the current version of the software on the phone, and the drivers for it must be installed on your pc. however, once you have the drivers installed and bitpim installed, it makes it VERY nice to be able to access the directories.

  • Whats the purpose of the AutoSupport email?

    I get an AutoSupport email from my device each week with all its tech info but whats the actual point of this email?
    Ive searched the knowledge base but that doesnt explain it.
    So does anyone actually use it?

    Hi,
    Article : http://tinyurl.com/2vkhca
    The AutoSupport email is sent to IronPort, as well as any locally configured users, and is used for troubleshooting purposes.
    You can always remove the local recipients if you'd rather not receive it.
    To configure AutoSupport:
    1. Choose System Administration > Alerts.
    2. Click Edit Settings.
    3. Enable the option "Send copy of weekly AutoSupport reports to System Information Alert recipients."
    The AutoSupport email will be sent to the recipient emails listed in the "System" column on the Alert page.
    -whardison

  • Whats the difference between these products ?

    Hi,
    can somebody tell me what's the difference between these products ?
    Support Portal - Installations and Upgrades - Entry by Application Group - AP BusinessObjects portfolio:
    -SBOP EDGE BI
    -SBOP EDGE DATA INTEGRATOR (formerly Edge Professional)
       -SBOP EDGE BI WITH DI
    -SBOP EDGE DATA MANAGEMENT (formerly Edge Premium)
       -SBOP EDGE BI WITH DM
       -SBOP DATA CLEAN. PACKAGE EDGE
    -SBOP ENTERPRISE
    Is the DATA INTEGRATOR  and/or DATA MANAGEMENT  inculded in SBOP ENTERPRISE ?
    Thank You
    Martin Sautter

    Hi,
    Normally, BOE / BI installers don't include any of those other EIM components. However, they are bundled in the 'edge' offering, which is licensed differently for smaller enterprises.
    For all DI, DS, DQM topics,  which fall under EIM family, please open a thread over here: http://scn.sap.com/community/enterprise-information-management
    Regards,
    H

  • Whats the diffrence between these two JKM's and when to use which one.

    Please tell the diffrence between these two.
    JKM Oracle Consistent o JKM Oracle Consistent (Update Date)

    Basic difference is in the requirement .
    JKM Oracle Consistent (Update Date) wants a DATE/TIMESTAMP column in the source tables(s) which will get inserted/update by the source application . ODI will capture the changed data based on this column value . Only the DELETE portion requires a trigger to keep track of deletion happening at source table(s).
    Where as JKM Oracle Consistent does not require any DATE/TIMESTAMP column in the source tables(s) . It uses triggers for keeping track of INSERT/UPDATE/DELETE happening in source .
    In terms of performance JKM Oracle Consistent (Update Date) is better as it will create littel over head on to your source system . SO if you have a DATE/TIMESTAMP column in the source tables(s) which gets inserted/update by the source application, then go for JKM Oracle Consistent (Update Date) .
    Else look for JKM Oracle Consistent .
    Thanks,
    Sutirtha

  • Whats the purpose of reason codes?

    Hi Experts,
    In many scenarios we add reason codes e.g. all the actions like terminations, new hire, rehire, change in position etc. Now our organization is adding a new reason code for termination action with reason code "termination due to LOA".  And they are calling meetings and stuff. Is it really that important of an issue. I was wondering reason code is there but is that this big of a deal. Please explain.
    Thanks,
    Rashmi

    One are is for reporting purposes.
    Also, based on the purpose code you can change which infogroup is called (feature).
    Then you don't need to maintain so many actions.
    Kirsten

  • Whats the purpose of materialized view log?whats create view log with rowi

    Why we create materialized view log ?????whats the use???
    what do you mean by "create view log with rowid"
    Regards
    Gagan

    A materialized view log stores the change vectors made to a particular table in order to allow materialized views that reference that table to be incrementally refreshed rather than re-materializing the data every time. It's a much more efficient way to refresh a materialized view.
    WITH ROWID specifies that the materialized view log should store the ROWID of a row with the change vector, which is one way of identifying which row(s) in the materialized view should be updated by which change vector. You can also use the primary key value for this.
    Justin

  • Whats the difference between these two iphone 5 model "md635ll vs md639ll"?

    i know theres alot of versions of iphone out there. I currently live in california, whats the difference between md635ll vs md639ll models?
    I currently have the md639ll one.

    My feeling here is that simply changing join syntax and case vs decode issues is not going to give any significant improvement in performance, and as Tubby points out, there is not a lot to go on. I think you are going to have to investigate things along the line of parallel query and index vs full table scans as well any number of performance tuning methods before you will see any significant gains. I would start with the Performance Manual as a start and then follow that up with the hard yards of query plans and stats.
    Alternatively, you could just set the gofast parameter to TRUE and everything will be all right.
    Andre

  • Whats the difference between these types of classes?

    What's the difference between using a "private inner class", an "anonymous inner class", and a "class that implements on itself" to create a GUI?
    Also, what's the difference between regular classes, abstract classes, and interfaces?
    I ask because I'm an excellent coder, but have trouble understanding the terminology behind the code and also explaining the code.

    hi,
    First of all your questions are beyond the scope of this forum ...
    They are much general about the java syntax of oop.
    So read tutorials about the java programming language.
    http://en.wikipedia.org/wiki/Java_syntax
    Olek

Maybe you are looking for

  • HT204266 How can I remove my credit card information from the app store?

    How can I remove my credit card information from the app store?  I would like to have an account without the credit card information. I would like to put in my credit card only when I am ready to purchase. 

  • How can we validate a XML against his external schema XSD

    Hi; I use the XML library for create my XML file, I’m extracting the data from R3 and building the XML document. I wish to validate this document against his schema XSD built by third party (government organization) before i transfer this data (xml f

  • Query regarding the process for SAP TM 9.0 Certification

    Hi Team,            I am a SAP TM consultant with an experience of more than 2 years in SAP TM. I would like to take the SAP TM 9.0 certification now. Could you please let me know the complete details for applying for this certification? Thanks in ad

  • ERROR PROGRAM PAYING CREATIVE CLOUD

    hi desde hace 10 meses que estaba pagando por mi propia Adobe y hace 4 meses que dejé de trabajar de un día para otro Adobe Premier, Adobe Media Encoder. oscurece su interfaz, y me envía un mensaje de error. DEMANDA ES MUY RARO PORQUE LA CUENTA DE PA

  • Statement failing when apostrephe

    Hi, I have a dynamic where clause as below, but it fails when the custname has any apostrephe in between, could anybody help.Thanks. vWhere := ' WHERE ' || rec-cur.ref_table_column ||' = ' || chr(39) || name_in(Custname) || chr(39) ||' '