Implementing cache for dropdown values in Web Dynpro Iview

Hi All,
         I am currently in the processing of enhancing a web dynpro application which contains among other things around 15 drop down boxes. The values in these drop down boxes are coming from oracle database and these values change occasionally.
        To optimize the response time, I have implemented simple caching machanism using static  variable in plain java class. The objective is to retrieve the values for the first time from oracle db and use the same datastructure for subsequent calls. Though I have found that the number of calls to the database reduced significantly I am facing some problem understanding and implementing the cache refresh behaviour.
      I want to implement a cache refresh machanism for every 12 hours.
    Solutions tried.
               Creating a thread to refresh the cache for every 12 hours.
               Creating a timer for refreshing the cache for every 12 hours.
    Problems encountered :
    1.  Is it appropriate to use threads in a web dynpro app?
    2.  What I have observed is that  the thread (I have created a daemon thread) is alive even after I have deployed a new copy of the code.  When I deploy a new code is it not supposed to remove all copies from the memory?
       If using a daemon thread is appropriate, What is the web dynpro
          framework's class loading behavior when a new copy of code is deployed?
         Does it completely unload existing classes (there by killing the daemon thread
               created in previous deployment)?
   3. Assuming that we have found suitable solution for thread issues, what would  happen when the application is deployed on a cluster? Can we send a message to
        all the nodes in the cluster?
I would like to understand what other developers has done in these kind of situations. Your experience and insight will be valuable and help me decide to implement caching or not in  the first place.   
Thanks in advance.
Regards
Pallayya Batchu

Pallayya,
<i>1. Is it appropriate to use threads in a web dynpro app?</i>
Not recommended as with any J2EE application
<i>2. What I have observed is that the thread (I have created a daemon thread) is alive even after I have deployed a new copy of the code. When I deploy a new code is it not supposed to remove all copies from the memory?</i>
Re-deployment doesn't mean stopping all user spawned threads. It just causes unloading of classes if there are no hard references from anything but deployed application. In your case, there are probably references from Thread/Runnable so your previous version is not unloaded on redeployment.
<i>3. Assuming that we have found suitable solution for thread issues, what would happen when the application is deployed on a cluster? Can we send a message to all the nodes in the cluster?</i>
Probably you can, probably you cannot. Even if you can it would be complex.
My advise -- abandon threads altogether, use real cache instead:
package com.yourcompany.yourapp.utils;
import java.util.HashMap;
import java.util.Map;
public class ValueHelpCache {
  private static class Entry {
    long lastLoadTime;
    Map  payload;
    Entry(final Map payload) {
      this.payload = payload;
      this.lastLoadTime = System.currentTimeMillis();
  final private Map _entries = new HashMap();
  private ValueHelpCache() {}
  synchronized public Map getValueHelp(final String valuyeHelpKey) {
     Entry entry = (Entry)_entries.get(valuyeHelpKey);
     if ( entry == null) {
       entry = new Entry( loadValueHelpFromDatabase(valuyeHelpKey) );
       _entries.put(valuyeHelpKey, entry);
     } else {
       final long now = System.currentTimeMillis();
       if ( now - entry.lastLoadTime > ENTRY_TTL ) {
         entry.payload = loadValueHelpFromDatabase(valuyeHelpKey);
         entry.lastLoadTime = now;
    return entry.payload;
  private Map loadValueHelpFromDatabase(final String valuyeHelpKey) {
    /* @TODO implement loading values from database */
    return null;
  public static ValueHelpCache getInstance() { return INSTANCE; }
  final public static long ENTRY_TTL = 12 * 60 * 60 * 1000;
  final private static ValueHelpCache INSTANCE = new ValueHelpCache();
This way client code tracks itself what entries are stale and need to be reloaded. No threads at all and no problems in cluster. You may alter time tracking mechanism to reload at given time of day, say at 12AM and 12PM -- just use java.util.Calendar and change code accordingly.
Valery Silaev
SaM Solutions
http://www.sam-solutions.net

Similar Messages

  • Web dynpro iview in web page composer ?

    Hi All,
                     I am developing one Web site by using Web Page Composer. Can anyone help me for how to use Web Dynpro iview on web page.
    Regards,
    Rahul.

    HI Rahul,
    As of now we can not include a Web Dynpro iView on the WPC page like other iViews.
    But you can try to create a URL iView from Web Dynpro application
    and then add that URL iView to your page.
    _Vishal

  • Implement own personalization dialog for Web Dynpro iView

    How can I implement an own personalization dialog for a Web Dynpro iView? It should open a popup window and in it a internet url.

    Check this thread https://forums.sdn.sap.com/click.jspa?searchID=954028&messageID=2300962
    Regards, ANilkumar

  • How to Implement Sort, Filter funtinality in Normal web dynpro ABAP Table

    Hello,
    How to Implement Sort, Filter funtinality in Normal web dynpro ABAP Table ?
    Thanks

    hi,
    Check out this link for sorting in Table.
    Sorting option in WebDynPro ABAP UI Table
    steps to follow :
    ->Have the data in internal table (itab).
    ->Now use sort command for the particular column which ever you want to sort.
      e.g sort itab descending by <Column>.
    ->Now you can bind the internal table with the Context Node which is binded to Table.
    I hope it helps.
    Thanx.

  • Portal theme not picked for SAP Web Dynpro Iview

    Hi,
    We have used light framework page for our portal and all the iviews display the content within the iviews in the same set of colors (blue for buttons). However, for a WD java content, I have created an SAP Web Dynpro iView and the contents displayed here appear in the SAP colors without picking those set for the portal.
    The same application parameters display the portal colors when we use the Web Dynpro Proxy iview.
    Any idea how I can make the SAP Web Dynpro iView appear like the other portal iviews?
    Note: The stylesheet property for the iview is already entered (ur), and I have also set the 'Supply Portal stylesheet' property to 'Yes'.
    Please provide your inputs.
    Thanks,
    Vinay

    Hi ,
    In ABAP Webdynpro for similar problem we used WDFORCEEXTERNAL Sheet property of WDA.
    The Web Dynpro framework automatically compares the versions of the portal and Web Dynpro
    for ABAP style sheets. If the Web Dynpro for ABAP has a newer version, the WDA style sheet is used. This avoids unattractive rendering and JavaScript errors.You can deactivate this behavior again using the WDFORCEEXTERNALSTYLESHEET application parameter of WDA.See also SAP Notes 1033496 .
    If you use the stylesheet of the portal to display the application, the rendering may not appear correctly and Javascript errors can occur(If portal style sheet is lower than WD).
    Though Iam not familiar with WD java , the property force portal style sheet in WD java application should be enough to make WD accept portal theme.
    Regards
    Karthiheyan M

  • Web Dynpro iView for Anonymous user

    Hi All,
    I created a Web Dynpro iView based on local Web Dynpro application. I am trying to access this iView as a anonymous user. I have given Authentication mode as
    "flase". In  iView properties and  Page properties Authentication Scheme is  "anonymous". In all permissions I added "Anonymous Group" and given Read and End User permissions.  After doing all these things Still it is prompting me for Login.  My Server is 2004s SP 10.
    Please Somebody tell me what I am missing.
    Thank you
    Joe

    Hi Sreekanth,
    I think you have to assign this iview to the standard user role which you can find under Portal content ->Portal users -> standard portal users -> Standard user role  and assign this to group "Everyone"  (if not already done).
    Then you should be able to access this iview directly. Let me know if it works.
    Thanks,
    Hari

  • Can anyone expalin to me the following properties in the Web Dynpro Iview P

    Hi all,
    Can anyone expalin to me the following properties in the Web Dynpro Iview Properties Editor--
    Authentication Scheme
    Can be Merged
    Default Entry for Folder
    Entry Point
    Show Debug Screen
    Tray Type
    Points assured for help

    Hi shobhendra srivastava,
    1) An authentication scheme is a definition of what is required for an authentication process. In the iView you can set what authentication process (UserName/Password, X.509 certificate, etc.) the iView requires. Find more information <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/90/52c43dac1bcf51e10000000a114084/frameset.htm">here</a>.
    2) The attribute "Can be Merged" allows you to merge certain objects (worksets, pages, iviews) under the same point in the portal navigation structure. All objects with the same value for attribute "Merge ID" are merged together. The object with the highest value for attribute "Merge Priority" provides the name displayed in the navigation elements (tabs in TLN and links in Detailed Navigation)
    3) Find a good explanation of the attribute Entry Point <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/4e/3e703e632c7937e10000000a114084/frameset.htm">here</a>.
    4) If this parameter is "true" a debugging screen is displayed before starting the WebDynpro application. Make sure that the parameter DebugMode in the service configuration (=>Applications=>com.sap.portal.appintegrator => Service => Common_Configuration) is not 'false' if you want to use this feature.
    5) The attribute Tray Type defines the design of the iView's frame. The attribute can take the following values:
    fill: The content area appears with a background color
    plain: The content area appears with a white background and a frame
    transparent: The background is transparent and the content area appears without a frame
    Hope I could help!
    Best regards,
    Martin

  • Portal 7.3 & Web Dynpro iView, both accessed from Internet via Web Dispatch

    Hi guru,
    I'd like to know the best (or the correct) way to configure the FQDN and required DNS setting to allow user access ABAP Web Dynpro iview from internet.
    My setup here is very typical:
    One EP 7.3 in intranet, having "ep.internal.mycomp.com" as FQDN (given during installation)
    One SAP ECC in intranet, having "erp.internal.mycomp.com" as SAPLOCALHOSTFULL parameter
    One Web Dispatcher in DMZ, having "service.mycomp.com", and listen to 80 port (later added 8000 port for AS ABAP).
       User access my portal by using http://service.mycomp.com/irj, no problem.
    But problem raised during access WD4A iview, here are my problem and questions:
    [Problem]
    At the beginning, we found that the WD4A iView can only be accessed in intranet, not from internet. Eventhough we register "service.mycomp.com" in public DNS. After some http level analysis, I was shock that the WD4A iview is provided directly by AS ABAP which running this WD4A, EP does not play a "relay" role. (Don't believe the URL bar in your IE, use Tamper Data or HTTP live to check the HTTP requests, you will get it). Since we DO NOT have "erp.internal.mycomp.com" in public DNS, so the iview cannot be displayed. But I DON'T want direct access to my ERP box.
    I don't know a way to get rid of the "erp.mycomp.com" request generated by EP. So I tried to overcome the problem by leveraging the same Web Dispatcher used by EP. And I did make the WDisp -> ERP WD4A work using WDisp's FQDN (ie. service.mycomp.com:8000, also keep original service.mycomp.com:80 to EP), but the iview in EP does not use this FQDN. It use the SAPLOCALHOSTFULL parameter configured in backend ERP.  WDisp does not do any URL replacement for me.
    [Question 1]
    Is there any way to hide WD4A iview in EP (server to server communication only)?
    [Question 2]
    If I can only have "service.mycomp.com" entry in my public DNS, should I change the SAPLOCALHOSTFULL in ERP to "service.mycomp.com"?  I doubt  that it may cause a "loop" situation between WDisp and ERP ?
    [Question 3]
    Is it possible to access WD4A on ERP by two different FQDNs (one for public via WDisp, the other for internal access w/o WDisp) ? I know there is only one SAPLOCALHOSTFULL configuration.
    Anyone have done such integration ? please share your configuraiton. Thanks

    Hay Wei-Shang Ku,
    Many thanks to your prompt reply of this very old post I tried to ask!
    for the /sap/* redirect, think it required to use icm/HTTP/redirect_<xx> parametet in WDISP profile. And i did applied below too to make default WDISP URL go to /irj  (Portal login page).
    icm/HTTP/redirect_0 = PREFIX=/,TO=/irj
    so for "all request to /sap/* will go to ERP":
    icm/HTTP/redirect_0 = PREFIX=/sap/*,TO=/???  (how do you set the TO value here?)
    May i have your WDISP profile setting for reference? Did you make use of parameter wdisp/system_0?
    And here is my overall setting:
    we only have "service.mycomp.com" entry in public DNS.
    1. "service.mycomp.com" is WDISP URL mapped to 1 public IP (we used default http 80 port)
    2. we want user can access JPortal & also backend ERP via WebDynpro iView in JPortal via
       service.mycomp.com  (only port only)
    3. ERP system profile:
        SAPLOCALHOSTFULL = <ERPHOSTNAME>.mycomp.com (not in public DNS)
        icm/server_port_0 = PROT=HTTP,PORT=80$$,TIMEOUT=3600,PROCTIMEOUT=3600
    4. Portal:
        ABAP WebDynpro iView setting -
       System  = XXX (where XXX is alias of system iView)
      System iView setting -
        Logical System Name = ERPCLNTXXX
        ITS host = <ERPHOSTNAME>.mycomp.com:8000
    Thanks again your information, have headache of this issue for long times....
    Gary

  • Web Dynpro iView - how to pass URL parameters?

    I have a Web Dynpro application that is housed in the Enterprise Portal.  We have a requirement where we need to provide an external link to the iView/Web Dynpro component - for the sake of this discussion, assume it's email.  As part of this URL link, we need to pass a parameter that will cause the Web Dynpro app to fetch some data. 
    The Web Dynpro has a startup plug parameter - call it 'id'.
    I can invoke the Web Dynpro application directly, and pass the id paramter on the URL - the application can see the parameter just fine.  However, when I try and do the same via a Roles-based URL, the parameter does not survive.  I've tried two different methods:
    http://host:port/irj/portal?NavigationTarget=ROLES://path/to/iview&id=1234
    and
    http://host:port/irj/portal?NavigationTarget=ROLES://path/to/iview!26id=1234
    neither of which work.
    is there a way to do what I'm trying to do?  Note that the 'id' paramter is dynamic - I can't code it in the Web Dynpro iView configuration.

    Hi,
    please try the following:
    http://host:port/irj/portal?NavigationTarget=ROLES://path/to/iview&DynamicParameter=<encode(id=1234)>
    The value of the DynamicParameter value must bei encoded.
    For details please have a lool to
    <a href="http://www.sap-press.de/katalog/buecher/titel/gp/titelID-1078">this</a>
    This book will be also available in English soon.
    Best regards
    Jochen

  • Eventing between Web Dynpro iView and regular DynPage iView

    I have seen, done eventing between two dynpage iviews and two webdynpro iviewsHowever, and gone through "How to Use the Portal Eventing for Web Dynpro iViews". However, I have been trying to have a webdynpro iview talk to a dynpage iview but they just won't communicate. Is this even possible?
    Ok basically I have a portal page in a popup window with no masthead and top level navigation. The page has two iviews -  the top one being an iView that points to a webdynpro application on Server A, and the bottom one being a dynpage iview on the Portal Server B.
    In the webdynpro iview, the code for when a button is clicked is
    public onSomeAction(Event event) {
        WDPortalEventing.fire("urn:myUrn","eventName","value");
    In the dynpage iview, the code i have for it is
    myServ = (IEpcfToolbox) PortalRuntime.getRuntimeResources().getService(IEpcfToolbox.KEY);
    myReceiver = myServ.getClientEventReceiver(request, "urn:myUrn", "eventName");
    form.addRawText(myReceiver.getWrappedScript());
    try {
        if (!myReceiver.isReceived()) {
            form.addComponent(createMainScreen());
        } else {
         form.addComponent(new TextView("event received!"));
    } catch (Exception e) {       
        form.addComponent(createErrorScreen());
    I tried all the things I could think of but the receiving iView just won't get the event fired.
    Can someone confirm that this should work? and correct me where I've done wrong.
    Please help. this is very urgent. your help will be greatly appreciated. thanks in advance
    PS. My environments are EP 6.0 SP2 and WAS 6.40 SP14

    > hi,
    >
    > portal eventing  works properly if all participants
    > are in the same domain. Otherwise portal eventing
    > g does not work. If the SAP J2EE
    > Engine on which the Web Dynpro application is
    > deployed is in another domain, you have to  map the
    > IP address of the SAP J2EE Engine to the domain name
    > of the
    > SAP J2EE Engine on which the SAP Enterprise Portal is
    > running, by editing the configuration file hosts.
    >
    > regards,
    >
    > Ganesh.N
    I am no direct access to the boxes so I can't try your suggestion. It really makes sense that eventing won't work if the iViews are on different domains. I know they are in the same domain but different subdomains.
    Anyway, good news I got eventing to work with the mentioned set. I found that that the SAP Java EPCFToolbox API had a bug that kept throwing javascript errors when I tried to have the web dynpro iview fire an event and the SAP one subcribed to it.
    I got around it but using the EPCF Javascript API instead.
    Code:
    response.write("<script>");
    response.write("EPCM.subscribeEvent('urn:dla.telework', 'createPdf', doSomething);");
    response.write("function doSomething() {");
    response.write("window.location = self.location + '&eventReceived=true';");
    response.write("}");
    response.write("</script>");
    So basically just output raw text through the response object and it just works.
    On a similar topic, since eventing can only pass string parameters back and forth, I'm still looking for a way to pass other more complex Java objects between web dynpro and sap iviews. From what I haven't they don't share the same session object (which I thought they did). So basically I can't just stick stuff in the session and pull it down on the other end. I'm clueless right now. If anybody has some tips, plesae share. Thanks

  • Web Dynpro iView Translation

    Hi Everyone,
    We have a requirement at my client to deliver the portal in two languages (Chinese and English). When I change the language of the user from English to Chinese (China) the portal content langauge changes (TLN, Masthead etc. are displayed in Chinese), however when I navigate to any Web Dynpro iViews e.g. Bank Information (ESS iView), I still see everything in English. I have checked my Web Dynpro Content Admin and both zh_CN, zh_HK are available.
    My Second question is if I add some verbiage to this iView via WDP Personalization (Ctrl + right click), can this verbiage also be translated? If so, how?
    Thanks for all your help!
    - Osman

    You should use Content AdministratorPortal Content Translation tab for translation the texts (names) for the PCD Objects (iViews, pages Worksets, Roles Folders) ect.
    In Portal Content Translation Fallow the Fallowing Steps which are very simple
    1) Go to Translation work Coordination Portal Content and Right Click your Folder and select NewTranslation Worklist
    2) This will create the translation Worklist to which you can add your PCD Objects for Translation
    3) Go to Your Folder Containing your iViews, right Click and u2018Add Object To Translation Worklistu2019
    4) After You have added all the objects you want to translate, click u2018Generate Translation Datau2019 Button at the top on the Translation Worklist screen
    5) Click the u2018Release for Translationu2019 button in the screen that appears.
    6) Click close in the screen that appears.
    7) Go to u2018Worklist Translationu2019 link
    8) Search for your Worklist you just created using the search box.
    9) Select the Worklist from the result list
    10) At the Bottom of the screen select the u2018Source and Target Languageu2019 from the dropdown.
    11) Click the Load for Translation
    12) Choose whichever texts you want to translate and enter the Translate Text in the box for the target text
    13) After u r done with all the translation, click close.
    14) Save all and Close
    15) You will go back to the previous Screen again. There select your translation Worklist and click Mark as Translated
    16) Go back to the u2018Translation Worklist Coordinationu2019 link and open your translation Worklist from your folder
    17) Click u2018Publish Translationu2019 Button
    18) Finally Check the portal content
    Polaka

  • Configuring a Web Dynpro iView

    Hello All,
    I need to configure an iView to hold a Web Dynpro application. I chose the option of SAP Web Dynpro iView. I gave the full package name, when it asked for the Application name (for eg: com.spk.mss.PerfRateApp). I also gave the value of 'local\PerfRate) as the value in the field 'name space'. PerfRate is the project name of the Web Dynpro application. How ever when I try to preview the iView, I get the following error.
    webdynpro.services.sal.api.WDDispatcherException: Requested deployable object 'local/PerfRate' and application 'com.spk.mss.PerfRateApp' are not deployed on the server. Please check the used URL.
    What could have been gone wrong here? I am sure the Web Dynpro application is deployed on the server, because I had used the 'Deploy & Run' option in NWDS to check the application.
    TIA,
    SPK.

    Hi,
      When u deploy and run, u get the url in the address bar. Use the appl name and proj name from that. That will make sure u don't make a mistake in configuring the iView. If url is
    http://host:port//webdynpro/dispatcher/local/downprod/ProdDownapp
    Here local/downprod and ProdDownapp can be copied. Make sure of the slash (/) also. Check and confirm if it works.
    Regards,
    Harini S

  • ABAP Web Dynpro iView error

    My ABAP Web Dynpro iView encouters errors:
    The URL http://sp06:8004/sap/bc/webdynpro/sap/z_jgo_demo// was not called due to an error.
    Note
    The following error text was processed in the system SB2 : WebDynpro Exception: Error in UCF Template POPUP_PAGE ($).
    The error occurred on the application server sw06_SB2_04 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: RAISE of program CX_WD_GENERAL=================CP
    Method: RENDER_TEMPLATE of program CL_WDR_UCF====================CP
    Method: HANDLE_TEMPLATE of program CL_WDR_UCF====================CP
    Method: HANDLE_REQUEST of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    I was able to run the ABAP web dynpro application outside of portal by using the url: http://sp06:8004/sap/bc/webdynpro/sap/z_jgo_demo/. But with the extra / at the end, I get the same error.
    Can anyone point me to how to remove that extra / at the end?
    Thanks
    Ben

    Hi Gurus ,
    We have upgraded the SAP HR system from ECC6.3 to ECC6.4 and netweaver from 7.0 to 7.1 .
    Following are the list of error in EHP4 system ,
    1) Layout of ABAP Webdynpro Component are not displayed .
    2) Any ABAP WEBDYNPRO Application is not displayed by tesing in SAP-R3 and also in ESS .
    error are as follows while trying to view layout in abap webdynpro application :
    http://dv.hr.co.in:4567/sap/bc/wdvd/painting.html?_vdrespkey=4IS29CT7NDRIOI511AFI0R1E3&_vdframe=painting&sap-client=435
    If any one have information for this kindly let me know .
    Thanks :
    Vishwas

  • IView not found error when excuting ABAP Web Dynpro iView

    Hi Experts,
    I have created one ABAP Web Dynpro iView for an existing Application.
    Parameters I have passed for iView creation.
    Namespace : sap
    Application Name: SampleApp
    System Name: R3_SYS.
    Can any one please pass on me the details what are the mandatory parameters need to be passed.
    Thanks in Advance,
    Chinna.

    Hi Chinna,
    You need to check the following parameters like
    Namespace - should be 'sap' as this is root node in SICF
    Application Name: - check name of WD application in se80
    Please refer to below thread for creating WD ABAP iview.
    Re: Webdynpro ABAP iView Blank Page
    Web Dynpro for ABAP iVIew's Namespace parameter
    how to create iview from webdynpro application  abap
    Hope it helps
    Regards
    Arun

  • Web dynpro iviews

    Hi all,
    I have couple of questions on web dynpro iviews.
    Is it necessary to have sld configured for executing a web dynpro application as an iview in the portal.
    My other question is how do you set the Jco connections for a web dynpro application. Please advice
    thanks for your help in advance.
    regards
    Henry Ragl

    Hi Henry,
    Yes,If you are developing Web Dynpro applications that connect to a back end with a static user, the use of an SLD means that you can, for example, avoid using passwords as part of the Web Dynpro application code, since the SLD utilizes a secure storage for the password.
    You configure an SLD for a Web Dynpro application using the Visual Administrator.
    Your Second Question Jco Connection Please click the link below.
    To Create Jco Connection you have to go to your J2EE Engine.
    http://localhost:50000/ and click the Web Dypro. And again click the Content Administrator remaining details are in the link below
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/3a/3b1b40fcdd8f5ce10000000a155106/content.htm">Jco Connection</a>
    PS: Give the points if it helps you

Maybe you are looking for

  • Not working: Send subscription emails: Once per day?

    Seasons Greetings, Can someone please clarify/confirm what I should have in My Settings in Subscription Preferences. They are currently: Always subscribe to topics I create: Yes Always subscribe to topics I reply to: Yes Send subscription emails: Onc

  • Phone vibrates, doesn't ring?

    Iphone 5 vibrates, doesn't ring. What to do?

  • MacBook shows folder icon with Question mark on boot up still boots fine

    Just this morning when I booted up my MacBook, I noticed the infamous folder icon with a question mark flashed up on the screen once, then the normal apple icon appeared and the computer booted normally. I ran Disk Utility, Disk Warrior, Hardware Che

  • ITunes 9.0 not letting me ctrl+click multiple artists?

    Before I updated from the previous version of iTunes, I could hold in ctrl and click various artists I wanted to play when I didn't want to make a playlist for them as I found several disadvantages to the playlist features, however now I've upgraded

  • Having Trouble With Master Objects

    I'm pretty new to iWork, so I apologize for any noobie foolishness. I am trying to adapt the Business Report template in Pages '09. It uses a default logo graphic, and this graphic is selectable and replaceable. In the first instance, I selected it a