Calling Netweaver XI/PI Basis experts

Experts,
In my prod we've 3 P6 CPUs Entitlement, 6 Virtual.
When I'm adding new server node. I can see performance degrade.
If you add java server node and you didn't find any performance issues, can you please share your
CPU information?
Thanks
Sagar

Hi Sagar
It's also very important you have sufficient memory in the system.
On the other side, how many java server nodes you have at present?
Did you happen to check the quicksizer tool to asses the requirements?
Please go through this below URL that helps you in sizing and performance tuning features available with PI 7.1
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2016a0b1-1780-2b10-97bd-be3ac62214c7?quicklink=index&overridelayout=true
Regards
Sekhar

Similar Messages

  • How can we make a call to the Data base in the SAP Scripts?

    Hi All,
            How we make a call to the data base in scripts?
    I think we can use the PERFORM statement to achieve the above functionality.
    Pls correct me if i am wrong?
    Regards
    Abhilash.

    Hello.
    If you want to access database in the script itself (not in print program) yes, you can use PERFORM statement.
    In your script, use:
    /: PERFORM F_FORM IN PROGRAM ZRFIRFS05
    /: USING &VAR1&
    /: CHANGING &VAR2&
    /: ENDPERFORM
    Then, create a program ZPROG (ZRFIRFS05 in my case) with a structure like this one:
    REPORT ZRFIRFS05 .
    FORM f_form TABLES in_par STRUCTURE itcsy out_par STRUCTURE itcsy.
      DATA: l_data1(10).
      READ TABLE in_par WITH KEY name = 'VAR1'.
      CHECK sy-subrc = 0.
      l_data1 = in_par-value.
    *  SELECT .... "YOUR SELECT TO DATABASE
      READ TABLE out_par WITH KEY name = 'VAR2'.
      CHECK sy-subrc = 0.
      out_par-value = l_data3.
      MODIFY out_par INDEX sy-tabix.
    ENDFORM.
    Regards.
    Valter Oliveira.

  • How to call a Derived call fucntion with a base class object ?

    Hi all
    i am working on a JNI interface to Java, and in the process of simulating a C++ behaviour in java
    so i need some help form you people, in this regard.
    here is a c++ code, i need a equivalent fucntionality in java , to put it one word, the question is
    how to implement the dynamic_cast functionality in java, as java also has virtual fucntions, i think
    this should be possible, if it is not, what is the alternative
    class Base
    public:
         Base()
         ~Base()
         virtual void F1()
              cout<<"The BASE::F1() is called"<<endl;
         virtual void F2()
              cout<<"The BASE::F2() is called"<<endl;
    class Derived : public Base
    public:
         Derived()
         ~Derived()
         virtual  void F3()
              cout<<"The Derived::F3() is called"<<endl;
         virtual void F4()
              cout<<"The Derived::F4() is called"<<endl;
    Base * GetDerived()
         return new Derived();
    int _tmain(int argc, _TCHAR* argv[])
         Base *ptr = NULL;
                    ptr  = GetDerived();
         Derived *dPtr = dynamic_cast<Derived *>(ptr);
                    dPtr->F3();
    }regards
    pradish

    Just to clarify a point that I consider important--the distinction between references and objects:
    Your subject is: How to call a Derived call fucntion with a base class object ? The answer to that is: You cannot. It is completely impossible in Java. If you have a base class object, the derivced class' methods are not present. On the other hand, if you have a compile-time reference of the parent type, but at runtime it happens to point to an instance of the derived class, then, as pointed out, you can cast the reference. (Note that casting does not apply to objects.)

  • How to call derived class to base class

    Hello everybody,
    I create a GUi application in java swing. Now i want to navigate between the screen but the timing between the screen is very slow bcoz i imported the class from package to another package. Now i want to extends one package to another package to reduce the navigation time but it saying error bcoz i cant able to call my derived class to base class. if anyone know the answer for this please answer this immediately.
    If any other method is there to optimise the navigation time please tell me
    by
    (kamal)

    Sorry, I've got major difficulties understanding your query:
    I create a GUi application in java
    ication in java swing. ok
    Now i want to navigate between
    the screenwhat? switch screens? display a different dialog?
    but the timing between the screen is very
    slowtiming? do you mean the time it takes to display a different dialog?
    bcoz i imported the class from package to
    another package.how did you come to the conclusion that that is the reason for the slowness? Did you do any profiling or is this just guess-work?

  • Call function from data base with clob input parameter.

    Hello,
    In this project I use Jdev 11g.
    I call function from database.
    create or replace function get_fa_list (
    p_fa_id_list in clob
    return sys_refcursor
    is
    vCursor sys_refcursor;
    begin
    put_msg ('begin');
    if p_fa_id_list is null then
    put_msg ('CLOB is null!');
    else
    put_msg ('size CLOB: ' || dbms_lob.getlength (p_fa_id_list));
    end if;
    put_msg ('Save');
    open vCursor for
    select rownum as id, s.*
    from (
    select f.latitude, f.longitude, count (distinct f.res_id) as res_count, count (*) as fa_count, 16711680 as color, res_concat_distinct (f.res_id) as station_list
    from mv_frequency_assignment f, table (SplitClob (p_fa_id_list, ',')) l
    where f.ext_system = 'BI' and
    f.ext_sys_id = l.column_value
    group by f.latitude, f.longitude
    ) s;
    put_msg ('Open and End');
    return vCursor;
    end get_fa_list;
    I use TopLink in ejb.
    i use follow code for call function and get result.
    public List<TmpResPoints> findAllPointsBI(String p_id){
    UnitOfWork uow = getSessionFactory().acquireUnitOfWork();
    uow.beginEarlyTransaction();
    StoredFunctionCall call = new StoredFunctionCall();
    call.setProcedureName("get_fa_list");
    call.useUnnamedCursorOutputAsResultSet();
    ClobDomain c = new ClobDomain(p_id);
    //System.out.println(c.toString());
    call.addNamedArgumentValue("p_fa_id_list", c);
    ReadAllQuery query = new ReadAllQuery();
    query.setReferenceClass(TmpResPoints.class);
    query.setCall(call);
    List<TmpResPoints> result = (List<TmpResPoints>)uow.executeQuery(query);
    uow.commit();
    uow.release();
    return result;
    But size parameter "p_fa_id_list" is 0. (geting from temp table in Data base). this code in function >>
    if p_fa_id_list is null then
    put_msg ('CLOB is null!');
    else
    put_msg ('size CLOB: ' || dbms_lob.getlength (p_fa_id_list));
    end if;)
    How I can call this function from dataBase and get result?
    thx,
    Demka.

    What is the SQL generated?
    The argument should just be the Clob value (a String) not the domain object.
    Also try addNamedArgument, and then pass the named argument to the query.
    James : http://www.eclipselink.org

  • Calling multiple url's base on button click in JSP

    I am trying to call a different jsp depending on which button is clicked on my jsp.
    The way I currently have it working is by posting and I set the url in the action attribute of the form.
    Anyone ever do this or have a solution?
    Thanks.

    I tried the following code but it did not seem to work.
    Do I have to change anything on my form line?
    <form name="form1" method="post" action="/TestJSPModule/DbMaint_Submit.jsp">
    Is the document.forms format exactly the way I have to type it?
    Or is it the actual form name.
    If form name is form1
    Example: document.form1
    <script language="javascript">
    function submitForm(){
    if (document.forms[0].Submit.value='Insert')
    document.forms[0].action="url1";
    if (document.forms[0].Submit2.value='View')
    document.forms[0].action="url2";
    if (document.forms[0].Submit3.value='Delete')
    document.forms[0].action="url3";
    document.forms[0].submit();

  • Calling function on the basis of parameter passing in oracle discoverer

    Hi,
    In my report i want to pass parameter for currency and want to call a function. Is it possible in oracle discoverer to call function created in oracle database.

    Hi Rod,
    e.g i have report. While i run the report parameter wizard dialog box open. i have different parameter like Module, Country, Date etc right now, not using currency.
    The report shows me the following fields
    Actual Sales, last yr Sales, Target
    1000 5666 100000
    etc. And all Dara in Currency SAR by default.
    Now,
    There is one another parameter i.e. Currency and i entered the value for currency as INR. and also enter the other parameters
    I want that as this currency INR enter,it call that currency conversion function and convert the data in INR.
    and when i click the OK button in Parameter wizard I want to see the same data in INR currency.
    If the above is possible then please tell my by steps.
    if you can share your email id so that i can show you the report, and clear my requirement.
    Thanks
    kam

  • Help: Basic API call randomly crashes.  Enlightened experts may know...

    Here is the function and it is called once a second. The try-catch was added later.bool UserInfo::IsCurrentUserInteractive()
    uid_t uid;
    gid_t gid;
    /* Getting the username of current consoleuser. Note
    * that if the username is NULL then that means that
    * no user is presently logged in. We do the lookup
    * using the SCDynamicStoreCopyConsoleUser call.
    * First Argument: The dynamic store to use to lookup
    * the console username. We only need a temporary dynamic
    * store so pass null.
    * Second Argument: On return this will have the
    * UserID (UID) of the new user. We pass in a uid_t variable
    * so we can get the return value. This value isn't used but
    * is included for demonstration purposes.
    * Third Argument: On return this will have the
    * GroupID (GID) of the new user. We pass in a gid_t variable
    * so we can get the return value. This value isn't used but
    * is included for demonstration purposes.
    * Return Value: The console username expressed as a CFString.
    * This string must be eventually released with a CFRelease call.
    CFStringRef Name = NULL;
    // This call has crashed before
    try
    Name = SCDynamicStoreCopyConsoleUser(NULL, &uid, &gid);
    catch(...)
    return true;
    if (NULL == Name)
    return false;
    CFRelease(Name);
    return true;
    This can run for hours, being called every second without a problem. However eventually it will crash. Here is the crash log BEFORE I added the try-catch.PID: 148
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x000001f9
    Thread 0 Crashed:
    0 libSystem.B.dylib 0x90003040 szone_malloc + 590
    1 libSystem.B.dylib 0x90002da7 malloczonemalloc + 571
    2 com.apple.CoreFoundation 0x9082bb0d CFRunLoopRunSpecific + 196
    3 com.apple.CoreFoundation 0x9082ba42 CFRunLoopRunInMode + 61
    4 com.apple.HIToolbox 0x92de9878 RunCurrentEventLoopInMode + 285
    5 com.apple.HIToolbox 0x92edece0 GetNextEventMatchingMask + 100
    6 com.apple.HIToolbox 0x92f58c5a GetNextEvent + 85
    7 com.chatter.box 0x00007cba EventPump() + 36
    8 libSystem.B.dylib 0x9011072c _sigtramp + 49
    9 libSystem.B.dylib 0x90002f9c szone_malloc + 426
    10 libSystem.B.dylib 0x90002da7 malloczonemalloc + 571
    11 com.apple.CoreFoundation 0x9080b53c _CFRuntimeCreateInstance + 155
    12 com.apple.CoreFoundation 0x9080b27c __CFStringCreateImmutableFunnel3 + 1453
    13 com.apple.CoreFoundation 0x90817c1b CFStringCreateWithBytes + 94
    14 com.apple.CoreFoundation 0x90837622 __CFBinaryPlistCreateObject + 1405
    15 com.apple.CoreFoundation 0x90837fc6 __CFBinaryPlistCreateObject + 3873
    16 com.apple.CoreFoundation 0x90837b86 __CFBinaryPlistCreateObject + 2785
    17 com.apple.CoreFoundation 0x90837fc6 __CFBinaryPlistCreateObject + 3873
    18 com.apple.CoreFoundation 0x9082e623 __CFTryParseBinaryPlist + 177
    19 com.apple.CoreFoundation 0x9082d990 _CFPropertyListCreateFromXMLData + 150
    20 com.apple.CoreFoundation 0x9082d8f7 CFPropertyListCreateFromXMLData + 54
    21 com.apple.SystemConfiguration 0x91421152 _SCUnserialize + 99
    22 com.apple.SystemConfiguration 0x91420f6b SCDynamicStoreCopyValue + 285
    23 com.apple.SystemConfiguration 0x91423e97 SCDynamicStoreCopyConsoleUser + 158
    24 com.chatter.box 0x0000a51a UserInfo::IsCurrentUserInteractive() + 32
    25 com.chatter.box 0x000087de ClientCore::DoRun() + 808
    26 com.chatter.box 0x00007e20 main + 308
    27 com.chatter.box 0x0000733e _start + 216
    28 com.chatter.box 0x00007265 start + 41Now after the try-catch:PID: 291
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90a58387 objc_msgSend + 23
    1 com.chatter.box 0x0000a58f UserInfo::IsCurrentUserInteractive() + 61
    2 com.chatter.box 0x00008833 ClientCore::DoRun() + 805
    3 com.chatter.box 0x00007e5b main + 355
    4 com.chatter.box 0x0000733e _start + 216
    5 com.chatter.box 0x00007265 start + 41
    This leads me to several questions:
    1. Why is this crashing my app?
    2. Why isn't the try-catch trapping the exception and preventing the crash?
    3. How can I prevent this crash?
    The purpose is simply to know if there is an interactive user. By getting the console user you can find out. If there is no console user, then clearly, there is no interactive session. I know there can be fast user switching on Macs, although I do not know how to do it, so it is possible for an app to be running as a user who doesn't have a GUI because they didn't log out, they just switched out to another user and all their apps are still running. I am going to make all the parameters null since I do not use them, this was basically a cut and paste job from some API documentation with sample code.

    karma-9 wrote:
    809648 wrote:
    i know i m sucked and really need ur expertise help asap or i would suicide for this hw! pls!
    If you can't even start with that assignment, there is no need to go to such extreme lengths as to kill yourself.
    Just don't go into programming, find other areas of interest and a different career path.Or, you know, talk to your lecturer, teacher, or tutor. As opposed to just give up.
    I failed my first-ever CS assignment. Got 7/20 for my Haskell and then -7 because it didn't compile.
    Considered dropping my degree, spoke to the tutor who pointed out a couple of book chapters to read, got 90% or higher in the next three tests, then ended up with an honours degree four years later. Everyone has hurdles or brick walls to negotiate, but it doesn't mean you're not cut out for a career there. It's not a case of natural talent, just persistence and practice.
    Oh, and mods - sorry for the 'irrelevant humour' before. I shan't try it again until I've got my post count to my previous levels and I then can join in all the mocking by regulars. ;)

  • Basis expert please help me?

    Hi,
    is this a right forum for basis or we have different for basis?
    We have problem with “BAPI_USER_CHANGE” bapi.
    Following is our requirement
    We have proxy generated for above bapi, this proxy runs fine on SAP 4.6B, 4.6C
    And 4.7. The problem with SAP 4.6C client and ides 4.6c client is as follow
    Scenario I.
      When we run proxy with change password flag on in ides client it works fine.
    But with the same proxy it is not resetting the password in SAP4.6C client. Why is this so?
    Scenario II
      On SAP 4.6C client it reset the password for numeric values but not for alphanumeric when we run proxy and another observation is that when we run above bapi within SAP it work fine with changing password for numeric as well as alphanumeric values but not working with proxy.
    We have compared the bapi across ides 4.6C client and SAP 4.6C client it is same.
    Let us know the what is solution for this? Is there any password reset policy followed by SAP.
    Thanks,
    john

    Have you tried running BAPI_TRANSACTION_COMMIT immediately after BAPI_USER_CHANGE?

  • Calling All Iphone 3G Users! Calling All Iphone 3G Users & Experts.

    I am heading over seas. A friend is about to purchase a I-phone for me & sent pictures. Included are both colors. According to these pictures,disregarding any accessories or background images. Is this iphone FAKE ? ? ?
    - Please Help Me Guys & Gals!...Pictures are below

    Some of these are definite knockoffs.
    The second pic down, with the USB port/battery on the bottom - there is to much space above the home button. On a real iPhone it is centered in the black band.
    Same thing on the next pic, the slide to unlock is up way to high.
    The white one has something funky going on with the ports on the bottom. Also, notice the USB cable in the middle pic, it seems to be full size USB on one end as expected, but the other end is not the wider Apple ipod connector - it can't be and stay hidden behind the USB plug.
    Also, iPhones don't come with all those accessories, not even a slipper case.
    Another poster, in another thread talks about an "iPhone" that a relative brought back from China. iTunes will not recognize it, and his PC shows it as 2 removable drives that total 1GB and a web cam.

  • IVR sample scripts that routes calls base on States?

    Does anyone have a sample IVR script which can route calls to different queues base on the States or ZIP code enter by the user?
    Thanks.

    Yes, I read this document. 
    I've created ccm group, sccp local interface, dspfarm profile, and registered it to telephony-service. It's ok. 
    Yes, IVR still be availible under SRST, it runs as vxml script on router flash.
    I configured router for inbound/outbound calls in g711a, and it works fine. But when using IVR with .wav file in g711u codec I've got a problem. I decided to use translation-profile on incoming dial-peer, from incoming number to internal IVR number, but it doesn't work. 
    I attached config of xcoder, dial-peers and translation rules.
    In normal mode (without IVR) I receive calls in dial-peer voice 30804242 voip and after it translate them to dial-peers 1 or 2 to CUCM phones.

  • Calling Ldb

    Hi Experts
    Can i call 2 logical database screens in one program.
    my requirement is i have to combine to standard programs as one program ,but problem is each standard program of first 2 selection screen blocks is calling through  logical data base selection screen.
    is there any solution for this .

    Hii
    1. A logical database is in fact
    a program only.
    2. This LDB provides two main things :
    a) a pre-defined selection screen
    which handles all user inputs and validations
    b) pre defined set of data
    based upon the user selection.
    3. So we dont have to worry about from
    which tables to fetch data.
    4. Moreover, this LDB Program,
    handles all user-authorisations
    and is efficient in all respects
    while creating type PNP
    in logical database field.
    REPORT z_ldb.
    infotypes : 0001.
    TABLES : PERNR.
    GET PERNR.
    WRITE :/ PERNR-PERNR.
    5. The selection screen which u see
    is coming from logical database PNP program.
    6. Execute
    7. U will get a list of pernr.
    SAPDBPNP
    this is the main program of LDB PNP
    which does the main work.
    SAPDB + ldb name.
    In the attributes of your program  you must have  entered the name of the logical database
    it is through there the selection screen comes
    Regards
    Naresh

  • SD - SA Forecast Schedules  and JIT calls

    Hi Experts,
    We have a situation here - customer sends Forecast Schedules (for planning) and JIT calls through inbound 830 and 862 respectively. When 830 hits SAP system the schedules on forecast tab are replaced with new schedules in the existing SA from the schedules in 830. The customer then sends 862 - JIT Calls on a need basis.
    The situtation here is Customer can only confirm a certain quantity in one JIT call for a given JIT horizon date. So customer ends up sending multiple JIT calls for the same material (most of the times they are in the same transmission). All these JIT calls need to be added as schedules in SAP irrespective of the similar existing schedules within a given JIT horizon.
    The issue is SAP can only copy old schedules which are outside of the given JIT horizon when a new JIT schedule is added. Is there a way to handle this situation and add all the JIT schedules which are sent in different JIT calls regardless of JIT horizon.
    Any help in this regards is highly appreciated. Points guaranteed for helpful answers.
    Regards,
    Gajendra
    Edited by: Gajendra Bhatt on Apr 2, 2008 5:28 PM

    Implemented an enhancement in the ODETTE logic using the new enhancement technique. This enhancement looks for a special rule assignment for the customer in OVA9. If the rule is assigned then it copies the existing delivery schedule lines to the new delivery schedule regardless of the new delivery schedule date.

  • Basic knowledge about Sap Netweaver, Web As, Web Dynpro

    Hi guys,
    I am a new nut guy trying to understand Sap NetWeaver. Could you guys explain to me just briefly in the most simplest ordinary terms about points below. I tried to read documentations but do not understand completely.
    1) What is Sap NetWeaver? Does it comes with several components?
    2) What is Web AS?? what does it serve?
    3) I heard about Web Dynpro for Java and Web Dynpro for Abap. They are used to develop Web applications in Java language and the other in Abap language. I'm interested just on knowing the Java side.
    I just want to understand the hardware systtem achitecture and associated software to be installed.
    Now for Java, I heard that we need to install Web Developper Studio, rite?? then which version should I install, Sap Netweaver SP16 or Sap Neweaver 2004 or Sap Netweaver 2004s?? where can i find it?? should it be installed in front end station? do i need Java?
    Now for Web AS, where do i install it??
    I'm totally new in Sap NetWeaver
    Thanks a lot guys

    Hi Ralph, I will try to keep it simple.
    <i>
    1) What is Sap NetWeaver? Does it comes with several components?
    </i>
    SAP Netweaver is the platform in which all SAP software runs on top of.  For example R/3 ran on the "Basis" layer,  this is simular in ECC6.0, where ECC is the R/3 part and Netweaver(ABAP stack) is the "Basis" Layer.  With Netweaver you get two stacks, ABAP and Java.  SAP components run on one or the other.  Netweaver includes, but is not limited to:
    Netweaver Application Server(formerly called WebAS)
    Netweaver Portal(formerly called EP)
    Netweaver XI(I think there is a new name for this)
    etc.
    <i>
    2) What is Web AS?? what does it serve?
    </i>
    WebAS is now called Netweaver Application Server, this is the basis for all applications, whether ABAP or java based.  For example the ECC(R/3 component) runs on the ABAP stack of Netweaver Application Server,  the Netweaver Portal runs on the Java stack of NW Application Server.
    <i>
    3) I heard about Web Dynpro for Java and Web Dynpro for Abap. They are used to develop Web applications in Java language and the other in Abap language. I'm interested just on knowing the Java side.
    </i>
    For the java side, you develop the webdynpro applications locally on your laptop using NWDS(Netweaver Developer Studio) and then deploy this application to the Netweaver Application Server(java stack).  You can then implement the application into an iView in the NW Portal.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/15/0d4f21c17c8044af4868130e9fea07/frameset.htm
    <i>
    I just want to understand the hardware systtem achitecture and associated software to be installed.
    Now for Java, I heard that we need to install Web Developper Studio, rite?? then which version should I install, Sap Netweaver SP16 or Sap Neweaver 2004 or Sap Netweaver 2004s?? where can i find it?? should it be installed in front end station? do i need Java?
    Now for Web AS, where do i install it??
    </i>
    Which NWDS to install depends on the version of the java engine in which you are working with.  The rule is that you keep the version of NWDS in sync with the version of the Netweaver Application Server(java engine).   Usually the NW AS, is intalled on a standalone server(not your laptop), but you can install sneak preview editions on your laptop for testing .
    I hope this helps a little.
    Regards,
    Rich Heilman

  • SAP NetWeaver component naming (and numbering)

    I have noticed this week (10-Oct-2005) that a number of the NetWeaver components have been renamed. For example, Enterprise Portal now seems to be called NetWeaver Portal, etc.
    What is the next 'evolution' of SAP NetWeaver component naming (and version numbering)?

    Hi,
    Just to add to my colleagues response. The SAP NetWeaver components are actually going away (they still exist for historic reasons). The new approach will start with SAP NetWeaver 2004s.
    Because of the growth of SAP NetWeaver technology and the reuse of features from one component in another and in new capabilities there is little sense in retaining the components naming.
    Is BI still BI if new functionality means you always access it through a portal for admin and query execution?
    So as the portal needs J2EE, BI will requires ABAP, J2EE, Portals, kmc, and BI from SAP NetWeaver. Is this the same old BI? We don't think so.
    This simply stops making sense to have pigeon holing component names on an ongoing basis especially when you start really blurring the lines between 'components'. They do not work!
    So SAP is now delivering SAP NetWeaver features and functions as IT Practices and IT Scenarios. These replace the component based rollout of SAP NetWeaver. For more information see the SAP service marketplace (http://service.sap.com/netweaver)
    You will still see the SAP NetWeaver 'fridge' slide as this is showing capabilities of SAP NetWeaver (example: BPM and Integration broker). Their will be more and more capabilities added as we add more meaningful groupings of technologies (example of recent ones: SAP NetWeaver MDM and Visual Composer).
    So, in short the component names are going away and being replaced by IT Practices/IT Scenarios.
    I hope this helps,
    Mike.
    P.S. Release numbers also history for SAP as we don't have components - so you will only see SAP NetWeaver release names like 2004s.

Maybe you are looking for

  • MacBook Pro (W8638) shuts down unexpectedly in both Safari & Firefox

    My 2006 MBP has worked well. The machine model is MacBookPro 1,2; 2.16GHz, Family name: A1151, screen size 17 inch, Memory DDR2-S-667 running OS 10.6.8 Snow Leopard. Two weeks ago it started shutting down unexpectedly. In three of the first four unex

  • Packaging an AIR application in a native installer

    Hi! I'm trying to create a native installer of my AIR Application,  because (I think) it's the only way make the native processes working.  But I have a problem: I used the following command to pack: "adt  -package -storetype pkcs12 -keystore myCert.

  • Zen Micro Doing Some Weird THINGS PLEASE H

    well i've had my zen for a long time and enjoyed it for along time till one day the screen goes blank but i could still listen to my music. its way out of warranty and i tryed to upgrade the firmware but my device wasnt recognized bye the update. Nap

  • My HP ENVY 100 D410a is connection issues between MacBook Pro OSX 10.6

    Both my Macbook Pro OSX 10.6  and my HP Envy 100 D410a is connected to my wireless nextwork. Everything was working fine until recently, my macbook does not connect, - keeps saying the printer is offline when it clearly is on and connected. I have tr

  • My imac 17' core duo 1.8ghz a1173 freezes after about 1 minute of running

    My imac 17" core duo 1.8ghz A1173 freezes after about 1 minute of running. I re-start the imac about a half a dozen times and it stays running and will re-start from the sleep mode and will continue to operate properly until I put it in sleep mode or