Cluster Validation Requirement (for contract support)

Can anyone give definitive information on how a newly built cluster may be validated ? We have a support contract in place but I have not found detailed information on how to meet this requirement and how it relates to support during a production-down issue.
Thanks,
Jim

Thanks Tim. My rep is investigating right now.
I was hoping there might be some detailed information on the validation service on the Oracle/Sun sites. Obviously we'd like to avoid an iterative process by knowing up front what is involved before asking for the service.
Jim

Similar Messages

  • Checking for Patch Requirements for Extended Support of 11.5.10

    Hello
    I am trying to check for a client that they are meeting the minimum requirements to remain on Extended Support. They use 11.5.10.2 and run that on a 11.2.0.3 db
    The method I am using is:
    1.
    Check to see what is Shared and Licensed via OAM.
    This will tell me the products that we must licensed and shared and which we must ensure we meet the minimum
    2.
    Go to Patch Requirements for Extended Support of Oracle E-Business Suite Release 11.5.10 [ID 883202.1]
    and ensure that we are meeting these.
    Seems very tedious ... (over 60 products to check) is there another way?
    DA

    Pl see if this MOS Doc can help
    How to Verify the Versions for the 11.5.10 Minimum Baseline Requirement (Note 883202.1) [ID 1271621.1]
    Pl also see
    https://blogs.oracle.com/stevenChan/entry/ebs_11i_patch_wizard_extended_support_baseline
    HTH
    Srini

  • Authorizations  required for applying support packs

    What authorizations do you require for applying support packs?

    After u successfully downloaded the support pack from the service market place , the 1st authorization u need is for using the client 000.
    Only with the client 000 u will be available to import the support pack (ABAP suppotr package) using transaction SPAM. To use all SPAM functions, you require the following authorizations:
    S_TRANSPRT
    S_CTS_ADMIN
    If you log on in client 000, then your user master data contains the corresponding authorizations (inside the authorization profile) and you can use all the functions in Support Package Manager.
    For Java u can use jspm tool for applying the support packages for any component and if u want to enhance or upgrade the java components( say from ESS 1.1 to ESS 1.2) then u can do it using sdm tool.
    Before applying the pack u need to unpack the abap/java files using the commands in the command- prompt and copy the unpacked files into sap/sid/trans/eps/in folders of ur system.
    Also before using the SPAM for abap support pack make sure that u had set ur system as the domain-controller in transaction stms with ddic user and masterpwd.
    Go thru this document:-
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7a2e4346-0a01-0010-718a-fa846ad19716
    Award points if found helpful

  • OSB: Payload validation required for empty elements inside OSB process.

    Hello
    I need to validate the payload for non-empty elements. If the payload is completely empty then OSB should throw an error that the submitted payload is empty.
    If the payload contains at least one element then it should pass through.
    As in process to test this particular one, i have tried with the following code to generally validate for an element.
    xquery version "1.0" encoding "Cp1252";
    (:: pragma bea:global-element-parameter parameter="$inputParameters1" element="ns0:InputParameters" location="../adapter/StoreProcDB/xsd/StoreProcDBService_sp.xsd" ::)
    (:: pragma bea:schema-type-return type="ns1:Validation" location="../xsd/validation.xsd" ::)
    declare namespace xf = "http://tempuri.org/StoreProc_osb/transformation/PayloadValidation/";
    declare namespace ns1 = "http://www.sigmainfo.com/validation";
    declare namespace ns0 = "http://xmlns.oracle.com/pcbpel/adapter/db/sp/StoreProcDBService";
    declare function xf:PayloadValidation($inputParameters1 as element(ns0:InputParameters))
    as element()
    <ns1:Validation>
              <ns1:Payload>{$inputParameters1/.}</ns1:Payload>
              <ns1:ValidationErrorList>
                   (: BEGIN - Required Field Validations :)
              (:     if (empty($inputParameters1/ns0:ACCOUNTNUMBER/text())) then
                        <ns1:ValidationError>
                             <ns1:code>1</ns1:code>
                             <ns1:message>ACCOUNTNUMBER: Required Field</ns1:message>
                        </ns1:ValidationError> :)
                   if (empty($inputParameters1/ns0:AUDITUSER/text())) then
                        <ns1:ValidationError>
                             <ns1:code>1</ns1:code>
                             <ns1:message>AUDITUSER: Required Field</ns1:message>
                        </ns1:ValidationError>
                   else ''
                   (: END - Required Field Validations :)
    </ns1:ValidationErrorList>
         </ns1:Validation>
    declare variable $inputParameters1 as element(ns0:InputParameters) external;
    xf:PayloadValidation($inputParameters1)
    But it throws the following error:
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    REQUEST DOCUMENT:
    <soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Header
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    </soap:Header>
    <soapenv:Body>
    <stor:InputParameters
    xmlns:stor="http://xmlns.oracle.com/pcbpel/adapter/db/sp/StoreProcDBService">
    <!--Optional:-->
    <stor:P_ACCOUNTNUMBER>00101</stor:P_ACCOUNTNUMBER>
    <!--Optional:-->
    <stor:P_AUDITUSER>venkat</stor:P_AUDITUSER>
    </stor:InputParameters>
    </soapenv:Body>
    </soapenv:Envelope>
    RESPONSE DOCUMENT:
    The invocation resulted in an error: . <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Body><soapenv:Fault><faultcode>soapenv:Server</faultcode><faultstring>BEA-382505: OSB Validate action failed validation</faultstring><detail><con:fault xmlns:con="http://www.bea.com/wli/sb/context">
    <con:errorCode>BEA-382505</con:errorCode>
    <con:reason>OSB Validate action failed validation</con:reason>
    <con:details>
    <con1:ValidationFailureDetail xmlns:con1="http://www.bea.com/wli/sb/stages/transform/config">
    <con1:message>
    Incompatible elements: expected an XML instance of name "{http://xmlns.oracle.com/pcbpel/adapter/db/sp/StoreProcDBService}InputParameters", but found an XML instance of name "{http://schemas.xmlsoap.org/soap/envelope/}Body".
    </con1:message>
    <con1:xmlLocation/>
    </con1:ValidationFailureDetail>
    </con:details>
    <con:location>
    <con:node>PipelinePairNode1</con:node>
    <con:pipeline>PipelinePairNode1_request</con:pipeline>
    <con:stage>stage1</con:stage>
    <con:path>request-pipeline</con:path>
    </con:location>
    </con:fault>
    </detail>
    </soapenv:Fault>
    </soapenv:Body>
    </soapenv:Envelope>
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    But this is not the way it should be done as i progress.
    Please suggest a simple way to have a pragma with sample and complete validation for the input payload.
    Appreciate your help in advance
    Regards
    Venkat

    Venkat,
    Find below url's for implementing security policies in OSB
    http://docs.oracle.com/cd/E17904_01/doc.1111/e15866/owsm.htm#CHDEEGJI
    http://docs.oracle.com/cd/E17904_01/doc.1111/e15866/owsm.htm#CHDBIJHD
    http://niallcblogs.blogspot.in/2010/07/osb-11g-and-wsm.html
    http://biemond.blogspot.in/2009/06/ws-security-in-osb.html
    Regards,
    Abhinav

  • What are the Master Table validations required for below fields

    Hi,
    I have created a selection screen with following fields.
    Can anybody tell me what are the exact master table vaidation i can do for the same!
    <b>Order Type[VBAK-AUART],
    Order Number[VBAK-VBELN],
    Customer PO #[VBKD-BSTKD],
    Sold-to Party No[VBPA-PARVW - SP as key],
    Ship-to Party No[VBPA-PARVW - SH as key],
    Division[VBAK-SPART].</b>
    Agaist which master tables i need to vaidate above fields!
    Also please clarify what is meant by [SP as Key] & [SH as key]! Is it needs to be defaulted!
    Thanks in advance.
    Thanks,
    Prasad.

    Hi Prasad,
    For your another Query
      SH- Ship To Party,
      SP - Sold To party.
    You can set anyone of them as Default depending on ur Bsuiness requirement ie. You are Forwarding ur Invoice to ship to or sold to Party.
    Regards,
    Leo

  • Validation required for a GL account

    Hi Guru,
    I want to have a validation for a GL account 571006 to use WBS element for manual postings and should give error if WBS element is not entered against this GL.
    Can you please let me know how to create a validation in GGBO.
    Thanks

    Hi,
    I thought so, when i have created a new validation and try to assign to the company code in GGB4 it says object already exist as the company code got one validatation assigned to it.
    When i am trying to assign my new validation it is not getting assigned.
    Can you please help me.
    Thanks

  • Validation require for different business area in MRO

    Dear friends
    System is allowing posting of different business area in Miro (Line item & Header item).For disallowing I have checked Validation, I think it is not usable.Please suggest me another solution.
    regds
    sachin

    Hello,
    You can use MRM_HEADER_CHECK bAdI for this validation.
    or
    You can use Enhancement (CMOD transaction) LMR1M001 -EXIT_SAPLMRMP_010 for this validation
    Regards,
    Burak

  • Validity Date  for RPTQTA00

    Hi Guys,
    Where do I set Validity Dates   for RPTQTA00?

    hello, friend.
    normally, you have validity periods for contracts and quotations but not for sales orders.  the reason for this is because sales orders are commitments made by the selling company to deliver a quantity of certain materials to the customer at a certain date. 
    in the sales order, you have several functionalities that will help you in your commitments.  for example, the availability check will allow you to see if you have sufficient stocks for the commitment.  the schedule line tabs will also show you if the delivery time required would allow you to bring the materials to your customer's doorstep by a certain date (sales order data also are relevant for planning and other cross-module functionality).  if an adjustment in commitments is needed, these are made in the sales order before the outbound delivery is created.
    hope this helped.
    regards.
    jty

  • Is contract support account required to download Service Pack V3 forWLS 8.1

    Dear all:
    I uesed tool Smart Update to install Service Pack V3 for WebLogic Server 8.1. The poped window asked me to login.
    After I finished input of ID and password, it said that my account is not linked to a valid contract. Is Service Pack V3 for WLS 8.1 not a public pitch? Is a contract support account required to download Service Pack V3 for WLS 8.1? Or is there something wrong?
    Thanks for response.

    > we have a local installation for our developer unfortunately we don't use a SolMan. I had to download the files by my self.
    I see - you may be able to put the files in the download basket but without SolMan you won't be able to confirm and hence download them (or you have to create an OSS call).
    There may also be dependencies of Java patches and kernel patches or other components. Resolving them manually can be tedious.
    Markus

  • Error message "You are running an operating system that After Effects no longer supports. Refer to the system requirements for a full list of supported platforms." when trying to download free trial of after effects. What do I do?

    I need help, I am an idiot and have an assignment due today at 1:30pm. I thought that I would be able to do a simple download, but I get this error msg and I don't know what other options I have. Is it 100% impossible for me to download this on my machine?

    Hi ,
    I am afraid you would not be able to use After Effects CC 2014 and CC, as there were not testes on version 10.6.8.
    I have two suggestions to make for you.
    Upgrade your machine to latest hardware and software as per system requirements and try to make the most of it.
    Multicore Intel processor with 64-bit support
    Mac OS X v10.8 or v10.9
    4 GB of RAM (8 GB recommended)
    5 GB of available hard-disk space for installation; additional free space required during installation (cannot install on a volume that uses a case-sensitive fi le system or on removable flash storage devices)
    Additional disk space for disk cache (10 GB recommended)
    1440 x 900 display
    OpenGL 2.0–capable system
    QuickTime 7.6.6 software required for QuickTime features
    Optional: Adobe-certified GPU card for GPU-accelerated ray-traced 3D renderer
    Internet connection and registration are necessary for required software activation, validation of subscriptions, and access to online services.*
       2.  You can try to use After Effects version  CS 6 on your machine.
    Download link : Download CS6 products
    Thanks,
    Atul Saini

  • Requirements for similar hardware in a 2012 Hyper-V failover cluster?

    Simple question:
    How similar does the hardware have to be on the host servers in a Windows Server 2012 Hyper-V failover cluster?
    We have 6 dell servers that we are hoping to use for building a Windows 2012 Hyper-V cluster.
    As I recall from our existing 2-host Hyper-V cluster, which is running on 2008 R2, there are fairly harsh demands in the cluster validation wizard with regard to similarity of hardware. So I am wondering if it will work?
    The servers in question are 3 x R620, 2 x T410 and 1 x T610 Dell servers. So 3 x 12th generation servers and 3 x 11th generation servers
    The servers all use Intel CPUs:
    R620: Xeon E5-2670/2680
    T410/610: Xeon X5650
    and broadcom NICs:
    T610: Broadcom 5709c
    2 x T410: Broadcom 5716c
    3 x R620: Broadcom 5720
    Windows 2012 is supported by Dell on all the servers.
    Shared storage will be on an SMB3 file share.

    Simple question:
    How similar does the hardware have to be on the host servers in a Windows Server 2012 Hyper-V failover cluster?
    We have 6 dell servers that we are hoping to use for building a Windows 2012 Hyper-V cluster.
    As I recall from our existing 2-host Hyper-V cluster, which is running on 2008 R2, there are fairly harsh demands in the cluster validation wizard with regard to similarity of hardware. So I am wondering if it will work?
    The servers in question are 3 x R620, 2 x T410 and 1 x T610 Dell servers. So 3 x 12th generation servers and 3 x 11th generation servers
    The servers all use Intel CPUs:
    R620: Xeon E5-2670/2680
    T410/610: Xeon X5650
    and broadcom NICs:
    T610: Broadcom 5709c
    2 x T410: Broadcom 5716c
    3 x R620: Broadcom 5720
    Windows 2012 is supported by Dell on all the servers.
    Shared storage will be on an SMB3 file share.
    You'll be fine with a listed config no need to have identical machines. The only thing I'd try to change is use the same NICs all-around if possible.
    P.S. Make sure you understand SMB share is a single point of failure unless SoFS or "old skool" NAS failover is configured. But it adds latency so using shared storage
    directly w/o a file transport is FASTER and CHEAPER.
    StarWind iSCSI SAN & NAS

  • Port required for Veritas cluster implementation

    hello there ,
    i need to know what are the port required for veritas cluster implementation on Sun Messaging Server 6.2 . anybody care to help me on this ?
    thanks

    > We are planning a 2 node Oracle 9i RAC cluster on Sun
    Cluster 3.Good. This is a popular configuration.
    Can you please explain these 2 questions?
    1)
    If we have a hardware disk array RAID controller with
    LUNs etc, then why do we need to have Veritas Volume
    Manager (VxVM) if all the LUNS are configured at a
    hardware level?VxVM is not required to run RAC. VxVM has an option (separately
    licensable) which is specifically designed for OPS/RAC. But if
    you have a highly reliable, multi-pathed, hardware RAID platform,
    you are not required to have VxVM.
    2)
    Do we need to have VxFS? All our Oracle database
    files will be on raw partitions.No.
    IMHO, simplify is a good philosophy. Adding more software
    and layers into a highly available design will tend to reduce
    the availability. So, if you are going for maximum availabiliity,
    you will want to avoid over-complicating the design. KISS.
    In the case of RAC, or Oracle in general, many people do use
    raw and Oracle has the ability to manage data in raw devices
    pretty well. Oracle 10g further improves along these lines.
    A tenet in the design of highly available systems is to keep
    the data management as close to the application as possible.
    Oracle, and especially 10g, are following this tenet. The only
    danger here is that they could try to get too clever, and end up
    following policies which are suboptimal as the underlying
    technologies change. But even in this case, the policy is
    coming from the application rather than the supporting platform.
    -- richard

  • I am trying to install iTunes on my PC, but I get this error: "There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor." Help!

    I am trying to install iTunes on my PC (using Windows 8.1), but I get this error: "There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor." The iTunes file (64-bit) I am trying to install, is named "iTunes64Setup.exe". What seems to be the problem? Help!

    Hey madnest,
    Thanks for the question. After reviewing your post, it sounds like you are having difficulty installing iTunes in Windows. I would recommend that you read this article, it may be able to help you resolve or isolate the issue.
    Issues installing iTunes or QuickTime for Windows
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • I am trying to upload itunes 10.5, but get a message "There is a problem with this Window Installer Pkg. A program required for this install to complete could not be run.  Contact your support personnel or package vendor".  What is it I need to do?

    I am trying to install itunes 10.5, but during the download I get the following message, "There is a problem with this Window Installer Package.  A program required for this install to complete could not be run.  Contact your support personanal or package vendor."  If this is my personal computer and was able to upgrade to the previous version (pre 10.5), why not now?  What is my "package vendor"? And what is it I need to do to fix this?  The message is unclear.  Unfortunately, I deleted my itunes program, thinking that in doing so, 10.5 would finally load.  Now I have no itunes on my computer and unable to sync my iphone.  Help!
    Thanks - Rick

    Hi Rick,
    by "repair" I mean I went to the control panel, option - programs and features, and in the list of all my installed programs I selected "Apple Software Update". On top of the screen you find the options Uinstall, Change and Repair. I clicked the repair button and that did the trick. After the repair I could uninstall the program. I also uninstalled iTunes, Apple Application Support, Apple Mobile Device Support en Bonjour, thus all Apple programs. Then I installed iTunes 10.5 again and everything went fine.
    Success,
    Peter

  • Error message on window 7 for install iTune and iCloud!!!"There is a problem with this Windows installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor."

    Hi,
    I just try to install the setup download from apple website for iTune and iCloud.
    During the installation, there was error message prompt out "There is a problem with this Windows installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor."
    I am using Window 7 32 bit. I have try several time for install, but the result is getting same error message.
    Anyone can help on this??????
    Thanks.
    Justin

    I have also tried extracting the individual components to the temp file and attempting to install them individually despite being unable to remove the previous install of Apple Software Updater.  The outcome, both Apple Software Updater and itunes encountered the same error message during the install process.

Maybe you are looking for

  • How to set vertical line in SAPScript

    Dear All, I have to set vertical line at a particular position of SAPScript. Here the lines are of varying length. Can you suggest how to do that? Line 1......................            | Vertical Line Line 2.........................         | Verti

  • List workflow Error Occurred when more than 10 fired at the same time?

    SPF 2010 I have created a list workflow that simply copies the value from Columns A, B, C to D, E, F respectively then it compares that D, E, F match A, B, C if TRUE, then NUL A, B, C then if confirms A, B, C "is empty" if TRUE, then complete the wor

  • Officejet 150 mobile printer with iPad/ iPhone and Android devices.

    Hi All, The Officejet 150 mobile printer won't work with IOS devices like iPhone or IPad over bluetooth connection. But can work with android devices. You can download the printshare app and print via bluetooth connection Happy printing Click on the

  • ArchiveLink and Report Format

    Hi, newbie question on archivelink Does ArchiveLink support saving SAP R/3 generated reports in external content server? If yes then in what format? If no then what's the alternative? -Y

  • Netweaver 7.01 ABAP trial version is missing full BW7 functionality?

    Hi, I have successfuly installed 7.01 ABAP on my Vista laptop. But I noticed it is missing the BW7 frontend functionality such as Bex Web Analyser, Report Designer, etc. These are all Java based. So i must be missing the java stack as well as the fro