Which is OS appropriate?

Hi all,
We're using Oracle for SAP and P-series system (P-series system of IBM). So Which is OS appropriate for installation?
Please have a advice!!
Thanks a lot!
DuyPM

Hello DuyPM,
well as you are using P-Series (which means Power architecture) .. you only have 2 choices.
1) IBM AIX
2) Linux on Power
But with Oracle 11g - Oracle have not made any decision for platform "Linux on Power".
Also check the SAP on Oracle Development Update for news ([Link|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d053aa41-75b6-2d10-95b5-9a961a5ae750?quicklink=ora&overridelayout=true] - Page 15)
So for now you only have one choice: IBM AIX
Regards
Stefan

Similar Messages

  • Which Adaptor is appropriate please suggest

    Hi All,
    I have the following scenario and want your suggestions:
    A web based applicaiton (say A) to create customer need to integrate with another web based applicaiton (say B) which uses the customer details to display of Applicaiton A... wondering do I need to go for SOAP adaptor/HTTP adaptor or do I need to integrate these two applicaitons at data base level using JDBC adaptor?
    What are the steps/any documentation to get the data from web site to SAP PI when User clicks submit button?
    Please suggest.
    Thanks
    Rajeev

    >>> but my questtion is what needs to be done at Applicaiton A side to create Input and post the data in the SAP PI URL... As they are using the web client provided by the Application provider..Do they have to write code at the submit button of the web page? If so they have to customnise the code delivered by the provider? How it works.. Its been first time going through this...
    Yes, if you create webservice by creating soap sender and give WSDL, then they will have to write webservice client program in java or any language to access your webservice. This program will be called in their side at the time of hitting submit button of the web page.
    For this you have to go through soap sender sdn documents.
    or  As I already mentioned, create HTTP sender and provide your payload structure and url as we discussed in the above replies. A has to create coding to post HTTP using the url during submit hit button on their web page.
    >>Do they pass all the values in the URL or to the URL?
    This is client A's problem. Why do you worry?  There are plenty of documents to do http post.. The below coding is simple snippet..
    Search google for plenty of documents...
    try {
        // Construct data
        String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
        data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
        // Send data
        URL url = new URL("http://hostname:80/cgi");
        URLConnection conn = url.openConnection();
        conn.setDoOutput(true);
        OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
        wr.write(data);
        wr.flush();
        // Get the response
        BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
        String line;
        while ((line = rd.readLine()) != null) {
            // Process line...
        wr.close();
        rd.close();
    } catch (Exception e) {
    >>Is it possible to use SOAP adaptor instead of HTTP adaptor? so that I can use AAE in the entire scenario. Applicaiton A is a web client interface through which Customers are created.If I need to use HTTP Adaptor, do I need to create HTTP Sender Adaptor and sender Aggrement ?
    Yes, if you host webservice using soap sender adaptor. Already answered above ...
    >> If I need to use HTTP Adaptor, do I need to create HTTP Sender Adaptor and sender Aggrement ?
    no. Http adaptor is in abap stack. so you dont need sender agreement.

  • EzVPN or L2L - which is more appropriate?

    I am in the process of desiging a solution to connect approximately 20 teleworkers to our network for the purposes of working from home. The remote users will have some form of broadband connection (cable or DSL). We have both a VPN3030 and a PIX515e(v7) in our inventory to use as the head end device. My hope is to use the 3030 since it is already in use for L2L and VPNC connections. I have an 871 router in house for testing, it seems like a good choice for the job. My questions are this:
    1. Is the 871 the right device for the job? If not, what is?
    2. Since the broadband connections will have dynamic IP addresses what is the most appropriate VPN type L2L or EZ?
    Any advice will be appreciated. Thanks in advance,
    Mike

    Not sure how the LAN-to-LAN users connect currently on the VPNC. How many users do you have behind the 871 ? If it is one user, then i think the Ezvpn should do, more than 3 or 4 users you can look at a L2L

  • Which HDD More Appropriate?

    Hi,
    I'm about to buy the MacBook Pro 2Ghz but was wandering if there would be a big advantage to buying the model with the faster HDD?
    I will be using MS Office (Word mostly), Adobe Photoshop CS2 and the Internet.
    MacBook Pro   Other OS  

    Owning a portable over a desktop offers great advantages but one must accept concessions in terms of overall performance. Granted, files are larger these days especially with running two separate load-sets within Mac Intel machines. I opted for increased speed of the 7200 as it does access files a bit faster than the 5400. I wanted to have every possible edge where performance is concerned. If you want additional storage, consider “on the go” external options such a 4gb flash drive or external HD. Please mark this post as “helpful”, etc. if it applies.
    Regards,
    2.16 GHz MacBook Pro (W8612...), Dell 620 WorkStation (XP Pro)   Mac OS X (10.4.6)   G4 Tower (OS 9/10), Dell 620 WorkStation (XP Pro), Gateway P4 (XP Home)

  • Windows xp , which service pack is best ?

    hi, can anyone help please ? my PC uses windows xp service pack 2, i have automatic updates enabled but i have not been prompted to update it to service pack 3. i have tried to look for a download to update to service pack 3, as i presume it is better than service pack 2. is this correct ? is it better ?
    also, when i have found a link offering to allow me to get service pack 3, it is accompanied by dire warnings about setting up system restore points, suggestions that only programmers and experts should be doing it and advice about losing files, data and damaging the computer  !! is it worth the (apparent) risk to get service pack 3, how risky is it?
    thanks for all advice.

    this forum is for problems with products supplied by BT retail.  I suggest you try here which is more appropriate  http://social.technet.microsoft.com/Forums/en-US/itproxpsp/threads
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • SM30: table Maintenance - appropriate event while changing existing entries

    Can anyone please let me know which event is appropriate to validate data while changing existing entries in database table using SM30.
    Thanks & Regards,
    Nilesh Kumar

    Hallo,
    You have to create two events for sm30.
    05 FETCH_VALUE_NEW
    21 FETCH_VALUE_CHANGE
    The first event-05 triggers when you create new entry where you can update created by/created date etc.,
    and in the second event-21 you can update Changed by/Changed date.
    Please let me know if you need any further information in this regards.
    BR,
    Rajesh Gupta.

  • Which is more useful in include directive and taglibraries

              I am writing some static html tags inside a file.
              This files i need to call from jsp pages.
              one is i can call using include directive.
              other is writing taglibraries.
              Performance and optimization wise which is more appropriate?
              

    There is an include directive and a jsp:include tag. I would suggest that
              performance differences between these are nominal, with the directive being
              slightly faster due to its "inlining nature".
              Don't write your own tags to do this unless you have to. That would be
              silly.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com
              +1.617.623.5782
              WebLogic Consulting Available
              "Raaj" <[email protected]> wrote in message
              news:3af02b63$[email protected]..
              >
              > I am writing some static html tags inside a file.
              > This files i need to call from jsp pages.
              > one is i can call using include directive.
              > other is writing taglibraries.
              > Performance and optimization wise which is more appropriate?
              >
              

  • Hi which exception is used for incorrect input????

    hi
    the valid input for my program should be like this...
    12 D or 2 D something like this and if the format is not like this.. i wanna throw an
    exception but don't know which one is appropriate one.. i looked up API but there are
    so many....and..can't find one..so..plz help me!!~~! my code is..
    StringTokenizer str = new StringTokenizer(handedCard);
                                    if (str.countTokens() != 2) {
                                      throw //what shoud be here..??                 
                                 }thx guys..here..

    syntax: public class classname or method() throwsI don't think a class can't declare that it throws an exception.
    Back to the question: You have a few choices here.
    1. throw a non-runtime Exception. These must be caught or thrown. This might be what you want, but in the end, you'd just be throwing your exception back to yourself.
    2. RuntimeException: Doesn't need to be caught (but can be caught) advantage is that maybe all you want to do is quit running or tell the user there was an error
    3. Just check the user imput and if it's wrong ask again.

  • Which SAP track

    I am a .NET developer working with one of the top consulting firms. My company has agreed to give me a break in to SAP after taking up a training and gaining good knowledge. I’m very keen to work in a new technology like SAP, but I am confused about which (technical) track to choose. I have narrowed down my choices to SAP BW or Netweaver XI.
    Please help me decide which path is appropriate for my current background (4 years of .NET development). Thanks in advance.

    Brett,
    Better get into BW.
    If you know JAVA too then Netweaver is the best.
    K.Kiran.

  • Appropriate Community for a Query

    Being new to this community website I posted the following in the iWeb Community.  I thought that referred to Apple's Website but as I was rebuked for posting there it clearly is not!  Those who rebuked me for 'tresspassing' did not identify an alternative community.
    Could anyone advise in which is the appropriate community for me to post this query?
    Apple Contact Form: Email address area too small
    I am not sure this is in the correct forum.
    I have tried to use the contact form at http://www.apple.com/legal/contact/ to report a matter to Apple but the number of characters which the form allows me to put into the space for my email address is limited.  The amount is too few for my email address. 
    Can anyone tell me why there needs to be a limitation on the number of characters for this aspect?
    Can anyone tell me how someone like me - who has an email address longer than the alocated quota - can use this form or contact Apple by email?
    As far as I know the Electronic Commerce (EC Directive) Regulations 2002 requires among other things that the email address of the service provider must be given. It is not sufficient to include a 'contact us' form without also providing an email address.

    makfai --
    Those who rebuked me for 'tresspassing' did not identify an alternative community.
    I'm so sorry that was your initial experience with a great support forum.  All of us here are just other Mac users helping each other find solutions.  For someone to be rude to any other poster is very much frowned on here.
    Please accept our apologies, and understand if you do experience that kind of attitude again, you can come back to this Feedback forum and ask that their post be deleted.
    On a more positive note, Welcome!  We're glad you found us.

  • Query on Performance (Which Select is better)

    Hi All,
    Database Version: 11.2.0.3.0
    SELECT CSU.LOCATION ship_to_number,
                       (SELECT location
                          FROM seacds.hz_cust_site_uses_all_nv
                         WHERE SITE_USE_ID = CSU.BILL_TO_SITE_USE_ID
                           AND SITE_USE_CODE = 'BILL_TO'
                           AND CSU.STATUS = 'A') bill_to_num,
                       flv.lookup_code Corp_Code,            
                       (SELECT cust_type
                          FROM seagrs.seagrs_customer_profile
                         WHERE ship_to_num = csu.location) customer_type,
                       p.party_name customer_name,
                       l.address1 address,
                       l.city city,
                       L.STATE STATE,
                       l.country country,                 
                       csu.location ship_to_num
         FROM seacds.hz_cust_site_uses_all_nv  csu,
              seacds.hz_party_sites_nv         ps,
              seacds.hz_parties_nv             p,
              seacds.hz_cust_acct_sites_all_nv cas,
              seacds.hz_locations_nv           l,
              seacds.fnd_lookup_values_nv      flv  
        WHERE csu.site_use_code = 'SHIP_TO'
          AND csu.status = 'A'
          AND ps.party_site_id = cas.party_site_id        
          AND cas.cust_acct_site_id = csu.cust_acct_site_id
          AND flv.description = p.party_name
          AND csu.location = '44408001'
          AND PS.STATUS = 'A'
          AND ps.location_id = l.location_id
          and ps.party_id = p.party_id        
          AND csu.org_id in (SELECT org.operating_unit
                               from seacds.mtl_parameters_nv              mpn,
                                    seacds.org_organization_definition_jv org
                              WHERE mpn.organization_id = org.organization_id
                                AND mpn.organization_code in
                                    (SELECT erp_org_code
                                       FROM seagrs.seagrs_rtn_location
                                      where rtn_loc_type = 'DC'));
    Select  P.Party_Number, Lvn.Lookup_Code, Lcsu.location
        From Seacds.Hz_Cust_Site_Uses_All_Nv  Csu,
             seacds.hz_cust_site_uses_all_nv  Lcsu,
             seacds.hz_party_sites_nv         ps,
             seacds.hz_parties_nv             p,
             Seacds.Hz_Cust_Acct_Sites_All_Nv Cas,
             Seacds.Hz_Locations_Nv           L,
             seacds.fnd_lookup_values_nv      LVN
       WHERE csu.site_use_code = 'SHIP_TO'
         AND csu.status = 'A'
         AND ps.party_site_id = cas.party_site_id
         And Cas.Cust_Acct_Site_Id = Csu.Cust_Acct_Site_Id
         And Csu.Location = '44408001'--p_ship_to_num_in
         and ps.status = 'A'
         AND ps.location_id = l.location_id
         And Ps.Party_Id = P.Party_Id
         AND Lvn.Lookup_Type = 'SEAOE_CORP_CODES'
         And Lvn.Description = P.Party_Name
         And Lcsu.Site_Use_Id = Csu.Bill_To_Site_Use_Id
         And Lcsu.Site_Use_Code = 'BILL_TO'
         AND csu.org_id = (SELECT org.operating_unit
                               from seacds.mtl_parameters_nv              mpn,
                                    seacds.org_organization_definition_jv org
                              WHERE mpn.organization_id = org.organization_id
                                AND mpn.organization_code in
                                    (SELECT erp_org_code
                                       From Seagrs.Seagrs_Rtn_Location
                                      Where Rtn_Loc_Type = 'DC'In the above two queries the first one is taking 1.2 seconds and the second one is taking 2 seconds, i hope the way the second one is written is an optimized way, but why it takes more time.
    Thanks and Regards
    Srinivas

    Hi Karthik,
    Agreed, will perform the SQL trace, but as of now Database is brought down for maintenance. Will get back once it's up. As you have mentioned the difference is negligible, but wish to know which was the appropriate way of selecting the records out of the two. I will perform SQL Trace and get back. Thanks for your response.
    Thanks and Regards
    Srinivas

  • Which availability check procedure will be approprite for Pharma industries

    Hello All,
    I am working with a Pharma client.
    Please suggest me which availability check procedure will be approprite for Pharma industries.
    Depending ATP or On Product Allocation.
    Thanking you in anticipation.
    Regards
    Venkat

    Hi,
    ATP is a basic availability check which have limited functionality. GATP is a more dynamic checking which is suitable for real-time availability check, which is more appropriate for pharmaceutical industry.
    The basic differences between the two checking systems are:
    APO GATP:
    - Check for several Online Transaction Processing (OLTP)
    - Uses Live Cache Technology
    - Advanced Basic method
    - No restriction for combination of basic methods
    - Rules-based substitution
    - ATP check in several locations ("global")
    - Advanced backorder processing
    - Call of production possible
    ERP ATP:
    - Check possible only in an ERP system
    - Uses database tables or shared buffer (ERP server)
    - Basic methods
    - Restriction for combinations of basic methods
    - Standard substitutions
    - Check only in one location
    - Restricted backorder processing
    - No call of production possible
    This topic has been discussed before in the forum.
    You may find the following thread relevant to you:
    GATP
    Thanks.

  • Integrating custom ActiveX control with SapGUI

    Hi everybody
    I'm in the process of writing a custom MFC based ActiveX control written in C++ that we want to use in a product. I am currently at the point where I can instantiate the control and interact with the various methods that it exposes but I have a problem integrating the control more tightly with the SapGUI e.g. change of colors, fonts etc.
    I want to make the control to reflect the user changes when the user modifies any settings of the SapGUI. I've tried catching various events that are exposed by some of the dictionary classes such as cl_gui_props_consumer=>color_change/global_prop_change and cl_gui_resources=>resources_changed but these events only fire in my control once the PAI of the client program that encapsulates the control fires which is hardly appropriate since it means that the control will have to wait for user input before it will change reflect any changes in user settings.
    I've written a test program for my control and when I change my SapGUI colors the rest of the controls etc on the screen do change color but my control only change color once I've performed some action that fires the PAI. Personally I think the controls written by SAP intergrates with the SapGUI through some interface that is called behind the scenes by the SapGUI since the GUI will have some way of knowing the set of ActiveX controls instantiated inside it  and I cannot find any event in the ABAP controls framework (e.g. CL_GUI_OBJECT, CL_GUI_CONTROL) that will allow this type of integration. I'll be digging for the answer but any suggestions will by greatly appreciated.
    Thank you in advance for any help.
    Kind regards
    Ettienne Hugo

    Hello Ettienne Hugo,
    To get the SAP GUI Theme or font changes events you need to add your MFC application or ActiveX MFC dll into u201CSAP Configuration->Application Tab->Addu201D and u need to call the functions SapHookInit and to stop getting the change events u need to call SapHookExit.(sapfhook.dll provides these functions)
    I tried with exe, never tried with ActiveX MFC dll/ocx. With EXE it works.
    Thanks and Regards,
    Ashwini

  • Virtual Logic - for multiprovider based on InfoObjects, not based on cubes

    Hi all,
    I am fully aware how to write virtual key fig/char code for multiproviders that are based on cubes, but not for multiproviders based on InfoObjects.  Oddly this has not been a necessity for a couple of years.
    I need to understand how to translate the C_S_DATA components.
    Normally, on a standard multprovider, I would assign a component thusly.
      ASSIGN COMPONENT G_POS_<i>multicubetechname_virtualchartechname</i>
        OF STRUCTURE C_S_DATA TO <l_var1>.
    This does not work.  I can see in C_S_DATA that the objects of interest appear with the format K__xxxx and I am able to decipher those needed. 
    The question:  How do I assign these?
    I have attempted the following with no luck.
      ASSIGN COMPONENT G_POS_<i>multicubetechname_K__xxxx.</i>
        OF STRUCTURE C_S_DATA TO <l_var1>.
    I have also tried this.
      ASSIGN COMPONENT G_POS_<i>masterInfoObjecttechname_K__xxxx.</i>
        OF STRUCTURE C_S_DATA TO <l_var1>.
    And just for kicks I have tried this.
      ASSIGN COMPONENT G_POS_<i>masterInfoObjecttechname__Kxxxx.</i>
        OF STRUCTURE C_S_DATA TO <l_var1>.
    Could someone shed some light on this?
    Many many thanks,
    Larry

    Below is the 'c_s_data' components.  The K entries are the appropriate items, which I can tell by the character type and length.
    S____028
    S____1078
    S____1100
    S____1101
    K____1101
    K____028
    K____1100
    K____1078
    Oddly, if I proceed as normal, using G_POS_<i>multicubetechname_attributetechname</i>, remember that the data in the cube is attribute data of the master InfoObject, the assignment returns the record number from c_s_data.  For example:
    G_POS_<i>ZM_EMPL_0COMP_CODE</i> is passing the value of 7 which is the appropriate row number for K____1100 in c_s_data referenced above.
    Thanks for trying.
    Larry

  • If statement in update query

    I was wondering if you could have a cfif statement inside of a update query.  See example below.  Is there a better way of doing it? thanks.
    <cfquery DATASOURCE="xxx" name="update">
      UPDATE plant_gen_info
            SET levels_complete = #URL.var0#
                <cfif IsDefined("URLvar13">
                ,Q1_answer = #URL.var13#
                </cfif>
            WHERE ID = #session.member_id#
      </cfquery>

    TheScarecrow,
    Yes, dynamic query statements can be assembled using <cfif>.  I would suggest you switch your IsDefined() to a StructKeyExists() and strongly suggest you make good use of <cfqueryparam>:
    <cfquery DATASOURCE="xxx" name="update">
      UPDATE plant_gen_info
            SET levels_complete = <cfqueryparam value="#URL.var0#" cfsqltype="****">
                <cfif StructKeyExists(URL, "var13")>
                ,Q1_answer = <cfqueryparam value="#URL.var13#" cfsqltype="****">
                </cfif>
            WHERE ID = <cfqueryparam value="#session.member_id#" cfsqltype="****">
      </cfquery>
    I put a "****" placeholder for cfsqltype attributes because I'm not sure which would be appropriate for your variables.  See the help docs for more on the cfqueryparam and cfsqltype.
    -Carl V.

Maybe you are looking for