Requirements for 9iAS Integration

After days of plugging through the documents, reading manuals and searching google's archives, I am still not sure exactly what is need to get this going. We would like to set up the Integration piece (Interconnect, Workflow, IStudio) within our enterprise. We are trying to get this working on a Windows 2k server. I have formatted the server several times for one reason or another. I am hoping to avoid this in the future.
I have amassed a bundle of questions:
1. What parts of 9ias are required for this to work
2. Does the Metadata Repository have to be on the same box as the Hub?
3. Can I use an existing 9i database as the Metadata Repository instead of creating a new database?
4. How do I define the path to the Workflow homepage?
Thanks for any help,
Chris

1.
For building integration apps you would need InterConnect and Database, preferably the iasdb ie. Infrastructure db, for message hub and hub repository (schema).
Note that Metadata Repository is another name for the Database included in O9i AS (a 9.0.1 db) loaded with a bunch of "repositories" (schemas) for various AS components like Portal, Discoverer, OEM and Workflow.
2.
If you mean the InterConnect install type "Hub"- no.
(but in the hub and spoke model, Metadata Repository is used as hub)
In my experience, Oracle has a lot of work left to do on InterConnect. Documentation is useless - and now I'm being nice. Support looks weak and has failed miserably when dealing with basic stuff.
(Perhaps this has something to do with OAI being hidden in Applications in previous incarnations?).

Similar Messages

  • Mapping Error: Mappings are not required for this Integrator

    Hi,
    when I created my upload integrator with the Desktop Integrator Manager (12.1.2) I am not able to attach a mapping to it. I get the following error:
    Mapping Error: Mappings are not required for this Integrator because the ability to download information has not been enabled.
    Does anyone know what I've missed?
    cheers
    Jeroen

    Hi ,
    Without creating the content if you are trying to do mapping this error will come.
    Solution:
    Create the content and then do mapping..
    Regards,
    Sreekanth.S
    Edited by: user12045904 on Dec 9, 2010 10:55 PM

  • Minimum How many dimension required for FDM integration Script

    Hi Gurus
    I have only 2 dimensions in my SQL Table name dbo.ABC (Example: 1.Entity 2.Account and amount(data value)
    Example:
    USA, SALES, 50000
    (Including value its total 3 dimensions)
    How to export this data to Target HFM Application.
    Integration Script got success when i click on validation it is shows only 2 dimension 1.Account 2.Entity. i have mapped correctly. but validation screen not showing anything. i got gold fish for validation button and Export is also showing success and got goldfish. but no data is exported to HFM application.
    in FDM outbox its created a file which is containing only *!data* text. There is no record in this file.
    I want to load the data with rest of the dimensions with [None] member combination as i don't have the additional dimensions in my source file.
    Minimum how many dimension required to export the data from FDM to HFM?
    regards
    Taruni

    Hi,
    I came to know, at least one member from the source file should be there in the integration script then only we can assign at least [None] member or any member for the target dimensions.
    My source file having only 3 dimensions ( USA,Sales,Amount)
    1.USA,2.Sales,3.$50000
    Import Screen Dimensions:
    1.Source-FM-Entity
    2.Source-FDM-Account
    3.Account Description
    4.SourceICP
    5.SourceCustom1
    6.SourceCustom2
    7.SourceCustom3
    8.SourceCustom4
    9.Amount
    In the integration script its taking the values as
    Source-FM-Entity(0)
    Source-FDM-Account(1)
    Account Description
    SourceICP
    SourceCustom1
    SourceCustom2
    SourceCustom3
    SourceCustom4
    Amount(2)
    above it shows only 0,1,2 numbers are assigned to source dimensions.
    As my source file having only 3 Dimension so it is taking only 3 dimensions shown below. rest of the dimensions it is not showing in the import screen.
    *0.Source-FM-Entity,1.Source-FDM-Account,2.Amount*
    If i assign any values(3-9) to next dimensions or if I left blank rs.fields("txtAcctDes") with its showing below error messages:
    Error: An error occurred importing the file.
    Detail: Item cannot be found in the collection corresponding to the requested name or ordinal.
    At line: (39 and 42-46)
    So i have assigned Source-FDM-Account Number<font color="Blue">(rs.fields(1) </font>Value to rest of the dimensions in my integration script.
    <font color="Blue">rsAppend.Fields("Account") = rs.fields(1).Value</font>
    rsAppend.Fields("Desc1") = rs.fields(1).Value
    rsAppend.Fields("ICP") = rs.fields(1).Value
    rsAppend.Fields("UD1") = rs.fields(1).Value
    rsAppend.Fields("UD2") = rs.fields(1).Value
    rsAppend.Fields("UD3") = rs.fields(1).Value
    rsAppend.Fields("UD4") = rs.fields(1).Value
    Now am able to import the data into import screen, And i found all the above member names as Sales as i assigned Account dimension number(1) to these members temporarily to succeed the import process . Then i have mapped to Target dimensions with [None] member combination as these members are not in original source file. Then rest of the process Export and Check is done perfectly.
    *<font color="red">1.Am i right?? Please suggest me the correct process?</font>*
    *<font color="red">2.Can we use blank values in Integration Script as mentioned below??</font>*
    rsAppend.Fields("Desc1") = rs.fields("txtAcctDes").Value
    rsAppend.Fields("Account") = rs.fields("txtAcct").Value
    rsAppend.Fields("Entity") = rs.fields("txtCenter").Value
    *1.Added value*
    Example: rsAppend.Fields("Desc1") = rs.fields("1").Value
    *2.Blank Value*
    rsAppend.Fields("Desc1") = rs.fields("txtAcctDes").Value
    *<font color="red">3.As per my observation system is not accepting blank values in integration script. Please correct me??</font>*
    Here is my Integration Script
    1     Function Integration(strLoc, lngCatKey, dblPerKey, strWorkTableName)
    2     '------------------------------------------------------------------
    3     'Oracle Hyperion FDM IMPORT Integration Script:
    4     Created By: admin
    5     Date Created: 2012-11-20-07:55:20
    6     'Purpose:
    7     '------------------------------------------------------------------
    8     Dim objSS 'ADODB.Connection
    9     Dim strSQL 'SQL String
    10     Dim rs 'Recordset
    11     Dim rsAppend 'tTB table append rs Object
    12     'Initialize objects
    13     Set cnSS = CreateObject("ADODB.Connection")
    14     Set rs = CreateObject("ADODB.Recordset")
    15     Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)
    16     'Connect To SQL Server database
    17     cnss.open "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=TEST;Data Source=localhost;"
    18     strSQL = "Select * "
    19     strSQL = strSQL & "FROM ABC"
    20     'Get data
    21     rs.Open strSQL, cnSS
    22     'Check For data
    23     If rs.bof And rs.eof Then
    24     RES.PlngActionType = 2
    25     RES.PstrActionValue = "No Records To load!"
    26     FirstImportVB = False ' Assign return value of function
    27     Exit Function
    28     End If
    29     'Loop through records And append To tTB table In location’s DB
    30     If Not rs.bof And Not rs.eof Then
    31     Do While Not rs.eof
    32     rsAppend.AddNew
    33     rsAppend.Fields("PartitionKey") = RES.PlngLocKey
    34     rsAppend.Fields("catKey") = lngCatKey
    35     rsAppend.Fields("PeriodKey") =dblPerKey
    36     rsAppend.Fields("DataView") = "YTD"
    37     rsAppend.Fields("CalcAcctType") = 9
    38     rsAppend.Fields("Amount") = rs.fields(2).Value
    39     rsAppend.Fields("Desc1") = rs.fields(1).Value
    40     rsAppend.Fields("Account") = rs.fields(1).Value
    41     rsAppend.Fields("Entity") = rs.fields(0).Value
    42     rsAppend.Fields("ICP") = rs.fields(1).Value
    43     rsAppend.Fields("UD1") = rs.fields(1).Value
    44     rsAppend.Fields("UD2") = rs.fields(1).Value
    45     rsAppend.Fields("UD3") = rs.fields(1).Value
    46     rsAppend.Fields("UD4") = rs.fields(1).Value
    47     rsAppend.Update
    48     rs.movenext
    49     Loop
    50     End If
    51     'Records loaded
    52     RES.PlngActionType = 2
    53     RES.PstrActionValue = "SQL Import successful!"
    54     'Assign Return value
    55     Integration = True
    56     End Function
    Regards
    Taruni

  • License requirements for enterprise integration

    I am trying to understand how CRM licensing affects the ability to integrate data across enterprise systems. 
    I have read the "PremiseLicensingGuide" document, which states:
    "A Microsoft Dynamics CRM User is defined as any user who accesses the Microsoft Dynamics CRM server, files, data content or “Microsoft Dynamics CRM functionality”. “Microsoft Dynamics CRM functionality”
    is any service or feature of Microsoft Dynamics CRM that allows a user to view, manipulate, input, query, or otherwise structure “live data”. “Live data” is information that, via user action, dynamically writes to or reads from (or synchronizes with) Microsoft
    Dynamics CRM 2013 On-Premises Volume Licensing Guide | September 2013 Page 6 Microsoft Dynamics CRM, whether it is accessed directly or indirectly. Microsoft Dynamics CRM Users are required to have
    the appropriate client accesses licenses, regardless of their direct or indirect connection to the product."
    And further:
    "Multiplexing is the use of hardware or software (including manual procedures) to reduce the number of devices or individuals that access or use the Microsoft Dynamics CRM 2013 solution functionality by
    pooling connections. Multiplexing does not reduce the number of licenses required to access the Microsoft Dynamics CRM 2013 solution functionality. Any internal user who accesses the Microsoft Dynamics CRM 2013 solution functionality —whether directly or indirectly—must
    be properly licensed"
    So what does that mean in a case where CRM is an integration target for data which also resides in other systems? Say, for example, we have a situation where some of the information in the ERP system which relates to customers also needs to exist in the CRM
    system, and the data is authored in the ERP. In such a case one would set up some form of enterprise integration (eg, an SSIS job or biztalk process) to move data through the systems. But would this require that every ERP user who can update customer information
    in the ERP must also be licensed in Dynamics CRM? 

    Hi Allmhuran,
    Did you ever get an answer to this question?
    Brgds Bjorn MyShare of Sharing Knowledge

  • Requirements for AD integration

    Hey All,
    Trying to integrate AD into my MAC server environment and Im having some issues around adding my MAC server into the domain.
    I keep getting the error 5200 (Server could not be contacted.
    I have tried almost every suggestion from placing the OU where I want to add my MAC domain objects, to directory editor to format of the domain?
    Anyway I need to understand what type of account is the MAC looking for? I know DNS is configured correctly, I know the accounts I have used are domain admin and I have tried using the userPrincipleName as well as Domain\user format....
    At this point the guides are useless to me so any help is really appreciated.
    Thanks
    Steve

    Running dcpromo usually is enough as long as you are also running DNS off the windows controller.  For environments with both platforms it is generally better to keep AD as the center of the environment.  Then connect the Macs to AD.  But, DNS is critical.  Your windows server should be the one running DNS.  The DNS service on the Mac is not required.  All Macs should be getting DNS information from the Windows box because it will have all the SRV records in place.  This is for GC, LDAP, Kerberos, etc.  The next item is time.  Once again, Windows servers generally start time services automatically on the DC.  Point your Macs at the Windows machine to make sure the time is in sync.
    It sounds like you have everything in place.  The
    On your Mac Server, if you run this:
    sudo changeip -checkhostname
    What result do you get?  Then confirm all of the SRV records are in place on the DC.  Run these from your Mac.
    host -t SRV _kerberos._tcp.supergino.com
    host -t SRV _kerberos._udp.supergino.com
    host -t SRV _kpasswd._tcp.supergino.com
    host -t SRV _kpasswd._udp.supergino.com
    host -t SRV _gc._tcp.supergino.com
    host -t SRV _ldap._tcp.supergino.com
    Next, you can run Open Directory in debug mode to get more details of what is going on.  Use the odutil command to increase the log level to debug and then attempt a bind again.  Review the log output to see where the error is occurring.
    Generally speaking, when a Windows environment is using a TLD other than .local and all devices are agreeing on DNS and time, the AD bind is cake. 

  • Multiple S-users required for OSS integration to SAP

    Dear all
    My client handles the IT support for 4 companies.  Each of these companies have their own SAP systems & therefore each company have their own S-number.
    Currently, I can assign one S-number in the global settings & then I can assign one S-number per user. 
    The problem however is that each user can post an OSS message for any of the 4 companies & therefore need to be able to specify which S-user should be used at the time of sending the message to SAP.
    Any ideas???

    Dear Danell,
    I am not sure whether you have configured the Standard Support Desk Scenario or the Support Desk Scenario for VAR's ASP's and AHP's.
    I would request you to kindly visit the URL : http://service.sap.com/solutionmanager
    This URL contains an separate section on VAR's / ASP's and AHP's with detailed Subsections for Setup / FAQ's and Documentation.
    Hope that the information in this section helps.
    Regards
    Amit

  • Port required for DNS Integrated Zone replication

    Hi All,
    A segment of the network is secured through a firewall, inside this segment I have a Windows 2012R2 DNS Server that hosts also Active Directory integrated zones, what ports should I allow so that the DNS server can replicate the DNS zone from and to the
    main network?
    I read this https://technet.microsoft.com/en-us/library/dd772723%28WS.10%29.aspx?f=255&MSPPError=-2147217396
    but I would like to limit the port to the minimum

    Hello,
    you wrote "inside this segment I have a Windows 2012 R2 DNS Server that also hosts AD integrated zones"
    So this server is a domain controller.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • Minimum Database Requirement for 9iAS?

    Can I run Portal 3.0 on an Oracle 8.1.5 Database?

    ann
    Oracle 8.1.6.2 is the minimum. This release addressed issues on the Windows NT platform related to the stability of Apache and use of UTL_HTTP.

  • What are the Infotypes required for integrating Payroll for Latin America?

    Hi,
    Can anyone tell me the Country Specific Infotypes for Implementing Payroll for Latin America? Also Please let me know the Infotypes required for integrating FI & CO modules with Payroll.

    Hi,
    Can anyone tell me the Country Specific Infotypes for Implementing Payroll for Latin America? Also Please let me know the Infotypes required for integrating FI & CO modules with Payroll. Also I need to implement the Payroll for Latin America including ESS and MSS. How do I Integrate?
    Regards,
    Kavitha

  • CDG-01141 ERROR: Module Component Table Usage ...  Table usage ... requires primary key column for referential integrity

    For some strange reason when I modified a form, (commented out some code in a when-window-activated trigger) I now get the following error.
    CDG-01141 ERROR: Module Component Table Usage GR1130A.CUSTOMER.GR_CUSTOMER.GC: Table usage GR_CUSTOMER requires primary key column for referential integrity
    I am sure this is not related to my change, but do not know what may have caused this or how to fix it.
    Anyone seen this error before? been able to fix it?
    Thanks!
    Windows 7
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0
    Designer Version 6.5.95.4.8

    You know that Developer/Designer 6i is not certified for Windows 7, right? Also, your version is not the latest one, so you can try to install the latest patch set first.
    >Table usage GR_CUSTOMER requires primary key column for referential integrity
    Check if there is a PK in the table definition (not in the database, but in Designer).

  • PC Requirements for Integration Builder

    Hi
    can someone please to be telling me what the PC requirements are for the Integration Builder ?. 
    min CPU
    min RAM
    JDK and JVM version
    etc.
    Also I think the PC needs to allow for the installed of Java components when connecting.  Would the PC  then need to have adminstration rights ?
    cheers.

    Are you asking for the requirement so that you will be open to IR/ ID properly?
    If you have the choice i will suggest process should be Core2Duo, RAM --> 2GB, JRE > 1.5 (for PI7.1).
    Admin access will be required to update the host file (will be at C:\SYSROOT\system32\drivers\etc) and to update the SAP GUI with the appropriate SAP system.
    Regards,
    Abhishek.

  • CRS-3 CGSE requirements for integration with Arbor Peakflow TMS

    I have a question regarding integrating of Arbor Peakflow SP TMS into CRS-3. I need to know what are the exact requirements for Arbor TMS integration, I mean, Is CGSE-PLUS module mandatory for this scenario to work and what the mandatory licenses are, and the Arbor devices and packages required . By the way, Why isn't CGSE-PLUS module listed in the newest WSCA and only CGSE-PLIM is listed. Tnx in advance.
    Regards,
    Hesam

    You must to view the section: http://www.oracle.com/technology/software/tech/windows/odpnet/install10202.html... there you will find all the information that you need for the installation in windows vista. I could to install the ODAC and i have not any problem.

  • Requirements for integration of XYZ Service - SAP.

    Hi Team,
    Appriciate any help on understanding the below requirement and how/where to start work in XI.
    Requirements for integration of XYZ Service - SAP.
    XYZ Service has CRM middle where and SAP ECC 6.0
    XYZ Service Calls
    =============
    1. All the completed calls in XYZ Service has to go in SAP automatically for validation process.
    2. All call details (parameters) has to come in sap from XYZ Service to SAP like..
         Field Name:
         =========
         Per No.
         official no.
         mohile no.
         Cust Name.
         Address.
         etc.
    3. All the AMC generated in XYZ Service should replicate to SAP, with all the customers, AMC and product details.
    Validation in SAP:
    ==============
    4. In SAP we have to validate the calls according to below parameters.
        --> date of purchase :  abc validation
        --> Serial No. :   Should be n fixed lenght with some format
        --> Part & Qty. : Same part should not have been consumed in last 30 days in same unit.
        -->
        -->
        etc.
    Process in SAP
    ============
    5. All the calls which carry the spare parts has to approve by the store person. He can approve/disapprove the call.
    6. Call without spare part have to approve by system once validation process finish and it will considerin qlt report in sap.
    7. If the store peroson disapproves tthe call it has to go back XYZ Service and reprocess again.
    8. Prepare quality report for all the calls in SAP.
    9. Consumption report has generate for each call wise.
    10. Call wisw defective settlement( replenishment) in SAP and generate automatic loan settlement.
    11. Franchisee bill claim to SAP.
    12. ASC can change the disapproved calls and reprocess it again.
    As for my understanding and discussions from the above requiremet,
    Customer/franchisee/client....enters the request/data through the Web Application .
    process from CRM and then to SAP ECC 6.0. after all the process complete details to be shown on Web Applications.
    So here where exactly supposed ti implemet the XI system and little bit of confuse how and where to start from.
    Please guide me to start the above mentioned and give me a break to learn and do lot of things in XI/PI.
    Regards,
    Ramana.

    Thank you Gaurav.
    However, as for my understanding...as the client using a legacy system for getting the information.
    also The data is given on Web Application ( say via portal) and the data verified from CRM system and then processed via SAP ECC 6.0 giving the required information on the Wb Application to the client (Portal)
    That means needto implement XI integration to show the complete required information on the web application.
    Only this is I am not knowing how to frame this complete design and where and how exactly to stat.
    Please correct me if I am wrong and if possible with the same relavent information.
    Thank you for your valuable support.
    Regards,
    Venkat,

  • Why is it not possible to write a UIX (or ADF) portlet for 9iAS?

    Hi,
    I have been trying for months to create a UIX/BC4J portlet for 9iAS but have been unsuccessful. The documentation and examples cover doing this with JSPs (there is a nice Forum application available for download on portalstudio). However all of my attempts to use UIX have hit a brick wall - we want to use UIX, not JSP!
    I have raised a TAR on Metalink and it has been going back and forth for several months. The support analyst has finally closed it in frustration because he cannot even tell me whether it is possible, let alone give me an example! I have investigated the JPDK and all of the UIX documentation I can get hold of, and have also looked at the ADF components in 10g, and the "Java Portlet Wizard" for Jdeveloper, but they are so far all dead ends. Can anyone help me, or explain why it is that a (to me anyway) SIMPLE and LOGICAL integration of two Oracle frameworks is impossible.
    Thanks,
    Steve

    Hi Steve -
    Thanks for the info. I have a few more questions...
    Andy,
    Yes, this is exactly the issue. Currently I am
    invoking the UIX servlet not as a registered portlet
    but as a hard-coded URL link on the portal page.Are you saying that in order to access the UIX application, the user clicks on a link which navigates out of Portal? If so, is this by design, or did you go this route because of problems creating a portlet for your UIX servlet? That is, would you prefer to have your UIX application run inside of Portal as a portlet, or do you explicitly not want this?
    Also, can you provide more background about your deployment environment? In particular, is the UIX application running locally on the same machine as Portal, or remotely on another machine? Is the UIX application running in the same application server/servlet engine as Portal?
    The application runs connected to the database but
    without the context of the SSO Portal user. I want to
    be able to display the Portal username on the uix
    pages, have the VPD context in the database
    connection (we have striped the tables but it only
    works if connected via Portal!!) and potentially have
    access to some of the extended Portal functionality
    in the JPDK (this last one a "nice to have").Unfortunately I have no idea whether this is possible, so I'm not going to be much help on my own. The best I can do is try to track down someone who can actually speak to this issue. However, given the lack of documentation and the fact that you weren't able to get a solution through support, I wouldn't be suprised to find that this type of integration simply isn't supported yet.
    I think you mentioned in the TAR that you had seen support for similar integration with Struts. If you know of documentation which shows how to do this type of thing with Struts, could you point me at it?
    Andy

  • List of sql services required for deployment server?

    What are the role of list of sql services in case of BizTalk, like notification service is required for BAM.
    Along with can any one let me know the minimum services of SQL required on production.
    1.Database Engine Services
     SQL Server Replication
      Full-Text Search
    2.Analysis Services
    3.Reporting Services
    4.Shared Features
     Business Intelligence Development Studio
     Client Tools Connectivity
     Integration Services
     Management Tools – Basic
    Is it mandatory to install  analysis, integration services on production server.
    Please suggest!
    Fred

    Sorry, that is not correct.  SQL components beyond Database Services are required in most circumstances.
    It's important you understand what to install based on your application requirements.
    The definitive guides can be found here:
    BizTalk Server 2009:
    http://www.microsoft.com/en-us/download/details.aspx?id=4066
    BizTalk Server 2010:
    http://msdn.microsoft.com/en-us/library/aa561167.aspx
    BizTalk Server 2013:
    http://msdn.microsoft.com/en-us/library/jj248688(v=bts.80).aspx
    As a matter of practice, I always install all BizTalk realted SQL Server features, even if they are not used.  This is for consistency across environments, reliable patching and to accomodate any future BizTalk app features.

Maybe you are looking for

  • Copied words into browser do not clear after closing session

    When I go to a site that needs a password, I copy it from Last Pass into my browser. Then I enter my username and paste the password. Then when done, I sign off and close the page. I can go to another page that may want information. I fill it out and

  • WLC 5508 and CAP-1552E

    Hi , I am trying register external Wireless AP CAP-1552E  , with controller 5508 ( version 7.4.100). I have a couple of issues and I am bit confused. AP does not want to register to the controller , on layer 2 or layer 3 , even if I use DHCP option 4

  • Saved order management in ATG.

    Hi All, Please help me understanding in processing the saved order management in ATG.

  • How can I share ownership of a calendar on iCloud?

    We are using iCloud on a small network and would like to share ownership of a calendar so multiple people can send invites?  Is this possible?

  • Is WL PMCE available for HP-UX?

    I would like to use the Performance Monitor Console Extension (PMCE), but on the bea download site it doesn't list HP-UX as a supported platform. Is there a version available for HP-UX, or will one of the other versions work? Any help would be greatl