SMLETS. Get related Business Services from a Configuration Item

Hi
I need som help or guidiance on how to create a PS query to list out all the related business services from a Configuration Item (Computer) using the Windows Computer Class
Im using the following orchestrator activity today to get the related business services from the CI.
Thx for all replys! :)

Hi,
you can use this script as an example:
Import-Module smlets
#Definde Input-Values
[String]$Server = "SCSMSERVER"
[String]$SCObjectGUID = "6555226c-5e77-ea85-b79f-05dc8843dcb0"
#Get Computer-Object by SC Object GUID
[System.Object]$Computer = Get-SCSMObject -Id $SCObjectGUID -ComputerName $Server
#Get Relationship Class "Is Related to Configuration Item"
[System.Object]$Relationship = Get-SCSMRelationshipClass -Name "System.ConfigItemRelatesToConfigItem" -ComputerName $Server
#Get defined Relationships by target
[System.Object[]]$RelatedBSs = Get-SCSMRelationshipObject -ByTarget $Computer -ComputerName $Server | where { $_.RelationshipId -eq $Relationship.Id }
#Create Arrray for Orchestrator Published Data
$BusinessServiceDisplayNames = @()
foreach($RelatedBS in $RelatedBS)
    #Add DisplayName of Business Service to Output-Array
    $BusinessServiceDisplayNames += $RelatedBS.SourceObject.DisplayName
$BusinessServiceDisplayNames

Similar Messages

  • Calling a Business Service from a Web Template File

    I'm attempting to call a Business Service from my .swt
    I've tried everything I can think of and can not get this to work for the life of me.
    I've looked endlessly for information on this topic to no avail.
    the swt call looks something like this:
    <swe:case condition="My Business Service Name, My Business Service Method">
    </swe:case>
    I assume it is something to do with the set-up of my Business Service. Could someone please help me out here or point me to some information on this topic that is actually helpful? (The bookshelf, from what I could find, did not go into setting up the business service for this use at all)

    Hi Diz,
    I tried doing the same thing by following the steps as mentioned by you. Just to re iterate,
    1. Created a DC "Portal Application Standalone" project by the name myservice.
    2. Created a portal service inside myservice by the ame AmitsService.
    3. Exposed IAmitsService.class in the public part.
    4 Build and deployed the DC on server and tested it through an abstract portal component and it worked FINE !!
    Now..
    5. Created anoter DC of type WebDynPro
    6. Added SAP_JTECHS -> epbc.prtapi._api as a "Used DC" with dependency build time and runtime
    7. Specified the sharing reference in the properties as PORTAL:sap.com/myservice
    8. Tried to reference the service using the following code..
    IAmitsService portalservice=(IAmitsService)WDPortalUtils.getServiceReference(IAmitsService.KEY);
    9.Build and deployed the DC.
    10. When I run the application I am getting the following error
    Processing HTTP request to servlet [dispatcher] finished with error.
    The error is: com.sap.engine.frame.core.load.SAPNoClassDefFoundError: com/sapportals/portal/prt/service/IService
    Exception id: [000D6008418B005C0000002C00000D200004163CE6719E1D]
    PLEASE ADVISE

  • Calling an MFL business service from a WSDL proxy service

    Hi,
    I'm using Service Bus v2.6, and trying to call an MFL business service from a wsdl based proxy service.
    I have done the following so far:
    - Define an MFL-based business service that writes MFL messages to a JMS queue and reads reply messages off another queue, and it works when I debug this business service by itself.
    - Define a wsdl proxy service that routes requests to the MFL business service.
    Since the tutorials don't have MFL examples, I'm struggling to get this working. I've tried different ways, but no luck.
    Here's my definition of the route node in the Proxy Service at the moment.
    1. Call a custom XQuery (.xq file) to convert incoming message to an XML representation of the MFL message, and assign the result to a variable "param1"
    2. Use "Service Callout" to call the MFL business service, and set Request Document Variable to "param1" and Response Document Variable to "param2".
    When I debug the flow, param2 (reply) comes up as empty, and I don't know how to make it work.
    I've turned on the JMS trace etc and the JMS bit is working (i.e messages being written, and read by the business service).
    There seems to be something wrong with the way I call it from the proxy service.
    Any help would be much appreciated..
    Thanks

    Hello,
    Can you indicate the classpath that you use to run your client, version of weblogic and the version of jaxrpc api that you are using.
    As a quick experiment adding the jaxrpc jar files to your classpath one at a time.
    This [url http://www.javaworld.com/javaforums/showflat.php?Cat=&Board=Enterprisejava&Number=3801&page=12&view=collapsed&sb=9&o=&fpart=1]chap seemed to have a similar problem to you and solved it by adding the jaxprc-spi jar file to his class path. It may be that the jaxrpc-impl is causing you greif.
    Also see this thread:
    http://forums.bea.com/bea/message.jspa?messageID=200612003&tstart=0
    Hussein Badakhchani
    www.orbism.com

  • How to call business service from xquery transformation in OSB ??

    Hi All,
    How to call business service from xquery transformation in OSB ??
    I need to assign the response variable of Business Service to a target element in XQuery Transformation Mapper file.
    It's urgent.
    Regards,
    Jyoti Nayak

    Transformation is to mapping the source and target of 2 different schemas.
    In your case you should have a XQuery transformation between, your Business Service output schema and the target schema.
    Thanks,
    Vijay

  • Hye, i bought my iphone5s in malaysia on early febuary 2014 but on april/may i have problem with my fhone. but now i resides in istanbul turkey. can i get a a service from apple.tr ? how ? thank you

    Hye, i bought my iphone5s in malaysia on early febuary 2014 but on april/may i have problem with my fhone. but now i resides in istanbul turkey. can i get a a service from apple.tr ? how ? thank you

    It can only be serviced in the country where it was originally sold.
    An iPhone sold in an EU member State can be serviced in any other EU member nation. Malaysia is NOT a member of the EU. It can only be serviced in Malaysia.

  • OSB: Calling MTOM business service from non-MTOM proxy

    Hi,
    it is very easy to call non-MTOM business service from MTOM enabled proxy service, but I don't know how to do it in an opposite way. I have web service proxy (http) with binary data in Base64 in a soap body element and I'd like to call a business service (web service over http again) using MTOM format to send binary data in binary format (and not in Base64 as it is in proxy). Is it possible to somehow decode binary data from Base64 in a proxy service and send them from this proxy to a business service using MTOM?

    I understand the flow you propose, but I don't know how to pass decoded data from Java callout back to message flow. As far as I know I can only return primitives, String and XmlObject, because anything else can't be processed in message flow.Yes you are correct.But you can also return DataSource in java callout. Please http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/pojo.html
    Now the working solution/POC --Tested on my local linux box
    package manoj.javacallout.binary;
    import java.io.BufferedReader;
    import java.io.ByteArrayOutputStream;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import javax.activation.DataSource;
    import javax.mail.util.ByteArrayDataSource;
    import com.sun.org.apache.xml.internal.security.utils.Base64;
    * TODO: I have use sun internal API for decoding for simplicity. You should modify this code with any base64 decoding library
    * Ideally should be using using http://commons.apache.org/downloads/download_codec.cgi
    * @author mneelapu
    public class Util {
         public static DataSource decodeBase64(DataSource ds) throws Exception {
         InputStream in=ds.getInputStream();
         BufferedReader bin = new BufferedReader(new InputStreamReader(in));
         byte[] decodedB64=Base64.decode(bin);
         ByteArrayDataSource decodedDS= new ByteArrayDataSource(decodedB64,"binary/octet-stream");
         return(decodedDS);
    Java Callout to decodeBase64
    Parameters
    javax.activation.DataSource=[ $body/* ]
    Result
    javax.activation.DataSource=response
    Now replace the $body with the decoded base64 response from java callout
    Replace [ node contents ] of [  undefined XPath  ]
    in [ body ] with [ $response ]
    Use $BEA_HOME/modules/javax.mail_1.4.jar for compiling.
    Let me know if this solves your problem.
    Thanks
    Manoj
    Edited by: mneelapu on Apr 20, 2009 3:23 PM

  • Calling a Siebel Business Service from an Excel Macro

    Hi Everyone !!
    I have a requirement where i have to call a siebel Business Service from an excel macro. Please help me with the code.
    Regards,
    Abhi

    Here's a starter for one:
    Private Function ConnectToSiebel(sConnectString As String, sUserName As String, sPassword As String, _
    oSiebel As SiebelDataControl) As Boolean
    On Error GoTo ErrorHandler
    ' Uses the specified parameters to connect to the Data Control
    Dim iErrCode As Integer
    Set oSiebel = CreateObject("SiebelDataControl.SiebelDataControl.1")
    oSiebel.Login sConnectString, sUserName, sPassword
    If (oSiebel.GetLastErrCode <> 0) Then GoTo ErrorHandler
    ConnectToSiebel = True
    Exit Function
    ErrorHandler:
    MsgBox oSiebel.GetLastErrCode
    ConnectToSiebel = False
    End Function
    The connect string passed takes the format:
    host="siebel://<SERVER_HOST>/<SERVER_NAME>/PSCcObjMgr_enu"
    You can then use the 'oSiebel' object as if it was the Application(). For example, Set oService = oSiebel.GetBusService("Blah")
    Regards,
    mroshaw

  • Creating a "Business Service" from a WSDL: Can't initialize WsdlEntryHelper

    I'm working through a "HelloWorld" setup of Weblogic (10.0.3.5) and OSB (11.1.1.5.0) using OEPE 11.1.1.7.2.
    I have a OSB Project with a Weblogic Web Service. I've generated a WSDL and when I try to copy/paste or drag-and-drop or load the WSDL file through the Business Service Configuration I always get the following error:
    Description     Resource     Path     Location     Type
    Could not initialize class com.bea.wli.sb.resources.wsdl.helpers.WsdlEntryHelper     HelloWorldService.wsdl     /HelloWorld_SB     line 1     ALSB Synchronization Error
    If it helps, the WSDL is linked below. Any ideas? Thanks.
    http://pastie.org/3438419

    I was able to recreate the test WS project and get to the same error as before. The difference is I didn't create an EAR project nor endpoint interfaces. It published fine with this bare-bones setup.
    Can someone please take a look at my steps and see if I'm doing anything wrong and if you know how to get around it? Trying to get just the most simple local WS on OSB has taken days and I really need to get to work on something productive!
    I'm pasting my notes below, but since the forum doesn't cooperate with my spacing, I've pasted a more readable version at pastie:
    http://pastie.org/private/5dlmjcbkrjzzmurt2f04g
    STEPS FOR CREATING A TEST WS
    ============================
    1) File -> New -> WebLogic Web Services -> Web Service Project
    a) Project name: Foo_WS
    b) Location: C:\workspaces\osb\TEST0_WS
    c) Target runtime: Oralce WebLogic Servier 11gR1 PatchSet 4
    d) Default Configuration
    e) EAR Membership: unchecked
    d) Finish
    2) Under "Servers" tab, right click the WebLogic Server and add Foo_WS
    3) In the "Foo_WS" project Right click 'src' -> New WebLogic Web Service
    a) Name: Foo
    b) Package: foo
    c) Do not check 'Generate Service Endpoint Interface'
    d) Click Finish
    3) Load Foo.java
    a) Change Foo.hello() to return a String and take a String argument
    b) Change the class annotation to:
    @WebService(name = "Foo", targetNamespace = "http://foo", serviceName = "FooService", portName = "FooPort")
    4) Republish to the server
    5) Check that it is running, load "http://localhost:7001/Foo_WS/FooService?WSDL". See output:
    <?xml version='1.0' encoding='UTF-8'?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.5. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.5. --><definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://foo" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://foo" name="FooService">
    <types>
    <xsd:schema>
    <xsd:import namespace="http://foo" schemaLocation="http://localhost:7001/Foo_WS/FooService?xsd=1"/>
    </xsd:schema>
    </types>
    <message name="hello">
    <part name="parameters" element="tns:hello"/>
    </message>
    <message name="helloResponse">
    <part name="parameters" element="tns:helloResponse"/>
    </message>
    <portType name="Foo">
    <operation name="hello">
    <input message="tns:hello"/>
    <output message="tns:helloResponse"/>
    </operation>
    </portType>
    <binding name="FooPortBinding" type="tns:Foo">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
    <operation name="hello">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="FooService">
    <port name="FooPort" binding="tns:FooPortBinding">
    <soap:address location="http://localhost:7001/Foo_WS/FooService"/>
    </port>
    </service>
    </definitions>
    6) Back to OEPE: Create New OSB Configuration Project: name = Foo_Conf, ignored advanced settings, Finish
    7) Add Foo_Conf to the server and publish. Now the OWL Server 11gR1 PatchSet 4 at localhost has 2 projects: Foo_Conf and Foo_WS
    8) Create New OSB Project: Project name: Foo_SB, OSB Configuration: Foo_Conf
    9) Under Foo_WS project, right click Foo.java -> WebLogic Web Services -> Generate WSDL (created a .wsdl and .xsd)
    10) Drag-and-drop FooService.wsdl and FooService_schema1.xsd from Foo_WS to Foo_SB
    a) ERROR:
    Description Resource Path Location Type
    Could not initialize class com.bea.wli.sb.resources.wsdl.helpers.WsdlEntryHelper FooService.wsdl /Foo_SB line 1 ALSB Synchronization Error
    ...I have no idea how to procede. I've been using "The Definite Guide to SOA 2nd Edition" to guide me along. I'm stuck here because I want
    to create a business service and proxy service utilizing the first Web Service Project I made (Foo_WS).
    Any advice please?

  • Unable to create a business service from a jca file

    I have taken a jca file of a file adapter from Oracle JDeveloper and I am trying to create a business service though eclipse for OSB.
    But I am unable to create a business service as the jca protocol is NOT available in the "Transport Configuration" section of a business service.
    I have got OSB 11.1.1.3 and wls 10.3.3.0 installed along with the corresponding integrated eclipse(oepe_11gR1PS2).
    Pls suggest!

    Refer this for the solution
    Business service NOT getting configured from jca file in Windows 7

  • Calling Secured Business Service from OSB

    Hi,
    I am trying to call a Service which is secured.
    the Request SOAP message is like :
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ns="urn:crmondemand/ws/activity/10/2004"
    xmlns:act="urn:/crmondemand/xml/activity"
    xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    *<soapenv:Header>*
    *     *<wsse:Security>**
    *          *<wsse:UsernameToken>**
    *               *<wsse:Username>USERX</wsse:Username>**
    *               *<wsse:Password type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">PASSWORD</wsse:Password>**
    **          </wsse:UsernameToken>**
    *     </wsse:Security>*
    *</soapenv:Header>*
    <soapenv:Body>
    ========================
    ========================
    </soapenv:Body>
    </soapenv:Envelope>
    I have created a business service and attached the service to Proxy service.
    I am new to OSB.I am unable to change the header data.In the forums i found couple of responses pointing to create
    Policy file or creating service account which were not clear to me.Dear expert , please guide me what exactly need to be done in this case.
    Thanks in advance,
    Regards,
    Chandra

    hi,
    Finally i have done it with the help of documentation.
    solution is :
    In the service configuration --> Policy -->select OWSM policy bindings (your domain should be configured with OWSM extention))
    select predefined oracle/wss_username_token_client_policy from in the OWSM configuration window
    next login to the em console: http://localhost:7001/em
    In the left hand side pane Go to Weblogic Domain -> select <your domain name>
    In the central pallete Weblogic Domain drop down goto secutiry --> Credentials.
    Here create a map with name : oracle.wsm.security (if not exists)
    Create a key by selecting the map as :oracle.wsm.security
    Key name : Sample_KEY
    Type : password
    Username: The username you are expecting in the soap header
    Password: The password you are expecting in the soap header
    Now go back to your service configuration -> Policy -> select the policy that you have added.
    there you can see the properties button enabled.click on it...
    there for the default_value = basic_credentials give the over_ride value as Sample_KEY (the key name you have mapped to the map)
    Regards,
    Chandra sekhar kommalapati

  • Business service EJB Transport configuration error

    Hi,
    When configuring Business service to work on ejb protocol, on EJB Transport Configuration tab, I get error message saying
    Generate: Error during generation of the WSDL: Cannot run program "null/modules/org.apache.ant_1.7.1/bin/ant.bat": CreateProcess error=2, The system cannot find the file specified
    BEA_HOME, MIDDLEWARE_HOME, ANT_HOME tried to set, not helped.
    JrockIt 4.0.0.,Weblogic 10.3.3, OEPE 11.1.1.6.
    What could be the problem?
    Thanks in advance.

    Hi,
    haven't found product.properties file in directory. Here is eclipse.ini file
    -startup
    plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
    --launcher.library
    plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.0.v20100503
    -showsplash
    org.eclipse.platform
    --launcher.defaultAction
    openFile
    -vmargs
    -Xms256m
    -Xmx768m
    -XX:MaxPermSize=512m
    -Dsun.lang.ClassLoader.allowArraySyntax=true
    -Dweblogic.home=D:\middleware\wlserver_10.3
    -Dharvester.home=D:\middleware\oracle_osb1\harvester
    -Dosb.home=D:\middleware\oracle_osb1
    -Dosgi.bundlefile.limit=500
    -Dosgi.nl=en_US
    So only OSB and Weblogic homes are set.
    I tried with/without setting additional homes (such as BEA_HOME etc.) just because this line :
    Cannot run program "null/modules/org.apache.ant_1.7.1/bin/ant.bat" confused me. It's like path to middleware installation isn't set, that's why it's NULL here.
    Any ideas?
    Thanks in advance.
    Edited by: frf on 20/8/2010 5:22

  • Adding Business service in an configuration scenario

    I have created an Integration scenario in IR. And then I have imported the same into the ID.
    Now in Integration scenario configurator->Assign Services step, how can I assign the Business Service? (Not a Business System)

    Hi Mahesh,
    What you can do is:
    1. In ID, <b>Tool --> Transfer Integration Scenario form the Integration Reposigtory</b>.
    2. In next screen choose, Integration <b>Name</b> and <b>namespace</b>.
    3. Then in the next sceen, Give a meaning full name to create the "<b>Configuration Scenario</b>".
    4. After comleting step 3, you will get a new screen "<b>Integration Scenario Configurator</b>".
    5. Now, in the new screen click on "Assign Services" to add your "Business System" or "Business Service". (Just click on plus sign and then take F4 help to search your business service).
    <b>Note:--></b> To chose different Business Services or System, press the <b>AERO</b> in blue color at the top of the screen just infront of <b>Role</b>.
    6. After assigning all your business services or systems, press the <b>Assign</b> button.
    7. Communication channels can also be added in the same way under "<b>Cofigure Connections</b>", but there is a trick. You need to create all communication channels before you import your integration scenario to ID.
    I hope you will find it very helpful. Still if you have doubts in this let me know.
    Regards,
    Sarvesh
    ***Reward Points, if it helped you.

  • Http connection timeout for business services from proxy service?

    I've only done limited experiments in ALSB (2.1) at this point, but a question occurred to me, and I can't find this mentioned in the docs anywhere.
    When a proxy service configures a connection to a downstream business service through HTTP, is it possible to configure an http connection timeout value? This will cause the connection attempt to fail if it takes too long to determine whether the connection attempt succeeded or failed.
    I've heard that this is one advantage that Axis has over JAXRPC/SAAJ, as a connection timeout value can be specified.

    Hello Billy
    Thanks for the reply. I thought there may be some implementation of begin_request in another environment that had the option to specify a connect timeout. But as you have explained, it doesn't work like that. As always, I learn something every day!
    So realistically if I want to stop the calling process hanging in the event of the server not being available, I need use the message based approach...send a message containing the request to another process via a message queue and attach to the reply queue and wait for a message comming back with a timeout. Does that sound like a reasonable approach?
    Thanks
    David

  • NEVER GET YOUR CELL SERVICE FROM BEST BUY

    Never again will I get my cell service through Best Buy, here's why.
    In Nov of 2012 I decided to change my cell service to AT&T. I went to the ATT store and to Best Buy in South Nashua, NH to investigate the price plans and cost of the phone. I was going to buy a Samsung Galaxy S3, (top phone at the time) everthing was exactly the same at the two stores except for one thing, the insurance. The insurance from BB had unlimited claims, a lower price and no deductible. The sales agent from BB noted the process worked as follows "You bring your phone in, we ship it out to be fixed and give you a loaner phone. The loaner phone will not necessarily be a S3 but one that is equal to it." This is what other friends of mine had told me too, and that was the reason I went to check out Best Buy. Since everything was equal I decided to go with Best Buy ONLY BECAUSE OF THE INSURANCE OFFERED.
    Now, March of 2014 I have a problem with my phone and it needs to go in for repair. I'm still under contract with Best Buy. I wait in line for at least an hour (did you know that you need to call ahead to make an appointment? I do now.), I tell the customer service guy my problem and he prepares the phone to be shipped out. Then he brings out the loaner. It's a Pantech P7040, a ghetto version of a black berry from 5 years ago. Not an Android phone, not a smart phone, not anywhere even close to what my Galaxy S3 is. I made note of this fact to the gentleman and he said it was the best they had for loaners. I then informed him that I USE my phone for work. Numerous apps in there that I really use EVERY day at work. I travel and my phone's apps are super important. We had some discussion about this situation that I would now be in and how the salesman informed me that I would be given a comparable loaner if I ever need to bring my phone in when they were selling me the service plan. This guy told me they used to do that but don't do that any more. I said that this does not weigh very favorably with my choices of whom to use to when renewing my contract. He told me that he didn't care. It's not his rules.
    I realize that you don't make the rules you only follow them but still, the salesman told me (and apparently many other people are complaining about this at BB) that I would get a "comparable loaner" to my phone. The customer service guy said that they stopped that policy back in November or December of last year. I told him that I realize policies change to maintain efficiency but I bought a specific service and they need to honor what they sold me. You can't sell a service and then not give the customer what you sold them because you no longer like that policy, you can change the policy with the new contracts you sell if you want. He told me "If you read the entire contract, it doesn't say it anywhere in there that they will give you a loaner phone." Ya that's fine, but the salesman told me they would, that's an oral contract and is binding in a court of law. He then told me that they didn't have to give me a phone at all. (That didn't help this situation) I then informed him that if I had come in here and was told that I would not have a phone for a week "I would #$@% explode!", "Considering the fact that I was told I would get a comparable loaner, and then told that I wouldn't get any". I also asked that since I was traveling when my phone broke, could I call ahead to the store to have them order a replacement that I can pick up when I come home. "No, we have to see the phone first and send it out."
    My repaired phone or possibly a replacement might be available by Wednesday. However, I leave for work again on Tuesday so I'm without my smartphone and stuck with this ghetto junker for over a week until I get back. This is not the service that I was sold and this is not the service that I was expecting. This wasn't one rogue salesman lying to customers to get sales, it was the company's policy to inform customers that they would get a comparable loaner phone. BB is liable to honor their oral contract with their customers. I would like my money back for the the service contract. I will NOT be back to BB to renew my cellular service. My intentions are to inform others that Best Buy salesmen will tell you what you want to hear in order to make a sale.

    Hello,
    I was quite disheartened to read about your experience in seeking repairs for your Galaxy S3. It sounds like your visit was less than ideal with the long wait and a store representative who was less than sympathetic. We strive to provide superior service and I very much regret that we didn't live up to that goa, or to your expectations of us.
    The loaner cell phone program and Geek Squad Protection (GSP) are separate things. Any of our customers were permitted to take advantage of a loaner phone if they needed one even if they did not purchase GSP. While some stores still have phones that can be provided as loaners, you were informed correctly that the program was discontinued last year. If you wish, you may obtain a prorated refund for GSP by visiting a Best Buy store with your original GSP purchase receipt. 
    I'm disappointed to read that this experience may influence your future shopping destination. It is my hope that you will one day give Best Buy another chance to win you over. Please know that I'm grateful that you wrote to us about this.
    Sincerely,
    John|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Cannot Get Java Business Service to Work

    Hi,
    This is my first time using Siebel Java Business Service and I cannot get it to work.
    I followed all the steps: in
    http://www.impossiblesiebel.com/2010/04/java-business-service-jbs-tutorial.html
    1) used netbeans, Created the Java class with no package, created a jar file . I copied the jar file to my Tools/CLASSES directory
    2) added a [JAVA] entry to my local client CFG. in the
    [JAVA]
    DLL = C:\Program Files\Java\jre6\bin\client\jvm.dll
    CLASSPATH = D:\Siebel\8.1\Tools_1\CLASSES\Siebel.jar;D:\Siebel \8.1\Tools_1\CLASSES\SiebelJI_enu.jar;D:\classes;D :\Siebel\8.1\Tools_1\CLASSES\ImposSiebelXSLT.jar
    VMOPTIONS = -Xrs -Djava.compiler=NONE
    3) Created a BS based on CSSJavaBusinessService and added user property
    @class
    4) Execute the BS and I am always getting the error
    Class name incorrect or does not extend SiebelBusinessService : ImposSiebelXSLT -- JVM Exception:java.lang.UnsupportedClassVersionError: ImposSiebelXSLT : Unsupported major.minor version 51.0(SBL-EAI-05010)(SBL-EXL-00151)
    Can anyone please help!!!

    in case anyone faces a similar problem. The issue was a mismatch of java versions. I compiled with Java 7 but the jvm.dll was pointing to JRE6. When I pointed it to JRE7 it worked

Maybe you are looking for

  • Change Document - Insert new value / Delete

    Hi, Jus need a quick clarification on change documents - 1. insert opertaion. I have created change documents and able to record the changes in CDPOS when changing or updating the existing values in table. But when i try to insert into the table the

  • DLSw question

    Dear all, Could anyone help me to clarify the following point on DLSw redundancy? Is it true if DLSw redundancy (or recover) are transparent to user if the end stations lie on a token ring network ? On the other hand if the end stations lie on the et

  • Letter spacing wrong when generting pdf in web service

    I have a turnkey JBoss Installation on a Windows Server 2008 R2 Standard. When I create a pdf document out of an doc (Office 2003 SP3) or docx (Word 2007 SP2) with the web services I get wrong letter spacing. If I simply create a pdf out of Microsoft

  • Can airPlay be used to play all sounds from iphone?

    Basically I am looking for a wireless line out for the phone

  • Error while creating application for PHP in eclipse plug-in

    Hi, I am trying to create an application for PHP but got an error " Template creation failed". It used to be working before. Can anyone help? http://uploadpic.org/v.php?img=9FmTmCZNWM Thank. Regards, Hardik