Different ways to retrieve CRMOD data

here's my business requirements...I want to create leads, accounts ...etc. and I want to send that data to EnterpriseOne
My question is what's the most popular way to retrieve data from CRMOD please?
Do you have a web application sitting on a web server that periodically query the queues and process data?
I'm trying to figure out the most popular ways that people use to read data from CRMOD
Thanks
I'm using Jdeveloper 11g and Java

You will need to investigate integration events within On Demand which will be used to store information on new Accounts and Leads. This information will be stored within the associated queue and then you will need to develop a web service application that will connect and retrieve the xml from the queue and use this to update EnterpriseOne.

Similar Messages

  • What are the different ways of retrieving data from Oracle8i

    What are the different ways of retrieving data from Oracle8i
    into my HTML page ?
    Is it JDBC and ODBC ?
    Is there any other way ?
    null

    Methods I tried,
    Applet using SQLJ/JDBC with JDBC drivers thin or Oci8,
    Oracle Web Publishing Assistant,
    HTP/HTF PL/SQL packages (if you have OAS 4.0)
    Webserver Generator of Designer 2000 (if you have OAS 4.0)
    Arun (guest) wrote:
    : What are the different ways of retrieving data from Oracle8i
    : into my HTML page ?
    : Is it JDBC and ODBC ?
    : Is there any other way ?
    null

  • Is there a simple way to retrieve the data from a resultset using JavaBean?

    I have a result set from a select * from users where userid = xxx statement. However, at the moment I have had to hard code the remainder of the code to get the data from each column as I need the column name as well as its data.
    I had read somewhere using java beans and reflection it is easier. But i do not know know how.
    Is there a simple way to retrieve the data from a result set ?
    thanks in advance-
    kg

    Well, it is not really simple. But there are Open Source components to simplify it for you. See e.g http://www.must.de/Jacompe.htm - de.must.dataobj.DataObject and its subclasses. Feel free to contact me if you have any questions: [email protected]

  • My iCloud backup from my old phone shows incomplete is there a way to retrieve the data that I backup from my old phone even if it didn't complete . They told me that they would let if finish when I traded in my old phone. I want to restore it to new phon

    My iCloud backup from my old phone shows incomplete is there a way to retrieve the data that I backup from my old phone even if it didn't complete . They told me that they would let if finish when I traded in my old phone. I want to restore it to new phone. Even if it didn't complete how to I restore the 5 g that did backup

    Unfortunately you can't restore an incomplete backup.

  • I allowed ATT store to re set my iphone 4 and need to know if there might be a way to retrieve the data

    I allowed ATT store to re set my iphone 4 and need to know if there might be a way to retrieve the data?

    Resetting should not have deleted your data. 
    But if you backed your phone up to iTunes or iCloud you should be able to restore it from there.
    http://support.apple.com/kb/HT1414

  • What are the different ways to upload file data to SAP? Please help

    Hi Experts,
       I have to transfer huge file data (few lakhs records) to SAP business transaction. What are the different ways to do the same? I have heard of BDC and LSMW. But are there any more options?
    Which option is best suited for huge file data?
    Is LSMW an old technology and SAP will not support it any more?
    Kindly answer my queries at the earliest.
    I will be greatful to you if you can help me.
    Thanks
    Gopal

    for uplodig data to non sap we have 2 methodes
    i) if u know bapi u will use lasm
    2) bdc
    but u mentioned so many records isthere
    best thing is u will uplode all record sto al11 using XI interface
    then u have to write bdc / lsmw  program
    beter to go for lsmw before that u will find bapi
    if u will unable to find bapi
    u have to create bapi and use it in lasmw
    ofter that u have schedule the lsmw program as a bockground
    then u have to create a job for it
    and release from sm 37
    then u have to moniter through bd87
    if u want to go through i will help u.
    if it is usefull to u pls give points
    Saimedha

  • Is there a way to retrieve the date of a file

    I would like to know is there a way to retrieve the last modified or last created date of a file in Solaris in Java?
    Thanks.

    Class java.io.File has a method lastModified. For 10 dukes I'll point out the exact location in the dokumentation.

  • Best way to retrieve/store date Flex PHP MySQL?

    Hi All,
    I have a question about storing/retrieving a date-field from the MySQL database, using Flash Builder 2 & Zend AMF.
    This is as much as I know:
    MySQL Database stores date in this format: yyyy-mm-dd hh:mm:ss
    And Flex will not recognise that as a "date", instead it will suggest this value is an "object".
    With "Configure return type", I can manually set this field to "date", but it will not work retrieving of updating the date as MySQL will not understand the standard date-format it'll receive,
    I guess, the best solution would be if I could tell the MySQL Server how the standard date-format should be, but I have not found this option. Can anyone confirm this?
    The remaining options are:
    Format the date in the SQL-query
    Format the date in the PHP-function sending/retrieving
    Format the date in Flex, befor assigning it to a date-field...
    Can someone tell me the BEST practice to handle date-objects? I guess it's the date_format function in MySQL....
    I'm trying to build an app with over 3200 fields, shared over 60 tables, of which many are date-fields.
    Would be awesome if I could just use SELECT * FROM myTable, and all would be fine with date-fields and all...
    Any tips?

    I'm confused. This is what I have:
    On my MySQL database, I've created a VIEW with the query that I need. I thought it'd generally be efficient to create views for every 'Form' that I need.
    This is my VIEW v_person
    SELECT p.`person_id`, p.`name`, p.`lastname`, DATE_FORMAT(p.`birthdate`,'%d/%m/%Y %r') as birthdate
    FROM person p
    Now I have a simple table v_person returning
    person_id
    name
    lastname
    birthdate
    0
    John
    Doe
    null
    1
    Jane
    Did
    23/08/1976 12:00:00 AM
    2
    Juno
    Doh
    01/04/2001 12:00:00 AM
    "Great! Now I can set up my query once, returning the date in whatever format Flex likes."
    Not.
    This is the standard generated PHP function to get information by ID. This works fine.
         public function getV_personByID($itemID) {
              $stmt = mysqli_prepare($this->connection, "SELECT * FROM $this->tablename where person_id=?");
              $this->throwExceptionOnError();
              mysqli_bind_param($stmt, 'i', $itemID);          
              $this->throwExceptionOnError();
              mysqli_stmt_execute($stmt);
              $this->throwExceptionOnError();
              mysqli_stmt_bind_result($stmt, $row->person_id, $row->name, $row->lastname, $row->birthdate);
              if(mysqli_stmt_fetch($stmt)) {
                   return $row;
              } else {
                   return null;
    This is the standard generated Form in Flex:
    One note to make when using RETURN TYPE,
    is that in when I use person_id=0 , I can change "birthdate type" from OBJECT to DATE, because date is null.
    When I use person_id=1 , I CAN'T change "birthdate type" as it defaults to "STRING".
    Since I want to use a dateField in my Form, I changed birthdate type to "DATE". (Even though I now understand that return type IS in fact a string)
    <fx:Script>
         <![CDATA[
              import mx.controls.Alert;
              import mx.formatters.DateFormatter;
                   protected function button_clickHandler(event:MouseEvent):void
                   getV_persontestByIDResult.token = vpersontestService.getV_persontestByID(parseInt(itemIDTextInput.text));
         ]]>
    </fx:Script>
    <fx:Declarations>
              <vpersontestservice:VpersontestService id="vpersontestService" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
         <s:CallResponder id="getV_persontestByIDResult" result="v_persontest = getV_persontestByIDResult.lastResult as V_persontest"/>
         <valueObjects:V_persontest id="v_persontest" person_id="{parseInt(person_idTextInput.text)}" />
         <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:Form defaultButton="{button}">
         <mx:FormItem label="ItemID">
              <s:TextInput id="itemIDTextInput"/>
         </mx:FormItem>
         <s:Button label="GetV_persontestByID" id="button" click="button_clickHandler(event)"/>
    </mx:Form>
    <mx:Form>
         <mx:FormHeading label="V_persontest"/>
         <mx:FormItem label="Birtdate">
              <mx:DateField id="birthdateDateField" selectedDate="@{v_persontest.birthdate}" />
         </mx:FormItem>
         <mx:FormItem label="Last name">
              <s:TextInput id="lastnameTextInput" text="@{v_persontest.lastname}"/>
         </mx:FormItem>
         <mx:FormItem label="First name">
              <s:TextInput id="nameTextInput" text="@{v_persontest.name}"/>
         </mx:FormItem>
         <mx:FormItem label="person_id">
              <s:TextInput id="person_idTextInput" text="{v_persontest.person_id}"/>
         </mx:FormItem>
    </mx:Form>
    Works great! Except that it can't handle the date field:
    TypeError: Error #1034: Type Coercion failed: cannot convert "10/21/1984 12:00:00 AM" to Date.
         at com.adobe.serializers.utility::TypeUtility$/assignProperty()[C:\perforceGAURAVP01\depot\flex\ide_builder\com.adobe.flexbuilder.dcrad\serializers\src\com\adobe\serializers\utility\TypeUtility.as:534]
         at com.adobe.serializers.utility::TypeUtility$/convertToStrongType()[C:\perforceGAURAVP01\depot\flex\ide_builder\com.adobe.flexbuilder.dcrad\serializers\src\com\adobe\serializers\utility\TypeUtility.as:497]
         at com.adobe.serializers.utility::TypeUtility$/convertResultHandler()[C:\perforceGAURAVP01\depot\flex\ide_builder\com.adobe.flexbuilder.dcrad\serializers\src\com\adobe\serializers\utility\TypeUtility.as:371]
         at mx.rpc.remoting::Operation/http://www.adobe.com/2006/flex/mx/internal::processResult()[E:\dev\trunk\frameworks\projects\rpc\src\mx\rpc\remoting\Operation.as:316]
         at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()[E:\dev\trunk\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:313]
         at mx.rpc::Responder/result()[E:\dev\trunk\frameworks\projects\rpc\src\mx\rpc\Responder.as:56]
         at mx.rpc::AsyncRequest/acknowledge()[E:\dev\trunk\frameworks\projects\rpc\src\mx\rpc\AsyncRequest.as:84]
         at NetConnectionMessageResponder/resultHandler()[E:\dev\trunk\frameworks\projects\rpc\src\mx\messaging\channels\NetConnectionChannel.as:547]
         at mx.messaging::MessageResponder/result()[E:\dev\trunk\frameworks\projects\rpc\src\mx\messaging\MessageResponder.as:235]
    Somehow SOMETHING wants to convert "10/21/1984 12:00:00 AM" to Date.
    Where does it fail? I feel like I'm SO close, but making a faceplant right before the finish.
    ok.
    I'm by no means an expert, so let me know if I'm doing something wrong, but this is how I'd expect it to work.
    Can someone tell me how I should use a dateField instead? Where should I make the stringToDate and dateToString conversion?

  • Way to retrieve lost data?

    Hi,
    My computer shut down due to a power failure while using iWeb. I was working on something very important and is there a way to retrieve what I did...
    Thank you...

    When any computer suddenly loses all power, any unsaved work that was open in any application is irretrievably gone. There's no recovering it. Any version of it that had previously been saved will be on the hard disk wherever you saved it, and will open right up normally. Subsequently changes that were unsaved are gone.
    If your MacBook Pro's battery was charged (even partially charged), then as soon as the power went out the machine should have switched instantly over from AC to battery power, without any effect on your work. This would be true of any Apple notebook computer; the batteries in such computers serve as uninterruptible power supplies in the event of a power outage. Are you not using a notebook Mac? If you are using one, is its battery totally dead or not present at all?

  • Is there a way to retrieve lost data

    I tried spotlight and it seems some of my iMovie files are gone. I don't have a backup. This was a result of a computer crash. Is there any third party software that I could use?

    leroystreet
    1. To recover lost data try using File Salvage
    2. Are you sure the Spotlight index wasn't damaged in the crash? Try re-indexing: In the Spotlight PreferencePane, drag the HD to the Privacy Pane, leave it there for a few moments, then drag it out again. Allow it time to re-index.
    Regards
    TD

  • Best way to retrieve data for jsp

    Hi,
    I'm fairly new to java and am preparing to create some jsp's for our intranet. The pages need to include data from a db2 database. I know pretty much what I need to do, but I'm trying to decide the best(most efficient) way to retrieve the data to display. I've looked at a number of examples and the more I look, the more confused I get (it would be so easy on the AS400 which is my background so you can see how new this is to me). I see my options as: using an 'include' statement to include another java file that retrieves the data; or use a java bean; or just instantiate an instance of the class and 'call' the methods for that class directly; or lastly, place all the code directly in the jsp to connect to the database and query the table.
    What's the real difference between these options and what's usually the most efficient and preferred way?
    Thanks for any advice and clarification.

    As a general rule, it's a good idea to separate the
    presentation (JSP and HTML) from the business rules
    (database access). I know you didn't do that on the
    AS/400, you had display files and business logic in
    the same program (at least, we certainly do in ours),
    but it's a good policy to follow in the web world.
    That means, don't put your database access code in
    the JSP. Other than that, it depends on the data.
    If you have simple data (e.g. customer's name and
    d address) then a Java bean would suffice. If you
    have complex data (e.g. customer's payment history)
    then a bean still might suffice. You would use an
    "include" if you had some data (static or dynamic)
    that you wanted to appear in several different pages
    in the same form.Thanks, I figured putting the code in the JSP was not the best way, but I wasn't sure about the other options.

  • Lost recovery key and need to retrieve current data

    Yeah.
    It's a really nasty situation.
    In order to get back into Sync i have to generate a new recovery key
    But the recovery key generator will mangle the synced data.
    Is there any way to retrieve the data?.
    I haven't been able to sync with Firefox on Android and few days ago my harddrive gave up so I had to reinstall windows.

    If you don't have a 2nd device connected to that Sync account so you can "pair" them, AND you don't have the Sync Key that was used to encrypt your data as it was being uploaded to the Sync servers, you data can't be recovered.
    Did the reinstallation of Windows save any of your old data files? <br />
    Like maybe the \roaming\''user''\app data\Mozilla\Profiles folderset?

  • Retrieve BPC data into BW 3.5 : any alternative to UD connect ?

    Hello,
    SAP BPC 7.0 (Microsoft SQL version not Netweaver) has been deployed a few month ago.
    Now the data from this tool will need to be brought into our BW 3.5 landscape for reporting, and it has been suggested by our developers that the interface is implemented using UD Connect.
    As the SAP basis guy, I did some researchs on how to connect UD connect.
    http://help.sap.com/saphelp_nw04/Helpdata/EN/95/10fb40af87ee6fe10000000a1550b0/content.htm
    Apparently, UDconenct use the SAP BW J2EE stack, the problem is that in our case the J2EE stack has been inactivated two years ago.
    The reason for that is that BW 3.5 was initially deployed as double stack server (Abap+Java), and we encountered at that time many performances issues and stability problems (unicode, etc ...).
    We had no other choice than stopping the J2EE stack.
    (Now SAP strongly recommends to install separated systems : BI abap and BI java , in order to avoid that kid of issues)
    I'm not really keen on the idea of restarting the BW J2EE stacks...
    So, based on your BPC expercience is there any other way to retrieve BPC data into BW ?
    Thank you in advance for your help.
    Best Regards.

    One way out can be to export SQL data as CSV file and then load data from that CSV file into BW. This can be automated if you desire so.
    http://rogerdavies.com/blog/?p=1607
    Regards
    Pravin

  • Shortest way to retrieve from KONM Table

    Hi,
    Can anyone tell me how to write a query for, the shortest and quickest way to retrieve the data from KONM Table?
    Sample Record in the KONM Table will be as given below.
    KNUMH          KSTBM             KBETR
    007......... 1 .......... 50
    007......... 11 ........ 45
    007......... 55 .........40
    When i give my input Quantity (KSTBM) as 4, i should get the price (KBETR) as 50. i.e., input quantity between 1 to 10 is 50. Input Quantity between 11 and 54 is 45. Anything Greater than 55 to next greater quantity is 40,...
    Is there any function module available to retrieve the record?
    Also best optimized logic, will be given a full mark.

    Hello Vijay
    I am assuming that you have value in KNUMH with you...
    here's the idea in brief..
    select the values.. sort by quantity descending.. then populate a range with LE option... the first entry in the interal table which meets the condition is the value u require..
    Sort of Pseudo code:
    ranges: r_kstbm for kstbm.
    r_kstbm-sign = 'I'.
    r_kstbm-option = 'LE'.
    r_kstbm-low = p_kstbm.    <your quantity value comes here> 
    select <your fields> from KONM into table i_konm where KNUMH eq p_knumh.
    if sy-subrc = 0.
    sort i_konm by kstbm descending.
    loop at i_knom where kstbm in r_kstbm.
        <The price required> = i_konm-kbetr.
        exit.
    endloop.
    endif.
    Message was edited by:
            Arun Nair

  • "Unexpectedly Quit" : Any way to retrieve?

    I won't go into the infuriation of having worked all day on something to have it vaporize in a blink.
    FCP unexpectedly quit on me today. I reopened it, but could not find my project (at least not a version with today's changes made to it). I checked the crash report, but it tells me nothing. I suspect that this crash happened because my media was on the same drive, does that sound accurate?
    Anyway, is there any way to retrieve this data? Is it trapped somewhere, or do I have to do all of my work again?

    I thought that you could set FCP to auto-save every x minutes. No?
    Yes....did you not do this? It defaults to save every 30 min. YOu find this option in the User Preferences.
    Look for your Autosave fault. In the SYSTEM SETTINGS is where you set it, so that will show you where it is. It defaults to the DOCUMENTS folder, in side the FINAL CUT PRO DOCUMENTS folder. Open the latest one.
    I have mine set to 10 min.
    Shane

Maybe you are looking for

  • Help! SQL server database log file increasing enormously

    I have 5 SSIS jobs running in sql server job agent and some of them are pulling transactional data into our database over the interval of 4 hours frequently. The problem is log file of our database is growing rapidly which means in a day, it eats up

  • Adobe Presenter on MacBook Pro?

    Is it possible to run Adobe Presenter (current version) on an Apple  MacBook Pro either directly or with one of the programs (Parallels etc) that allow Windows programs to run a MAC? If it is possible hopw has your actual experience been? My work is

  • Guest Authentication With Accountability! -HELP CMX vs ISE?

    HI,  We currently are in the procurement stage of an upgrade to our wireless solution but are facing a  business requirements that hopefully you guys will be able to help with:- Guest authentication with some way of checking the guests are who they s

  • Anyway to change the look of slideshow outside of .Mac?

    Just launched my site to a non-.Mac URL. Quite happy, but when we go to the slide show we transition from this nice, clean polished-black web site to the garish white, clunky slide show. I know that "enhanced slideshow" features are not available out

  • Clone DB to another OS?

    Hi: I have Oracle 11g installed on Windows Server 2003 64 bit (Production), and I want to migrate this DB to another machine with windows server 2003 32 bit (or Windows XP) for testing purpose. Also I want to check backups -backup sets, dumps- genera