Lost globalization translations on application change

I've made a change to my application, by a process of taking a copy of the application, and making the changes to it (all I did was an export/import, nothing clever). However, when I import the updated application back over the existing application ID, I find that the language translations no longer work.
The original application has translations for French, German and Spanish (I believe) but I have not done anything specific with them. My changes are explicitly defined as being English-only - the new fields and pages do not have to be translated.
I know nothing about language translations - that feature was part of the application before I took over support of it, and the fact that I have no knowledge is one of the reasons the new code is English-only.
Can anyone tell me what I might have done wrong, and how I should deploy my changes to preserve the existing translations? Once I have deployed the changes to this environment, I will need to further deploy them into production, from the (hopefully, now working!) test environment. A pointer to relevant documentation would help, although I have read the globalization chapters of the manual and they don't make much sense to me (I'm not sure how seeding translations figures in the case of a modification, and I've no idea how to deal with XLIFF files).
Thanks,
Paul.
PS This is HTML DB 1.6 :-( I'm hoping there are no major differences in this area...

Hello Paul,
>> I've made a change to my application, by a process of taking a copy of the application, and making the changes to it
By “taking a copy” I’m assuming you exported the original application, and then imported it under different ID. This is your basic mistake. As Scott pointed out, in order to maintain translations, you must import the application using the same ID.
>> when I import the updated application back over the existing application ID, I find that the language translations no longer work.
Your copy didn’t include any translation information in the first place, so importing it back, didn’t make any difference.
>> if the translations are separate applications
They are not exactly separate applications. You’ll not see the translated applications, and their application id, in the Application Builder application list.
>> what does that mean for my new pages?
As Scott mentioned in his post, if you are editing an existing pages, and don’t change any translated items, the changes will be reflected, in the primary language, in all the translated application.
However, if you are adding new pages, they will be available only in the primary language application. If a translated application will try to call them, you’ll receive an error message, similar to the one you encountered - Error ERR-1016 Application "103" Page "1" not found (requested language="fr") .
In order to fix that you’ll have to seed the primary language application and export the XLIFF file. As you are saying you don’t need to translate the new pages, just import back the XLIFF file – untouched – apply it and publish the translated application. The new pages, in the primary language, will be added to the translated application.
Hope this helps,
Arie.

Similar Messages

  • Globalization/translation: Importing application using a new application ID

    We want to use the globalization feature of APEX and have created a translation from Dutch to English (application ID's 100 and '101'). This works fine. However, when the application 100 is exported and imported under a different application ID, the translated application ('101') is not imported. We need to import the application using a new ID because we have a development and test version of the same application within one database instance and application ID's have to be unique within one database.
    Is there a solution for this problem, except having separate database instances for development and test versions of an application?
    Thanks,
    Patrick

    Hello Patrick,
    >> I tried what you suggested but that did not work.
    Yes, and I’m sorry about that. That’s what happen when you try to answer from memory, without checking first.
    >> <trans-unit id="S-2-101724717460540986-100">
    >> The 100 at the end of the trans-unit id probably refers to application 100 and not to application 200.
    The problem is not with the application id - that can be easily fixed. The real problem is with the internal components id (the large number) which has been changed. When I first answered you, I thought these would not be changed, as you are using the same workspace (which is indeed the case when you are importing the application into a new workspace, with the same ID number, but on a different APEX instance). However, as you are using the same (physical) workspace, and these IDs must be unique within this workspace, they must be changed upon installation. The result is a very different XLIFF file.
    I don’t see an easy solution to this situation. It’s all depends on the complexity and size of your XLIFF file. If it’s relatively small and simple, you can just create a new one. If it’s a large file, it’s probably don’t worth the efforts.
    Regards,
    Arie.

  • I lost my labview CD and changed computer long time ago

    I lost my labview CD and changed computer long time ago. I bought labview student edition 8.6 years ago and I lost both the CD and the computer. Now I want to use the software again but I cant find were to download it or how to activate it. I have in my e-mail the activation codes but they dont seem to work. what can I do? thanks for your time

    Hello Darent,
    The activation codes are specific to each computer, so if you changed your PC, you need to generate new activation codes or activate your software using the serial number.
    You can register your serial number on the next page, so you can download versions of LabVIEW activated with that serial number.
    My Products:
    http://www.ni.com/myni/products/en/
    Let me know if you have further doubts, best regards.
    David P.
    National Instruments
    Applications Engineer
    www.ni.com/soporte

  • Translating an application - button not translating

    Hi
    I am working on translating an application from English into French. I have a button wich I need to
    translate - the button should say 'Go' in English and 'Allez' in French.
    Here is a segment of the code I use to generate the button. It calls HTMLDB_LANG.MESSAGE to
    determine what to display:
    '||HTMLDB_LANG.MESSAGE('GO_BUTTON')||'
    I have set up Text Messages called 'GO_BUTTON' which for the English one display 'Go' and the
    French display 'Allez'.
    I have a field which controls the current language called P0_LANG. I have a link on the form that
    allows the user to toggle between English and French. When this link is clicked, an application process
    is called which does the following:
    BEGIN
    IF nvl(:P0_LANG,'en')='fr' THEN
    :P0_LANG:='en';
    ELSE
    :P0_LANG:='fr';
    END IF;
    HTMLDB_UTIL.SET_PREFERENCE ('FSP_LANGUAGE_PREFERENCE',:P0_LANG,:FLOW_USER);
    owa_util.redirect_url('f?p='||:APP_ID||':'||:APP_PAGE_ID||':'||:SESSION);
    END;
    In globalisation options, I have 'Application language derived from' set to 'Application Preference (use
    FSP_LANGUAGE_PREFERENCE)'.
    However when I toggle the language into French, the button shows no sign of changing to 'Allez'.
    Other parts of the app that I've translated in the XLIFF file translate fine.
    Any ideas why this isn't working?
    Thanks
    Simon

    Arie,
    I tried this but get the following error:
    1 error has occurred
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-00907: missing right parenthesis
    Here is the full section of code I am using:
    SELECT distinct TO_NUMBER(t1.c001) "Request No Sort", DECODE(t1.c009, 'Y', '<div style="background-color:white;color:black">' || TO_NUMBER(t1.c001) || '<div>', TO_NUMBER(t1.c001)) "Request No",
         t1.c002 "Request Status",
         t1.c003 "Request Date",
         t1.c004 "Vendor",
         t1.c005 "Vendor Mill",
    t1.c006 "Claim Value",
         t1.c007 "Raised By",
    DECODE(t1.c008,1,
    '<table class="t101StandardButton" cellspacing="0" cellpadding="0" border="0" summary=""><tr><td class="t101L">'||
    '<img src="'||V('IMAGE_PREFIX')||'themes/theme_101/but_left.png" alt="" width="6" height="21" /></td> '||
    '<td class="t101C" background="'||V('IMAGE_PREFIX')||'themes/theme_101/but_center.png">'||HTMLDB_LANG.MESSAGE(p_name => 'GO_BUTTON', p_lang => :P0_LANG)||'</td> '||
    '<td class="t101R"><img src="'||V('IMAGE_PREFIX')||'themes/theme_101/but_right.png" </tr></table> ',
    '<table class="t101StandardButton" cellspacing="0" cellpadding="0" border="0" summary=""><tr><td class="t101L">'||
    '<img src="'||V('IMAGE_PREFIX')||'themes/theme_101/but_left.png" alt="" width="6" height="21" /></td> '||
    '<td class="t101C" background="'||V('IMAGE_PREFIX')||'themes/theme_101/but_center.png">'||HTMLDB_LANG.MESSAGE(p_name => 'GO_BUTTON', p_lang => :P0_LANG)||'</td> '||
    '<td class="t101R"><img src="'||V('IMAGE_PREFIX')||'themes/theme_101/but_right.png" </tr></table> ') "Select"
    FROM htmldb_collections t1
    WHERE t1.collection_name = 'MILL_CLAIM_REQUESTS'
    /* Search filter logic is in pr_load_request_list*/
    Thanks & Regards
    Simon
    Edited by: Simon1972 on 11-Mar-2009 08:36

  • ABAP Web Dynpro Application changes in Administation Mode no longer working

    Hi Gurus,
    To apply customizing to a standard SAP Web Dynpro application we used to simply run the application in administration mode. After we changed a parameter to allow for theme application this adminstration mode no longer works. Right-Click simply acts as if you are running the application normally. We have tried to remove our parameter but this had no effect.
    How can we "fix" this error without creating a new custom configuration which will cause the URL to change?
    Thanks,
    Garth

    Hi,
    how did  you  open in administrative mode?
    to open in adminstrative mode do as follows:
    In se80 ,i.e in the menu bar:
    Web Dynpro Application->Test->Test in Administation mode.
    i hope u can see the option "Settings for surrent config" .
    you can refer the thread.
    [Re: ABAP Web Dynpro Application changes in Administation mode]
    Priya.

  • A note on Setup Manager - Application Change Management Pack

    Hi All,
    This is Mugunthan, Development manager for iSetup and Setup Manager. I am happy to begin my note with the launch of Application Change Management Pack 3.1. For those who are not aware of Application Change Management Pack, it is a new product built on top of Oracle Enterprise Manager and comprises of three major modules namely Setup Manager, Customization Manager and Patch Manager. You can find more information about this pack here (LCM: Oracle Application Change Management Pack Setup Manager is enhanced and advanced version of iSetup on Oracle Enterprise Manager. There were good amount of reasons to re-architect iSetup on Oracle Enterprise Manager as Setup Manager.
    Why Setup Manager?
    Ability to migrate to data over point releases of EBS – EBS comes up with rollup patches on top of major releases periodically. It means that you have to certify the patch before it get deployed on to production which means that setup data are to be certified again. iSetup cannot connect between 12.0.4 to 12.0.6 or 12.0.6 to 12.1.1. We have achieved the data migration for above scenarios in Setup Manager (11i to R12 is not supported in Setup Manager)
    Projects – Setup Manager supports grouping of Extracts, Transforms, Loads and Reports as a single entity and can be deployed multiple times to multiple targets. The project consists of one or more tasks (of type Extract/Load/Transform/Report) and can be orchestrated according to your ends. Project execution supports scheduling which means that you can use this feature to sync up setup data between two instances at periodic internal. Projects can be shared with other users which is remarkable difference between iSetup and Setup Manager. You can share your projects with others in a combined development environment. The functional configuration data (Extracts) are stored in Oracle Enterprise Manager. This means that you can refresh EBS without losing Extracts.
    Integration with Change Approval mechanism – Execution of projects is integrated with change approval mechanism which means that you can control who executes what. Also, you have fine grain access control where you can control EBS targets assigned to a user.
    Offline Transformation – I would say this is the most unique feature of Setup Manager and as an implementer you would welcome this feature very much. iSetup has got very limited capability on Transformation. Here we have gone way ahead and support Transformation on almost all Setup Objects. We present you the extracted data in excel sheets. You can download the excel template and work offline. All the attribute value fields in the excel sheet are editable which means that you supply your own value. For example, you can download Operating Unit data in xls file and change operating unit “OU100” to “OU200” and upload it back to system and load to target instance. Please note that any attribute of Operating Unit setup data can be edited. Also, system has got intelligence and once you upload the excel sheet, it automatically changes all the inventory organization which belongs to “OU100” to “OU200”. This behavior can be controlled using attribute mapping which you can create in Setup Manager. Hold on, this is not the end, also you can add more operating unit in excel, say OU300 and OU400 and load it to target instance. You can delete few Operating Units from extracted data in excel sheet and load the remaining to target instance. This gives you complete flexibility to manage (add/edit/delete) functional configuration data offline. This is fantastic feature and please have a look at how it works.
    Advanced Filtering – Filter support in iSetup is not flexible where you cannot use comma separated values and complex sql join conditions. Also you do not know what query is executed behind the scenes to the data. All this problems are addressed in Setup Manager 3.1. We show you the “select clause” (SQL) associated with interface and provide you a text field where you can refer the select clause and provide your own custom where criteria (SQL). This means that filter support is unlimited and you can set filter any database columns. For example, you can extract “Responsibilities/Menu” which are active or created as on yesterday. You can extract all Operating Units excluding “OU100 and OU200”. We support all filter criteria that are supported by SQL.

    Hi,
    your note very interesting. Is there any other way to extract the configuration using SQL? not using Enterprise Manager? hope this will be fastest way then using GUI base.
    Thanks,
    Fahmi Fahlevi

  • My computer was hacked I had to install an earlier version of the disc provided for my mac and I have lost all of my applications already existing on my mac including iPhoto, and all other application. I am wondering how to get them back? I am in Japan

    My computer was hacked using a softbank pocket wifi, I had to install an earlier version of the disc provided for my mac reset my user password and I still need to recover my administrator password that was altered. I have lost all of my applications already existing on my mac including iPhoto, and all other applications. I am wondering how to get them back? I am in Japan and I have proof of purchase in my iTunes, but on my computer all the allplications are blocked. I have no idea what to do to get them back. It is very annoying.
    Thank you for your help.
    Erika K.

    Reinstall from the original source - the restore disks that came with the computer or from the App store if the computer did not come with disks
    LN

  • Setup Manager - Application Change Management Pack

    Hi All,
    This is Mugunthan, Development manager for iSetup and Setup Manager. I am happy to begin my note with the launch of Application Change Management Pack 3.1. For those who are not aware of Application Change Management Pack, it is a new product built on top of Oracle Enterprise Manager and comprises of three major modules namely Setup Manager, Customization Manager and Patch Manager. You can find more information about this pack here (LCM: Oracle Application Change Management Pack Setup Manager is enhanced and advanced version of iSetup on Oracle Enterprise Manager. There were good amount of reasons to re-architect iSetup on Oracle Enterprise Manager as Setup Manager.
    Why Setup Manager?
    Ability to migrate setup data over point releases of EBS – EBS comes up with roll-up patches on top of major releases periodically. It means that you have to certify the patch before it get deployed on to production which means that setup data are to be certified again. iSetup cannot connect between 12.0.4 to 12.0.6 or 12.0.6 to 12.1.1. We have achieved the data migration for above scenarios in Setup Manager (11i to R12 is not supported in Setup Manager)
    Projects – Setup Manager supports grouping of Extracts, Transforms, Loads and Reports as a single entity and can be deployed multiple times to multiple targets. The project consists of one or more tasks (of type Extract/Load/Transform/Report) and can be orchestrated according to your needs. Project execution supports scheduling which means that you can use this feature to sync up setup data between two instances at periodic internal. Projects can be shared with other users which is remarkable difference between iSetup and Setup Manager. You can share your projects with others in a combined development environment. The functional configuration data (Extracts) are stored in Oracle Enterprise Manager. This means that you can refresh EBS without losing Extracts.
    Integration with Change Approval mechanism – Execution of projects is integrated with change approval mechanism which means that you can control who executes what. Also, you have fine grain access control where you can control EBS targets assigned to a user.
    Offline Transformation – I would say this is the most unique feature of Setup Manager and as an implementer you would welcome this feature very much. iSetup has got very limited capability on Transformation. Here we have gone way ahead and support Transformation on almost all Setup Objects. We present you the extracted data in excel sheets. You can download the excel template and work offline. All the attribute value fields in the excel sheet are editable which means that you supply your own value. For example, you can download Operating Unit data as xls file and change operating unit “OU100” to “OU200” and upload it back to system and load to target instance. Please note that any attribute of Operating Unit setup data can be edited. Also, system has got intelligence and once you upload the excel sheet, it automatically changes all the inventory organization which belongs to “OU100” to “OU200”. This behavior can be controlled using attribute mapping which you can create in Setup Manager. Hold on, this is not the end, also you can add more operating unit in excel, say OU300 and OU400 and load it to target instance. You can delete few Operating Units from extracted data in excel sheet and load the remaining to target instance. This gives you complete flexibility to manage (add/edit/delete) functional configuration data offline. This is fantastic feature and please have a look at how it works.
    Advanced Filtering – Filter support in iSetup is not flexible where you cannot use comma separated values and complex sql join conditions. Also you do not know what query is executed behind the scenes to get the data. All this problems are addressed in Setup Manager 3.1. We show you the “select clause” (SQL) associated with interface and provide you a text field where you can refer the select clause and provide your own custom where criteria (SQL). This means that filter support is unlimited and you can set filter on any database columns. For example, you can extract “Responsibilities/Menu” which are active or created as on yesterday. You can extract all Operating Units excluding “OU100 and OU200”. We support all filter criteria that are supported by SQL.

    Hi Mugunthan,
    Can you provide links to any tutorial or example (screenshots) of using Setup Manager to transfer something between two environments (say Users or DFFs)?
    Thanks,
    Gareth

  • Event ID 1502 and 6398 : Translation Service Application is failing to execute. Object reference not set to an instance of an object.

    hi,
    We have deployed Sharepoint 2013 in hosting mode. And i followed this
    guide. And i have 1 web server, 1 app server and 1  DB server. My Application server is logging 2 critical event after every 15 min.
    Event ID: 1502, Task Category: Timer Job, Source: SharePoint Translation Services
    "Timer job '735da5fd-a74a-46b8-9a75-70e85d125eb2' for service application 'Translation Service Application' is failing to execute. More information is included below.
    Object reference not set to an instance of an object. "
    Followed by this one one more critical event,
    Event ID: 6398, Task Category: Timer , Source: SharePoint Foundation
    "The Execute method of job definition Microsoft.Office.TranslationServices.QueueJob (ID 735da5fd-a74a-46b8-9a75-70e85d125eb2) threw an exception. More information is included below.
    Object reference not set to an instance of an object."
    I tried to search everywhere, but no solution. Because of this two critical events AppFabricCaching service is also crashing.
    Any suggestion how i can fix this?
    SaM

    Hi  SaM,
    According to your error message, it says that the Timer job '735da5fd-a74a-46b8-9a75-70e85d125eb2' for service application 'Translation Service Application' fail to create due to some referred object cannot
    be found. For this issue, it can be caused by missing assembly .
    Could you please provide detail error message of ULS log  to determine the exact cause of the error?
    For SharePoint 2013, by default, ULS log is at      
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    Here is a blog you can have a look:
    http://powerpivotgeek.com/2010/10/04/bug-cannot-install-powerpivot-if-a-sql-server-shared-folder-has-been-specified-in-a-previous-installation-to-other-than-the-default-folder/
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • HT4623 After updating, I've lost over half my Applications from Home screen, including Setting, Safari, Camera and more plus all original downloaded Apps. How do I get them back?

    After updating my iPhone 4S with ios6, it seems I have lost over half the Applications from the Home Screen, including Settings, Safari, Camera, Photos and more plus all the original downloaded Applications. Can anyone help please?

    The built in apps can't be deleted.  If you want them reset back to their original arrangement on your screen, go to Settings>General>Reset>Reset Home Screen Layout.  If your purchased apps are missing, either sync them back to your phone with iTunes or redownload them for free (see http://support.apple.com/kb/HT2519).

  • Confirm Application Change problem

    Since downloading and installing Security Update 2009-004, Mail repeatedly brings up the Confirm Application Change dialogue box. I click on Change All (which I assume is the right answer to keep access to my various passwords) and Mail either freezes or becomes unresponsive for several minutes before launching the dialogue again. I click Change All again, and Mail freezes once again or belatedly brings the dialogue box back up. The same happens with Safari when I first launch it. Any suggestions? The Security Update has pretty much rendered Mail unusable.

    The problem with archive and installing, is that you may be left with applications that are older than some of their kernel extensions until you perform a followup combo update to the same version you had before.
    It is unknown at this time where the file damage is.
    Furthermore, we don't know how full your hard disk is. If it is too full, there might be directory damage too. Also, if you ever force restarted your computer, had a kernel panic, or it unexpectedly shut itself down, that can damage the directory too. Before doing any further investigation, backup* your data.
    Here are some resources that might help you*:
    http://www.macmaps.com/badram.html
    http://www.macmaps.com/directoryfaq.html
    http://www.macmaps.com/diskfull.html
    - * Links to my pages may give me compensation.

  • Lost connection to DRM Application

    Hi,
    We are seeing the below DRM error in windows event viewer logs,
    ERROR Oracle.Drm.Client.DrmEventHandler [(null)] - Lost connection to DRM Application: XXX
    System.ServiceModel.CommunicationObjectFaultedException: The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state.
    Server stack trace:
    at System.ServiceModel.Channels.CommunicationObject.ThrowIfDisposedOrNotOpen()
    at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
    at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
    at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
    at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    at Oracle.Drm.ProcessManager.IProcessManager.GetProcessMgrID()
    at Oracle.Drm.ServiceReferences.ProcessManagerControllerClient.GetProcessMgrID()
    at Oracle.Drm.Client.DrmEventHandler.ThreadStart()
    Can you please let us know what exactly is causing this
    Thanks

    Hi,
    We are facing the same issue in our 11.1.2.3 environment. Was there any solution at all please ?
    Thanks,
    Manju.

  • Making this change would require code that is locked by a template or a translator. The change will be discarded.

    I apologize if this has been answered before, but I can't
    seem to find a solution in the forum archive. The error message
    below displays in Dreamweaver CS3 when I attempt to edit a
    Fireworks CS3 file using the "Edit" button in Dreamweaver. After
    clicking "Done" in Firworks to update the file and return to my
    HTML page in Dreamweaver, the error message displays. Can someone
    help me troubleshoot the problem? As a side note, I tested it in my
    older version of Dreamweaver and Fireworks (studio 8 versions) to
    see if I would get the same error message and I didn't - everything
    worked fine and no error message displayed.
    DW Error Message: Making this change would require code that
    is locked by a template or a translator. The change will be
    discarded.
    Thanks for your help,
    Donna

    > Murray, what do you mean? My pages validated before the
    switch to DW8.
    Are you sure? Show us one.
    The error you describe is only thrown in one of two cases -
    1. You have actually changed what is being mentioned (sadly
    this is most
    often NOT the case)
    2. You have a coding error somewhere on the page (or in the
    CSS) that is
    causing the template engine to burp this error message even
    though it
    doesn't really apply
    DW4 was nearly totally unaware of 'validation' errors. DW8 is
    MUCH stricter
    about them. When anyone says "this was fine in DW4 and is now
    not fine in
    DW8" this is the first and most likely solution.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Inge Grotjahn" <[email protected]> wrote in message
    news:[email protected]..
    > Am 13.09.2007 schrieb Murray *ACE*:
    >
    >> DW4 was much more tolerant of errors in your code
    than DW8 is. Your
    >> symptoms are an absolute diagnostic for such errors.
    >
    > Murray, what do you mean? My pages validated before the
    switch to DW8.
    > I only imported my site from DW4 and used the existing
    templates.
    > After changes of the template I used DW's feature to
    update all
    > relevant pages automatically. Then I wondered, why I
    couldn't make
    > changes on the child-pages within the editable regions.
    Finally I
    > created the template page new in DW8 and applied the new
    template to
    > all my pages. Now it is working fine, although my pages
    still state,
    > that they relate to a DW6 template, which I never had?
    >
    > Best regards:-)
    > Inge Grotjahn, puzzled:-)
    > --
    > CatManiacs World:
    http://www.gwsystems.com/inge

  • Applications Change Management Pack  3.1 is now available

    E-Business Suite Applications Technology Group has recently released Application Change Management Pack (ACMP) Release 3.1 and Application Management Pack (AMP) Release 3.1.
    As you might be aware, Application Change Management Pack is Oracle's offering for customers to monitor and manage Oracle E-Business Suite changes. Application Change Management Pack provides a centralized view to monitor and orchestrate changes (both functional and technical) across multiple Oracle E-Business Suite systems.
    In release 3.1 Application Change Management Pack has been enhanced to provide more control and flexibility in managing Oracle E-Business Suite changes.
    Some of the key distinguishing features of the new release include:
    * Change Approval Framework: Changes orchestrated through Application Change Management Pack can now be controlled through the new change approval framework in Release 3.1. Users can now be segregated as approvers across Oracle E-Business Suite system(s) and modules (Customization Manager, Patch Manager or Setup Manager). Built in notification capability enables approver(s)/requester to be intimated about the status of relevant change requests. It also provides an implicit audit trail mechanism.
    * Integrated Custom Application Management: An integrated custom applications management feature enables users to easily register new custom applications across Oracle E-Business Suite systems and also track and validate existing custom applications in a standard way. This dashboard also helps track custom objects, packages and file meta-data associated with custom applications.
    * Pre-requisite Patch Analysis: Oracle E-Business Suite patches can now be analyzed for Pre-requisites prior to deployment in the target system. The analysis also verifies whether the pre-requisites are already available (in the target system) and if not, an option to add them to the patch job.
    * Offline Transformation: For the very first time, users have the ability to download Oracle E-Business Suite setup data in Microsoft Excel document. Once downloaded, the Setup Data can be edited or new data can be entered into the worksheets. Data is validated within the Microsoft Excel file and also while uploading into Setup Manager.
    * Built-in Intelligence: Release 3.1 has numerous minor enhancements that provide necessary intelligence for a seamless change orchestration. A few examples are:
    * Automated file driver meta-data generation for new files and $Header handling
    * Customization Package impact analysis report
    * Advanced filtering options for setup migration
    * Improved Usability: Release 3.1 contains numerous usability and reporting enhancements to ensure better integration with third party systems like source control systems and to foster collaborative development.
    Licensing
    Application Management Pack for Oracle E-Business Suite and Application Change Management Pack for Oracle E-Business Suite are separately licensed products. Application Management Pack for Oracle E-Business Suite Version 3.1 is a mandatory prerequisite for Application Change Management Pack for Oracle E-Business Suite Version 3.1 and should be licensed separately.
    Upgrade
    This pack supersedes the Oracle Application Management Pack for Oracle E-Business Suite 3.0. An upgrade path to Release 3.1 is provided from Release 3.0 only. Therefore it is mandatory for the existing installations to be at the AMP-ACMP Release 3.0 level before upgrading to Release 3.1.
    Downloads
    [Application Management Pack and Application Change Management Pack for Oracle E-Business Suite Version 3.1 (Patch 8333939) |http://updates.oracle.com/Orion/PatchDetails/handle_rel_change?release=5623100&plat_lang=46P&patch_file=&file_id=&password_required=&password_required_readme=&merged_trans=&aru=11452056&patch_num=8333939&patch_num_id=1103773&default_release=5623100&default_plat_lang=46P&default_compatible_with=&patch_password=&orderby=&direction=&no_header=0]
    References
    [Getting Started with Oracle Application Management Pack and Application Change Management Pack for Oracle E-Business Suite Version 3.1 (Metalink Note 982302.1)| https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=982302.1#6 ]
    [Getting Started with Oracle Application Management Pack and Application Change Management Pack for Oracle E-Business Suite Version 3.0 (Metalink Note 812315.1) |https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=812315.1#4]
    [Oracle Enterprise Manager Application Change Management Pack for Oracle E-Business Suite (PDF, 260K)|http://www.oracle.com/technology/products/oem/pdf/ds_appl_chg_mgmt.pdf]
    [Oracle Enterprise Manager Documentation|http://www.oracle.com/technology/documentation/oem.html]

    Srinivas:
    AMP/ACP 3.1 is certified and tested on OEM 10.2.0.5 with Linux.
    We would like to understand how you were trying to install the pack. Please note that AMP/ACP 3.0 installation is a prerequisite before installing AMP/ACP 3.1. So, did you check that the AMP/ACP 3.0 installation completed without errors.
    For details, please refer to the Metalink document ID 982302.1 for more details regarding the same. I would strongly recommend you to follow the 'Oracle Application Management Pack for Oracle E-Business Suite Installation Guide (PDF)' .
    If the issues still persists, please log a SR for the same and let us know the SR#.
    Thanks,
    Lokesh

  • Applications changed language/applications are downloaded in wrong language

    All my applications changed language, and I didn't do anything, how do I change them back? The applications don't have any options for that, I don't understand the language. I want spotify in norwegian or english... not Dutch!

    You can burn the songs to a CD and reimport them. This will allow you to add the songs to your mp3 player. There are other third party programs that claim to remove the protection on the songs, but most just contain malware.
    Corbin

Maybe you are looking for

  • RFC- XI- Web services

    Hi All,       We are configuring RFC->XI->Web Services scenario. We are using SOAP adapter in the receiver side. We are getting the following error message. soap fault: System.Web.Services.Protocols.SoapException: Server did not recognize the value o

  • Streams configuration multiple source-single destination

    hi all, can we configure streams capturing changes from multiple source databases and applying at single destination? to configure table level replication is it mandatory to enable suppliment logging foe enrire database? is it possible to configure s

  • AD user with no role assignment cannot login

    We have created AD users that are being authenticated through OBIEE 11g. In the AD we currently have the user, password and group information associated with all the users created. As per system behavior if an user's group is not mapped to a role wit

  • Creation of outbound processing

    I have to cretae a IDOC fro sending AR and AP detail from delivering company to main office and contracting company ... how to work on these type of object .. if u have any examply it will help me more... Thanks Sandeep

  • Chart issue

    Hi Friends, For my requirement, i need to draw one curve in the column chart.In the chart i am having one characterstic and one keyfigure. Can anybody explain how to achieve this. Regards Madhu