Help with IW33 Service order!!!

Hey Guys
Please help me in the foll scenario.
When we go to IW33 and put in a service order, then hit the costs tab. There is a Rep.Plan/Act. pushbutton over the tabstrip. When we hit that we can see the detailed planned and actual costs.
My problem is I need to capture these values, especially the Outgoing freight SP that appears in some service orders (where parts are used).
I have heard there is a standard function module that can return all this data if we simply export the service order number, does anyone have any idea about this ?? .
Please help , I have already wasted 72 hours of development time on this looking for a solution.

You can use the function module CO_COST_READ_ORDER.
Hope it helps.
Reward if it is useful.
Thanks,
Srinivas

Similar Messages

  • Help needed regarding service order numbers

    Hi,
    Could anyone please help me solve this, i will award good points.
    1.     The program should support a method for the user to input multiple Service Order Numbers simultaneously
    2.     The output should include the following:
    a.     All Service Order Line Item numbers and corresponding material
    b.     Corresponding Service Confirmations
    c.     Service Confirmation Line Items that have doc flow from their corresponding SO line items (and their corresponding material)
    d.     Any additional work item on the Service Order that may not have a corresponding Material on the Service Order
    3.     The output should list all Service Orders and Service Confirmations in separate columns with all related line items/material on the same row in the output
    4.     Any line item on the Service Order or Service Confirmation that does not have a document flow to the respective other document should not have any other value on the same row
    Regards,
    Niloufer

    Hi,
    What is the version of the weblogic server and service pack you are using ?
    Regards
    Anilkumar kari

  • Please help with web services (JSR 172)

    Hello!
    I'm in need of some help. I've only worked with web services some few weeks. I have two web services that I want to access from J2ME.
    Both works nice in regular Java (J2SE). I use axis so with the help of WSDL2Java I got a working client.
    One of them has four operations
        public boolean tryToLoginUser( String username, String password ) {}   
        public boolean tryToLogOffUser( String username, String password ){}
        public boolean createUserAccount( String username, String password ){ }
        public boolean removeUserAccount( String username, String password ){ } The problem is when I want to use Sun's Wireless Toolkit 2.2 and create stubs that way with the Stub Generator. It complains with this
    warning: Operation tryToLoginUser is of the wrong encoding SOAP style/use (rpc/encoded).  Document/literal only.  Skipping generation of operation.
    warning: Operation tryToLogOffUser is of the wrong encoding SOAP style/use (rpc/encoded).  Document/literal only.  Skipping generation of operation.
    warning: Operation createUserAccount is of the wrong encoding SOAP style/use (rpc/encoded).  Document/literal only.  Skipping generation of operation.
    warning: Operation removeUserAccount is of the wrong encoding SOAP style/use (rpc/encoded).  Document/literal only.  Skipping generation of operation.What I can tell is I need to put this in my axis deployment descriptor
    <service name="UserWebService" provider="java:RPC" style="document" use="literal">instead of this:
    <service name="UserWebService" provider="java:RPC">This wont work. It don't work with HTTP GET I get this error
      <?xml version="1.0" encoding="UTF-8" ?>
    - <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    - <soapenv:Body>
    - <soapenv:Fault>
      <faultcode>soapenv:Server.userException</faultcode>
      <faultstring>org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.</faultstring>
    - <detail>
      <ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">slukare</ns1:hostname>
      </detail>
      </soapenv:Fault>
      </soapenv:Body>
      </soapenv:Envelope>I doesn�t work with WSDL2Java and when I run Sun's Wireless Toolkit 2.2 to generate stub it complains with
    warning: ignoring operation "tryToLoginUser": more than one part in input message
    warning: ignoring operation "tryToLogOffUser": more than one part in input message
    warning: ignoring operation "createUserAccount": more than one part in input message
    warning: ignoring operation "removeUserAccount": more than one part in input message
    warning: Port "UserWebService" does not contain any usable operationsDoes this mean I can only use one parameter for input in an operation when I use style="document" use="literal" ??
    I understood it that way, so I created a new web service that takes username and password in one String.
    The new web service has four operations
        public boolean tryToLoginUser( String usernameAndPassword ) {}   
        public boolean tryToLogOffUser( String usernameAndPassword ){}
        public boolean createUserAccount( String usernameAndPassword ){ }
        public boolean removeUserAccount( String usernameAndPassword ){ }The problem is that I get this error when running HTTP GET.
      <?xml version="1.0" encoding="UTF-8" ?>
    - <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    - <soapenv:Body>
    - <soapenv:Fault>
      <faultcode>soapenv:Server.userException</faultcode>
      <faultstring>org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.</faultstring>
    - <detail>
      <ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">slukare</ns1:hostname>
      </detail>
      </soapenv:Fault>
      </soapenv:Body>
      </soapenv:Envelope>If I get a WSDL2Java client it works (!) if I manually changes the parameter names. I have four operations which all takes
    String usernameAndPassword
    in one String since I can only use one parameter with style="document" use="literal"
    The WSDL2Java automatically set the parameter names to
    usernameAndPassword
    usernameAndPassword1
    usernameAndPassword2
    usernameAndPassword3
    for the different operations. If I manually changes them to all have the name
    usernameAndPassword
    it works. Why doesn�t it work without manual changes? I haven�t tested the code from Sun�s Wireless Toolkit 2.2 Stub Generator yet, but that at least doesn�t give any errors .
    My other web service doesn�t work either if I set style="document" use="literal".
    This web service returns my own classes I have written. It works as I said previously in J2SE with WSDL2Java, but not with style="document" use="literal�. When I set this my byte[] which is returned is null when using the client from WSDL2Java, this wasn�t the case without style="document" use="literal�.
    I also get an error in Sun�s Wireless Toolkit 2.2 that byte[] is not recoigniced. This wasn�t the case with axis WSDL2Java.
    If I put this inside the axis deployment descriptor
    <deployment xmlns="http://xml.apache.org/axis/wsdd/"
             xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
           <service xmlns:j2melab2="urn:businessobject.j2melab2"
                     name="RecipeWebService" provider="java:RPC" style="document" use="literal">
              <parameter name="scope" value="session"/>
              <parameter name="className" value="j2melab2.webservices.RecipeWebService"/>
              <parameter name="allowedMethods" value="*"/>
                    <typeMapping qname="j2melab2:ArrayOfString"
                                 type="java:java.lang.String[]"
                                 serializer="org.apache.axis.encoding.ser.ArraySerializerFactory"
                                 deserializer="org.apache.axis.encoding.ser.ArrayDeserializerFactory"
                                 encodingStyle="http://schemas.xmlsoap.org/soap/encoding"/>
                    <beanMapping qname="j2melab2:Recipe" languageSpecificType="java:j2melab2.businessobject.Recipe"/>         
                    <beanMapping qname="j2melab2:Ingredient" languageSpecificType="java:j2melab2.businessobject.Ingredient"/>         
                    <typeMapping qname="j2melab2:ArrayofIngredient"
                                 type="java:j2melab2.businessobject.Ingredient[]"
                                 serializer="org.apache.axis.encoding.ser.ArraySerializerFactory"
                                 deserializer="org.apache.axis.encoding.ser.ArrayDeserializerFactory"
                                 encodingStyle="http://schemas.xmlsoap.org/soap/encoding"/>
                    <typeMapping qname="j2melab2:ArrayOfByte"
                                 type="byte[]"
                                 serializer="org.apache.axis.encoding.ser.ArraySerializerFactory"
                                 deserializer="org.apache.axis.encoding.ser.ArrayDeserializerFactory"
                                 encodingStyle="http://schemas.xmlsoap.org/soap/encoding"/>                            
         </service>
    </deployment>instead of this
    <deployment xmlns="http://xml.apache.org/axis/wsdd/"
             xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
           <service xmlns:j2melab2="urn:businessobject.j2melab2"
                     name="RecipeWebService" provider="java:RPC">
              <parameter name="scope" value="session"/>
              <parameter name="className" value="j2melab2.webservices.RecipeWebService"/>
              <parameter name="allowedMethods" value="*"/>
                    <typeMapping qname="j2melab2:ArrayOfString"
                                 type="java:java.lang.String[]"
                                 serializer="org.apache.axis.encoding.ser.ArraySerializerFactory"
                                 deserializer="org.apache.axis.encoding.ser.ArrayDeserializerFactory"
                                 encodingStyle="http://schemas.xmlsoap.org/soap/encoding"/>
                    <beanMapping qname="j2melab2:Recipe" languageSpecificType="java:j2melab2.businessobject.Recipe"/>         
                    <beanMapping qname="j2melab2:Ingredient" languageSpecificType="java:j2melab2.businessobject.Ingredient"/>         
                    <typeMapping qname="j2melab2:ArrayofIngredient"
                                 type="java:j2melab2.businessobject.Ingredient[]"
                                 serializer="org.apache.axis.encoding.ser.ArraySerializerFactory"
                                 deserializer="org.apache.axis.encoding.ser.ArrayDeserializerFactory"
                                 encodingStyle="http://schemas.xmlsoap.org/soap/encoding"/>
         </service>
    </deployment>axis WSDL2Java won�t work anymore. And Sun�s Wireless Toolkit doesn�t work either with this. How can I get this to work with Sun�s Wireless Toolkit 2.2?
    So my questions are:
    Do I really need style=�document� use=�literal� for J2ME?
    Can I only have one parameter as input when I use style=�document� use=�literal� ?
    Why do I need to manally change the parameter names?
    How can I make Sun�s Wireless Toolkit 2.2 understand byte[] ?
    Many thanks for help :) (I have to present a solution in 1 � week to my J2ME teacher L).

    hi,
    i was wandering if you manage to successfully generate the stubs through the wireless toolkit at the end? i am currently having similar problem (i.e., trying to generate stub files based on wsdl from axis)? it seems that the WTK can only handle document/literal format, and so i change the wsdl to that. however, now it complains that it can't handle more than one input part in the message, (which is similar to the problem you had). so did you manage to find a solution to that, or J2ME simply does not support more than one arguement as the input?
    thanks in advance,
    lee

  • Help with Complete My Order for deluxe/standard albums...

    I bought some songs on Miley Cyrus's album Bangerz, but I realized the bonus tracks on the deluxe version are good and I want them too, but I go to buy the whole deluxe album with Complete My Order, but since I bought some songs on the standard version, it just says I have those songs Purchased on the deluxe one. Can I re-buy those songs through the deluxe album? Will the "purchased" songs be downloaded again if i complete my order with the deluxe version? I'm so confused, and I don't want to just buy the bonus tracks on the deluxe and still have the other songs from the standard version because I'm extremely OCD with my albums and I don't want 2 Bangerz albums in my library.

    Hello mbaumgardner97,
    Thank you for the question! It sounds like you are wanting the bonus tracks on the deluxe version of this album but you recently purchased the normal version and so cannot use the Complete My Album function. You may be able to report a problem to our iTunes Store support directly about this using the following article:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    To report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase, follow these steps:
    Find the email receipt for your purchase.
    Click Report a Problem under the app that is having the issue.
    When prompted, enter the Apple ID and password you used to purchase the item, then click Report a Problem.
    Click Report a Problem next to the item you are having an issue with.
    From the Choose Problem dropdown menu, choose the appropriate issue.
    Follow the onscreen instructions and—if prompted—type a description of the problem into the text field.
    Click Submit to have your issue reviewed.
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • [SOLVED] Help with systemd .service script

    Hello,
    I have been using ArchLinux (ARM version) on some “plug computers” for over a year and love it.  Recently I forced myself to move to systemd by upgrading all my computers from scratch.  I migrated all my applications and learned new ways of doing things but am having trouble with one last migration.  I run a c++ communication program that monitors a TCP port for traffic.  In the past I started this program (daemon) from an entry in rc.conf.  I have read all I can about systemd’s new approach to starting daemons (https://wiki.archlinux.org/index.php/Systemd and https://wiki.archlinux.org/index.php/Systemd/Services)
    So far I created what I thought is the correct systemd .service file listed below.
    [Unit]
    Description=EQBCS
    After=network.target
    [Service]
    Type=simple
    ExecStart=/home/public/EQBCS/eqbcs -p 12947 -d &> /dev/null
    [Install]
    WantedBy=multi-user.target
    I put this file in /usr/lib/systemd/system/eqbcs.service.  I then ran the following commands in the following order:
    systemctl daemon-reload
    systemctl enable eqbcs.service (created a link in /etc/systemd/system/multi-user.target.wants)
    systemctl start eqbcs.service
    Here is output from systemctl (status)
    eqbcs.service                                 loaded failed failed    EQBCS
    I thought this would start the service but no luck.  I also thought maybe a reboot would work but no luck.  I verified I can start the daemon manually if I run /home/public/EQBCS/eqbcs -p 12947 -d &> /dev/null from the command line.
    I think I am close, but after several hours of looking at examples of .service files and other posts, I am at a loss.  I am not one of those types who posts a question without taking the time to read the wealth of information on these boards, but I am truly out of ideas and can’t figure out what to do next.  I sincerely could use some help/advice.
    Last edited by calzon65 (2013-06-01 21:18:20)

    Thank you for the suggestions, I believe I am getting closer to success. When I run systemctl start eqbcs.servcie it starts the service but the only way I can get out of systemctl is to ^c out.
    Here is my current .service file:
    [Unit]
    Description=EQBCS
    After=network.target
    [Service]
    ExecStart=/home/public/EQBCS/eqbcs -p 12947
    Type=forking
    [Install]
    WantedBy=multi-user.target
    Output from systemctl status eqbcs:
    eqbcs.service - EQBCS
       Loaded: loaded (/etc/systemd/system/eqbcs.service; enabled)
       Active: failed (Result: timeout) since Sat 2013-06-01 12:48:43 PDT; 2min 11s ago
      Process: 427 ExecStart=/home/public/EQBCS/eqbcs -p 12947 (code=killed, signal=TERM)
    Main PID: 396 (code=killed, signal=KILL)
       CGroup: name=systemd:/system/eqbcs.service
    Jun 01 12:47:13 alarm systemd[1]: Starting EQBCS...
    Jun 01 12:47:13 alarm eqbcs[427]: WARNING: Running as root NOT recommended.
    Jun 01 12:47:13 alarm eqbcs[427]: EQ Box Chat Server 10.12.18
    Jun 01 12:47:13 alarm eqbcs[427]: Waiting for connections on port: 12947...
    Jun 01 12:48:43 alarm systemd[1]: eqbcs.service operation timed out. Terminating.
    Jun 01 12:48:43 alarm systemd[1]: Failed to start EQBCS.
    Jun 01 12:48:43 alarm systemd[1]: Unit eqbcs.service entered failed state.
    Are there any other suggestions for settings in my .service file?

  • Help with Credit and Order Review Team

    Hi there,
    I recently tried to order the iPhone 6 and found that additional action was required to contact the credit and order review team. The number they gave me was for the prepaid wireless calling center.
    I should explain that I'm currently on a prepaid plan and the idea was for me to call them on my current verizon prepaid iPhone and then answer questions from there.
    Thanks for any help--the right number or a non robot number would be fantastic.
    --Calvin

    Hey, VZW Support--Thanks for responding.
    I received instructions both after I clicked "Complete Order" and then in email form about 10 minutes later.
    Here is the email. I've censored out private information with bleeps. I'm new to the VZW forum, but apparently it is policy that I can only send messages to my followers. I'd be happy to send you a private message when I am able to do so--or did you mean via Twitter?
    I really would like to have my new phone before the weekend so if at all possible please let me know how to solve this quickly so I can get my order in before 4PM by tomorrow. It'd also be handy to know how long these additional questions would take--so that I don't call when I don't have enough time if it's going to take a while.
    Thanks so much!
    Thank you for choosing Verizon Wireless.
    We have received your order; however, this transaction cannot be processed because our order review department needs additional information from you. Please contact the Credit and Order Review Team at 866-338-7390 to complete your order. At this time, your credit card has not been charged, and we will hold your order for 7 days from today's date.
    Important Order Information:
    Internet Order Reference Number: Bleep
    Location Code: Boop
    Order Number: Bleep
    Credit Application Number: Boop
    We appreciate your interest in Verizon Wireless products and services, and we look forward to serving your wireless needs.
    Sincerely,
    Verizon Wireless
    Credit and Order Review Team
    866-338-7390

  • Help with iPod service error

    Greetings,
    I had an issue where my Nano's battery got very low to the point that it was not recognized by my computer. I borrowed an AC charger and got it to charge and work fine but still not be recognized by my computer. I followed the instructions for downloading the HP USB formatter and when I tried to restore using updater 6/28 I get a service error and cannot restore. I tried turning off the fast switch option (which waas on in the past when the computer used to see the ipod in itunes) and then I tried removing itunes and reinstalling it and I get the same error message. It seems to me that the helper files that look for the ipod are missing. The iPod will respond to being reset and the computer recognizes it, but I cannot restore it. Is there a way to restore it without using the latest updater? Any help greatly appreciated.

    the ipod-service/software-required error messages are typically caused by snarlups on the PC side of things.
    the theory behind the registry entries version of this is a little sketchy. i've only encountered about ... ten at the outside? ... confirmed cases of this since Christmas. possibly it's associated with not running installations as an administrator, possibly with running the installs inside a different user account than itunes has already been installed in, possibly with security software interfering with registry changes during the install process.
    if you do run into troubles with key editing, ProgMan and hutch's threads might be of some help:
    http://discussions.apple.com/thread.jspa?messageID=2143821#2143821
    http://discussions.apple.com/thread.jspa?messageID=2261175#2261175

  • Help with Sample 'Purchase Order' form

    HI Guys,
    Have been playing around with the supplied sample file 'Purchase Order'
    At the bottom of the form is a Part No., Description and Cost field that populate from a PartNoScript routine.
    Have been trying to copy this routine into my own form as its nearly the same.
    Question is  - There is a line 2/3rds down
      -  function getDesc(partNumber, descField, itemPrice)
    Where is the partName, DescField, ItemPrice store or located. I've looked in all the scripts, looked at the form fields and cannot find what these three relate too.
    I'm assume it must be the field name somehow but just cant seem to find them.
    Any help much appreciated.
    Dave
    ( With each passing day my knowlage grows stronger - One day I'll take over the world. !! )
    var partNo = new Array(" ",
                                                         "580463116",
        "25906311C",
                                                         "25129637J",
                                                         "771128",
                                                         "11198262A",
                                                         "57251",
                                                         "25906312A",
                                                         "51615223D",
                                                         "51615224D",
                                                         "516154CAC");
      // Array of part descriptions.
    var partDesc = new Array(null,
                                                                "Electric Fuel Pump",
                                                                "Air Flow Meter",
                                                                "Air Intake Sleeve",
                                                                "Fuel Filter",
                                                                "Fuel Injector Seal Set",
                                                                "Oxygen Sensor",
                                                                "Wiring Harness Upgrade",
                                                                "Brake Caliper left",
                                                                "Brake Caliper right",
                                                                "Brake Master Cylinder right");
    // Array of part prices.
    var partPrice = new Array(null,
                                                                  149.95,
                                                                  145.95,
                                                                  98.95,
                                                                  10.95,
                                                                  5.95,
                                                                  69.95,
                                                                  109.95,
                                                                  59.95,
                                                                  59.95,
                                                                  49.95);
    // Populate the part number Drop-down List.
    function populatePartNo(dropdownField)
          var i;
          for (i=0; i < partNo.length; i++)
             dropdownField.addItem(partNo[i]);
    // Populate the description and unit price fields.
    function getDesc(partNumber, descField, itemPrice)   -------------Where are these items/fields, defined or located. ?
       var i;
       for (i = 0; i < partNo.length; i++)                    // Go through the entire list of part numbers to find the one that is currently selected.
          if (partNo[i] == partNumber)                              // When we find the part number currently selected.
            descField.rawValue = partDesc[i];          // Put the description in the description field
                  itemPrice.rawValue = partPrice[i];          // and put the unit price in the unit price field.
                  break;                                                                                // No need to go further if there is a match.

    Hi Dave,
    Just to recap:
    There is script in the change event of the dropdown that calls the getDesc() function:
    // Populate the description and the unit price when we change the part number.
    partNoScript.getDesc(xfa.event.newText, txtDescription, numUnitPrice);
    This passes three parameters into the function:
    xfa.event.newText is the new item in the list that the user has just selected.
    txtDescription is the name of the Description object in the same Row that the user has selected from the dropdown.
    numUnitPrice is the name of the Unit Price object in the same Row that the user has selected from the dropdown.
    So the function is going to be receiving three pieces of information: the new value of the dropdown; the object deference for Description; and the object reference for Unit Price.
    Now if we look at the first line of the function:
    function getDesc(partNumber, descField, itemPrice)
    You can see that the function assigns the incoming parameters to new variables: partNumber; descField; and itemPrice. These variables only live within the function.
    For the purpose of the script in the function:
    partNumber = the value of the txtPartNum dropdown.
    descField = the object reference for the txtDesciption object in the Row that called the function.
    itemPrice = the object reference for the numUnitPrice object in the Row that called the function.
    Passing the value of the dropdown into the function is fairly straightforward (txtPartNum/partNumber). The clever bit is passing the object reference for the other objects in the Row into the function (eg txtDescription/descField).
    The script in the function includes a loop, which looks at the array. If the selected part number is in the array, then it sets the value of the txtDescription object in the same Row, by referencing the descField variable:
    descField.rawValue = partDesc[i];
    Does that make sense?
    In relation to the dropdowns:
    You can access the scripts in the Script Editor (5), including enter event, exit event, etc.
    You can access most of the dropdown properties in the various palettes (6).
    Hope that helps,
    Niall

  • Multiple selection in value help  with Web service

    Hi All,
    I want to get data from web service and store in data base. I created input form with set of inputfields. For some input filds in that input form, I want to get value from web service.So I have used value help wizard. I followed below link to create value help wizard for web service.
    Value help wizard working with java web service ?
    While creating value help, it is only showing 'single selection' option. It does not showing any other options. Here I want to get multiple values from value help. How can I acheive this?.
    Thanks,
    Venkatesh R

    Hi Venkat,
    Try the below links for value help in visual composer.
    Visual Composer: Value Help Data Service
    Choosing Multiple Values within Visual Composer
    http://help.sap.com/saphelp_nw04s/helpdata/en/50/91db4238bbf140e10000000a1550b0/frameset.htm
    Regards
    Basheer

  • Help with Web Services

    hi,
    am trying to call a web service from a particular WSDL, i need to use JAX-WS 2.0 as part of this assignment am currently working on, but i just cannot put my head around it and where to start,,
    would i need to just write a client that would call a specific method and pass the parameteres through it ?
    would i need to use annotations ? as i was reading, you only use them if you expose the web service. All i was supplied with is a WSDL, and i need to design an interface using JFrame and call a specific service of my choice and receieve a response back.. and display it back.
    Any helpful tips, suggestions, sample code ??
    thanks

    You can easily work with WSDL2Java class in axis.jar found from apache site
    java -cp axis.jar:commons-logging.jar:commons-discovery.jar:wsdl4j.jar:jaxrpc.jar:saaj.jar org.apache.axis.wsdl.WSDL2Java -va "wsdl file"
    This will create a stub files for the webservice, then you work with that.

  • Help with heterogeneous services

    Hello.
    I have been asked to try to create a dblink from an oracle 9.2 database on a solaris machine to a mysql 5.1 database on a windows xp machine.
    I need to know what software I need to get and install on both machines and what settings on the oracle server are needed.
    I just hope that someone who has done this before can help me.
    Thanks in advance.

    Hi,
    If you are looking for a tutorial sort of thing for Heterogenous Services than this thread over Asktom is a good resource. Look inside it an example given by Tak Tang for connecting Oracle Database with MS Excel. Take it as a reference to do your work.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4406709207206
    And for the Heterogenous Services, look at the doc guide of it here,
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14232/toc.htm
    HTH
    Aman....

  • Need help with Web Services SDK.

    I am new to Web Services SDK can I get documentation on same.

    For documentation about the BOE XI R2 SP2 Web services go to our DevLibrary: http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm
    then locate the Web Services topic under which, you will find the necessary info to help you deal with BOE Web Services.
    Cheers
    Alphonse

  • Help with data services webservice in Xcelsius

    Hi,
    I have the a problem, this is the problem:
    1. I add a web service connection, to run a data services job
    2. I put thw WSDL URL and after that i click the button import
    3. When i click the button IMPORT, that generate a WEB SERVICE URL
    The problem is, if a copy this WEB SERCVICE URL in my internet explorer it shows me the xml data but if i open this url in the server when i will publish the swf file the url doesnt open...
    Why in my machine can open and in other machine no....?
    Please i need help thanks

    Hi,
    Need some more information.
    1) Do you have a problem in viewing data when you import it to swf on infoview.
    2) Or you have any problems in importing that wsdl link at data connection level.
    If you have issue with the first 1 then you have to place a cross-domain.xml file in your ROOT path of BO Tomcat server.
    Apart from that you have to allow the local disk ro access external source in Flash Global settings manager.
    Is the link generated with QaaWS tool or java or .net ?
    Let me know if you need more information.
    Regards,
    Anjani Kumar C.A.

  • Help with Web Services - AddGroup

    I've been toiling with this for days and can't work out why this document doesn't create a new Group with ExternalFeed.
    <PRE>
    <?xml version="1.0" encoding="UTF-8"?>
    <ITunesUDocument>
    <Version>1.1.3</Version>
    <AddGroup>
    <ParentHandle>2500954087</ParentHandle>
    <ParentPath></ParentPath>
    <Group>
    <Name>NewName</Name>
    <ExternalFeed>
    <OwnerEmail>xxx</OwnerEmail>
    <BasicAuthUsername>itunesuprivate</BasicAuthUsername>
    <URL>xxx</URL>
    <BasicAuthPassword>giRU75a7GJOo3R0z</BasicAuthPassword>
    <SignatureType>None</SignatureType>
    <SecurityType>None</SecurityType>
    <PollingInterval>Daily</PollingInterval>
    </ExternalFeed>
    <GroupType>Feed</GroupType>
    </Group>
    </AddGroup>
    </ITunesUDocument>
    </PRE>
    (Here I've hidden valid URL and email values)
    When this is submitted, the SAX parser barfs:
    org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid content starting with element 'URL'. The content must match '(("":URL){0-1},("":OwnerEmail){0-1},("":PollingInterval){0-1},("":SecurityType ){0-1},("":SignatureType){0-1},("":BasicAuthUsername){0-1},("":BasicAuthPassword ){0-1})'., org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid content starting with element 'GroupType'. The content must match '(("":Name){0-1},("":Handle){0-1},("":GroupType){0-1},("":Explicit){0-1},("":Tr ack){0-1},("":Permission){0-UNBOUNDED},("":AllowSubscription){0-1},("":ExternalF eed){0-1})'.])
    As far as I can see, everything I've got is how it should be, as specified here:
    http://deimos.apple.com/rsrc/doc/iTunesUAdministratorsGuide/AboutiTunesUContent/ chapter4_section14.html
    Am I missing anything?
    Does the order of the elements matter? Does ExternalFeed need to be the last element in the Group?
    thanks in advance for any advice!
    George

    George,
    You nailed it…for your XML to be valid, it must be ordered -exactly- as the request XSD describes. An XMLSchema document can be defined in such a way that the order of elements is unimportant…however, the default behavior in XMLSchema (not just in iTunes U) is to enforce order. A correct version of your request would look like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <ITunesUDocument>
    . <Version>1.1.3</Version>
    . <AddGroup>
    . . <ParentHandle>2500954087</ParentHandle>
    . . <ParentPath></ParentPath>
    . . <Group>
    . . . <Name>NewName</Name>
    . . . <GroupType>Feed</GroupType>
    . . . <ExternalFeed>
    . . . . <URL>xxx</URL>
    . . . . <OwnerEmail>xxx</OwnerEmail>
    . . . . <PollingInterval>Daily</PollingInterval>
    . . . . <SecurityType>None</SecurityType>
    . . . . <SignatureType>None</SignatureType>
    . . . . <BasicAuthUsername>itunesuprivate</BasicAuthUsername>
    . . . . <BasicAuthPassword>giRU75a7GJOo3R0z</BasicAuthPassword>
    . . . </ExternalFeed>
    . . </Group>
    . </AddGroup>
    </ITunesUDocument>
    Also, it's often okay to use conflicting settings…but unless you set security to "HTTP Basic Authentication", it's okay to omit BasicAuthUsername and BasicAuthPassword.
    Hope this helps.

  • Help with Subscriber Services Reset

    What are Subscriber Services on iPad? and where would I find the 26 digit Authentication Key?

    Bt mods reset the noise margin yesterday. So far been stable with an extra 5mb of speed on the download. Very happy with the result. Thanks to all for thier help, i will post router stats again so a difference can be seen. The reason the connection time is so short is because the power went out this am and im not long up to turn it back on.
    ADSL line status
    Connection information
    Line state    Connected
    Connection time    0 days, 0:09:54
    Downstream    19,815 Kbps
    Upstream    1,223 Kbps
    ADSL settings
    VPI/VCI    0/38
    Type    PPPoA
    Modulation    ITU-T G.992.5
    Latency type    Interleaved
    Noise margin (Down/Up)    6.1 dB / 6.1 dB
    Line attenuation (Down/Up)    16.5 dB / 8.5 dB
    Output power (Down/Up)    0.0 dBm / 12.4 dBm
    Loss of Framing (Local)    0
    Loss of Signal (Local)    0
    Loss of Power (Local)    0
    FEC Errors (Down/Up)    0 / 0
    CRC Errors (Down/Up)    1 / N/A
    HEC Errors (Down/Up)    N/A / 0
    Error Seconds (Local)    1

Maybe you are looking for