How to use a Web Service after creating the reference

I created a Web Service reference and APEX 3.1 and it recognizes it.
The WS has a list of customers. The XML file (WS result) has XSD then the customers data.
The only thing I can do inside APEX is to create a form based on WS with a field that has a dump of the WS result.
I do not know how to use the XML data in the WS to show the customers data in APEX.
I appreciate it, if you can point me to any article or documentation taht show to consume WS in APEX
Thanks
Mo

Jason
My post above does not make sense because the browser converted the "lt" and "gt" that I saw in the form when I copied and paste to < and > as it should do.
below I will attach the XSD
&lt;?xml version = &quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;yes&quot;?&gt;
&lt;VFPDataSet&gt;
     &lt;xsd:schema id=&quot;VFPDataSet&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:msdata=&quot;urn:schemas-microsoft-com:xml-msdata&quot;&gt;
     &lt;xsd:element name=&quot;VFPDataSet&quot; msdata:IsDataSet=&quot;true&quot;&gt;
          &lt;xsd:complexType&gt;
               &lt;xsd:choice maxOccurs=&quot;unbounded&quot;&gt;
               &lt;xsd:element name=&quot;curCustomers&quot; minOccurs=&quot;0&quot; maxOccurs=&quot;unbounded&quot;&gt;
                              &lt;xsd:complexType&gt;
                                   &lt;xsd:sequence&gt;
                                        &lt;xsd:element name=&quot;customerid&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;5&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;companyname&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;40&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;contactname&quot; minOccurs=&quot;0&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;30&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;contacttitle&quot; minOccurs=&quot;0&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;30&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;address&quot; minOccurs=&quot;0&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;60&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;city&quot; minOccurs=&quot;0&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;15&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;region&quot; minOccurs=&quot;0&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;15&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;postalcode&quot; minOccurs=&quot;0&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;10&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;country&quot; minOccurs=&quot;0&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;15&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;phone&quot; minOccurs=&quot;0&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;24&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                        &lt;xsd:element name=&quot;fax&quot; minOccurs=&quot;0&quot;&gt;
                                             &lt;xsd:simpleType&gt;
                                                  &lt;xsd:restriction base=&quot;xsd:string&quot;&gt;
                                                       &lt;xsd:maxLength value=&quot;24&quot;/&gt;
                                                  &lt;/xsd:restriction&gt;
                                             &lt;/xsd:simpleType&gt;
                                        &lt;/xsd:element&gt;
                                   &lt;/xsd:sequence&gt;
                              &lt;/xsd:complexType&gt;
                         &lt;/xsd:element&gt;
                    &lt;/xsd:choice&gt;
                    &lt;xsd:anyAttribute namespace=&quot;http://www.w3.org/XML/1998/namespace&quot; processContents=&quot;lax&quot;/&gt;
               &lt;/xsd:complexType&gt;
          &lt;/xsd:element&gt;
     &lt;/xsd:schema&gt;

Similar Messages

  • How to use HTTP Web Service action of SharePoint 2013 Designer to get UserProfiles?

    Dear all,
    I've tried several methods to get the user profile, but still in vain.
    I do search the solutions from the forums and Google.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/52ceba69-5019-4175-9b34-b9e06c3472bf/rest-query-from-workflow-return-unauthorized
    Because the above link is still not work for me, I arise a question here.
    Actually, I would like to get a user's manager, thus I use the rest api:
    [%workflow content:current site URL%]_api/SP.UserProfiles.PeopleManager/GetMyProperties/extendedmanagers
    However, I always get unauthorized error.
    {"error":{"code":"-2147024891, System.UnauthorizedAccessException","message":{"lang":"zh-TW","value":"拒 絕存取。您沒有執行此動作或存取此資源的權限。"}}}
    Below screenshots are my web service settings.
    1. Build a dictionary and set Authorization, Acception, Content-Type.
    2. Call web service and set the RequestHeaders.
    And, I can use the rest api in the browser to see my manager (logged in).
    <d:ExtendedManagers>
    <d:element>i:0#.f|membership|[email protected]</d:element>
    <d:element>i:0#.f|membership|[email protected]</d:element>
    </d:ExtendedManagers>
    Could anybody help me to clarify this issue?
    Thank you!

    Stuck in the same problem with visual studio, here is the uls error
    Exception occured in scope Microsoft.Office.Server.UserProfiles.PeopleManager.ctor. Exception=System.UnauthorizedAccessException: Access Denied: This application does not have the required permissions to access profile information.   
    at Microsoft.Office.Server.UserProfiles.UserProfileManager..ctor(UserProfileApplicationProxy userProfileApplicationProxy, Guid partitionID, Boolean IgnoreUserPrivacy, Boolean isWithinProfileSync, Boolean assumeProfileAdmin)   
    at Microsoft.Office.Server.UserProfiles.UserProfileManager..ctor(UserProfileApplicationProxy userProfileApplicationProxy, Guid partitionID, Boolean IgnoreUserPrivacy, Boolean isWithinProfileSync)   
    at Microsoft.Office.Server.UserProfiles.UserProfileManager..ctor(UserProfileApplicationProxy userProfileApplicationProxy, Guid partitionID, Boolean IgnoreUserPrivacy)   
    at Microsoft.Office.Server.UserProfiles.ProfileLoader.get_UserProfileManager()   
    at Microsoft.Office.Server.UserProfiles.ProfileLoader.EnsureUserProfile(Boolean bCreateIfNotExist)   
    at Microsoft.Office.Server.UserProfiles.PeopleManager..ctor()   
    at Microsoft.Office.Server.UserProfiles.PeopleManagerServerStub.InvokeConstructor(ClientValueCollection xmlargs, ProxyContext proxyContext)   
    at Microsoft.SharePoint.Client.ServerStub.InvokeConstructorWithMonitoredScope(ClientValueCollection args, ProxyContext proxyContext)
    I can see this issue posted like year ago so if any one solved it please help me , I appreciate this much.

  • How to use a Web Service Response

    In the snps_users documentation it seems to be really easy but in fact...
    After invoking my web service I retrieve a XML file which is my response then we would like to use it.
    As written in the documentation I Export Response in XSD file, I create my XML Model but How to reverse the XSD ???
    There's 4 references to XSD into all the snps_users documentation but no one talking about.
    Moreover it's written See Creating and Reverse-Engineering a
    Model for an XML file for more information and that's what I'm doing but no way...
    So without the XSD I m trying to use the Response file like an XML file but I always have an error which looks like :
    java.sql.SQLException: No root found in the DTD file
    The Web Service Response XML File use NameSpace could the problem come from here ???
    If someone ever use it ...
    Thanks in advance.
    BM

    When I specify the XSD It raises another error,
    my URL is :
    jdbc:snps:xml?f=C:/Temp/File.xml&d=C:/Temp/File.xsd&s=REPON&nspg=xml
    Error message:
    java.sql.SQLException: A SAXException was caught while reading the model saying [Element value has no type]
    The XSD and the XML are generated by ODI after invoking a Web Service...
    Any idea ???

  • Anyone know how to use Exchange Web Service API in PB Classic 12.5

    Trying to figure out how to use the api/dll's of the EWS.  I am new to web services in pb so I seem to be going nowhere fast.  If you have used it I would appreciate some guidance or better yet code/instruction on how to use/access it/setup.  I need to be able to get to exchange (in this case using an office365 test account) and read emails/calendar info etc..
    Thanks for any help..
    Dave V.

    Hi Matt,
    I find an article about Overlay a SharePoint calendar with a calendar from Exchange or SharePoint, for your reference:
    https://support.office.microsoft.com/en-us/article/Overlay-a-SharePoint-calendar-with-a-calendar-from-Exchange-or-SharePoint-4caebe59-3994-4a94-9322-b31abb8a5e9a?CorrelationId=0cba4045-24cb-4cb2-b6d6-51e4015df3a0&ui=en-US&rs=en-US&ad=US
    However, if you want to use SQL Queries and HTML, please contact to Exchange Development Team to get more professional advice.
    Best Regards,
    Allen Wang

  • How to use a Web Service Proxy from a different DC?

    Hi developers,
    In EJB DC "dc1" I have imported a wsdl and generated proxies and service group.
    In public part "compilation" of dc1 I have added all the generated proxy classes and the wsdl from META-INF/wsdl folder
    EJB DC "dc2" depends on this public part (also on the mcjar public part which should hold info on the Service Group).
    Here I would like to use the proxy classes defined in "dc1" to invoke the WS in my WSConsumer StatelessEJB like this:
    @Stateless
    public class WSConsumerBean implements WSConsumerLocal {
         @WebServiceRef
         ZWSWORKSHOP1 service;
         public ArrayOfString testWS() {
              ZWSWORKSHOP1ViDocument port = service
                        .getPort(ZWSWORKSHOP1ViDocument.class);
              ArrayOfString retVal = port.doOperation();
              return retVal;
    After deploying the EAR with both the proxy and the ejb, when I try to invoke the EJB injection fails:
    javax.xml.ws.WebServiceException: JAX-WS deployable proxy is instantiated with 'new' instead of been injected. Cannot find WSDL URL for service [class zws_workshop1wsd.ZWSWORKSHOP1]
    Can someone help?
    Thanks, regards
    Vincenzo

    A solution is to use JNDI lookup in EJB.
    Instantiate a InitialContext and lookup the JNDI entry with the lookup String you can find in NWA -> JNDI browser
    Have fun!
    Thanks, regards
    Vincenzo

  • How to use RESTFUL web services in SMP 3.0 Appbuilder?

    Hi All,
         I want to develop an application using RESTfull service. I have already developed REST service,I want to use that service in Appbuilder Application for SMP3.0. How can I call the REST services into our SMP 3.0 Appbuilder application? If i directly call the services(GET method) from Appbuilder, It is working but ODataQuery is not working for filter.
         1.How to access the POST method in Appbuilder?
         2.where should I provide the username and password for the login URL in our appbuilder for POST method URL?
         3.How can I convert those REST service to ODATA services?

         In this discussion i found the solution for this issue. But Appbuilder supports the REST services i to used the REST service with GET method, I don't know how to use the POST method directly in Appbuilder?
    Can any one suggest me
         1.How do i querying the GET method of REST services?
         2.Is there any other procedure to call the REST Service with POST method in Appbuilder?

  • How to use RESTful Web Services provided from BO Enterprise

    Hi Experts,
    i am trying to use the Web Service "BIPLATFORM" provided by BusinessObjects Enterprise. As I have trouble reading the WSDL i tried to use the REST interface.
    Unfortunatally I cannot find any Docu about that in the internet.
    Does anybody have experience in using the BIPLATFORM web service?
    Thank you in advance

    Thank you very much for your instant answer and help!
    I got it now: "no rest in biplatform service"
    What made me think REST is possible was only the following entry in ...\webapps\dswsbobje\WEB-INF\conf\axis2.xml
    "<!-- Our HTTP endpoints can handle both REST and SOAP. Following parameters can be used to distinguiush those endpoints
      -->
    - <!-- In case of a servlet, if you change this you have to manually change the settings of your servlet container to map this
      -->
    - <!-- context path to proper Axis2 servlets
      -->
    - <!-- <parameter name="servicePath">services</parameter>
      -->
    - <!-- <parameter name="restPath">rest</parameter>
      -->
    - <!--  Following parameter will completely disable REST handling in Axis2
      -->
      <parameter name="disableREST" locked="true">false</parameter>
    - <!-- POJO deployer , this will alow users to drop .class file and make that into a service
      -->
    Anyway I was only hoping to get REST work as the WSDL provided by BusinessObjects Enterprise is not valid to be parsed by SAP Netweaver ABAP SOAP Runtime...
    I regret but i have to add: The fact that the web service is only meant to work with certain consumers shows that the people responsible have little to no understanding what the idea of SOAP, SOA and WSDL really is. On the one hand SAP was always pushing their ESOA idea but on the other hand we got this strange limitations like "only for these clients..."
    This is exactly the opposite of the SOAP-idea:
    "The framework has been designed to be independent of any particular programming model and other implementation specific semantics." - http://www.w3.org/TR/2007/REC-soap12-part1-20070427/

  • How to use a km service to show the data of collaboration rooms.

    I follow the method in documents:
    import com.sapportals.portal.prt.runtime.PortalRuntime;
    IRooms roomsAPI = (IRooms) PortalRuntime.getRuntimeResources().getService(IRooms.PORTAL_SERVICE_ID);
    and cast Exception come out,  means can not transfer to IRooms
    And I alse wonder why PortalRuntime.getRuntimeResources().getService(IRooms.PORTAL_SERVICE_ID)'s return type is IService, but IRooms is not extends from IService ,how can casting succesussful......

    I follow the method in documents:
    import com.sapportals.portal.prt.runtime.PortalRuntime;
    IRooms roomsAPI = (IRooms) PortalRuntime.getRuntimeResources().getService(IRooms.PORTAL_SERVICE_ID);
    and cast Exception come out,  means can not transfer to IRooms
    And I alse wonder why PortalRuntime.getRuntimeResources().getService(IRooms.PORTAL_SERVICE_ID)'s return type is IService, but IRooms is not extends from IService ,how can casting succesussful......

  • Deploying a VB dll using some web service and accessing it through java

    I'm new to Web Services Based Programming. I would like to know whether this is possible and if so has anyone tried it. I want to create a vb dll that contains the remote methods that the client will access from a java program. After going thru a lot of articles, I'm still unsure on how to do this. I found one method was to Create a VB program/dll, deploy it in a web service and create the java program that accesses by another web service.
    I'm doing this as part of my lab syllabus. The thing is My lab exercises do not state anything about the technologies that I can use to do this.
    This is all that is stated there:-
    Creation Of DLL Using VB And Deploy it in Java
    I just cant get any ideas other than deploying both the parts as web services. If anyone has Better ideas for this, I would really appreciate it.
    I dont know anything about CORBA for languages other than Java and I'm already using the servlets and EJB's in my normal life. I'm also learning the ORB based programming in java. Therefore your help will probably help me learn something new then what I know.

    Sorry I wasn't too specific in my last question.
    This is my java class calling the native method print
    //HeyWorld.java
    class HeyWorld {
    private native void print();
    public static void main(String[] args) {
    new HeyWorld().print();
    static {
    System.loadLibrary("HeyWorld");
    In this case, my C method for calling a C++ method: HelloWorld.cpp
    #include "jni.h"
    #include "stdio.h"
    #include "stdafx.h"
    #Include "HeyWorld.h" //this is where i get my function prototype
    #include "Test.h" //this is the C++ header where the print method and the Test class is
    JNIEXPORT void JNICALL
    Java_HeyWorld_print(JNIEnv *env, jobject obj)
    CTest a; //CTest is the print class I created
    a.print();
    //This is the header for Test.h
    class CTest: public CWinApp
    public:
         CTest(); //constructor
         void print(); //our method
    //And this is the implementation of the class Test.cpp
    void CTest::print()
         printf("Hey World!\n");
         return ;
    I could compile the Test.cpp, HeyWorld.cpp successfully. However when I tried to compile HeyWorld.cpp using
    cl -I<path of jdk include> -I<path of jdk include win32> -LD HeyWorld.cpp -FeHeyWorld.dll,
    the VC++ 6.0 compiler gave me this error:
    HeyWorld.obj:error LNK2001: unresolved external symbol "public:_thiscall CTest::CTest(void)"
    HeyWorld.obj:error LNK2001: unresolved external symbol "public:_thiscall CTest::print(void)"
    Thanks for the help.

  • Crystal Report using a Web Service as a data source?

    I am trying to figure out how to use a Web Service as a data source in Crystal Reports. When I use the report wizard, I do not see an option to select Web Service as a new connection. We are currently using Crystal Reports 2008 v12.1.0.892. Could it be that my version does not support this? Is there an update that contains this feature? Please help.

    Thanks for your response. Unfortunately I do not see a radio button for Web Services. I've read that it should be there too. Could it be a missing plug-in or patch?
    Here are screen shots of what I see when trying to connect to an XML. Any thoughts?
    [http://s26.photobucket.com/albums/c120/hpolit/?action=view&current=wizard1.jpg]
    [http://s26.photobucket.com/albums/c120/hpolit/?action=view&current=wizard2.jpg]

  • Using a web service in a JSP

    Hello,
    I am having difficulty understanding how to use a web service I have written in a JSP page. The service works fine and simply adds to numbers together. How can I call it from a JSP page?
    Could someone please point me in the right direction?
    Many thanks
    H

    Hi,
    What did you use to write your web service? I have been using Axis2. Typically, you write a client to access your webservice using the same framework that you used to generate the service. I would recommend writing a standalone client. Once you have that code written, you can move into a servlet and then use a JSP as a front end.

  • How to create a crystal report using secured web service as a datasource?

    Hi All Expert,
    I having some challenges on how to create a report using secured web service as a datasource in crystal report designer (CR11 R3).
    Secured Web Service including the certificate trusting, token authentication, header and/or body encryption. All web services running on https protocal.
    Could you please suggest me on the solution?
    Thank you and Best Regards,
    Cherr

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • How to access .asmx Web Service using JAVA? Newbie

    Hello Experts,
    Currently, I have a project where in I have to access a ,NET web service. It is made of C#. I just want to ask how will I start the accessing process? I made this simple equation on how my project is.
    Java Project + C#.Net Web Service = Integration
    1. Do i need to create a Web Service too for the Java Project? If yes, What are the necessary tools needed for the creation of this Java Web Service?
    2. The .NET Web Service is available online. (It is made by other people).
    3. Based on the equation, what is the equivalent technology for the + sign?
    4. Can you site a concrete example for accessing a web service?
    5. I'm new here. Totally I have no idea where to start.
    6. Thank you experts.
    Edited by: Benedict.Aluan on 05 30, 08 1:38 PM
    Edited by: Benedict.Aluan on 05 30, 08 1:39 PM

    Hello
    Thanks a lot for your help ...
    I am developing simple J2EE based web service client using IBM WSAD 5.1. I have used the following code to call .asmx web service in Java
    String url = "http://www.w3schools.com/webservices/tempconvert.asmx?wsdl";
         String namespace = "http://tempuri.org/";
         name = request.getParameter("txtName");
         try
              System.out.println("In Internet Service");
              ServiceFactory factory = ServiceFactory.newInstance();
              Service serv = factory.createService(new URL(url),new QName(namespace,"TempConvert"));
              System.out.println("Got Service......");
              Call obj = (Call)serv.createCall();
              System.out.println("Got Call......");
              obj.setProperty(Call.ENCODINGSTYLE_URI_PROPERTY,"");
              obj.setProperty(Call.OPERATION_STYLE_PROPERTY,"wrapped");
              obj.setTargetEndpointAddress(url);
              obj.setPortTypeName(new QName(namespace,"TempConvertSoap"));
              obj.setOperationName(new QName(namespace,"FahrenheitToCelsius"));
              obj.addParameter("param1",XMLType.XSD_STRING,String.class,ParameterMode.IN);
              obj.setReturnType(XMLType.XSD_STRING);
              System.out.println("Parameters Set.....");
              Object[] params = new Object[]{name};
              k = (String)obj.invoke(params);
              System.out.println("Result: "+k);
         catch(Exception e)
            System.out.println("Exception is : "+e);
        }But this code is throwing exception that
    Invalid Address "http://www.w3schools.com/webservices/tempconvert.asmx?wsdl"I have also tried this URL with Java Proxy. But it showing the same error.
    Plz can u tell me how to access .asmx web service ?
    Waiting 4 reply.

  • How to save report in PersonalCategory  after creating it using java panel?

    Hi,
    Anybody knows How to save report in PersonalCategory  after creating it using java panel?
    I dont want to save it in public folder. I want to save report (webi) in user's personal category.
    can anybody send me source code?
    It will help me a lot.
    Thanks in advance
    Amol Mali

    Hi teda,
    i'm assuming that you have seen my post that i did successfuly save report in user's personal category.
    Actually the report is created in webi java panel using RE SDK and  is saved in Report Sample Folder then i'm saving it in user's personal category by following code
    string query = "Select SI_PERSONAL_CATEGORIES From CI_INFOOBJECTS Where "
                         + "SI_INSTANCE=0 And SI_ID=" + reportID;
                    InfoObjects infoObjects = infoStore.Query(query);
                    InfoObject infoObject = infoObjects[1];
                    Webi wreport = (Webi)infoObject;
                    ObjectRelativeIDs personalIDs = wreport.PersonalCategories;
                /personalIDs.Add(Convert.ToInt32(categoryID));
                   infoStore.Commit(infoObjects);
    But the report is presents in the Folder also and in user's personal category also.
    I dont want the report to be in the folder (Report Sample) if i saved it in user's personal category.
    How can i do that?
    any idea.
    Please help me.
    Thanks in advance
    Amol Mali
    Edited by: amol mali on Jan 9, 2009 7:55 PM

  • Help to create a component model using Calculator Web Service :(

    Hello All,
    Im working on EP6 SP9 and have a Calculator Web Service.
    I want to create a component which should contain following UI elements:
    1. <i>InputField</i> - to enter 1st number
    2. <i>InputField</i> - to enter 2nd number.
    3. <i>TextView</i> - To show the result
    The calculator web service consists of 4 basic methods like addition, subtraction, division & multiplication.
    I want to know whether how can I provide seperate buttons to each of the above mentioned functions 'coz when I add the web service while creating a component using SAP Web Dynpro (<i>using SAP NEtweaver Developer Studio 2.0.9</i>) - Model Creation step, I get an option to select only one method (and that is add).
    Its not working......
    I am following the steps as mentioned in help pages on Web Dynpro, section "Web Dynpro & Web Services" and example on WebServiceEmail.
    Please help.......
    I have to show this in a presentation on coming Friday.
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu R Hunjan
    <i></i>

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

Maybe you are looking for

  • Hashmap problem

    Hi I am getting only last value from hashmap codes are below. Then I used iterator and getting Required string is null or empty jsp code <bean efine id="a" name="b" property="c"/> <bean efine id="e" name="b" property="d"/> <% java.util.HashMap params

  • How to refresh output table in alv tree?

    Hi ! I searched, there is many solutions. FRONTEND_UPDATE, refresh_table_display, or expand_nodes.. But I want just fresh output table. Look this, please. IF p_tree IS NOT INITIAL.     CALL METHOD g_container2->set_focus       EXPORTING         contr

  • Password protecting a pages doc

    Is there any way to password protect a pages doc in the latest version included in iWork 08? Thank you

  • Acrobat 9 installed, now unable to scan in Photoshop

    Hi, I've been using Acrobat 9 Pro for a couple of days and with a couple of exceptions, it's been working fine. I can create a PDF from the scanner, a file, web pages, etc. But I just launched Photoshop CS4 to scan something from that application, an

  • AIA Deployment Failed After Patching

    Hi Oracle Community, We have a AIA purchase order interface. The interface itself has about 8 composites. We have been successfully using the following process to deploy the interface for the past 12 months: ant -f $AIA_HOME/Infrastructure/Install/AI