Questions on Cloning Ebusiness suite.

Hi,
I performed a cloning on my site, where the target the instance (PRD) and the source instance is(DEV) in two different servers and has two diffrent name.
I used the rapid clone to perform this activity, and basically used the tar command to take take the complete directory structure from PRD to DEV.
The question is after i ran the post clone script, i have new directories and env scripts created under the new context name along with the context name that I had of the prd. SO basically i have two context names now
- one which came along with the source system directory structure.
- one which was created after running the post clone scripts along with new instancename_servername,
I wanted know is this the behavior after cloning or must I do any other task in order to remove this patterns.
Regards,
Edited by: A.R.M Asif on Aug 22, 2010 8:57 PM

Hi,
I wanted know is this the behavior after cloning or must I do any other task in order to remove this patterns.This is an expected behavior and you will have to delete the directories/files of the source instance manually on the target application/database.
Thanks,
Hussein

Similar Messages

  • Help with apex to ebusiness suite 11.5.10

    Hello,
    posted on ebusiness suite side, but they say to try here on apex side.
    We are trying to follow the Cabot document found at
    http://www.stuffspec.com/Read/_sp.d3d3Lm9yYWNsZS5jb20-sp..sltechnetwork.sl_developer-tools.sl_apex.sl_apex-ebs-wp-cabot-consulting-169064.pdf
    but are having troubles just trying to get the ebusiness set up part done.
    We are having troubles on page 5 of 8 where it talks about creating the plsql form function with the following attributes.
    When we set the Properties/Type to be SSWA plsql function, it does not want to accept it and will not save as SSWA plsql function.
    I have searched and read and followed so many links my head is spining. Has anyone else had this type of issue, and could tell us what we are doing wrong? Does the Cabot approach work for everyone, or is there another method that will work better?
    We are using a stand alone apex server. We have a 11.5.10.2 e-bus suite which we use SSO for the hrSelfService. We are trying to add the new apex application to the hrselfservice menu. I following the Cabot white paper and I have created the procedure apex_launch as follows. I have some questions about it that are inline:
    PROCEDURE APPS.apex_launch (
    application IN NUMBER
    , page IN NUMBER DEFAULT 1
    , request IN VARCHAR2 DEFAULT NULL
    , item_names IN VARCHAR2 DEFAULT NULL
    , item_values IN VARCHAR2 DEFAULT NULL)
    Is
    Begin
    OWA_UTIL.mime_header('text/html', false); ---- Is the url correct? Since my apex server is separate, do I need the APPS_FRAMEWORK_AGENT???
    OWA_UTIL.redirect_url( ---- Do i need to create a DAD for pls/apex?
    'https://ourserver.school.edu/pls/apex/f?p='||
    application||':'||page||'::'||request||':::'||
    item_names||':'||item_values);
    End apex_launch;
    I created the form function with the following attributes:
    Properties/Type -> SSWA plsql function
    Web HTML/HTML Call -> apex_launch
    Form/Parameter -> application=310
    I am able to save the plsql form function with no errors. However, when i go back in to look at the form function: property type, it is set to "database provider portlet". (I have opened an SR on this issue and as yet, i don't have a solution.)
    I then add the new form function to the hr self service menu. When I go into self service, the new function does not display.
    If I change the property to SSWA plsql function that opens a new window (Kiosk mode) and save the form function and don't change anything else, when I go into self service the new function displays. However ,when I click on it, it opens another e-bus suite logon page. After entering the username/password it just brings up the ebus suite application, not the apex application.
    Can anybody help me? thanks.
    Thank you,
    Mark

    Hi Mark,
    Nope, that is the one of the issue im facing still that is the single sign on(even if i integrated APEX with EBS R12), im having issues with that.
    It is asking two login credentials for me
    <li>one is Ebs login credentials
    <li>The other one is Apex Login credentials.
    Soon after logging into the ebs, if i clicked the APEX menu means, the APEX login page is appearing.
    If it is SSO means, the APEX login page should not appear soon after clicking the APEX menu in the EBS.
    How to pass my APEX login credentials to the EBS, so that i can enter into my APEX application (via) EBS only with the EBS login page. Soon after entering into the EBS login page into the application. While if i clicked the APEX menu means, i need to navigate directly to the APEX Application page. And APEX login page should not appear.
    Thanks
    Regards,
    Mini

  • Installation of Oracle EBusiness Suite 11i Release 10.2 on Red Hat Linux

    Hello there,
    It would be great if someone can help me with these questions
    1. Which version of Red Hat Linux is suitable for installation of Oracle EBusiness Suite 11i Release 10.2.
    2. I am downloading the EBS files from eDelivery site on my machine (Windows based). These are Zip files. How would these be usable on Linux machine?
    3. Do I need stuff like MKS Toolkit on Linux? We tried installing on Windows 2003 server but had to abandon because we don't have MKS Toolkit. Is there some such pre-requisite on Linux?
    Thank you.
    Rahul

    Copy all zip files to say /data/stage11i then unzip all files (as root) the process will create the correct file structure, you do not need to run adautostge.pl then in a terminal screen go to /data/stage11i/Disk1/rapidwiz and then type ./rapidwiz the installation wizard then guides you through the rest of the way. Run raoidwiz as root if you need multi user or for the demo single user run rapidwiz as oracle. Make sure you have created user and group for oracle and applmgr, also make those changes in the wizard it often defaults to say user oravis group dba. In linux you should have created localhost.localdomain sometimes the eth0 does not start, stop it in the device manager and then reactivate. Hope that helps.

  • EBusiness Suite Integration Best Practice

    I'm just starting an integration project with eBusiness Suite. We are using SOA Suite for the majority of the intergration points but I have a question over large flat files, e.g. 100MB+. SOA suite doesn't handle these too well as you need to do a lot of tuning and need big hardware.
    Traditioanlly we used to use unix scripts and dataloader but this seems so old school, therefore I'm looking for a solution that brings it into this century.
    Any ideas are appreciated.
    James

    For large datafiles sql*loader is still the tool of choice. The only variation that You may find nowdays is the use of external tables.

  • Apex integrating with ebusiness suite 11.5.10

    Hello,
    We are using apex 3.2.0.00.27 and trying to integrate with ebusiness suite 11.5.10. Our apex is located on a stand alone separate server than our ebusiness suite installation.
    We are trying to follow the Cabot document found at
    http://www.stuffspec.com/Read/_sp.d3d3Lm9yYWNsZS5jb20-sp..sltechnetwork.sl_developer-tools.sl_apex.sl_apex-ebs-wp-cabot-consulting-169064.pdf
    but are having troubles just trying to get the ebusiness set up part done.
    We are having troubles on page 5 of 8 where it talks about creating the plsql form function with the following attributes.
    When we set the Properties/Type to be SSWA plsql function, it does not want to accept it and will not save as SSWA plsql function.
    I have searched and read and followed so many links my head is spining. Has anyone else had this type of issue, and could tell us what we are doing wrong? Does the Cabot approach work for everyone, or is there another method that will work better?
    Any help would be appreciated.
    Thank you,
    Mark

    MarkPP posted the original thread on my behalf. I have looked through the threads that you suggested and unfortunately they have not shed any light on the subject.
    We are using a stand alone apex server. We have a 11.5.10.2 e-bus suite which we use SSO for the hrSelfService. We are trying to add the new apex application to the hrselfservice menu. I following the Cabot white paper and I have created the procedure apex_launch as follows. I have some questions about it that are inline:
    PROCEDURE APPS.apex_launch (
    application IN NUMBER
    , page IN NUMBER DEFAULT 1
    , request IN VARCHAR2 DEFAULT NULL
    , item_names IN VARCHAR2 DEFAULT NULL
    , item_values IN VARCHAR2 DEFAULT NULL)
    Is
    Begin
    OWA_UTIL.mime_header('text/html', false); ---- Is the url correct? Since my apex server is separate, do I need the APPS_FRAMEWORK_AGENT???
    OWA_UTIL.redirect_url( ---- Do i need to create a DAD for pls/apex?
    'https://ourserver.school.edu/pls/apex/f?p='||
    application||':'||page||'::'||request||':::'||
    item_names||':'||item_values);
    End apex_launch;
    I created the form function with the following attributes:
    Properties/Type -> SSWA plsql function
    Web HTML/HTML Call -> apex_launch
    Form/Parameter -> application=310
    I am able to save the plsql form function with no errors. However, when i go back in to look at the form function: property type, it is set to "database provider portlet". (I have opened an SR on this issue and as yet, i don't have a solution.)
    I then add the new form function to the hr self service menu. When I go into self service, the new function does not display.
    If I change the property to SSWA plsql function that opens a new window (Kiosk mode) and save the form function and don't change anything else, when I go into self service the new function displays. However ,when I click on it, it opens another e-bus suite logon page. After entering the username/password it just brings up the ebus suite application, not the apex application.
    Can anybody help me? thanks.

  • Customising Reports in eBusiness Suite

    How do I create customised reports for Oracle eBusiness Suite applications? Thanks.

    This forum is for Forms questions. You want to ask your question on one of the Oracle Applications forums.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Oracle EBusiness suite professions tasks and duties

    Hello everybody
    I inquire about something regarding Oracle EBusiness suite professions tasks and duties. I've tasked by my manager with writing a report lists the main tasks and key responsibilities for each of the following technical professions within Oracle E Business Environment:
    1)-Apps DBA.
    2)-Apps Technical Consultant (Apps Developer)
    3)-Apps Business Consultant.
    I've contacted Oracle Support recently via opening SR .But, They informed me that they don’t provide such information and therefore, they suggest me weather to contact Oracle Consulting to post here.
    I would appreciate your help.
    Sami

    I don't see how you'd be able to integrate OAM with EBS unless you have the oSSO (assuming of course that you're not on the bleeding edge, per 975182.1).
    We are running the same configuration and have setup the redirects in OAM policy. We setup specific context roots for each application, then use OAM policy to redirect. (for example, http://iwa-server/ebs redirects to https://ebs-server)
    Unique authorization rule for each redirect, then a unique "policy" on the "Policies" tab for each redirect. Each Policy maps to the respective Authorization Rule.

  • How to generate XML from EBusiness suite ARXSGPO

    Could someone tell me how I can generate XML from the EBusiness Suite Accounts Receivable report ARXSGPO.rdf I understand this report is called by a C program. I have tried changing the concurrent request to output format to XML the result does not resemble XML. Does anyone have any suggestions how I can generate XML from the ARXSGPO report?
    Thanks,
    Mark

    Hi Mark
    the next release of XMLP will have last page only support. The problem is that at the template layer you do not know how many lines are going to fit on the page, so you never know what is going to be the last page. The only way around it for now is to specify the number of lines to a page and then check when all the lines have been rendered and then render the remit portion.
    I have a sample invoice that does the same, drop me a mail, you can work out the email from my name and the fact I work for XMLP Im sure.
    Tim

  • Ebusiness Suite SDK for Java session management

    Hi, I am trying to try sample java application mentioned in Oracle® E-Business Suite Software Development Kit for Java Release 11i and 12 Part No. E28169-02
    Current version i am trying is Jdeveloper 11.1.1.4.0 and Ebiz suite 12.1.3
    able to create Apps Data source with out any issue.
    when Home.jsp is accessed through application menu, user name and all session related information is showing as NULL.
    how to resolve this issue.

    Hi Shay,
    I gone through the webinar.
    Here is more explanation of my issue.
    I created Apps Data source earlier. That time i registered external node in ebusiness suite with node_name as ip_address of weblogic server.
    But that time session details came as Null on sample Java application.
    Then i realized that may be the issue and corrected registration of external node and corrected ebiz profile options accordingly.
    When i tried to create Apps data source with fresh dbc file, i got into invalid username/pwd issue.
    As per following forum discussion topic, hyphen and dots in host name will cause issue with Apps data source creation, which is confirmed by couple of discussion participants and Juan also.
    https://kr.forums.oracle.com/forums/thread.jspa?threadID=2489849&start=30&tstart=0
    My weblogic host name is like WL-SOADEV-01.domainname.com
    what should be my further actions to resolve this issue.
    Thanks
    Maheedhar.J

  • EBusiness Suite User Management Provision - SSO Enabled

    Hello,
    I am having a hard time provisioning to ebusiness suite 12; it is SSO enabled with OID as the LDAP Repository.
    I am able to
    1.provision userid testuser1 to OID.
    2.provision userid oimuser1 to ebusiness (I have not enabled SSO in the connector configuration at this point)
    When I try to provision user oimuser1 to OID, it says a duplicate entry already exists.
    Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
    ORA-20001: Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
    A user with the given username already exists. Please choose a different username.. (USER_NAME=OIMTEST2). (USER_NAME=OIMTEST2).
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.FND_USER_PKG", line 1038
    ORA-06512: at "APPS.FND_USER_PKG", line 1196
    ORA-06512: at "APPS.FND_USER_PKG", line 1315
    ORA-06512: at line 1
    I also tried connector config with SSO Enabled parameters.
    SSO Enabled - Yes
    SSO IT Resource - OID IT Resource (resource name of OID)
    SSO Identifier - orclGUID
    SSO Login Attribute - uid
    While provisioning the user to ebiz (sso enabled) - I provided the SSO Userid, same as idm user id, it gave me error it does not exist.
    And if I leave the field blank- it gives me error stating Input field is blank.
    Can someone please guide me through it?
    Thanks & Regards,
    KJJ1983

    Issue is resolved.
    Was some connector configuration issue.
    Thanks,
    KJJ

  • Unable to pass parameters from APEX to Oracle EBusiness suite R12 forms

    Hi
    We are trying to access a standard Oracle EBusiness form i.e. service request and are invoking this Form through a link from APEX.
    We are trying to pass parameters via this URL
    http://abc.oneapps.com:8010/OA_HTML/RF.jsp?function_id=2037&resp_id=50952&resp_appl_id=170&security_group_id=0&lang_code=US&otherparams=INCIDENT_ATTRIBUTE_15=5206
    The EBusiness suite form is launched correctly but we are not able to read the parameter value through custom.pll code.
    if (event_name = 'WHEN-NEW-BLOCK-INSTANCE') then
         IF form_name='CSXSRISR' and block_name='SR_BSC_QUERY' then
              FND_MESSAGE.DEBUG('PARAMETER.INCIDENT_ATTRIBUTE_15');
              FND_MESSAGE.DEBUG(' ');
              --FND_MESSAGE.DEBUG(:PARAMETER.INCIDENT_ATTRIBUTE_15);
              lC_incident_number :=name_in('PARAMETER.INCIDENT_ATTRIBUTE_15');
              FND_MESSAGE.DEBUG('Incident Number'||lC_incident_number);
              IF lC_incident_number IS NOT NULL THEN
                   copy(lc_incident_number,'SR_BSC_QUERY.INCIDENT_NUMBER');
              END IF;     
              FND_MESSAGE.DEBUG(' ');
         END IF;
    END IF;
    Is this the right way of passing the parameters?
    all technical inputs are welcome.
    Regards
    Sam

    Hi
    We are trying to access a standard Oracle EBusiness form i.e. service request and are invoking this Form through a link from APEX.
    We are trying to pass parameters via this URL
    http://abc.oneapps.com:8010/OA_HTML/RF.jsp?function_id=2037&resp_id=50952&resp_appl_id=170&security_group_id=0&lang_code=US&otherparams=INCIDENT_ATTRIBUTE_15=5206
    The EBusiness suite form is launched correctly but we are not able to read the parameter value through custom.pll code.
    if (event_name = 'WHEN-NEW-BLOCK-INSTANCE') then
         IF form_name='CSXSRISR' and block_name='SR_BSC_QUERY' then
              FND_MESSAGE.DEBUG('PARAMETER.INCIDENT_ATTRIBUTE_15');
              FND_MESSAGE.DEBUG(' ');
              --FND_MESSAGE.DEBUG(:PARAMETER.INCIDENT_ATTRIBUTE_15);
              lC_incident_number :=name_in('PARAMETER.INCIDENT_ATTRIBUTE_15');
              FND_MESSAGE.DEBUG('Incident Number'||lC_incident_number);
              IF lC_incident_number IS NOT NULL THEN
                   copy(lc_incident_number,'SR_BSC_QUERY.INCIDENT_NUMBER');
              END IF;     
              FND_MESSAGE.DEBUG(' ');
         END IF;
    END IF;
    Is this the right way of passing the parameters?
    all technical inputs are welcome.
    Regards
    Sam

  • How to install or configure oracle endeca in ebusiness suite R12.1.3 64-bit

    Hi
    Now i currently having oracle ebusiness R12.1.3 64-bit instance which is running on OEL 5U8 64-bit ,
    Can anyone suggest me how to configure the oracle endeca in ebusiness suite???
    Can anyone provide me the link to download the oracle endeca for ebusiness suite R12.1.3 64 bit???

    Hi Hussein,
    Thanks for your valuable reply
    Now i have followed the 2 documents which 1 i need to follow ..
    1. Installing Oracle E-Business Suite Extensions for Oracle Endeca, Release 12.1.3.2 (Doc ID: 1517172.1)
    2. http://docs.oracle.com/cd/E18727_01/doc.121/e37993.pdf
    I Need the output like GUI method for the products..
    i am new to oracle endeca i dnot know how to proceed the installation and configurations 
    while downloading the software from edelivery it shows list of software for endeca which 1 need to download for the installations
    https://edelivery.oracle.com/EPD/Search/handle_go
    Kindly suggest me
    i am waiting for your valuable reply

  • Migration software from SAP R/3 to Oracle eBusiness Suite

    Is there any Oracle product which can migrate an Oracle 9i R2 database for SAP R3 to eBusiness Suite?
    Has any one successfully integrated an SAP R/3 system with eBusiness Suite?

    Check the following links:
    How to migrate data from SAP to EBS? What's your solution and tools?
    Re: How to migrate data from SAP to EBS? What's your solution and tools?
    Oracle Helping SAP Customers to get “OFF SAP”
    http://www.oracle.com/corporate/press/2005_jun/sap.html
    SAP shops migrate to Oracle Applications
    http://www.dba-oracle.com/oracle_news/news_sap_migrate_oracle_applications.htm

  • EBusiness Suite User "Auto-provisioning" and  "Self-Request" Problem

    I have two types of OIM User, Staff and Contingent
    Staff (Role = Full-Time)
    Contingent (Role = Contractor / Role = Consultant)
    Resource Object: eBusiness Suite User
    Here's my RO configuration:
    Auto Pre-populate: true
    Allow Multiple: true
    Self Request Allowed: true
    Allow All: true
    Auto-Launch: true
    EBS Connector, by default has two forms:
    UD_EBS_UO: Object Form
    UD_EBS_USER: Process Form
    I have requirement which will auto-provision eBusiness Suite User resource to Staff users.
    Originally, UD_EBS_OU is the table name used by the RO. For auto-provisioning to work, I have implemented it this way:
    First, I have defined a User Group for Staff and assign an Access Policy to it (for users with Role == Full-Time).
    Then, I have detached Object Form UD_EBS_UO from the RO. This way, when Staff user is created in OIM, it is automatically provisioned with eBusiness Suite User, though it won't have a Resource Form, only a Process Form. Process Form fields are automatically pre-populated with values (via my Pre-populate adapters).
    Now my problem is during Self-Request. Contingent user doesn't get auto-provisioned with EBS RO, but he can self-request for it. Problem is, since I detached the Object Form from the RO, user is not seeing any form during request. And I have a requirement that approver of the request should also be able to view/modify the details of the request form. But that is not possible now that Object Form does not exist for this RO.
    Is it possible that Self-Request and Auto-Provisioning works both ways under the same Resource Object? How do I configure that? Appreciate your quick response and help. :)
    Edited by: user10202544 on Feb 10, 2010 3:27 AM

    Yes I have set permissions to all users for the Object Form.
    It is required for me to have both Self Request and Auto-provisioning work for eBusiness Suite RO.
    During approval, however, the approver needs to see the Object Form (where he can view/modify its values before approving it). That's impossible for me since I detached the Object Form from the Resource Object. I need do to this for auto-provisioning to work.
    It seems that it doesn't work both ways. Any other suggestions?

  • Extracting an Org's date from eBusiness Suite

    Hi,
    Our client has eBusiness suite 11.5.10 (PO,AP,AR,GL,etc...) running multi-org, however another company has recently acquired one of their organisations and a condition of the acquisition requires them to provide all of the data from eBusiness Suite relating to that Org
    We cannot simply provide all the data and at present the only option we think we've got is to investigate all of the tables throughout all of the apps schema's and write SQL scripts to extract it but that is obviously going to be a mammoth task.
    We don't need to purge the data at this point, just to take an extract anything that relates to the Org
    Has anybody any experience of doing this or know of any tools to help or any ideas ?
    Thanks
    Malcolm

    There are third-party solutions out there - http://www.tierdata.com/products/autopilot-platform.html (see last paragraph)
    HTH
    Srini

Maybe you are looking for