Track changes of a object in Jswing Application

Hi Folks,
I have a jswing application which loads a object(*xml decoder*) when it gets opened.
I may make changes to this object(*xml decoder*).
Finally when terminating the application i need to check if any changes made to object(*xml decoder*)
if there are any changes i need to write object(*xml decoder*) to xml encoder.
Just like microsoftword/powerpoint.
How do i compare old object with the recent object.
Any suggestions

Thanks for your response friend,
1)yes it is a swing application
2)yes it is a bean.xmlencoder
3)yes am changing object returned by xml decoder
i have java bean classes to be written to Xml encoder.
public class TestContainer implements  Cloneable {
     @Override
    public TestContainer clone() {
     try {
       final TestContainer testcontainer = (TestContainer) super.clone();
        testcontainer.mTests = new ArrayList(mTests.size());
       for (Test tests : mTests) {
          testcontainer.mTests.add(tests.clone());
        testcontainer.mTopics=new ArrayList(mTopics.size());
        for (Topic topics : mTopics) {
          testcontainer.mTopics.add(topics.clone());
       return  testcontainer;
     } catch (CloneNotSupportedException cnse) {
       throw new Error(cnse);
    private List<Topic> mTopics;
    private List<Test> mTests;
    public List<Topic> getTopics() {
        return mTopics;
    public List<String> getTopicNames() {
        List<String> lTopicNamesList = new ArrayList<String>();
        for (Topic lTopic : mTopics) {
            lTopicNamesList.add(lTopic.getTopicName());
        return lTopicNamesList;
      public List<String> getTestNames() {
        List<String> lTestNamesList = new ArrayList<String>();
        for (Test lTest : mTests) {
            lTestNamesList .add(lTest.getTestName());
        return lTestNamesList;
    public void setTopics(List<Topic> pTopics) {
        this.mTopics = pTopics;
    public List<Test> getTests() {
        return mTests;
    public void setTests(List<Test> pTests) {
        this.mTests = pTests;
   // public static void main(String args[]) {
      //  TestContainer sampleTestFile = new TestContainer();
        // Set Topics
      /// List<Topic> lTopics = new ArrayList<Topic>();
      //  sampleTestFile.setTopics(lTopics);
        //Set Tests
       // List<Test> lTests = new ArrayList<Test>();
        //sampleTestFile.setTests(lTests);
       // try {
          //  XMLEncoder e = new XMLEncoder(
                 //   new BufferedOutputStream(
                 //   new FileOutputStream("Empty.xml")));
            //e.writeObject(sampleTestFile);
           // e.close();
       // } catch (Exception lEx) {
   so finally i need to write this testconatiner object to java.bean.XmlEncoder in front end application(AdminTool.java) if there are any changes.
How and where should i override equals method

Similar Messages

  • How to track changes in a hyperion application for SOX control?

    Hello all,
    We have been working on identifying the best way on how to track changes in a hyperion application in regards to the SOX control.
    The following areas have been identified as the main areas of an application where the changes are to be tracked:
    Monthly data load from ODI
    Calculation of data
    Metadats change
    Formula edit
    Changes to reports
    Changes to security
    Can anybody please suggest the best ways to do this? Has anyone experienced this issue before?
    Somebody suggested that there is hyperion auditing available.
    Is there any other software that is available that can do this or just documenting the changes would be the best option?
    Please suggest. Toyr response would be appreciated.
    Thanks.

    Shared Services allows the auditing of provisioning and life-cycle management activities to track changes to security objects and the artifacts that are exported or imported using Lifecycle Management Utility.
    For Shared Services auditing, refer Page 129 of http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_security.pdf
    Planning Administrators can select aspects of the application for change tracking. For example, you can track changes to metadata, such as when users change a member property or add a currency. You can also track changes in data forms, business rules, workflow, users, access permissions, and so on.
    For Planning auditing, refer Page 56 of http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin.pdf
    HTH-
    Jasmine.

  • As a Hyperion Admin how to track changes if one user changes / creates user

    1) in Hyperion how Admin can find if one user
    Password resets logged.
    2)In hyperion how Admin an fine if one user
    Creation, change and deletion of User accounts logged.

    Shared Services allows the auditing of provisioning and life-cycle management activities to track changes to security objects and the artifacts that are exported or imported using Lifecycle Management Utility.
    For Shared Services auditing, refer Page 129 of http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_security.pdf
    Planning Administrators can select aspects of the application for change tracking. For example, you can track changes to metadata, such as when users change a member property or add a currency. You can also track changes in data forms, business rules, workflow, users, access permissions, and so on.
    For Planning auditing, refer Page 56 of http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin.pdf
    HTH-
    Jasmine.

  • How to change attributes of Objects of all windows in a MDI application

    Hi,
    I have a MDI application to draw Object. In these MDI windows I can modify attributes of Object like color, size... Now I want to create an option, when the user change or modifies attribute of Objects in a window, so it allow to change attributes of objects in all windows. I don't know how I can do it, please help me. Thanks

    Allow your objects to alias mutable attribute objects.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.util.*;
    import javax.swing.*;
    import java.util.List;
    public class Example extends JPanel {
        private List bangles = new ArrayList();
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D) g;
            for(Iterator j=bangles.iterator(); j.hasNext(); )
                ((Bangle)j.next()).paint(g2);
        public void addBangle(Bangle bangle) {
            bangles.add(bangle);
            repaint();
        public static void main(String[] args) {
            JFrame.setDefaultLookAndFeelDecorated(true);
            JDialog.setDefaultLookAndFeelDecorated(true);
            Example app = new Example();
            JFrame f = new JFrame("Example");
            Container cp = f.getContentPane();
            cp.add(app, BorderLayout.CENTER);
            cp.add(Controller.create(app), BorderLayout.NORTH);
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setSize(800,600);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    class Controller {
        private Shade shade1 = new Shade(Color.GREEN), shade2 = new Shade(Color.RED), currentShade=shade1;
        private Example modelView;
        public static JComponent create(Example modelView) {
            return new Controller(modelView).createUI();
        private Controller(final Example modelView) {
            this.modelView = modelView;
            modelView.addMouseListener(new MouseAdapter(){
                public void mousePressed(MouseEvent evt) {
                    Rectangle shape = new Rectangle(evt.getX(), evt.getY(), 20, 20);
                    modelView.addBangle(new Bangle(shape, currentShade));
        private JComponent createUI() {
            ButtonGroup bg = new ButtonGroup();
            final JToolBar tb = new JToolBar();
            final JRadioButton rb1 = createRadio("Shade 1", true,  shade1, bg, tb);
            final JRadioButton rb2 = createRadio("Shade 2", false, shade2, bg, tb);
            JButton btn = new JButton("Change color of selected shade");
            btn.setContentAreaFilled(false);
            btn.addActionListener(new ActionListener(){
                public void actionPerformed(ActionEvent evt) {
                    Color newColor = JColorChooser.showDialog(tb, "Choose new color", currentShade.getColor());
                    if (newColor != null) {
                        currentShade.setColor(newColor);
                        if (currentShade == shade1)
                            rb1.setForeground(newColor);
                        else
                            rb2.setForeground(newColor);
            tb.add(btn);
            return tb;
        private JRadioButton createRadio(String text, boolean selected, final Shade shade, ButtonGroup bg, JToolBar tb) {
            JRadioButton rb = new JRadioButton(text, selected);
            rb.setContentAreaFilled(false);
            rb.setForeground(shade.getColor());
            rb.addActionListener(new ActionListener(){
                public void actionPerformed(ActionEvent evt) {
                    currentShade = shade;
            tb.add(rb);
            return rb;
    class Bangle {
        private Shape shape;
        private Shade shade;
        public Bangle(Shape shape, Shade shade) {
            this.shape = shape;
            this.shade = shade;
        public void paint(Graphics2D g2) {
            g2.setColor(shade.getColor());
            g2.draw(shape);
    class Shade {
        private Color color;
        public Shade(Color color) {
            this.color = color;
        public Color getColor() {
            return color;
        public void setColor(Color color) {
            this.color = color;
    }

  • Entity object track changes "Modified by"

    Hi Experts,
    I have a question about entity object track changes. I change enabled one entity object attribute to track change "Modified by".
    However whenever the DB changes occurs then the Modified column is updated, however the name is the database connection user name. How can i override that value during the record update. Do i need to set any DbTransaction.session environment variable to save that in the db/
    - t

    Sorry for the late reply,
    I tried this but no luck. Can anyone let me know how to change the entity history columns values like modified by user name. etc....
    - t

  • How can I export comments and tracked changes from Pages to Word?

    I just purchased Pages and tried to export a couple pages of my document to Microsoft Word so I could send them for review to a client who does not have Pages; however, when I copy-pasted into Word, none of the comments or tracked changes showed up in the doc., only the finished product. I've tried updating my software, but that hasn't worked. Is there a way to fix this?

    Here is what the Pages User Guide says:
    " Exporting Pages Documents to Other File Formats
    If you want to share your Pages documents with those who aren’t using the latest version of Pages, you can export your document to file formats that they may be able to use on their computers or other devices:
    • PDF: You can view PDF files in iBooks, and view or print them in Preview and Safari. You can edit them with a PDF application. Fonts used in the Pages document are preserved in the PDF file.
    Hyperlinks in your Pages document are exported to the PDF file. Hyperlinks are also created in the PDF file for table of contents entries, footnotes and endnotes, webpages, email addresses, and bookmarks.
    • Microsoft Word: You can open and edit Microsoft Word files in Microsoft Word on a computer running Mac OS X or Windows.
    Because of text layout differences between Microsoft Word and Pages, an exported Word document may contain a different number of pages than its Pages counterpart. You may notice other differences, as well, for example, table layouts and some special typographic features may not be identical. Some graphics (particularly those using transparency) may not display as well. Charts created in Pages appear as MS Graph objects, which you can edit in Microsoft Word.
    • RTF: You can open and edit RTF files in many different word processors. RTF files retain most of the text formatting and graphics.
    • Plain text: You can open and edit plain text files in many text editing applications, such as TextEdit. Exporting to plain text removes all document and text formatting, and images aren’t exported. ePub: You can open ePub files for reading in the iBooks application on an iPad, iPhone, or iPod touch, or in any ePub file reader. After you export your document to ePub format, you must transfer it to your device to read it in iBooks. To learn more about optimizing a document for ePub format, exporting it, and transferring it to your device, see “Creating an ePub Document to Read in iBooks” on page 257.
    If your Pages document is password-protected, the password-protection is removed from the new file that's created upon export. However, if you export to the PDF file format, you can apply a new password at the time of export. "

  • How to track changes between documents

    We are trying to find ways to track/compare changes between two or more versions of an InDesign document. We need to be able to store these version changes in a master version tracking document. We know InDesign can track text changes in a story but we need to know more than that, like graphic or style changes. Is there a plugin out there that can compare two versions of an InDesign document and list/print out the differences?  Acrobat has this feature but we haven't found this for InDesign. Any suggestions?

    Hello,
    I hesitated to post the plugins because my company is the publisher of one of them.
    You will find them all at:
    http://www.pluginsworld.com/
    Search for BlackLining from EMS, CtrlChanges from Ctrl Publishing and EditMarks BlackLining from Kerntiff Publishing Systems.
    We are responsible for EditMarks.
    As I said we do not track changes to objects.
    All the best.
    P.
    ( I am not connect to pluginsworld in any way )

  • How to track changes in inputs in a form?

    Dear Masters,
    I have an update page generated by dreamweaver which works correctly. But I need to implement something else additionally to my application developed in classical asp environment.
    I want to track changes in the form in my update page and save them to another table in ms sql database.
    My update page updates orders table but I want to save changing information to logdetail table in the database.
    One of the main problem is that even if i use a javascript code there is a problem like that if a user chose b from a and b couple and return to change a value again it is a problem. I need the final changing info.
    Another problem is that even if i determine the changing inputs (textfields and list/menus)  how can i insert in to logdetail table?
    Because my form updates order table when i press submit button. How can i do that?
    If someone can help me about that i  would be gratefull
    thanks in advance
    Ces

    The best way would be to create a trigger in the database that would update the history table whenever the data was changed. The next best would be to use a stored procedure. I would not try to do this with server side scripting.

  • How to track changes in DataTable rows?

    Hi,
    I'm wondering what are you using to track changes in datatables. As far as I can tell, there is no way to know what editable componentes in each row have been modified. That forces you to clone() the objects in the rows to compare them after the user submits the form.
    This works without problems, but somewhat I feel it's dirty. What approach are you using ?
    Best regards,
    - Juan

    I have not tried that. But you could wire a value change listner to track what is changing. Or do do what you are doing now. Or wait for SDO (service data object) to become part of J2EE specs (coming soon)

  • Using MDM Web UI for Tracking Changes in MDM with SQL

    Hi
    Does any one have Step to step document on How to Generate MDM Web UI for Tracking Changes with SQL Server.
    we are using SAP Netweaver Composition Environemnt 7.1,SAP MDM 7.1and Micorsoft  Sql Server 2008.
    I found few blogs and documents in SDN, but all of them were not with Composition Environment Version 7.1.
    Already i activated Change Tracking in SAP MDM Console and i am able to see the changes to Field values in SQL with Select Queries.
    If any one have please forward me.
    Thanks in Advance.
    Thanks
    Sowseel

    Hi
      you can Write SQL query to check below is Example to check
    SELECT [Id]
          ,[EntryType]
          ,[EventTime]
          ,[EventId]
          ,[UserPermId]
          ,[TableId]
          ,[FieldPermId]
          ,[RecPermId]
          ,[AttrPermId]
          ,[QFieldPermId]
          ,[LinkId]
          ,[Rating]
          ,[UserName]
          ,[TableName]
          ,[FieldName]
          ,[RecordName]
          ,[Locale]
          ,[OldValue]
          ,[NewValue]
          ,[SizeRest]
          ,[Rest]
          ,[ParentTableId]
          ,[ParentRecId]
      FROM [PRRepositoryNAME_Z000].[dbo].[A2i_CM_History]
    this query will used in web application where you are implementing change Tracking
    Thanks

  • Track changes on 'Z' tables

    Hi,
    We have a requirement that to track changes on our Z tables. Could any one help me in process of doing this ?
    Thank you,
    Surya

    HI,
      U Read follow this for clarifies u r doubt..........
    As with business objects, we recommend that you activate the logging of changes to table data for those tables that are critical or susceptible to audits. (See the SAP – Audit Guidelines R/3 FI, in Section 4.3.5, for examples of important tables. This document is available at
    http://www.sap.com/germany/aboutSAP/revis/infomaterial.asp. You must also explicitly activate this logging. Note the following: 
    ·        You must start the SAP System with the rec/client profile parameter set. This parameter specifies whether the SAP System logs changes to table data in all clients or only in specific clients. We recommend setting this parameter to log all clients in your productive system.
    ·        In the technical settings (use transaction SE13), set the Log data changes flag for those tables that you want to have logged.
    If both of these conditions are met, the database logs table changes in the table DBTABPRT. (Setting the Log data changes  flag only does not suffice in recording table changes; you must also set the rec/clientparameter.)
    You can view these logs using the transaction SCU3.
    Although we do deliver pre-defined settings, you generally have to modify them to meet your own requirements. Use the report RSTBHIST to obtain a list of those tables that are currently set to be logged. Use transaction SE13 to change the Log data changes flag for these or other tables.
    For more information, also see SAP Notes 1916 and 112388.
    regards,
    sudheer.

  • How to use repadmin /showchanges to track changes to determine growth contributors on NTDS.dit

    I am trying to use repadmin with showchanges option to track changes in domainDNS partition. I want to confirm if DNS records are repeatedly getting re-registered as per  http://support.microsoft.com/kb/2548145. What should be the procedure for this?
    I have referred to http://technet.microsoft.com/en-us/library/cc811562%28v=ws.10%29.aspx under the section-"Compare changes occurred to configuration partition over a period of time" can same be applied to check DNS partition?
    When I execute repadmin /showchanges "CN=DomainDnsZones,DC=domainname,DC=com" I get following error
    Repadmin experienced the following error trying to resolve the DSA_NAME: CN=Doma
    inDnsZones,DC=domainname,DC=com
    If you are trying to connect to an AD LDS instance, you must use <server>:<port>
    If you are trying to connect to an AD LDS instance with wildcarding support, you
     must use the /homeserver option.
    Error: An error occurred:
        Win32 Error 8419(0x20e3): The DSA object could not be found.
    Could you please advice on procedure and command options that I should use for this?

    Use:
    repadmin /showchanges CN=DomainDNSZones,DC=DomainName,DC=com /cookie:output.txt
    Refer to below article for more information:
    http://technet.microsoft.com/en-in/library/cc773062(v=ws.10).aspx
    - Sarvesh Goel - Enterprise Messaging Administrator

  • MacBook Air + Microsoft Word + Track Changes = nightmare

    I work part-time as an editor.  I use Microsoft Word on my MacBook Air and while I love my Mac for a million other things, it absolutely ***** when it comes to using Microsoft Word in Track Changes mode.  After just a little editing, the program crashes.  It's constant, it's regular, and it's a total nightmare.  How can I best get around this problem without having to use a PC to do my editing?  

    I'd recommend reinstalling Office, then. I use Word of Mac '11 (same version) without any issues working with track changes. I will say that it can sometimes be a bit sluggish (the application) as the document ages and the amount of changes that occur but never once has the application locked up entirely, crashed or quit on me.

  • CIM_ERR_FAILED: No object manager started (application stopped)

    Dear all,
       I hit thie problem when i try to import the development configuration in my NWDS.
    CIM_ERR_FAILED: No object manager started (application stopped)
    com.sap.lcr.api.cimclient.LcrException: CIM_ERR_FAILED: No object manager started (application stopped)
         at com.sap.lcr.api.cimclient.SimpleResponseAnalyser.raiseExceptionOnError(SimpleResponseAnalyser.java:120)
         at com.sap.lcr.api.cimclient.SimpleResponseAnalyser.getIResult(SimpleResponseAnalyser.java:53)
         at com.sap.lcr.api.cimclient.CIMOMClient.sendImpl(CIMOMClient.java:215)
         at com.sap.lcr.api.cimclient.CIMOMClient.send(CIMOMClient.java:147)
         at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstancesImpl(CIMOMClient.java:436)
         at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstances(CIMOMClient.java:740)
         at com.sap.lcr.api.cimclient.CIMClient.enumerateInstances(CIMClient.java:983)
         at com.sap.lcr.api.sapmodel.JavaCIMObjectAccessor.enumerateInstances(JavaCIMObjectAccessor.java:211)
         at com.sap.lcr.api.sapmodel.SAP_DesignTimeConfigurationAccessor.enumerateInstances(SAP_DesignTimeConfigurationAccessor.java:168)
         at com.sap.ide.eclipse.component.devconf.DevConfManager$3.run(DevConfManager.java:507)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.sap.ide.eclipse.component.devconf.DevConfManager.listRemoteDevConfNames(DevConfManager.java:500)
         at com.sap.ide.eclipse.component.wizard.LoadDevConfPage.fillTable(LoadDevConfPage.java:225)
         at com.sap.ide.eclipse.component.wizard.LoadDevConfPage$5.widgetSelected(LoadDevConfPage.java:281)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.jface.window.Window.runEventLoop(Window.java:583)
         at org.eclipse.jface.window.Window.open(Window.java:563)
         at com.sap.ide.eclipse.component.provider.actions.DevConfNewAction.run(DevConfNewAction.java:46)
         at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:229)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1391)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
         at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:286)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:795)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:602)
    anybody please advice how to solve it? i need to upload my application to the track. thank you

    This message means that your NWDS can not access the SLD server.
    Please check the server that you have entered in the preferences of the NWDS. You need to enter the SLD server (not NWDI server) there.
    Another possibility might be that your SLD server is down.

  • Tracking Changes - Deleted Images

    When deleting a floating image while tracking changes, gray bubbles with a slash mark through them appear where the image was. Is there a way to get rid of them while still tracking changes? They're an annoyance, especially when I try to insert and align new images.
    Thanks!

    Pause tracking while you do the floating object delete. You can always add a comment regarding the deletion.
    Jerry

Maybe you are looking for

  • .xlsx files not opening in Quick View on iPad

    I am having trouble viewing some .xlsx files in Quick View on an iPad 3.  When I attempt to open them, Quick View loads, but I only get a gray screen that displays the file name, file size, and "Open Office XML spreadsheet." I have tried multiple .xl

  • Pc -- laptop music transfer-going to uni in 48 hrs,pls help!

    Because I've got a new laptop I need to transfer the music stored on my PC to it. Ordinarily I would just use my iPod but its had to be sent off for repair, and problems with delivery mean it won't get until after I have left- hence me transferring i

  • How can I create a resettable 50-Pulse Counter?

    Hello,  I am trying to make a ressetable 50-pulses counting.  My counter is working fine and I can detect when it reads 50, but I can't reset the counter to 0.    Thanks!  Attachments: ressetable counter.jpg ‏143 KB

  • Issues with BEx Reports in SAP Enterprise Portal

    Hello Experts, I am facing issues with BEx reports integrated in portal. Below are more details: Scenario 1: Execute a BEx report in the portal, save it in 'My Portfolio' using 'Save As' button. Now open the saved report from 'My Portfolio'. Below is

  • Unable to use Periodic as a View frequency in EPMA

    Setup: we have recently configured an EPM 11.1.2.1 environment and have migrated over two HFM applications from current production system. Both applications are accessible from within EPM Workspace. I have "Transformed" the classic applications to EP