How to Integrate Seibel with ADF ?

Hi All,
JDev Ver : 11.1.1.5
We need some Information about Seibel integration with ADF
So for we use to Integrate Seibel with the help of Web Services. We need the Is there any other approach for the Integration ?
I have gone through below link and got some information about JCA adapter, and URI based approach. If we use this, how to implement in the development part,
http://siebel-essentials.blogspot.com/2011/02/first-encounter-with-sai-ofm.html
We don’t know exactly how to do the implementation like if you want to retrieve/update some values to Seibel from Jdeveloper ADF using the above approach.
Is there any other approach for the Seibel integration with ADF ?
Thanks,
Gopinath

The blog you point to seem to show an example of using a REST service exposed by Siebel.
ADF allows you to create data controls based on REST services and then build the UI on top of them through the URL data control.
See step 4 of this tutorial:
http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_53/jdtut_11r2_53.html

Similar Messages

  • How to integrate EBS with ADF Jdev

    Hi all i have no idea of integrating EBs with JDEV . so can any one please tell me how can i integrate EBS with JDev using Oracle Applications Adapter ?

    There are no guidelines and standards available at present for the custom ADF development with respect to EBS. So if you really want to do it, there will be lot of custom coding required just for the integration purpose like managing sessions, apps specific data etc.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to Integrate Portal with SAP OFFICE(Please help me)

    Hello Experts,
    I have doubts on Portal and SAP office..
    Please find the
    1) How to show the document info record(DIS,like cv03n or cv04n) in Portal
    Please let me know the step by step procedure...
    2) After showing the documnet info record(DIS) in the portal,If user clicks on
    original attachmnet of documnet info record(DIS) it shoud show the drawing
    or diagam in the word or any uformat using SAP OFFCIE:
    How to Integrate Portal with SAP OFFICE
    Please let me know the details.
    Please mail me any documents related to this to my mail id
    [email protected]
    Thnaks in Advance
    Preethi DSouza

    Hi Dharani,
    Please check this thread.
    How will do the connectivity with SAP and Non Sap System
    Also ensure you avoid cross-posting. This has been mentioned to you multiple times earlier.
    Cheers,
    Sandeep Tudumu

  • How to integrate EBS with OBIEE 11.1.1.7.1

    Hi ,
    I would like to know , how we integrate EBS with OBIEE11g(not OBIApps) for finance module(GL,AP,AR).
    What steps we have to do for integration.
    Req - When a EBS user logs in he has to see details in obiee based on his ledger assigned to him.
    Iam able to integrate EBS with OBIEE, able to move from ebs login to bi, but what required is security .
    Any help please...

    Check these
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e16364/ebs_actions.htm#CJAFDEIB
    http://www.astcorporation.com/images/PDFs/White_Papers/2012/AST_White_Paper-EBS-OBIEE_11g_Integration.pdf

  • How to get PPR with ADF BC without FkLink defined?  (Jdev 11 with ADF BC)

    I have seen the demos where PPR is demonstrated with a master-detail relationship defined. How do you do this if the relationship is not defined. Here is an example based on the HR schema tables:
    ViewObject1
    select distinct city || ' ' | country_id, location_id from locations;
    ViewObject2
    select
    d.department_name,
    j.job_title,
    count(*) counter
    from
    employees e inner join departments d
    on e.department_id = d.department_id
    inner join jobs j
    on e.job_id = j.job_id
    where
    e.department_id in (select distinct department_id from departments where location_id = :Loc_ID)
    group by j.job_title, d.department_name;
    In a JSF page, the visual components would be a list item based on ViewObject1 and a ReadOnly Table based on ViewObject2
    I want to see the data in ViewObject2 get updated when a new value for ViewObject1 is selected. What are the steps to accomplish this?
    Thanks, Ken

    Frank,
    Thank you for the response. Two (hopefully) quck questions to follow up.
    1. Can you point me to documentation that explains indepenedent vs dependent VO and the implications. I understand the idea, just would like to get a thorough explanation of each.
    2. Can you point me to documentation on implementing the code to set the query condition and implement it. I figure this has to do with backing beans, but have just started programming with ADF Faces. (Most of my programs are 10.1.2 using struts - lots of code.)
    I have the Fusion Developers Guide for Oracle ADF, and the Web user Interface Developer's Guide for Oracle Application Developers Framework. Pointing me to key chapters would be a great help!
    Thank you,
    Ken

  • Aggregating table - how to solve this with ADF Faces

    Hello.
    I am trying to solve something that would typically be really simple. However, now i' using ADF faces which is new to me and i'm stuck.
    I want to show a table of rows with aggregated numbers (department in example below) and then "open up" any row by clicking on it to display the numbers that make up the aggregate (the guys in the helpdesk department in the example below).
    Something like this:
    DEPARTMENT SALARIES
    +Sales                  1.234.567
    +Warehouse         3.425.553
    -Helpdesk 655.000
    Joe 155.000
    Jill 300.001
    Burt 199.999
    +Personnel           546.225
    +Management     9.646.383
    And to make things more complicated, some of the aggregate rows in my real life example don't have any underlying rows. They just have the total. Can anyone give me hint about how to do this with an ADF Faces-control? I need to show management this can be solved quick and simple with ADF Faces, so i can convince them that it is the way we should be working in the future.
    Edited by: GoodCoffee on Jun 2, 2009 4:15 AM. Trying to indent the three rows under "Helpdesk"

    Hi,
    if you use ADF BC as the business Service then you can create a transient attribute (one that does not ave a database column ) and compute the total. Using JDeveloper 11g, you can use a Groovy expression. The below example calculates the Overall Salary paid by an department. The transient attribute is defined on the Department Entity Object
    XML View
    <Attribute
        Name="SumSalary"
        ColumnName="SUMSALARY"
        SQLType="NUMERIC"
        Type="java.lang.Long"
        ColumnType="NUMBER"
        IsQueriable="false"
        IsPersistent="false">
        <TransientExpression><![CDATA[Employees1.sum("Salary")]]></TransientExpression>
      </Attribute>The Employees1.sum("Salary") string is the Groovy expression that you need to add for the attribute. You select the created transient attribute in the EO editor and press the pencil icon. Then you select "Expression" as the value type and add the string.
    See: http://www.oracle.com/technology/products/jdev/11/how-tos/groovy/introduction_to_groovy.pdf
    Frank

  • How to Integrate EBS with ODI

    Hi All,
    How to integrate EBS(version 12.1.3,DB-version 11.1.0.7) with ODI(11.1.1.5.0.
    Please let me know on this.
    Thanx,
    Nag.

    Have a read of - http://docs.oracle.com/cd/E21764_01/doc.1111/e17466/oracle_ebiz_suite.htm#Toc198700598
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to Integrate Hyperion with EBS-R12

    Hi Guy's,
    If any one know's how to integrate Oracle EBS - R12 with Hyperion 11, Please let me know.
    I found a blog but there is no out come from the blog it's was just for sake off information. "http://www.appsinsight.net/2008/03/31/oracle-enhances-integration-across-oracle-bi-hyperion-essbase/"
    Please let me know.
    Thanks,
    Bachan.

    If you are talking about FDM then you will need the components from "Oracle Hyperion Financial Data Quality Management, Fusion Edition Downloads"
    You will also need the foundation pieces :-
    Oracle Hyperion Enterprise Performance Management System Installer, Fusion Edition Release 11.1.1.3.0
    Hyperion Enterprise Performance Management System Foundation Services Release 11.1.1.3.0
    Plus any other Hyperion products you are going to use.
    For ODI you need to go :- http://www.oracle.com/technology/software/products/ias/htdocs/101310.html
    Ok?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to integrate DRM with third party tool for loading metadata in SQL table

    Experts,
    I am new to DRM and I have a requirement in which we want to integrate DRM with third party tool(lets say SQL table) as target and load metadata from DRM (Parent node, name , alias etc) to SQL table (same column name)
    Is there any way we can integrate DRM to export the same to table directly instead to files. If yes what are the steps we have to follow.
    Is there anyway we can customize DRM to execute queries or run batch
    Can I have a basic example please.
    Thanks in advance,
    Regards,

    1. Use DRM Export to Table option, for that create an External Connection first for the Target Database and select the respective Tables to which you wish to Export the Hierarchy information.
    2. You can perform most of the DRM Actions via the DRM_BATCH_CLIENT.exe.
        Please refer to Using the Data Relationship Management Batch Client of DRM User guide.
    let me know if you have any issues.

  • How to integrate iReceivables with third party payment system?

    Hi,
    My requirement is to integrate iReceivables with third party payment system.
    Can anyone guide me to achieve this.
    Thanks & Regards,
    Sunita

    Hello Prasad,
    <b>Connection with an External Payroll System</b>
    Payroll Outsourcing functionality allows you to compile master data or payroll data in the SAP system to submit to a third-party service provider in an electronic format. The Outsourcing solution available in the United States and Canada provides a generic interface which writes data into an IDoc (Intermediate Document) for transport to a third-party system. In order to transport data into and out of the SAP system, you must set up a logical system, partner definition, and outsourcing ports.
    If you have built your own payroll interface, using the Interface Toolbox, for example, you can use the Import section of this scenario. The Export section applies only to the transport of IDocs.
    For more information regarding outsourcing, refer to the SAP Library, Human Resources  -> PY Payroll  -> PY-US United States Payroll or PY-CA Canada Payroll  -> Outsourcing.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/af/f4ea3444e9c47fe10000009b38f83b/frameset.htm
    Import Payroll Results from a Third-Party System
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/0a/e62481feaf11d1a5500060087832f8/frameset.htm
    regards
    Prasad
    Message was edited by:
            prasad chintala

  • How to integrate workflow with files?

    Hi,I know I must configurate workflow before intetgrate
    workflow with files.But ,there are some problems! when i configurate workflow ,there is no confirmation window when it finished. so when i configurate files with workflow,the system say there is no workflow scheme, so i can't integrate workflow with files.!
    anybody any idea(in detail)? thanks a lot!
    2003-7-29

    Hi,
    When workflow has been installed, it should definitely say that it was installed successfully.
    Also for WF to integrate with files successfully there are several additional languages that need to be installed.
    I have a good set of install notes for workflow. Email me at [email protected] and i will send them to you.
    Thanks and Best Regards
    Lynne

  • How to integrate cProjects with R/3 to get the Material Classification Data

    Hi all,
       We are installing the cProjects and we have to integrate it with R/3 to get the Material Classification data.
      Is any one has developed the object link, which links cProject and Material Classification data in R/3?
      Thanks in advance.
    Regards.

    Hi Venkat,
    Refer SAP cProjects Guide for Implementing an Object Link. This Guide also includes User Defined Object Links.
    You should be able to find it on SAP Service Marketplace. In case you cannot, pl send me your email ID, I will mail the same to you.
    Regards,
    Reema.
    Pl award points to all useful answers.

  • How to Integrate XI with Peoplesoft using iWay Adapter

    hi Friends,
            This is Sreeni. I want to use iWay adapter for integrate Peoplesoft with XI.
    can you please help me in this way.

    Hi,
    There is a series of blogs that address this same area. Please look into them. they should surely help,
    /people/yomeshp.sharma/blog/2006/06/01/integrating-jdedwards-system-with-xi-using-iway-adapter-part--i - Part I
    /people/yomeshp.sharma/blog/2006/06/01/integrating-jdedwards-system-with-xi-using-iway-adapter-part--ii - Part II
    /people/yomeshp.sharma/blog/2006/05/31/integrating-jdedwards-system-with-xi-using-iway-adapter-part--iii - Part III
    Regards
    Bhavesh

  • How to Integrate ECC with Payment Gateway

    Hi Gurus,
    I need your help. We have one requirement.
    Here is the scenario.We have one custom screen for direct sales in stores. The user scan the articles and enter the price, and ask the customer to pay by card or cash.
    If the customer wants to pay the amount by cash, then user enters the amount and clicks on cardpay button.
    Here after the payment has to be taken care by the third party payment gateway (XYZ).
    Now I need to integrate ECC with third party payment gateway. If you can post any docu2019s related to this, or any form of help is highly appreciated.
    Please let me know if you are not clear or any concerns.
    Thanks & Regards,
    Shiva Reddy.

    Hi shivach ,
    There will be lot of way to achieve this, I want to suggest one of the possible way :
    If there is Third party agreement is done to collect the payment then from SAP end you need to do two things.
    1. Outbound from SAP : when user clicked of Card Pay button then take the all mandatory validation if required from your end and generate a Payment Referenec Number and redirect to the Third party URL with details like amount Payment Reference No., customer card No. etc...,
    2. Inbound to SAP : once the Third party gets the  confirmation of payment then they have to revert back to your SAP system with the detail's to synchronize the payment with the following parameters like  : same payment Ref No., Unique transaction reference No. what they have generated from there end, customer card no. for further verification at your end and with the payment status saying Transaction is Success of fail. for that you can prefer to use Custom IDOC.
    Since payment and all is highly secured transaction so that you can discuss with your third party to get the double verification before getting the payment finally confirmed, for more secure transaction use Encryption Decryption concept.

  • How to integrate KM with other Content Management Systems

    Hi all,
    The requirement is to integrate KM with third-party  Content Management Systems like Documentum, Interwoven, fileNet etc. Related documents/tutorials can also be shared.
    Helpful answers will be rewarded for sure.
    Thanks in advance.
    Regards,
    Shankar

    Hi
    These links may be useful
    Need to get a SAP NetWeaver component implemented quickly? Try SAP Best Practices
    http://www50.sap.com/company/press/factsheets/solution/ep.asp
    http://sap.ittoolbox.com/topics/t.asp?t=421&p=421&h1=421
    http://blogs.ittoolbox.com/km/portals/archives/001903.asp
    http://www.documentum.com/literature/literature.htm?uq=False&printReady=True
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/knowledge management in enterprise portal.pdf

Maybe you are looking for

  • Open VI reference for VITs and VIs

    Hi I have a VIT and I get the reference using the Open VI reference. When I change (rename) this back to a VI, and get the reference for it, its much faster. Does the open VI reference takes longer for VITs than VIs in obtaining a reference? Another

  • What's the point of nicknames for reviews if they must be unique?

    I just attempted to write a review and was told my nickname taken.

  • DatagramSockets in stored procedures

    I am having some problems with using JAVA datagram sockets in stored procedures. The code run perfectly when run with JDK. When ran in Oracle8i the call to the procedure is successful, yet no packets are being sent. I am not using a SecurityManager,

  • How do I upload pictures to my blog from time capsule?

    Hi, I just started using Time machine, or time capsule (not sure what the difference is). I had to back up my laptop because I only have 185 GB on my computer. I'm a photographer so I take tons of pictures. I started backing up my computer to the tim

  • HTML Forms and Procedures

    Hello! We are trying out APEX for the first time. We would like to keep our business data objects in a different schema from the APEX schema. I have been able to successfuly create a proc and create a form over the proc in the differenet schema. I'm