BI Content is require for NW2004S

Dear Experts,
   recently we are installed NW2004S (BI) also we were integrated to R/3 System, when i am checking the status for the BI-Content its not showing,  its showing only PI_Basis, SAP_Basis, SAP_ABA, and SAP_BW with level 9, in RSA1  BI Content->Technical Content-> not displaying functional modules (Application Components), could you tell me that when i have applying BI-Content the function modules will come?
Regards.,
Pradeep

Hi Pradeep:
In order to see BI content in your sistem you have to:
1) Download Add-on for BI Content (SAPKIBIIIH.CAR file) .
(you need SAP your customer number to download)
2) Apply installation in client 000 using T-code SAINT.
Also, check this doc:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20ea3d3b-d61c-2a10-7b95-e6508f184aea
Hope this helps.
Kind regards.

Similar Messages

  • Pre requisites for AIX Installation for NW2004s

    I need to install NW2004s in AIX Machine with Oracle Database
    the hardware team is in the process of  installing the AIX Machine af of now.
    Pls let me know if any other pre-requisite has to be followed as a part of installation

    Hi Balaji,
    Pls check the AIX version and patches if any are required for NW2004s installation.
    so pl refer http://service.sap.com.pam.
    Then follow the installation guide that you must have with you for further activities.
    Hope this is useful
    Regards
    Umesh

  • Hardware requirement for Oracle Universal Content Management

    Hi Experts,
    What are the Hardware requirements for Oracle Universal Content Management ?
    Regards
    Nasir

    does this help?
    Oracle WebLogic Server 11g (10.3.3) System Requirements
    Oracle WebLogic Server supports a number of platforms including:
    – Linux
    – Sun Solaris
    – HP-UX
    – Windows 2000, 2003 Server, XP
    • Processor:
    – At least one 1 GHz CPU is recommended.
    – Intel and UNIX processors are supported.
    • Hard disk drive:
    – A full installation requires approximately 2 GB of disk space.
    – The Linux value for file descriptors must be 4096 or greater.
    – Samples are optional (download from OTN).
    • Memory:
    – A minimum of 2 GB RAM is recommended for WebLogic
    Server.
    – Consider the number of simultaneous users and sessions.
    – Consider in-memory programs, such as Coherence.
    System Requirements
    The following are some of the basic system requirements for Oracle WebLogic Server 10.3.3:
    • The Oracle WebLogic Server installer requires a Java Runtime Environment (JRE) to run.
    Oracle WebLogic Server is certified with JDK6.0. As part of the installation, it gives the option
    to install the JRockit JDK 6.0 version. As part of postinstallation, prefix the bin directory of
    the JDK to the PATH environment variable.
    • The Oracle WebLogic Server installer requires a temporary location in which to unpack the
    files. Typically, the installer requires approximately 2.5 times the amount of temporary space
    that is required by the installed files.
    Note: In this release of WebLogic Server, users can choose which components of WebLogic Server
    they use. Specifically, this release allows users to choose whether the Enterprise JavaBeans (EJB),
    Java Message Service (JMS), and J2CA services are started when WebLogic Server is started. The
    benefit of excluding some services is reduced memory footprint and reduced startup time.

  • Disk space required for business content activation

    Hi everyone,
    I'm looking for information about how much disk space is required for activation of differents parts of business content (or ultimately, ALL business content in NW04S). I'm also looking for that information on extractors side on R/3.
    Reason why i'm asking is that I am convinced that it is better to activate as much Biz Content as possible straight at the beginning of an implementation project even though part of it should not be used in the first place(mostly because if you activate BC later while already in production you have high risks of overwrite or conflicts with existing objects). However I am often opposed the argument that this consumes useless diskspace blah blah blah...
    I'd be curious to know the exact diskspace Biz Content actually takes when activated, so any information about it is welcome.
    Thanks!
    Christian

    iam also agreeing wih ur opinion it is better to activate as much business content  a implementaio level

  • Creating iFS content type require more then 4 values to be set for 1st attribute

    We get the following error:
    exception in thread "main" oracle.ifs.common.IfsException: IFS-30002: Unable to
    create new LibraryObject
    java.sql.SQLException: ORA-01400: cannot insert NULL into
    ("IFSSYS"."ODM_ATTRIBUTE"."SETTABLE")
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:180)
    at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java, Compiled
    Code)
    at oracle.jdbc.oci8.OCIDBAccess.executeFetch(OCIDBAccess.java, Compiled
    Code)
    at oracle.jdbc.oci8.OCIDBAccess.parseExecuteFetch(OCIDBAccess.java:1483)
    at
    We were happily creating, updating and deleting various iFS content types by
    declaring 'n' attributes and then setting 3 or 4 of these properties of each
    one of the 'n' attributes of every content type i.e.
    //First attribute of the content Type
    AttributeDefinition adef1 = new AttributeDefinition(ifsSession);
    //First property of the first attribute of content Type
    adef1.setAttributeByUpperCaseName(Attribute.NAME_ATTRIBUTE,
    AttributeValue.newAttributeValue("FIRSTNAME"));
    //Second property of the first attribute of content Type
    adef1.setAttributeByUpperCaseName(Attribute.DESCRIPTION_ATTRIBUTE,
    AttributeValue.newAttributeValue("The firstname of the
    Employee"));
    //Third property of the first attribute of content Type
    adef1.setAttributeByUpperCaseName(Attribute.DATATYPE_ATTRIBUTE,
    AttributeValue.newAttributeValue
    (Attribute.ATTRIBUTEDATATYPE_STRING));
    //Fourth property of the first attribute of content Type
    adef1.setAttributeByUpperCaseName(Attribute.REQUIRED_ATTRIBUTE,
    AttributeValue.newAttributeValue(true));
    //Fifth property of the first attribute of content Type
    //We are forced to set this up. Otherwise we get above error.
    //However only required for first attribute of the content type.
    //Rest of the attributes (n-1) are fine.
    adef1.setAttributeByUpperCaseName(Attribute.SETTABLE_ATTRIBUTE,
    String.valueOf(true));
    //Sixth property of the first attribute of content Type
    //We are forced to set this up. Otherwise we get above error.
    //However only required for first attribute of the content type.
    //Rest of the attributes (n-1) are fine.
    adef1.setAttributeByUpperCaseName(Attribute.UPDATEABLE_ATTRIBUTE,
    String.valueOf(true));
    codef0.addAttributeDefinition(adef1);
    The other attributes are fine. We only need to set 3-4 properties of these
    attributes and could get away with it. Only the first attribute is causing the
    above problem. For other attributes of the content type, we are still setting
    only the first three/four properties
    If you look at the definition of iFS internal table "odm_attribute", apart from field "id", which is an implicit column, there are 12 columns which are NOT NULL.
    This means for every iFS attribute it must be required to set the values
    of these 12 properties. However like most of the examples in iFS doco,
    you could get away with setting 3-4 properties explicitly. I am sure some
    of them are set implicitly by iFS.
    The problem is, sometimes these implicit setting of properties by iFS is
    not working and its complaining about them. The ones which are causing
    problems are SETTABLE and UPDATEABLE.
    We are forced to set them explicitly. Hence the inconsistency.
    The problem is, what is the reason for iFS setting "SETTABLE" and
    "UPDATEABLE" implicitly for some attributes and requiring us to set them
    explicitly?
    Thanks and Regards

    hi srini,
    i have includedthe char in rows. i want you to explain in detail how to use these values in the if then else statement in query.
    i have created a calculated key figure 2= (formual variable =1 & keyfig a =0)* keyfig1kefig2 +not(formual variable =1 & keyfig a =0)keyfig2 *calculated keyfig1.
    so this formula variable of replacement path have ref. to then char. and with what value should it replace, key, name, external char or attribut etc so that i should get the values of the char from 1 to20.
    i donot to repalce with the attribute. i just want the char. values and not thier attributes (1. description 2. the second attribute has the values say abc1,efg2,ghi3 for respective charteristic values.
    ie
    char value               desc                 2nd attrib
    1                            hi                     abc1
    2                            bye                  defg2
    3                            ciao                  ghi3

  • Is KM required for 'publish to EP6' - portal content & role?

    is KM required in EP for 'publish to EP6' - portal content & role? we are not try to publish to KM catalog, etc. just the portal content and role. does KM required for that?
    Thanks
    Jane

    Hi Jane,
    of course I cannot speak for everyone here, but, sorry, I personally do not understand your question.
    Is KM required for what?
    Regards, Karsten

  • WRT54GS V7 resets when version update is required for PS3 content

    Been having this problem for a while now.  the router works fine most of the time.  But when a game or firmware update is required for the PS3 and is attempting to dowload the router will cycle off and back on and the dowload can not be completed.  This only happens when the version of something requires updateing.  I can dowload PSN store content, game online w/ no problem it only happens when version updates are needed.  Can anyone please help with this?

    I will check on the firmware version tonight.  I did see that in the configuration, but I am unsure how to upgrade it.  It ask me to name a config file I don't know what to do there.
    I can usually get the issue to resolve after repeated attempts at downloading.  it seems to be a timing and specific type of action issue.  It only occurs when the PS3 firmware needs updating or a new patch for a game comes out.  I can download PSN content without problems.  Patches will begin to download then the router cycles off/on and dowloading can not be competed.  However with enough attempts the timing will be such that the router will cycle after accepting yes that informs of the patch, but before actual downloading begins.  then i will get the 'Please wait...." screen that occurs prior to the screen with the download progress bar.  When the route recconects it jumps to the progress screen and I can get the whole patch to download and install.  It is just frustrating as takes several attempts to get it to time this way.
    I see that people are experiencning similar issues with other Linksys routers.  Was wondering if anyone knows what this only occurs with this particular function and with nothing else and how to fix. 
    P.S. thanks torque for the message, I will look into those products.

  • What are the system requirements for Adobe Content viewer?

    What are the system requirements for Adobe content viewer?

    Hi j80r59m,
    Please check the KB : http://helpx.adobe.com/digital-publishing-suite/help/create-custom-viewer-app-ipad.html

  • SAP R3 and BI system requirement for loading Inventory data (0IC_C03)

    Hi,
    I have installed the Business content for 0IC_C03,activated the required datasources in R3 and replicated the same in SAP BI.
    However, while filling up setup tables the load is getting failed and it is giving error "No internal table space....".
    This is related to memory issues in SAP R3.Please let me know the minimum system requirement to do the above activity,
    for example RAM,parameters to be set from basis point of view,etc.The backend is MSSQL 2003 having RAM of 20GB.There is around one crore of data.
    Please let me as  soon as possible.
    Regards
    Deepak.

    Thank you Murali.
    But approximately can you tell me what is the memory requirement for SAP R3 and SAP BI for such type of applications.
    Regards
    Deepak.

  • Purpose of instructor led training requirement for OCP?

    What is the purpose of requiring OCP candidates to take an instructor led course? It all seems a bit random / superfluous. Costly too if one does not have an employer willing to pay for the training.
    My Oracle Press "OCA/OCP Oracle Database 11g All-in-One Exam Guide" doesn't even hint that classes are a requirement for the OCP; the most said is: "The OCA qualification is based on two examinations; the OCP qualification requires passing a third examination." (pg. XXIX). An incomplete characterization, correct?
    And "To prepare for the OCA/OCP examinations, you can attend Oracle University instructor-led training courses, you can study Oracle University online learning material, or you can read this book." (pg. XXIX). Prepare for the exams, sure. But why would such a book omit the not insignificant detail that a perhaps expensive course is required to get the OCP? Seems discourteous to the reader.
    From http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=244#5 via http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=198&p_org_id=&lang=
    I say it seems random and superfluous because of the following list:
    "These foundation courses meet the Hands On Course Requirement for OCP-Level certification:
    * Oracle Database 11g: Introduction to SQL
    * Oracle Database 11g: Introduction to SQL Ed 1 LVC
    * Oracle Database 11g: SQL Fundamentals I
    * Oracle Database 11g: SQL Fundamentals l Ed 1 LVC
    * Oracle Database 11g: SQL and PL/SQL Fundamentals
    * Oracle Database 11g: SQL and PL/SQL Fundamentals Ed 1 LVC
    * Oracle Database 11g: Develop PL/SQL Program Units
    * Oracle Database 11g: Administration Workshop I
    * Oracle Database 11g: Administration Workshop I Ed 1.1 LVC
    * Oracle Database 11g: Administration Workshop II
    * Oracle Database 11g: Data Warehousing Fundamentals"
    A modest Intro to SQL course will count? But an OCA will already have that knowledge. Obviously, one should choose a course with higher-level content. But I'm not sure I understand the logic of the OCA-grade courses being eligible. And for those funding certification without financial assistance from an employer, the question that suggests is this: what is the least expensive way to satisfy the "instructor led" course requirement? I cheapest price I see from Oracle is a 3 day class costing $1,800. It would also cost 3 days of vacation time, or unpaid leave, if an employer is not supportive of certification.

    Dana N wrote:
    Thanks for your thoughtful reply Hans.
    TO expose the candidate to techniques related to the new features rather than traditional techniques that are commonplace in the industry.That makes sense to me. But many of us like to tinker with new features on our own.In my experience, many, many more people want the OCP without doing any work. Some will use pure memorization or out and cheating to get there.
    It's unfortunate that you and I get penalized by those.
    >
    And to ensure that the has had at least some hands-on time, instead of only pure theory. While some people may get hands-on at work, many others do not
    have that opportunityh, especially in the are of new features.Then it might make sense for OCP certification to allow submission of proof of work experience in place of the HOC, as is the case with other professional certifications.
    Yes, that would be nice.
    But difficult to verify. and you would be surprised how many organizations have very narrow definitions of the job. Experimenting not allowed in some places.
    It all seems a bit random / superfluous. Sad, from an instructors and OCP's point of view, to hear you think of it that way.I don't mean to say there isn't anything new any of us couldn't pick up, say, even from an Intro to SQL course. There's a vastness to most technology topics and we can't master every facet. But the cost/benefit ratio may be terribly low for those who are already Oracle professionals with many years of on the job experience. The reality as well is that some instructors are duds--that's the case anywhere. And for my learning style, I prefer self-guided / on-my-own study.
    Costly too if one does not have an employer willing to pay for the training.No doubt.
    My Oracle Press "OCA/OCP Oracle Database 11g All-in-One Exam Guide" doesn't even hint that classes are a requirement for the OCP; the most said is: "The
    OCA qualification is based on two examinations; the OCP qualification requires passing a third examination." (pg. XXIX). An incomplete characterization, correct?A topic to discuss with the authors, and publisher. We (the user community with whom you are talking) have little to no control over this.Wonder if the authors participate in these forums. I realize you, as a user, have no control over this. But a book blessed by Oracle via Oracle Press, I respectfully submit, can and should do better--by including details about the HOC requirement.
    Some do. But much more effetive would be to lodge a formal complaint or inquiry.
    "These foundation courses meet the Hands On Course Requirement for OCP-Level certification:
    ...All of which will ensure you have had time becoming acquainted with SQLPLus, DBControl, and perhaps SQLDeveloper.I already use all 3 tools. Would love to take all the courses listed; but I'm not independently wealthy or otherwise.
    So would I. ;-)
    As well as logging in (you would be surprised how many OCA candidates do not know how), these all give you an opportunity to issue SQL and PL/SQL
    commands. Scary, but seems beside the point. The HOC requirement is one solution to this problem, but it seems like a sub-optimal one. Again, this punishes Oracle professionals already working in the field who'd like to become certified. Why is there no regard for them? One way to correct this, if this is a genuine concern on Oracle's part, is to include a "live" aspect to the exams. Then, if this causes a fail, those who flunk might be interested in taking HOCs to remedy this. In this day and age, I'm certain training could involve interactive SQL*PLUS sessions, etc. Only a failure of imagination and will could prevent I suspect; particularly in a world of virtualization. I'd consider a redesign of exams before I'd require people to pay for classes they may be unable to pay for. It's a bit of an insult to working Oracle professionals who want to add certification.
    I agree to some extent. Again, the issue is the consistency in experience. I have met people with 10 years of experience, and others with 10 times 1 year of experience.
    A modest Intro to SQL course will count? But an OCA will already have that knowledge. I wish this was consistently true. Then I mispoke. But the HOC still punishes existing Oracle professionals.
    I sympathize. I'm an independent, and all exams and certification costs come out of my own (corporate=me) pocket. But life in the professional fast lane is not
    cheap. This topic has been the source of some contention for quite some time.
    Unfortunately a number of people have been unscrupulous in their method of getting certification - cheating, using gunners, and so on - and I see this as one of
    the few ways to combat the issue. If the cheating issue is just left alone, the value of OCP (and any other certification) is effectively lost.The unscrupulous, I'm afraid, will always be with us. This problem is not solved, I'm also afraid, by requiring a costly HOC. It is in my opinion one potential solution of many, and not at all the best one. I wonder how other vendors with certifications handle this. I do know that some industry-generic certifications require proof of X years of work in the field (e.g. GISPs), as well as providing proof of various contributions to the field. This could be gamed as well I suppose. But the honest should not be punished along with the dishonest.Basically I agree with the sentiment. Implementation is the issue.
    >
    Bottom line: in my view, a few alternate solutions to the HOC are:
    1) Allow submission of work credentials to substitute for the HOC
    2) Incorporate hands-on aspects to the exam, e.g. a SQL*PLUS simulator.
    I'm sure the brilliant minds at Oracle, or a suitable contractor, could easily accomplish #2. And #1 might be a true bar-raiser. It seems highly unlikely to me that, say, requiring an Intro to SQL HOC course raises the bar more than a few millimeters.There have been many discussions around this. Several of us have even considered non-vendor certifications as a route to accomplish this.
    It is an imperfect world. But hopefully the steps will correct some of the deficiencies.
    I am sure Paul and the rest of the Certification team would be happy to hear more feedback on how to implement practical verifiable real-world experience alternatives to the HOC that do not increase Oracle's costs.
    >
    Since both are unlikely to happen any time soon, what is the least expensive option for the HOC and where do I find a list of courses and institutions that offer them? In my view, Oracle should provide this information as a courtesy. No reason not to unless there is a revenue motive; and the author of the blog posts you sent me assures us the addition of the HOC is not a revenue enhancement maneuver. I'd be more inclined to believe it if those words were backed-up with helpful actions like the one I've proposed--since such a thing seems not to exist.All courses and course locations are available through http://education.oracle.com (and have been available for years) as well as the price. Oracle's policy does not allow for much price variation for education. The exception is when bulk purchased are negotiated, which is outside what you and I can talk with them about.

  • Printing requirements for Bi publisher report

    Hi all
    Can any one tell me the steps required for me to look at the setups on my server side so that i can print the reports using the bursting API.The problem is i am not able to debug the log file as there is no connection error or any other exception but still i am not able to see the documents printed.
    this is part of my log file
    POST /printers/u260 HTTP/1.1Host: u260:631
    User-Agent: Oracle XML Publisher 5.6.3
    Connection: Keep-Alive
    Transfer-Encoding: chunked
    Content-Type: application/ipp
    <<<
    IPP version: 10
    operation id: 410
    charset: utf-8
    request id: 1
    -- operation attrs --
    [1]attributes-charset:utf-8
    [1]attributes-natural-language:en-us
    -- printer attrs --
    -- job attrs --
    From this i understood that there is no problem with the connection but some how it is not printing.
    Any help will be appreciated as i am having tough time figuring out this.
    Thanks
    Harsha

    You need about 40 GB total. Also make sure that your /tmp and /var/tmp have about 2GB free in them, otherwise the installation will fail. (I can't remember the exact numbers, though.)
    I agree, the system requirements do not exist anywere in any straightforward documentation. You need to read at least three different documents to piece together the requirements, and the results will still be incomplete.

  • TS1717 Having trouble running iTunes version 11.0.2 on a Dell Laptop running Windows 7 Professional Service Pack 1.  Keep getting an error message "the software required for communicating with iPods and mobile phones was not installed correctly..." reinst

    Having trouble when I launch iTunes (version 11.0.2) on my Dell Laptop running Windows 7 Professional (service pack 1).  I get an error message indicating software required to communicate with iPod and mobile phones was not installed correctly.  Do you want iTunes to try to repair this for you?  I normally respond with OK and it immediately tells me "could not be repaired.  Please reinstall iTunes..."  I have done this a number of times to no avail.

    I also notice Quicktime is not getting installed at all.
    That one is normal nowadays (ever since the iTunes versions 10.5.x).
    The software required for communicating with iPods and mobile phones was not installed correctly. Do you want iTunes to try to repair this for you?
    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you?
    If instead you get an error message during the install (or uninstall), let us know what it says. (Precise text, please.)

  • What are the Things required for BI 7.0 Implementation project

    Hi Friends,
                      Can any one suggest me
    1.What are the Things required for BI 7.0 Implementation project?
    2.System Configurations & Hardware Components?
    3. Any additional steps...
    plz suggest me.
    Regards

    Hi lakshmi,
    http://csc-studentweb.lrc.edu/swp/Berg/articles/PM_2006_upgrade_NW2004s_Bjarne_Berg_v12.ppt#426,3,Why Upgrade u2013 end of supportu2026
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b8d163a7-0301-0010-d9b0-98f692ea3c60
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2e8e5288-0b01-0010-2ea8-bcd4df5084a7
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/472443f2-0c01-0010-20ab-fbd380d45881
    https://wiki.sdn.sap.com/wiki/x/JYk
    Check the following links.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    check the following
    http://help.sap.com/bp_biv235/BI_EN/html/bw.htm
    business content
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/g-i/how%20to%20co-pa%20extraction%203.0x
    https://websmp203.sap-ag.de/co
    http://help.sap.com/saphelp_nw04/helpdata/en/37/5fb13cd0500255e10000000a114084/frameset.htm

  • What are the jars required for prepare portlet tool?

    what are the jars required for prepare portlet tool which converts portlets to .portlet.

    HI
    you will  have to create manager as portal role and assigned to them  necessary worksets containing necessary worksets  look into the PCD in migrated content and line *?? folder you will have necessary ESS and Mss packages. and all configs is related to iviews system properties and transactions  and applications you need to do it .please do not forget to give points
    with regards
    subrato kundu

  • What are the roles required for MSS

    What are the roles required for MSS in R/3.
    I have created ESS roles. But need to find for MSS.
    I am able to see the PERNR in ESS on portal which created in R/3.
    I need to get my staff on portal.
    What config is required for this.
    MSS User.

    HI
    you will  have to create manager as portal role and assigned to them  necessary worksets containing necessary worksets  look into the PCD in migrated content and line *?? folder you will have necessary ESS and Mss packages. and all configs is related to iviews system properties and transactions  and applications you need to do it .please do not forget to give points
    with regards
    subrato kundu

Maybe you are looking for

  • Facing Problem in SICF configuration

    Dear gurus I want to add logon data in CONTNETSERVER service located in SICF . my PRD is in modifiable state but it does not allow me to enter the username and password. can you guide me how to add this detail ? or is there anyway i can transport the

  • Multi-processor Multi-Threaded deadlock

    Hi all- I've posted this over at jGuru.com and haven't come up with an effective solution but I wanted to try here before I reported this as a bug. This deals with kicking off many threads at once (such as might happen when requests are coming in ove

  • The leftmost item in a blog doesn't response to mouse click.

    In this blog, hantudunia.blogspot.com, I tried to click an item on the leftmost "Histeria" tab, but no finger pointer appear, but adjacent item to the right is clickable. When I used Internet Explorer, all items are clickable. Is this Firefox problem

  • LIBWSC_CAT:1043 ERROR

    Can anybody tell me how to fix this error? 143023.pino!?proc.16940: LIBWSC_CAT:1043: ERROR: Message data decode/decrypt failure I tried to access my server from WS side and got this error message then failed. I didn't use any crypt stuff in my progra

  • Question on Adding Outlook Account

    My school uses Microsoft Outlook. Is there anyway to sync that account to my iPhone?