Shared Services - Your system already has the instance with name epmsystem1

Hi,
I'm installing EPM System 11.1.2.1 in a new development enviropment. I thought I could connect to a previously configured database Shared Services database and configure the new instance to epmsystem1 (the default) but it is complaining with the error message "Your system already has the instance with name epmsystem1".
Is it really necessary to create a new name for the instance?

In 11.1.2.1 each EPM instance name needs to be unique, so if you have already configured an instance in an environment and you want to add a new instance it needs to be unique.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Regarding mountain lion server: clients experience intermittent service connections. the server system log has the following error- Client handshake failed (6):113: Server not accepting client connections (any ideas???)

    regarding mountain lion server: clients experience intermittent service connections. the server system log has the following error- Client handshake failed (6):113: Server not accepting client connections. any suggestions would be greatly appreciated - thank you

    Hi Jason
    I was getting the same behavior after Apple support had me delete some plist files to get Airplay going. I was also getting the following error:
    the error occurred while processing a command of type 'writesettings' in the plug-in 'server vpn'
    I went into ~/Library/Preferences/ and /Library/Preferences/ and deleted every plist contating the word server. I had to re-set up my server (meaning walk through some intial steps) but all of my settings were still there after that and everything started working again.
    Just a thought, obviously try at your own risk but it worked for me.
    Kellen

  • Problem happening again. The maximum report processing jobs limit configured by your system administrator has been reached.

    We have started receiving load report failed error again in one of our production servers. This problem occurred some months ago and on that time we found that in the code reportdocument.close method was not called so we added into the code and set the print job limit to 400 and problem went away for couple of months but now it has started again.
    Load report failed.
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
       at AppSuite.WebApp.CrystalViewer.LoadReport(Boolean bRefresh)
       at AppSuite.WebApp.CrystalViewer.Page_Load(Object sender, EventArgs e)
       at System.Web.UI.Control.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    The maximum report processing jobs limit configured by your system administrator has been reached.
       at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
    This is our code
    Private m_oReportDocument As New ReportDocument
        Private ReadOnly Property ReportId() As Integer
            Get
                Return Integer.Parse(Me.Request.QueryString("r"))
            End Get
        End Property
        Private Property CacheKey() As String
            Get
                Dim sCacheKey As String = Me.Request.QueryString("ck")
                If sCacheKey Is Nothing OrElse sCacheKey.Length = 0 Then
                    sCacheKey = CStr(Me.ViewState("CacheKey"))
                End If
                Return sCacheKey
            End Get
            Set(ByVal Value As String)
                Me.ViewState("CacheKey") = Value
            End Set
        End Property
        Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            If Not Me.IsPostBack Then
                LoadReport()
            End If
        End Sub
        Private Sub btnPDF_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPDF.Click
            'Redirect to the PDF Viewer passing it the ReportId and CacheKey
            Me.Response.Redirect(String.Format(ReportHelper.PDFViewerURL, Me.ReportId, Me.CacheKey))
        End Sub
        Private Sub btnRTF_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnRTF.Click
            'Redirect to the RTF Viewer passing it the ReportId and CacheKey
            Me.Response.Redirect(String.Format(ReportHelper.RTFViewerURL, Me.ReportId, Me.CacheKey))
        End Sub
        Private Sub btnExcel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExcel.Click
            'Redirect to the Excel Viewer passing it the ReportId and CacheKey
            Me.Response.Redirect(String.Format(ReportHelper.ExcelViewerURL, Me.ReportId, Me.CacheKey))
        End Sub
        Private Sub crvMain_Navigate(ByVal source As Object, ByVal e As CrystalDecisions.Web.NavigateEventArgs) Handles crvMain.Navigate
            LoadReport()
        End Sub
        Private Sub crvMain_Search(ByVal source As Object, ByVal e As CrystalDecisions.Web.SearchEventArgs) Handles crvMain.Search
            LoadReport()
        End Sub
        Private Sub crvMain_ViewZoom(ByVal source As Object, ByVal e As CrystalDecisions.Web.ZoomEventArgs) Handles crvMain.ViewZoom
            LoadReport()
        End Sub
        Private Sub crvMain_Drill(ByVal source As Object, ByVal e As CrystalDecisions.Web.DrillEventArgs) Handles crvMain.Drill
            LoadReport()
        End Sub
        Private Sub crvMain_DrillDownSubreport(ByVal source As Object, ByVal e As CrystalDecisions.Web.DrillSubreportEventArgs) Handles crvMain.DrillDownSubreport
            LoadReport()
        End Sub
        Private Sub crvMain_ReportRefresh(ByVal source As Object, ByVal e As CrystalDecisions.Web.ViewerEventArgs) Handles crvMain.ReportRefresh
            LoadReport(True)
        End Sub
        Private Sub LoadReport()
            LoadReport(False)
        End Sub
        Private Sub LoadReport(ByVal bRefresh As Boolean)
            If Common.CouldBeMultiDB(User.Identity.Name) AndAlso TypedSession.OverrideCompany.Length > 0 Then
                Common.Settings.OverrideCompany = TypedSession.OverrideCompany
            End If
            'Get the report data
            Dim dtReport As DataTable = ReportHelper.GetReportData(Me.CacheKey, bRefresh)
            'If there is data to display bind it to the Crystal Viewer
            If dtReport.Rows.Count > 0 Then
                With m_oReportDocument
                    .Load(ReportHelper.GetReportPath(Me.ReportId))
                    .SetDataSource(dtReport)
                    .PrintOptions.PaperSize = Common.Settings.CrystalPaperSize
                End With
                crvMain.ReportSource = m_oReportDocument
            Else
                'Hide the controls and display a message if there is no data
                crvMain.Visible = False
                btnPDF.Visible = False
                btnExcel.Visible = False
                lblNoResults.Visible = True
            End If
        End Sub
        Protected Sub Page_Unload(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Unload
            m_oReportDocument.Close()
            m_oReportDocument.Dispose()
        End Sub
    Can any one tell if we are doing anything wrong in our code. We don't use sub reports any more however we do use paging and some of our reports have 200+ pages. Also is it possible to find out print job limit and concurrent users by writing some code.
    Thanks

    I suspect it's not the code - after all it worked(?). It is much more likely that, it is the load. Remember that the report engine can only handle three concurrent requests at any one time. Also, remember that you can run out of print jobs real fast as subreports also count as print job. E.g.; say someone added a report that has 4 subreports in the detail section, the report runs a 100 records, you will be at 401 print jobs and thus over the limit. You can keep increasing the print job limit, but that means you are loading the server and eventually you will bring it down too...
    It may be time to consider, web farms or Report Application Server to scale up(?).
    Getting to the latest SP is never a bad idea either.
    And have a look at the scalability suggestions in this doc:
    Crystal Reports 2008 Component Engine Scalability
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Shared services database not found in the specified database

    Hi Guys,
    In Hyperion EPM System confirurator,i gave all the fields and click next button it show error message "Shared services database not found in the specified database"

    Hi ,
    1. Pls confirm me one thing. Did you re -install version 11.
    2. Re intstallation of version 11 has lot of issues ( atleast 11.1.1.1).
    Sandeep Reddy Enti
    HCC
    http://hyperionconsutlancy.com/

  • In downloading a photo from someone who used a 'free' sharing service, my Macbook Pro has acquired a virus-like extension called Genieo that I can't get rid of.

    Please help me get rid of Genieo once and for all! When downloading a photo for work that someone shared with a 'free' sharing service, my MacBook Pro has acquired a persistent virus-like thing that opens as my Firefox homepage - no matter what. I have faithfully followed all instructions on removing and unsintalling this parasite both from my computer and from Firefox . I have uninstalled and reinstalled Firefox Mozilla as well. All to no avail. Please help.

    In order to uninstall a possibly unwanted extension, please do the following:
    #From the Firefox window click the Firefox button at the top left and select ''Add-ons'', or, if the Firefox button is not shown, click the ''Tools'' menu and click ''Add-ons''.
    #Once the Add-on Manager has opened in a new tab, click the ''Extensions'' button on the left side of the window.
    #You should now see a list of your installed extensions on the right side together with buttons on the right side of each extension.
    #To remove an extension from Firefox, simply click the ''Remove'' button. You should see a message that informs you about the successful removal of the add-on.
    #Note that some add-ons require a Firefox restart to be removed completely. To perform a Firefox restart after the add-on removal, click the ''Restart now'' link in the message.
    You can find further information about uninstalling extensions in the following articles:
    [[Disable or remove Add-ons]]
    [[Remove a toolbar that has taken over your Firefox search or home page]]

  • Error message when connecting to iTunes says my new iPad 4 can't be connected as it requires version 10.7 or later. Surely a new iPad already has the latest version, and if it doesn't how do I get it?

    Error message when connecting to iTunes says my new iPad 4 can't be connected as it requires version 10.7 or later. Surely a new iPad already has the latest version, and if it doesn't how do I get it?

    Not the iPad - your computer must be running iTunes 10.7 in order to sync. It has nothing to do with iTunes on the iPad.
    You can download iTunes for your computer here.
    http://www.apple.com/itunes/

  • I got a new e-mail address and I reset my iPod so it already has the new email address. I can't seem to change the address on my iPad or iPhone. Please help me change the address on all my devices!

    I got a new email address and I reset the iPod so it already has the new address. I can't seem to change the address on my iPhone5 or iPad. So please help! How do I change the address for my apple ID and icloud on all my devices? I don't want to reset my iPad and phone just to set new email address I can't do updates without the password and I have forgotten my password for my old email address. Please Help! Getting frustarted!

    If the old ID ("email address") is yours, and if your current ID was created by editing the details of this old ID (rather than being an entirely new ID), go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Azure Antimalware (Endpoint Protection) says "your system administrator has restricted access to this app"

    I see many posts about using SCCM to configure policies, etc., etc. However, I can't find any information about my specific issue:
    I have installed the Antimalware extension on several Azure VMs. Only one VM allows access to "System Center Endpoint Protection". All the other ones say "your system administrator has restricted access to this app". Now, since I am the
    system administrator, I am at a loss how to be able to see / configure the other VMs using this program.
    I have not installed SCCM, since I didn't think I would need it. If, in fact, I must install SCCM, it pretty much defeats the purpose of an extension.
    Any ideas would be greatly appreciated.
    --- If I am in the wrong forum, please let me know where I should post my question, since there don't appear to be any forums discussing extensions for Azure.

    Although azure endpoint protection is the same core technology as SCEP it is not managed in the same way. Also, if the ConfigMgr agent is not installed on these VMs, then it's quite impossible for ConfigMgr to the source of the issue here. You are better
    off posting to an Azure forum.
    However, did you elevate when launching the EP console?
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Your system administrator has restricted access to this app.

    Enabled the Endpoint role on primary site server.
    Enabled Endpoint protection in Default Client Settings
    We have Default Client Antimalware Policy set.
    When I click on System Center EndPoint Protection in All Programs I get following error:
    Your system administrator has restricted access to this app.

    I am getting this on several windows client builds with SCEP now, we don't have an Applocker policy at all, one of the computers in question is running Win 7 Pro!
    I cant see how it could be malware as the users are standard users.
    I also don't know how long its been like this, but a machine we just re-imaged last week is now doing it.
    going to re-image and see if an update is causing it.

  • My friend already has the album I gifted her. Can I exchange it for any album she wants?

    I gifted an album to my friend. She already has the album.  Can she exchange it for another album or can I?
    TIA,Barb

    Hi Barb,
    Sorry, no. Here is a portion of the iTunes Store Terms and Conditions that applies:
    GIFT CERTIFICATES, ITUNES CARDS, ALLOWANCES, AND CONTENT CODES
    Gift Certificates, iTunes Cards, and Allowances are issued and managed by Apple Value Services, LLC (“Issuer”).
    Gift Certificates, iTunes Cards, Content Codes, and Allowances, in addition to unused balances, are not redeemable for cash and cannot be returned for a cash refund (except as required by law); exchanged; resold; used to purchase Gifts, Gift Certificates, or iTunes Cards; used to provide Allowances; used for purchases on the Apple Online Store; or used in Apple Retail Stores. Unused balances are not transferable.
    Sorry, my bad. There is only one line that refers to purchases in the T & C:
    All sales and rentals of products are final.
    However, as the Limnos indicates, it can't hurt to contact iTunes Support to see what they can do for you....
    GB

  • Execute a program that already has a instance in execution

    What it occurs when I execute a standalone program that already has an instance in execution ?

    normally you can execute as many instances as you like.
    Andre

  • Just got an i-pad 2. When I go to send an email it already has the words "Sent from my ipad" under the subject line. How do I permanently remove this phrase (Yes, you can backspace to remove this but it must be done everytime).

    Yes, just got an i-pad 2. Love it! Question, when I go to send an email, under the subject line it already has the phrase "Sent from my ipad". How do I permanently remove this phrase. (Yes I can do it manually each time but I prefer not to). Thanks

    Settings > Mail, Contacts, Calendars > Signature.

  • HT3180 what does it mean when your apple tv has the itunes symbol on your tv

    what does it mean when your apple tv has the itunes symbol on your tv?

    You need to grab a micro usb cable and restore via iTunes
    http://support.apple.com/kb/HT4367

  • Your request cannot be completed because your Apple ID has been associated with too many credit cards.what is that mean please tell Apple

    Please help me I don't know what is this mean : Your request cannot be completed because your Apple ID has been associated with too many credit cards.
    And you tell me what to do?

    New one to me, you might try contacting Apple through iTunes Store Support

  • Javax.management.ReflectionException: The operation with name getMBeanInfo

    Hi,
    I am getting expcetion while restarting the service deployed as ear under user instance in oc4j application server 10.1.3. Deployment of EAR is succussfully completed.
    It throws exception while restarting that service.
    Logs after deployment(under j2ee/instance_name/logs):
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID><IP-ADDRESS of appserver>:22260:1292737388443:58</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>Application Deployer for <EAR file name>COMPLETES. Operation time: 394 msecs</MSG_TEXT>
    </PAYLOAD>
    Logs after restart of serverice(under j2ee/instance_name/logs):
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID><IP ADDRESS OF APPSERVER>:22260:1292737432393:69</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>Exception returned by remote server: {0}</MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[java.lang.IllegalStateException: ClassLoader "<EAR DEPLOYED NAME>.root:0.0.0" (from <application> in /oracle/apphome/j2ee/<instance_name>/applications/<EAR DEPLOYED NAME>/): This loader has been closed and should not be in use.
    at oracle.classloader.util.ClassLoadAsserts.fail(ClassLoadAsserts.java:154)
    at oracle.classloader.PolicyClassLoader.checkState(PolicyClassLoader.java:1994)
    at oracle.classloader.PolicyClassLoader.internalLoadClass(PolicyClassLoader.java:1659)
    at oracle.classloader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1635)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:561)
    at java.lang.Class.forNameImpl(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.evermind.io.ClassLoaderObjectInputStream.resolveClass(ClassLoaderObjectInputStream.java:33)
    at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1553)
    at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1475)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1708)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1314)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:354)
    at com.evermind.server.rmi.RMIClientConnection.handleListContextResponse(RMIClientConnection.java:805)
    at com.evermind.server.rmi.RMIClientConnection.handleOrmiCommandResponse(RMIClientConnection.java:279)
    at com.evermind.server.rmi.RMIClientConnection.dispatchResponse(RMIClientConnection.java:242)
    at com.evermind.server.rmi.RMIClientConnection.processReceivedCommand(RMIClientConnection.java:224)
    at com.evermind.server.rmi.RMIConnection.handleCommand(RMIConnection.java:152)
    at com.evermind.server.rmi.RMIConnection.listenForOrmiCommands(RMIConnection.java:127)
    at com.evermind.server.rmi.RMIConnection.run(RMIConnection.java:107)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Thread.java:797)
    ]]></SUPPL_DETAIL>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    Logs from (j2ee/home/logs) after restart of service:
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID><IP-ADDRESS OF APPSERVER>:96566:1292737132784:12</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>Exception returned by remote server: {0}</MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[javax.management.ReflectionException: The operation with name getMBeanInfo could not be found
    at oracle.oc4j.admin.jmx.ejb.MBeanServerEjbBean.invoke(MBeanServerEjbBean.java:371)
    at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxSupportsInterceptor.invoke(TxSupportsInterceptor.java:37)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.SecurityRoleInterceptor.invoke(SecurityRoleInterceptor.java:47)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:844)
    at MBeanServerEjb_RemoteProxy_1me2j7.invoke(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:797)
    Caused by: java.lang.NoSuchMethodException: getMBeanInfo
    at com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:412)
    at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:238)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:833)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:802)
    at oracle.oc4j.admin.jmx.server.state.ApplicationStateFilterMBeanServer.invoke(ApplicationStateFilterMBeanServer.java:572)
    at oracle.oc4j.admin.jmx.ejb.MBeanServerEjbBean.invoke(MBeanServerEjbBean.java:365)
    ... 22 more
    ]]></SUPPL_DETAIL>
    </PAYLOAD>
    Kindly suggest solution for above.

    Dear svsleave,
    I have the same problems,which means I have the similar error exceptions, when I try to run my JSP. Can you please teach me how to solve it in details?! I will like to know how to [decrease rdbms SGA size and oc4j memory] . Thank you for your help!

Maybe you are looking for

  • CR in vs 2005 (whatever version that it) - rotate a textobject 180 degrees.

    I am sure that this horse has been flogged before ... somewhere ... but I have given up endlessly searching for it. I need to rotate a report (onto a label, in fact) 180 degrees ... sometimes. The labels have a pre-printed footer and, depending on th

  • Error in Workflow-step

    hi, i have mad a modification in my workflow, now it is stopped with the following error: Source (expression '&_WORKITEM.WORKITEMFATHER.WORKITEMID&') of binding assignment is not availabl Message no. SWF_BND_001101 i have tried to put the workitem-id

  • Setup Logical System from blank

    the default logical system of client 100 is blank now we have to set a logical system for ALE and BW data transfer but we found that some documents will not be transfer and some document cound not be found eg: we cant found the FI documents from mate

  • OSB problem posting 5MB body to a business service endpoint

    Hello, I have an https endpoint they results in a Broken pipe exception after running for about 10mins if I send a SOAP body greater than 5MB. If I send the same request to this endpoint using SOAPUI (no OSB involvement) it works fine and completes i

  • Language Translate in Transport Request

    Hello,                  I translated one of ZREPORT from English to German,in this way GOTO-Translation-and required language, I activated and saved in Transport request.Now my doubt is that language translation is automatically saved in the transpor