"Join" Objects through Webservices

I'm trying to find a fast way to join objects through webservices.
What do I need?
-An extract of the recipients from a campaign joined with contacts
What do I have?
-I have an extract of the recipients of the campaign...
What's left?
-No I have the ID's of the contacts and I could get the information of the contacts 1 by 1. This means if I have 100 recipients, that I have 101 webservice calls.
My question?
Is there a way to get all the contacts with 1 webservice call, containg the needed info from recipients?

Probably not, Campign - Contact is Many-to-Many relationship. You can query contacts where 'SourceCampaignName' field equals some camagin, but it not the same that you want.

Similar Messages

  • How to send data to bam data object through java code

    how to send data to bam data object through java code

    I've made a suggestion in other thread: https://forums.oracle.com/thread/2560276
    You can invoke BAM Webservices (Using Oracle BAM Web Services) or use JMS integration using Enterprise Message Sources (http://docs.oracle.com/cd/E17904_01/integration.1111/e10224/bam_ent_msg_sources.htm)
    Regards
    Luis Fernando Heckler

  • Queue Name is Initial while calling XI through webservice

    Hi All,
    While i am sending data to XIServer through webservice with Quality of service as EOIO i am getting the response
    <b>XIServerINTERNAL.ATTRIBUTE_INITIALQUEUE_NAMEAttribute QUEUE_NAME is initial</b>
    Due to this i cannot see any messages in SXMB_mONI..
    Can anybody give solution or suggestions...
    And also CCMS status is in red in component monitoring of Adapter engine for XISERVER...
    Thanks and regards,
    Sridhar

    Hi Michael,
    Thanks for u r reply,
    I am not using Soap Adapter, I am using XI adapter, and followed the Doc how to send XML data to BW using the doc
    http://service.sap.com/~sapidb/011000358700011142902001E/HOWTOSENDXMLDATATOBW.DOC
    My scenarion is XI-BW integration.
    Here I am trying to send XML data as mentioned in the doc.. i can see the messeges if i give the QOS as EO but if i give EOIO then the said response i am getting...
    Request u to give solution or suggestion...
    Regards,
    sridhar

  • Accessing setters in parent view object through view link

    Hi,
    I want to access the setters in a parent view object from a child view object through the view link. I have not been able to find an example, can someone point me to one? This is possible isn't it?
    Thanks,
    Jim

    Hi,
    have a look at the developer guide, it has one
    http://download-uk.oracle.com/docs/html/B25947_01/toc.htm
    Frank

  • How to organize the context object through out the application process

    Hi,
    Here in my application is using the following steps for a process.
    - Login
    - Search
    - Update
    - Logout
    In those above steps, Login, Search, and Update actions are touching to database/LDAP every time. In each time, Im creating new Context object, I think this is a bad approach. When I hit the login, I need to get the connection object and use that for rest of the actions(search and update).
    So can we organize the single context object through out the application? And where do we need to close the Context object?

    Don't worry about it. The provider will reuse connections behind the scenes. They're not tied directly to Contexts.

  • Objects through servlet

    How to pass the object through servlet?

    I can venture a guess that the OP wants to 'send' an object as a request parameter or a form field.
    You'd have to turn the object into some data representation that can later on be translated back into the object; serialization comes to mind. It might be easier to just send the properties of the object as seperate request/form fields though!

  • How to create object through  transaction snro

    Hi ,
       I want to create an object through Snro transaction.
    I dont know how to use this transaction.
    Please Help.
    Thanks in advance.
    Nikita

    Nikita,
    Based on the transaction code, respective function consultant will create number range.
    If u want a number series for some other purpose in ur program u can create object in snro as below.
    1. Enter a object name and click 'CREATE' button
    2. In the next screen give relevant description
    3. In 'Number length domain' field u can specify the length of number .. example if u give char10, then it will be a ten digit number series.
    4.Enter warning percentage.. the purpose is to throw warning message 10 % before when ur number series about to exhaust.
    5. After entering those details --> press save button.
    6. Again come to main screen (SNRO initial screen) then click number raneg tab inthe application tool bar.it will take u to next screen.
    7. In that click internal change push button
    8. IN the resulting screen enter ur number range series,
    example
    01     00000001     09999999
    02     10000000     19999999 etc
    9. click save button..NOw ur number series is ready for use.
    Regards,
    Aswin.

  • Passing data through webservices.

    Hi All,
    I have two doubts.
    1. Can we call a webservice without calling creating an ABAP Proxy?
    2. If yes how can i pass my internal table through webservice.
    any code snippet or wiki link regarding this will be very helpful.
    TIA
    Vikash Singh

    Hi Vikash,
    Go through the below link, it has a simple example which will help you,
    just search for "Calling a web service in ABAP that validates an email id" and click on the link of saptechnicaldotcom
    or try this
    http://help.sap.com/saphelp_nw70ehp2/helpdata/EN/1f/93163f9959a808e10000000a114084/content.htm
    Also, for transforming your internal table into XML, you can use the below piece of code
    CALL TRANSFORMATION ID  
       SOURCE root = ITAB
       RESULT XML xml_string.
    And you can pass the XML_STRING as input to the "CREATE_BY_URL_METHOD".
    But the XML_STRING will need to be in the format that the service can understand, you might have to modify it accordingly.
    Regards,
    Chen
    Edited by: Chen K V on Apr 26, 2011 1:04 PM
    Edited by: Chen K V on Apr 26, 2011 1:07 PM

  • SingleTon object of WebServices (Please be specific as required and not be generic)

     // Singleton Object of viewservice
    private ViewService WorkListView = null;
    ViewServiceObjectCreation viewstrWorkListView =  ViewServiceObjectCreation.GetObject();
    // Object Creation
    public  class ViewServiceObjectCreation
            private static ViewServiceObjectCreation singleTonObject=null;
            private static readonly object lockingObject = new object();
            private ViewServiceObjectCreation()
            public static ViewServiceObjectCreation GetObject()
                if(singleTonObject == null)
                     lock (lockingObject)
                          if(singleTonObject == null)
                               singleTonObject = new ViewServiceObjectCreation();
                return singleTonObject;
    But this is not creating singleton object of webservice. How to create singleton object of webservice.
    Vivek

    Read my post again: Please describe your concrete problem which made you think you need a singelton.
    A singelton only works per domain. Thus it will not help in your sketched scenario. Cause it cannot prevent an user or administrator for starting another domain (a.k.a. process).
    In this case you should consider using a mutex, which is aquired when the web service is started and released when stopped.
    While singeltons are a cool pattern per se, they are one of those evil ones. They are often not a correct solution and much worse, the kill testability cause the represent a global state.

  • Send the adobe form through webservices

    Hello all,
    i have a requirement in adobe form. When i click on submit button the total pdf form have to be sent through webservices and update as a string in a SAP ztable. so that i can retrieve the string and convert it into pdf again and reuse it.
    can anyone suggest, is it possible to do. Please suggest if anyone already worked on this scenario before or like.
    Thanks in advance,
    Prakash reddy .S

    Hello Sreelatha,
    I think we cannot hide a page.  as in, page is the main container.  In a container, we can hide any field using some scripting.  Even though if we hide the field, it is present on page but not visible. 
    but if some logic is there, please let me know.
    Thanks,
    Rakesh.
    Edited by: rakhi966 on Sep 8, 2011 8:54 PM

  • How can i return an object isn't java object from webservice????

    Hi !
    I have a problem in my Project. When i call method return a java object from webservice , it 's too easy. But when i create my own object (ex:ClientRequest.class) , it doesn't work exactly T_T . When i return that object (on client, doesn't have ClientRequest.class) , i cann't access its static variables.
    How can i do it ??
    Please help me !
    Thanks a lot !!!!!
    class ClientRequest {
    public static int i;
    public static String s;
    public ClientRequest() {
    }

    You can use REFCURSOR type for this. In java SQL TYPES this is available too. In your PLSQL use REFCURSOR for that array and then take the same from java code. Look in the servelet programming book for this SQLTYPE and see PLSQL for handling refcursors. We have done this way and it works.

  • Transport of PCD and Content objects through JDI.

    Hi all,
    Pls share the views about the trasport procedure for PCD and Content objects.
    Is it possible to transport PCD and Content objects through JDI?
    If it is possible, could you pls share how to configure the JDI setup?
    Thanks in advance,
    Kishore.

    Hi Kishroe,
    First, there is no supported, out of the box way to handle content objects in the JDI (now NWDI- NetWeaver Development Infrastructure) With that said, since it is a repository you could export your content package. Make it a zip file or something like that and add it to the repository.
    Again, I believe this is theoretically possible. I'm sure some of the other SDN members can provide an automated approach to do this.
    Good luck,
    John

  • ResultFormat="object" in webservice. Flawed or is it me??

    <mx:WebService id="getListTargs"
    wsdl="myurl/dropper.cfc?wsdl" useProxy="false">
    <mx:operation result="testRet();" name="dropRanges"
    fault="Alert.show(event.fault.message)" resultFormat="object"/>
    </mx:WebService>
    When I get the XML back from that webservice it comes back as
    a string and not an object. Is something wierd with resultFormat or
    do I have to do some kind of conversion to get it into an
    object????

    The code below is working to populate a class with the values
    returned from a web service, ofcourse you have to create the class
    and create the callback function but I believe you have to create
    the class even with the full blown FDS Java implementation so it's
    a trivial task.
    This code is all AS, as I personally dont like using the
    tags.
    These are two load functions in a custom ArrayCollection, so
    ignore the this. calls as they are just calling super class
    functions.
    public function LoadAllModules():void
    var ws:WebServices = WebServices.Instance;
    var op:AbstractOperation =
    ws.Service.getOperation("GetAllModules");
    op.addEventListener("fault", ws.Fault_Callback);
    op.addEventListener("result", this.LoadAllModules_Callback);
    op.send();
    private function
    LoadAllModules_Callback(result:ResultEvent):void
    this.disableAutoUpdate();
    for (var s:String in result.result)
    var m:MyClass = new MyClass();
    m.ModuleID = result.result[s].ModuleID;
    m.Name = result.result[s].Name;
    m.BaseName = result.result[s].BaseName;
    m.AssemblyName = result.result[s].AssemblyName;
    m.AssemblyNamespace = result.result[s].AssemblyNamespace;
    m.Active = result.result[s].Active;
    m.RemoteFiles = result.result[s].RemoteFiles;
    this.Add(m);
    this.itemUpdated(m);
    this.enableAutoUpdate();
    }

  • How to access the LOB objects through databaselinks?

    How to access the LOB objects through databaselinks?

    Abhii wrote:
    How to access the LOB objects through databaselinks?You can refer to this link
    http://dbaforums.org/oracle/index.php?showtopic=4790
    I've found it by simple google-ing...
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • How to access the LOB objects through database links??????????????

    How to access the LOB objects through database links??????????????

    Hi
    See:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:52297289480186
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:5322964030684
    And you also might want to get a new keyboard, your '?' seems to be stucked....

Maybe you are looking for

  • Baixa de contas a pagar com juros

    Como dou baixa de títulos que foram pagos com juros  e onde lanço o valor dos  juros???

  • Playback interruptions with 7.01.08  iTunes on XP-Pro

    Since updating to iTunes 7.01.08 on a Windows XP - Pro machine, the playback constantly "sticks" when a new song starts, whether running other software or not. Not a RAM availability issue. Does not occur on Macs (on same home network). Did not occur

  • Reg:BPM execution

    hi can i know where exactly the integration process executes in IE/BPE Regards chandrakanth

  • Does Apple put out a service pack to fix Safari issue ...

    ... after you load and install COMBO PACK ? That will brake Safari totally ... i have no working safari at all now ... cant find anything from net either . Also would be nice to get some updates to Safari version 5,3 when everyone cant buy new Apple

  • Time service clustering in WLS8

              Hi           Our product uses timer service on WLS 6.1, and timer is started by startup class.           Now we need to move our product to WLS8 cluste. My question is: although startup           class is clusterable, can timer service be c