Issue with implementing bookmarkeble view activity

Hie
I am using latest jdev 11g from otn and here is the scenario:
i have two jspx pages in the adfc-config name product list and view product.
On ProductList.jspx a bounded tf is dropped a region and it displays a list of products in the system. Clicking on a project subject navigates to the ViewProduct.jspx showing the selected product details. To implement this i created a set action listener on the product tiltles and set from= #{row.productId} to= #{requestScope.productId}
On the ViewProduct.jspx the bookmareble property is true and the method specified is myBean.setPage() .
Now, if i use the url http://myapp/faces/ViewProduct?productId=101 i can see setPage method is called. However, if i navigate from ProductList page to ViewProduct this method is not called. As method is not called so my page does not render properly due to some of missing initialization.
any advise please

I do not know (yet) exactly what the bookmarkable property does for a page, but I would assume it is related to the url, and whether or not people can bookmark it.
I do not see how this would relate to your code not getting initialized unless you show us your code...
(Also are you getting any errors? It did not sound like it.)
If I am off-base, then I appologize. I certainly have a lot to learn (that is why I just started reading Frank and Lynn's new book :-)

Similar Messages

  • Issue with implementing Find window

    Hi,
    I am facing an issue with implementing Find window. The find window everything is working fine, but when I am opening the form I am facing the following error
    'Error: To retrieve the Information in this block, use menu option view -> query by example -> Enter to invoke enter-query mode, then view -> Query by example > Run to run your query..'
    when I click 'Ok', it is navigating to the FInd window.
    How can I avoid the above error message?
    And also after searching, I navigate to the main window to display the records, but the 'Find' torch icon is not getting enabled, how do I that?
    Thanks,
    Ramu

    Thanks for the reply.
    Yes, I have the QUERY_FIND trigger with the code as 'APP_STANDARD.EVENT('QUERY_FIND');'
    And also 'first navigation data block ' to my result block. Now that the error is gone, But still the Find Icon is not enabled
    Please advice.
    Thanks,
    Ramu
    Edited by: Ramu Chennuri on Oct 21, 2008 8:32 AM

  • Performance issue with a Custom view

    Hi ,
    I am pretty new to performance tuning and facing a performance issue with a custom view.
    Execution time for view query is good but as soon as I append a where caluse to view query ,the execution time increases.
    Below is the view query:
    CREATE OR REPLACE XXX_INFO_VIEW AS
    SELECT csb.system_id license_id,
    cst.name license_number ,
    csb.system_type_code license_type ,
    csb.attribute3 lac , -- license authorization code
    csb.attribute6 lat , -- license admin token
    csb.attribute12 ols_reg, -- OLS Registration allowed flag
    l.attribute4 license_biz_type ,
    NVL (( SELECT 'Y' l_supp_flag
    FROM csi_item_instances cii,
    okc_k_lines_b a,
    okc_k_items c
    WHERE c.cle_id = a.id
    AND a.lse_id = 9
    AND c.jtot_object1_code = 'OKX_CUSTPROD'
    AND c.object1_id1 = cii.instance_id||''
    AND cii.instance_status_id IN (3, 510)
    AND cii.system_id = csb.system_id
    AND a.sts_code IN ('SIGNED', 'ACTIVE')
    AND NVL (a.date_terminated, a.end_date) > SYSDATE
    AND ROWNUM < 2), 'N') active_supp_flag,
    hp.party_name "Customer_Name" , -- Customer Name
    hca.attribute12 FGE_FLAG,
    (SELECT /*+INDEX (oklt OKC_K_LINES_TL_U1) */
    nvl(max((decode(name, 'eSupport','2','Enterprise','1','Standard','1','TERM RTU','0','TERM RTS','0','Notfound'))),0) covName --TERM RTU and TERM RTS added as per Vijaya's suggestion APR302013
    FROM OKC_K_LINES_B oklb1,
    OKC_K_LINES_TL oklt,
    OKC_K_LINES_B oklb2,
    OKC_K_ITEMS oki,
    CSI_item_instances cii
    WHERE
    OKI.JTOT_OBJECT1_CODE = 'OKX_CUSTPROD'
    AND oklb1.id=oklt.id
    AND OKI.OBJECT1_ID1 =cii.instance_id||''
    AND Oklb1.lse_id=2
    AND oklb1.dnz_chr_id=oklb2.dnz_chr_id
    AND oklb2.lse_id=9
    AND oki.CLE_ID=oklb2.id
    AND cii.system_id=csb.system_id
    AND oklt.LANGUAGE=USERENV ('LANG')) COVERAGE_TYPE
    FROM csi_systems_b csb ,
    csi_systems_tl cst ,
    hz_cust_accounts hca,
    hz_parties hp,
    fnd_lookup_values l
    WHERE csb.system_type_code = l.lookup_code (+)
    AND csb.system_id = cst.system_id
    AND hca.cust_account_id =csb.customer_id
    AND hca.party_id= hp.party_id
    AND cst.language = USERENV ('LANG')
    AND l.lookup_type (+) = 'CSI_SYSTEM_TYPE'
    AND l.language (+) = USERENV ('LANG')
    AND NVL (csb.end_date_active, SYSDATE+1) > SYSDATE)
    I have forced an index to avoid Full table scan on OKC_K_LINES_TL and suppressed an index on CSI_item_instances.instance id to make the view query fast.
    So when i do select * from XXX_INFO_VIEWit executes in a decent time,But when I try to do
    select * from XXX_INFO_VIEW where active_supp_flag='Y' and coverage_type='1'
    it takes lot of time.
    Execution plan is same for both queries in terms of cost but with WHERE clause Number of bytes increases.
    Below are the execution plans:
    View query:
    SELECT STATEMENT ALL_ROWS Cost: 7,212 Bytes: 536,237 Cardinality: 3,211                                         
         10 COUNT STOPKEY                                    
              9 NESTED LOOPS                               
                   7 NESTED LOOPS Cost: 1,085 Bytes: 101 Cardinality: 1                          
                        5 NESTED LOOPS Cost: 487 Bytes: 17,043 Cardinality: 299                     
                             2 TABLE ACCESS BY INDEX ROWID TABLE CSI.CSI_ITEM_INSTANCES Cost: 22 Bytes: 2,325 Cardinality: 155                
                                  1 INDEX RANGE SCAN INDEX CSI.CSI_ITEM_INSTANCES_N07 Cost: 3 Cardinality: 315           
                             4 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_ITEMS Cost: 3 Bytes: 84 Cardinality: 2                
                                  3 INDEX RANGE SCAN INDEX OKC.OKC_K_ITEMS_N2 Cost: 2 Cardinality: 2           
                        6 INDEX UNIQUE SCAN INDEX (UNIQUE) OKC.OKC_K_LINES_B_U1 Cost: 1 Cardinality: 1                     
                   8 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_LINES_B Cost: 2 Bytes: 44 Cardinality: 1                          
         12 TABLE ACCESS BY INDEX ROWID TABLE AR.HZ_CUST_ACCOUNTS Cost: 2 Bytes: 7 Cardinality: 1                                    
              11 INDEX UNIQUE SCAN INDEX (UNIQUE) AR.HZ_CUST_ACCOUNTS_U1 Cost: 1 Cardinality: 1                               
         28 SORT AGGREGATE Bytes: 169 Cardinality: 1                                    
              27 NESTED LOOPS                               
                   25 NESTED LOOPS Cost: 16,549 Bytes: 974,792 Cardinality: 5,768                          
                        23 NESTED LOOPS Cost: 5,070 Bytes: 811,737 Cardinality: 5,757                     
                             20 NESTED LOOPS Cost: 2,180 Bytes: 56,066 Cardinality: 578                
                                  17 NESTED LOOPS Cost: 967 Bytes: 32,118 Cardinality: 606           
                                       14 TABLE ACCESS BY INDEX ROWID TABLE CSI.CSI_ITEM_INSTANCES Cost: 22 Bytes: 3,465 Cardinality: 315      
                                            13 INDEX RANGE SCAN INDEX CSI.CSI_ITEM_INSTANCES_N07 Cost: 3 Cardinality: 315
                                       16 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_ITEMS Cost: 3 Bytes: 84 Cardinality: 2      
                                            15 INDEX RANGE SCAN INDEX OKC.OKC_K_ITEMS_N2 Cost: 2 Cardinality: 2
                                  19 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_LINES_B Cost: 2 Bytes: 44 Cardinality: 1           
                                       18 INDEX UNIQUE SCAN INDEX (UNIQUE) OKC.OKC_K_LINES_B_U1 Cost: 1 Cardinality: 1      
                             22 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_LINES_B Cost: 5 Bytes: 440 Cardinality: 10                
                                  21 INDEX RANGE SCAN INDEX OKC.OKC_K_LINES_B_N2 Cost: 2 Cardinality: 9           
                        24 INDEX UNIQUE SCAN INDEX (UNIQUE) OKC.OKC_K_LINES_TL_U1 Cost: 1 Cardinality: 1                     
                   26 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_LINES_TL Cost: 2 Bytes: 28 Cardinality: 1                          
         43 HASH JOIN Cost: 7,212 Bytes: 536,237 Cardinality: 3,211                                    
              41 NESTED LOOPS                               
                   39 NESTED LOOPS Cost: 7,070 Bytes: 485,792 Cardinality: 3,196                          
                        37 HASH JOIN Cost: 676 Bytes: 341,972 Cardinality: 3,196                     
                             32 HASH JOIN RIGHT OUTER Cost: 488 Bytes: 310,012 Cardinality: 3,196                
                                  30 TABLE ACCESS BY INDEX ROWID TABLE APPLSYS.FND_LOOKUP_VALUES Cost: 7 Bytes: 544 Cardinality: 17           
                                       29 INDEX RANGE SCAN INDEX (UNIQUE) APPLSYS.FND_LOOKUP_VALUES_U1 Cost: 3 Cardinality: 17      
                                  31 TABLE ACCESS FULL TABLE CSI.CSI_SYSTEMS_B Cost: 481 Bytes: 207,740 Cardinality: 3,196           
                             36 VIEW VIEW AR.index$_join$_013 Cost: 187 Bytes: 408,870 Cardinality: 40,887                
                                  35 HASH JOIN           
                                       33 INDEX FAST FULL SCAN INDEX (UNIQUE) AR.HZ_CUST_ACCOUNTS_U1 Cost: 112 Bytes: 408,870 Cardinality: 40,887      
                                       34 INDEX FAST FULL SCAN INDEX AR.HZ_CUST_ACCOUNTS_N2 Cost: 122 Bytes: 408,870 Cardinality: 40,887      
                        38 INDEX UNIQUE SCAN INDEX (UNIQUE) AR.HZ_PARTIES_U1 Cost: 1 Cardinality: 1                     
                   40 TABLE ACCESS BY INDEX ROWID TABLE AR.HZ_PARTIES Cost: 2 Bytes: 45 Cardinality: 1                          
              42 TABLE ACCESS FULL TABLE CSI.CSI_SYSTEMS_TL Cost: 142 Bytes: 958,770 Cardinality: 63,918           
    Execution plan for view query with WHERE clause:
    SELECT STATEMENT ALL_ROWS Cost: 7,212 Bytes: 2,462,837 Cardinality: 3,211                                         
         10 COUNT STOPKEY                                    
              9 NESTED LOOPS                               
                   7 NESTED LOOPS Cost: 1,085 Bytes: 101 Cardinality: 1                          
                        5 NESTED LOOPS Cost: 487 Bytes: 17,043 Cardinality: 299                     
                             2 TABLE ACCESS BY INDEX ROWID TABLE CSI.CSI_ITEM_INSTANCES Cost: 22 Bytes: 2,325 Cardinality: 155                
                                  1 INDEX RANGE SCAN INDEX CSI.CSI_ITEM_INSTANCES_N07 Cost: 3 Cardinality: 315           
                             4 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_ITEMS Cost: 3 Bytes: 84 Cardinality: 2                
                                  3 INDEX RANGE SCAN INDEX OKC.OKC_K_ITEMS_N2 Cost: 2 Cardinality: 2           
                        6 INDEX UNIQUE SCAN INDEX (UNIQUE) OKC.OKC_K_LINES_B_U1 Cost: 1 Cardinality: 1                     
                   8 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_LINES_B Cost: 2 Bytes: 44 Cardinality: 1                          
         12 TABLE ACCESS BY INDEX ROWID TABLE AR.HZ_CUST_ACCOUNTS Cost: 2 Bytes: 7 Cardinality: 1                                    
              11 INDEX UNIQUE SCAN INDEX (UNIQUE) AR.HZ_CUST_ACCOUNTS_U1 Cost: 1 Cardinality: 1                               
         28 SORT AGGREGATE Bytes: 169 Cardinality: 1                                    
              27 NESTED LOOPS                               
                   25 NESTED LOOPS Cost: 16,549 Bytes: 974,792 Cardinality: 5,768                          
                        23 NESTED LOOPS Cost: 5,070 Bytes: 811,737 Cardinality: 5,757                     
                             20 NESTED LOOPS Cost: 2,180 Bytes: 56,066 Cardinality: 578                
                                  17 NESTED LOOPS Cost: 967 Bytes: 32,118 Cardinality: 606           
                                       14 TABLE ACCESS BY INDEX ROWID TABLE CSI.CSI_ITEM_INSTANCES Cost: 22 Bytes: 3,465 Cardinality: 315      
                                            13 INDEX RANGE SCAN INDEX CSI.CSI_ITEM_INSTANCES_N07 Cost: 3 Cardinality: 315
                                       16 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_ITEMS Cost: 3 Bytes: 84 Cardinality: 2      
                                            15 INDEX RANGE SCAN INDEX OKC.OKC_K_ITEMS_N2 Cost: 2 Cardinality: 2
                                  19 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_LINES_B Cost: 2 Bytes: 44 Cardinality: 1           
                                       18 INDEX UNIQUE SCAN INDEX (UNIQUE) OKC.OKC_K_LINES_B_U1 Cost: 1 Cardinality: 1      
                             22 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_LINES_B Cost: 5 Bytes: 440 Cardinality: 10                
                                  21 INDEX RANGE SCAN INDEX OKC.OKC_K_LINES_B_N2 Cost: 2 Cardinality: 9           
                        24 INDEX UNIQUE SCAN INDEX (UNIQUE) OKC.OKC_K_LINES_TL_U1 Cost: 1 Cardinality: 1                     
                   26 TABLE ACCESS BY INDEX ROWID TABLE OKC.OKC_K_LINES_TL Cost: 2 Bytes: 28 Cardinality: 1                          
         44 VIEW VIEW APPS.WRS_LICENSE_INFO_V Cost: 7,212 Bytes: 2,462,837 Cardinality: 3,211                                    
              43 HASH JOIN Cost: 7,212 Bytes: 536,237 Cardinality: 3,211                               
                   41 NESTED LOOPS                          
                        39 NESTED LOOPS Cost: 7,070 Bytes: 485,792 Cardinality: 3,196                     
                             37 HASH JOIN Cost: 676 Bytes: 341,972 Cardinality: 3,196                
                                  32 HASH JOIN RIGHT OUTER Cost: 488 Bytes: 310,012 Cardinality: 3,196           
                                       30 TABLE ACCESS BY INDEX ROWID TABLE APPLSYS.FND_LOOKUP_VALUES Cost: 7 Bytes: 544 Cardinality: 17      
                                            29 INDEX RANGE SCAN INDEX (UNIQUE) APPLSYS.FND_LOOKUP_VALUES_U1 Cost: 3 Cardinality: 17
                                       31 TABLE ACCESS FULL TABLE CSI.CSI_SYSTEMS_B Cost: 481 Bytes: 207,740 Cardinality: 3,196      
                                  36 VIEW VIEW AR.index$_join$_013 Cost: 187 Bytes: 408,870 Cardinality: 40,887           
                                       35 HASH JOIN      
                                            33 INDEX FAST FULL SCAN INDEX (UNIQUE) AR.HZ_CUST_ACCOUNTS_U1 Cost: 112 Bytes: 408,870 Cardinality: 40,887
                                            34 INDEX FAST FULL SCAN INDEX AR.HZ_CUST_ACCOUNTS_N2 Cost: 122 Bytes: 408,870 Cardinality: 40,887
                             38 INDEX UNIQUE SCAN INDEX (UNIQUE) AR.HZ_PARTIES_U1 Cost: 1 Cardinality: 1                
                        40 TABLE ACCESS BY INDEX ROWID TABLE AR.HZ_PARTIES Cost: 2 Bytes: 45 Cardinality: 1                     
                   42 TABLE ACCESS FULL TABLE CSI.CSI_SYSTEMS_TL Cost: 142 Bytes: 958,770 Cardinality: 63,918

    Hi,
    You should always try using primary index fields, if not possible then secondary index fields.
    Even if you cannot do anything from either of the two then try this,
    Use Less distinct fields on the top.
    In your case , you can use bukrs ,gjahr ,werks on the top in the where condition..then followed by less distinct values..
    Even when you use secondary index if you have 4 fields in your sec index and you are using only two fields from the top then the index is useful only upto that two fields provided they are in sequence.

  • Issuing a redirect on View Activity at  a BoundedTaskflow (BTF)

    Dear All,
    I just wanted to find out regarding the redirect option in view activity of the taskflow.
    According to the doc:
    redirect
    Choose true to issue an HTTP redirect for a view activity request.
    Now I created a very simple use case. I created one task flow with two view definition.
    Then I have created a control flow between the two views to go back and forth.
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="test-flow-definition">
        <default-activity id="__1">view1</default-activity>
        <view id="view1">
          <page>/view1.jsff</page>
          <redirect/>
        </view>
        <view id="view2">
          <page>/view2.jsff</page>
          <redirect/>
        </view>
        <control-flow-rule id="__2">
          <from-activity-id id="__3">view1</from-activity-id>
          <control-flow-case id="__5">
            <from-outcome id="__6">gotoView2</from-outcome>
            <to-activity-id id="__4">view2</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <control-flow-rule id="__7">
          <from-activity-id id="__8">view2</from-activity-id>
          <control-flow-case id="__9">
            <from-outcome id="__11">gotoView1</from-outcome>
            <to-activity-id id="__10">view1</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <use-page-fragments/>
      </task-flow-definition>
    </adfc-config>I then drop this taskflow as a region in the page
    <af:document id="d1">
      <af:form id="f1">
           <af:region value="#{bindings.testflowdefinition1.regionModel}"
                         id="r1"/>
      </af:form>
    </af:document>My expectation is like this. When I click a command button on view1 that has an action
    going to view2, I would see a redirect happening and a new URL change.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <af:commandButton text="Goto View2" id="cb1" action="gotoView2"/>
    </jsp:root>I look at firebug and I see no HTTP 302 code either. Is there something I miss? Thanks

    Ramandeep Nanda wrote:
    Redirect does not happen it is internal forwarding.Well, yeah.. Thats what I found out too...
    I just wanted to know more about taskflow so I am checking each property and testing where I could make use of it.

  • Proformance issue with 'sid generation on activation'

    Hi Gurus,
    In our BW(NW 2004) system we are using Cognos as reporting tool, due to process chain failure at DSO level we unchecked 'sid generation on activation' and chain running successfully after that.
    unchecking will be a performance issue due to generating sid's at run time as per SAP.
    My question is as i am using Cognos in place of BEX. what are the possiblities of effecting the performance and alll?
    Please provide your valuable suggestions.
    Thanks in Advance,
    Suresh.

    Hi Suresh,
    Irrespective of what is the reporting front end you use, if you use this DSO for reporting it would generate the SID values at the runtime which will have huge impact on reporting performance. Just removing the SID generation option would temporarily fix the load issue, with quick activation of DSO but it will affect the most important area reporting performance.
    Try to solve the issue with SID generation error while activating at the BW side which could be because of the special character issues and once you fix that your process chains would load fine with a far better performance while reporting on this DSO.
    Regards,
    Mani

  • Z10 Issues with GMail Imap / Microsoft Active Exchange

    Hi,
    I have seen lots of posts coming in on here and on crackberry.com about issues with emails. But I couldn't find any posts on the issues that I am having. 
    Just purchased a new Z10, coming from a BB 9900. 
    I would like to setup my gmail account on here but I am getting unexpected results. I have tried many different ways, gmail, imap, Microsoft Exchange ActiveSync and pop3. 
    What I find different from everyone is that I have a bunch of filters set up that auto direct some emails away from the inbox and into labels (folders).  So I know things have changed from the 9900, but the way it happened on there was that a new email would show up in my unified inbox on the BB whether or not it was filtered. Then after reading it, I would have to search for it because it wouldn't actually be stored in the inbox. Which I was fine with.
    We'll have my email description setup as "Personal"
    Issues that I am having:
    Imap set up:
    - When I go from hub to my "Personal" box, it is a duplicate of my inbox. Looks the same as my inbox in mail.google.com, all nice and dandy.
    - Emails that go directly to my inbox show up nice and quick and give me a notification in the hub etc.. that an email has shown up. 
    - Now when I receive an email that is being filtered. Gmail.com has it right away in my labels. So I know it's there. I can wait the 15/30 minutes that is setup for the sync, but I never get a notification of the email. If I go to the folder (by clicking on the drop down by the email description) then it shows up there with the yellow mail saying that it's a new mail. But there still isn't a notification saying I got a new email. 
    So that's IMAP.
    M$ Exchange ActiveSync set up:
    - Initially, going straight to my personal box from the hub makes it look somewhat like what it did on my 9900. Inbox, and filtered messages all showing up in the default view. 
    - If I receive a NEW (not part of a conversation) message that is/is not being filtered it shows up in this default view and I get a notification in the hub.
    - Once I read that email, then go back to the default view. IF it is a msg in the inbox, it disappears and the only way I can find it is by going to the drop down then to the Inbox. But this seems to be random, sometimes it stays, sometimes it disappears. Also, if it gets moved directly to the inbox and I get a reply to that message I don't get a notification for a new email.
    - If the email is a filtered email, it stays in the default view. 
    - Now if I get an email that is part of a conversation to a filtered email, I don't get a notification that I have a new email, but if I go to it from the hub, it's marked as a yellow mail symbol stating that it is new. Read that email, it stays in the default view.
    So that's M$ EAS.
    Email:
    *******@gmail.com, so not a Paid Account or anything, just a regular gmail account. IMAP settings turned on and setup. 
    Hub Settings:
    Display Style: conversation
    Display order: name, subject
    display message count: on
    display new message indicator: on
    show filed messages: on
    show sent messages: off
    Download images automatically: off
    delete message confirmation: off.
    Oh when I tried the gmail setup I believe it just used the same settings as IMAP. Pop3. just a disaster, all my messages were brought in (sent/receieved) marked as unread. Won't even bother with Pop3.
    I'm not sure if I'm doing something wrong with my setups, or that this is the way it is designed. I really don't want to have to check each folder everytime to see if have a new email. And I don't want to change my gmail setup so that nothing is filtered. I thought I had solved it with the M$ EAS but with the random moving of messages to other directories, it's a no go aswell.
    If anyone has any ideas or suggestions for me it would be greatly appreciated. 
    Thanks.
    Curtis

    Hi,
    I'm the author of the article linked to above.  I appreciate the reference, but I don't think my article solves the OP's particular issues.  To date, I've not found a way to enable notifications on new content in subfolders.  I think this is a limitation in the BlackBerry 10 email client.
    Since the paint is still wet on this OS, we can expect to see some improvements in forthcoming service releases.  CalDAV for example is known by BlackBerry to be broken with Google Calendar.  No ETA to fix at present.  BlackBerry will have to address that, and soon.
    I don't yet know if OS 10 is going to gain the traction the BlackBerry needs to survive in the market.  If it does, I suspect we will see some third party email apps appearing in BlackBerry World in the future, with enhanced IMAP functionality.  There's some precedent for this and we've seen similar happen on other mobile platforms.  In any case, until BlackBerry does some email client rewrting, or an enterprising developer plugs the gap, I think the OP's niggle is going to remain.  At the time of writing, BlackBerry World is showing a White Screen of Death.  Figures.
    One thing I'd urge all Google Apps users (especially of free accounts) to bear in mind is that Google will be pulling the plug on ActiveSync in the very near future.  I've blogged about this in more detail, in a followup to my previously-mentioned post: Gmail + Google Apps on the BlackBerry Z10.
    I hope this clarifies the position, even though the reality is less than satisfactory.
    Rob

  • Issue with Windows Photo Viewer: "can't save picture because an unknown error occured"

    Hi,
    I recently installed Windows 7 RC (Build 7100). I quite often have an issue in Windows Photo Viewer when rotating an image and trying to go to the next picture. It gives me the error "Windows Photo Viewer can't save picture because an unknown error occured".
    Seperate from this issue: when I delete a picture in Windows Photo Viewer, it is still in the Windows Explorer overview of files. This did not use to be the case in Windows XP?
    Kind regards,
    Frederik

    Hi
    SOSv2 ,
    This should be fixed in Windows 7 RTM.
    Also, you can install Windows Live Photo Gallery to view and rotate pictures as well. To download it, please click
    HERE . For more information about Windows Live Photo Gallery, you can
    a question on
    Windows Live Answers
    In addition, please understand that Nikon RAW images (and most Canon) do not support rotate functionality in Windows Photo Viewer, and thus rotate is
    disabled. To rotate those types of images, the user will need to use an image editing program that fully supports their RAW codec.
    Regards,
    Linda
    I am using Win 7 x64 Ultimate RTM and still have this problem (with JPG's dumped from my Nikon to the hard drive).  Doesn't do it on every one that I rotate, but still very annoying.  Is there a fix?

  • OLM SCORM content issue with FLash Player 9 Active X version 9.0.115

    Hi,
    Does any one have issue completing SCORM online content (flash object) via OLM with FLash Player 9 Active X version 9.0.115 using IE? I have same problem also via mozilla.
    I have two computer one with 9.0.45 and one with 9.0.115. I can complete the online course with version 9.0.45 without any issue but the status always incomplete with version 9.0.115. When using 9.0.115 it seem there is not communication between OLM player and the application (nothing showup in the java console).
    I checked Adobe website and this is what they quoted:
    ActionScript 2 getURL() and ActionScript 3 navigateToURL()calls such as getURL("javascript:myFunction();") fail with live web-server content if the HTML and SWF are in separate domains. This issue appears in Internet Explorer versions 6 and 7.

    Dharma,
    I just tried a piece of flash content using 9.0.115 on iLearning and had no issues, and this should be no different than OLM.
    Is the SCORM Adapter set up and in use with debugging turned on? Do you see information in the java console when running the content using the other version of Flash?

  • Issue with Reset Password from Active Directory Integration Pack

    I seem to be having some issues with a subscription in the Reset Password activity from the Active Directory Integration Pack. The "User Password" field refuses to take a value from a subscription provided earlier in a Generate Random
    Text activity. As you will see in the screenshot below, when the Reset Password activity runs, the User Password value is blank.
    Any idea why this might be happening? It looks like a possible bug with the Active Directory Integration Pack.

    Hi John,
    I think this is not a bug, this should be by design because the password is a secure string. If you look for the Published data for Reset User Password activity at
    http://technet.microsoft.com/en-us/library/hh553463.aspx it is not listed there as well.
    If you need the the string (e.g. to send it via email) use the
    data from the "Generate Random Text" Activity.
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • Issue with calling a  method activity before page render

    Hi All,
    I am using Jdeveloper 11.1.1.7.
    I am trying to achieve the approach defined in "1.b. Calling a Method in Backing Bean:" elaborated in the blog - https://blogs.oracle.com/adf/entry/an_epic_question_how_to
    As illustrated, I defined a default method activity (binding to a method in managed bean) and a view activity activity in a bounded task flow.
    When I launch the application (running the view activity), following error is encountered -
    oracle.adf.controller.metadata.ParsingException: ADFC-02020: Cannot find default activity 'check' in task flow definition '/WEB-INF/task-flow-definition.xml#task-flow-definition'.
        at oracle.adfinternal.controller.metadata.model.xml.XmlUtil.createAndLogParsingException(XmlUtil.java:474)
        at oracle.adfinternal.controller.metadata.model.xml.MetadataResourceXmlImpl.parseTaskFlowDefinition(MetadataResourceXmlImpl.java:507)
        at oracle.adfinternal.controller.metadata.model.xml.MetadataResourceXmlImpl.parse(MetadataResourceXmlImpl.java:361)
        at oracle.adfinternal.controller.metadata.provider.mds.MdsMetadataResourceProvider.parseResource(MdsMetadataResourceProvider.java:748)
        at oracle.adfinternal.controller.metadata.provider.mds.MdsMetadataResourceProvider.getMDSCachedResourceOrParse(MdsMetadataResourceProvider.java:732)
    Please advise.
    Best Regards,
    Ankit Gupta

    Hi Cvele, Timo,
    Many thanks for the suggestions.
    To avoid confusions, I have created a new application altogether. It seems that the method call is not being called when I run the page.
    For your reference I have attached the task flow definition and method code below -
    Task Flow Definition
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="task-flow-definition">
        <default-activity id="__1">methodCall1</default-activity>
        <managed-bean id="__11">
          <managed-bean-name id="__13">TestBean</managed-bean-name>
          <managed-bean-class id="__10">TestBean</managed-bean-class>
          <managed-bean-scope id="__12">request</managed-bean-scope>
        </managed-bean>
        <view id="view1">
          <page>/view1.jspx</page>
        </view>
        <view id="exception">
          <page>/exception.jspx</page>
        </view>
        <method-call id="methodCall1">
          <method>#{requestScope.TestBean.checkURL}</method>
          <return-value id="__15">#{TestBean.checkURL}</return-value>
          <outcome id="__14">
            <to-string/>
          </outcome>
        </method-call>
        <control-flow-rule id="__2">
          <from-activity-id id="__3">methodCall1</from-activity-id>
          <control-flow-case id="__5">
            <from-outcome id="__6">go</from-outcome>
            <to-activity-id id="__4">view1</to-activity-id>
          </control-flow-case>
          <control-flow-case id="__8">
            <from-outcome id="__9">error</from-outcome>
            <to-activity-id id="__7">exception</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
      </task-flow-definition>
    </adfc-config>
    Method Code
    public String checkURL() {
    // Add event code here...
    System.out.println("method activity called");
    return "error";
    Best Regards,
    Ankit Gupta

  • Issue with Adobe Content Viewer

    Don't know if anyone else has this issue. Am using CS5.5 and just installed Air 2.6 (to see if that solves it) I am new to the DPS, but know my way round InDesign, I am experimenting with the creation of pages. They upload fine into the Folio builder but when I click on Preview in the Folio Builder window i get the below screen and nothing else after it Launches.
    I am taking files intended for Print and copying them into the new pages. However I have converted all the artwork to RGB, the images are jpegs. Is there any chance there could be an issue with that somehow?
    Am I doing anything wrong in the creation of the files? I have followed the instructions and yet I still get this even with the tutorial assets.
    Any ideas?
    Thanks
    Ian

    Hi, Ian:
    Have you got it to work now? If you'd like, you can share the folio with me ([email protected]) and I can give it a try.
    Thanks!
    Jianlan

  • Issues with iMovie in viewing

    I am getting weird playback issues with movies I've added to a project. My movie is like 40 minutes long. When I try to watch the finished product or put finishing touches on it, after hitting space bar the video skimmer moves, but the video preview stays still. I found the video in the library and same thing.
    On a reboot or restart the program it works again normally then acts funky after a few minutes.
    I didn't change my library, it just isn't previewing and I'm frustrated thinking the video is bad or something.
    Has anyone had this buggy issue on previewing a movie in the screen or while skimming in your library or project that the video displays funny.
    Brian

    Ouch. I'm having the same problem. It is VERY annoying. Was hoping for a solution on here.
    I find it is worse when I import 1080p from my camera. When I use 1080p, I can't even adjust the speed of large cuts (60 seconds) because iMovie will just freeze up on playback. Restarting iMovie will revert the clip back to normal speed but the same bug occurs when I try to adjust speed. I find I can break a long clip up into short sections (which makes no sense as iMovie optimizes the entire clip) and adjust speed on 5 second segments without and issue.
    The playback is the most annoying. I don't know if it is worth exporting a movie, which takes time in HD, if it doesn't work on preview.
    ANY fix for this?

  • Issue with implementing SAP note 1486147.

    I am trying to implement SAP note  1486147. My software component is SAP_APPL and release is 603. But the prerequisite notes (1148361 and 1339658) are  getting incompletely implemented with activation errors because of which I am not able to implement the main note 1486147.
    I have created all the DDIC elements as mentioned in the note.Also created the smartform. Has anyone successfully impemented this note? Is there anything else to be done other than what is mentioned in the note?

    Hi,
    Resolved the issues. Before applying the note i had made manual corrections in J_1IEWT_CERT because of which my system was not implementing the note. I reversed back all manual changes i had made and then applied the note. It got successfully implemented.
    Edited by: lyviaCardoza on Sep 3, 2010 7:24 AM

  • Issues with native Android viewer

    Hello,
    during use of new native viewer few new questions/issues beside those already discussed arise. Here are my few notes:
    - video - stop on last frame - it's not working (folio v29)
    - library is quite often "losing" folios, from for example 8 folios i can see just 2. Only way how to fix this is log-out and then again log-in. very unpleasant .
    - HTML content fitted pixel perfect to embedded HTML container via iframe in InDesign and tested on iPad is not shown correctly on Android. I would like to prevent setting "fit to scale" in Folio Overlay because of unexpected errors on iPad (iframe is scaled to cca 1/4 of size of box, even if iframe and box have exact measurements)
    Martin

    Hello David,
    - regarding names of folios: now i'm speaking about Adobe Content Viewer. Now i need to create icon for each even testing folio just to be able to distinguish between them.
    - version is 29.3, connection is stable and fast, broadband with wifi. Even after few minutes nothing happens, even if i quite a app, lock and unlock device and so one. Same behavior on two devices which i have on table just now
    - video seems not to be solved and seems to be an a issue for me. We are using video for covers now on three platforms - iOS/Android/Windows. Our workflow is using Handbrake, because of price, easy of use and speed and possibilities of settings. Now i took two videos, one standard c/a 720x520 and one full screen 768x1024 with same parameters except for dimensions and results are quite a different. Smaller will start automatically quite nice and play well, second one - and this i don't understand at all - automatically started after few minutes and plays c/a one frame per 5 seconds. I can send you video. I don't understand this :(.
    HTML - yes, i would like to not use this checkbox, but seems that there will be no other way.
    Thanks

  • Issues with PCI-e drivers activating in XP Pro (system keeps crashing)

    Hi,
    I've just put together a new system:
    580W Hiper PSU
    MSI X1950PRO 256MB
    MSI K9A Platinum
    2GB Patriot Extreme Performance DDR2 PC6400 (Eased Latency Memory)
    Athlon 64 x2 3800 am2
    The problem I am experiencing is that I cannot get the ATI drivers to load into the OS without causing a crash.  After looking at the error code that XP spits out when the crash occurs it seems to happen right when the video card driver is loaded at which point it blue screens and gives me a memory error.  I know absolutely nothing about overclocking but I have tried everything I can think of with this RAM and cannot seem to figure out what the problem could be.  This is the second card I am on so I know it's not the video card.  I have tried the memory in different slots, tried one stick at a time, tried using different timings and no matter what I do I keep seeing this error.  In a fit I ran MemTest and found nothing wrong with the memory.  Has anyone else ever seen this happen before and if so what has been the fix?  Is it possible that the K9A and the memory just don't play well together?  Could it be some sort of timing issue?  I loaded Windows fine using it so I am guessing it's not.  I currently have it running at 800MHz could that be the problem?  Would slowing it down make any difference?  I did notice that although the BIOS does allow quite a bit of flexibility for overclocking that one of the things that cannot be changed is the memory voltage (which seems to be set at 1.90V).
    If anyone has any suggestions I would really appreciate it as I have lost about a week working on this now and have about $800.00 tied up in a completely unusable system.
    Thanks.

    Quote from: BOSSKILLER on 16-March-07, 00:24:06
    hello, welcome to forum.
    have you installed chipset drivers 1st, before VGA drivers?
    list PSU details. (can be found into PSU sticker)
    ensure memory sticks are located into 1st DIMM1 slot close to CPU socket and DIMM3.
    go to BIOS "LOAD BIOS OPTIMIZED DEFAULTS", apply memory vcore to 2.0V or 2.1V.
    get a copy of Memtest86 and test memory for errors.
    Hi, thanks for taking my post BOSSKILLER.  The PSU specs are as follows:
    Hiper HPU-4B580 PSU
      ATX 12V v2.2
      580W
      Dual+12V = Yes
      Output = +3.3V@30A,+5V@36A,+12V1@20A,+12V2@18A,[email protected], [email protected]
      Input Current = 10 A
      SLI and Crossfire certified
    I've run MemTest x86 on the memory several times and did not fine any errors however I am now curious about the memory itself VS what the board can handle.  After going through all of the specs on the board (please bear with me here as I am "memory illiterate") it would appear the the board can only handle the memory running at 1.8V as this is what I see from the system specs for the board from MSI:
      Supports Dual DDR2 533/667/800
      - 4 DDR2 DIMMs (240-pin / 1.8V)
      - Supports a maximum memory size up to 8GB.
    OK, so going with the fact that I know next to nothing about memory speeds and how voltages play a part in them I know that the last memory that I just sent back to NewEgg was a Patriot Extreme Performance DDR2 2GB PC2-6400 Eased Latency DIMM Kit (PDC22G6400ELK).  It's timings for 800MHz were 5-5-4-9 with +1.9 for voltage.  I had everything in the BIOS for the memory set for AUTO and from what I could see it was being detected at 800MHz memory however if I am interpreting what MSI is saying about this board (and this is where I am really confused) it only supports 1.8V type memory?  If so then I am really in trouble as I just ordered some replacement memory which is Kingston HyperX and it's timings are (for 800MHz) 4-4-4-12 at +2.0V and (for 667 MHz) 5-5-5-15 at +1.8V.     If I understand this equation correctly it would appear that this board cannot handle memory running over +1.8V and it seems that (in spite of the fact that it claims to support 800MHz speed memory that is only if you can purchase memory that will run at 800 MHz while only consuming +1.8V (does that sound correct?)  The bottom line is that there was probably nothing wrong with that Patriot memory I just didn't know what I was doing.  I did notice in the BIOS when I looked at what it detected that it was running by default at 800MHz but the voltage was +1.9 vs. the +1.8 that the manual says it will support.  Could that be what all my problems have been with not being able to get these drivers working?  That the second the part of memory that the drivers need to access is "accessed" because of the difference in voltage that XP panics and immediately "blue screens"?  Let's just go out on a limb here and say that I'm correct then what I am really being told is that this board will not support either of these memory modules running at PC6400 and that I will have to drop the speed down to PC5300 (or 667MHz) in order to get the +1.8V that the board supports to make the system stable?   
    How far off-base am I?  (Let me know as soon as you can as I am eager to know whether I just wasted more money.  Thanks!)

Maybe you are looking for

  • Signatures missing or not parsable in Java7u60

    Hello, We're testing our Web Start-deployed application in advance of the upcoming Java 7u51 release. We couldn't find an early access version for 51, so we're using Java 7u60 from https://jdk7.java.net/download.html Our application uses a third-part

  • Where can i get an apps to install photoshop 5.5 on windows 8

    anyone know where to get this apps thanks

  • DSD menu links not shown

    Hi All I am trying to implement DSD. While doing so I made Enhancement MDSD project in eclipse using MDSD jar file. Further I deployed the jar file on webconsole and tried running it on awt MI client. After sync, MDSD appication link is shown but on

  • Another day & another disapointm

    Any idea when the x-fi driver will be issued. The last was on 0/05. Good thing we did not expect something along the lines of a timely fix. Which is really kinda surprising since the x-fi is the latest and greatest. So either they really don't give a

  • Photographic Gallery extension

    Hello all. I'm very interested in producing a portfolio website of my work. I would classify myself a very good photographer, but a simplistic beginner in website design and building. Mentioning that I also have a strong design sense(pro and con), ho