Need toughts on approach. Client moving to Maconomy/Business Objects

Post Author: klokhammer
CA Forum: General Feedback
Hi.On of our important clients are most likely to migrate between economy systems within the next 9 months. Case as follows:
We have developed a budgeting/forecast and reporting system for a certain market/company. The solution is based on a Microsoft SQL 2000 database/server with Microsoft Access as application interface. The solution is integrated and gets actual figures from the economy system Aspect on a IBM iSeries (AS400) system. The "edge" of the system lies in sophisticated budgeting/forecast routines, the report module is rather poor....
The client is now most likely to migrate to Maconomy as the new economy system, and Maconomy AnalytiX as the new BI system (which I understand uses Business Objects.)
We are new to Business Objects and need general recommendations on what level we should try to integrate on. Should we "ditch" all the development done in Access and build a new solutions through Business Objects, keeping all the business logics, but not the interface?
Should we try to integrate on a database level, keeping the interface in Access (for budgeting/forecast), and exporting data into Business Objects to allow reporting through Maconomy AnalytiX?
As you most likely have understood, my knowledge about Business Objects are pretty poor. But please try to give me your thoughts on how we should move along, and what kind of "standard" considerations we must have in mind.
Kind regardsklokhammer

Post Author: jsanzone
CA Forum: General Feedback
klokhammer,
I checked out Macanomy's web site and searched for references to Business Objects, and sure enough it is mentioned here and there.  What it sounds like is that Macanomy has developed some "Macanomy Standard Reports" using BusObjects, so if you want these nifty Macanomy reports available to you, you buy the Macanomy product, which is bundled w/ BusObjects, and voila you have the reports.  It sounds like a winning strategy.  On the other hand, in order to get this type of capability, an organization would have to hire a staff to purchase and install Business Objects, then the staff would have to understand the financial database that the client has established and populated, and then the staff would have to set about building the reports that are needed.  With Macanomy, it seems that you get the whole kit and kaboodle in one swoop, which is good for an organization providing that it is on the same wave-length as Macanomy.  In regards to your question about what to do with your existing infrastructure, this is a call only you and your client can make.  In IT, it's always about the data and how it is used.  Peeling back the onion a bit, the process works like this:  in order for the Macanomy reports to work, the report must be properly built and it must read from a "universe", which is a BusObjects term for defining the interface between the user and the database (the meta data process).  In order for the universe to exist, it must be built by a "Universe Designer".   The Universe Designer must have an intracate knowledge of how every table in the database will be used to support the reports that the end-user wants to have (either pre-canned (standard) or ad hoc capability).  The database is still a critical piece, and reviewing the Macanomy offering I have a funny feeling that they come in with their own database structure and universe, which makes their process a much quicker install.  The downside, as it appears to me, is how you would migrate your existing data into the Macanomy structure (this goes back to the two parties being on the same wavelength).  I think in your case it's going to be a matter of ditching your database structure in MS SQL 2000 and Access, and adopting the Macanomy structure, but this may be more painful to do than any one at this point realizes.  It sounds like you need to continue arming yourself with knowledge before making any final decisions.  Good luck, and perhaps keep all of us posted on your experiences.

Similar Messages

  • Is there any need to create schema in unvierse designer of business objects

    HI this is sridhar
    is there any need to create schema in unvierse designer of business objects xi r2,  when i integrated sap bi data into business objects,i,e i have fetched sap-bi/bw data to business objects universe
    please help me

    I don't see what is wrong with
    <jsp:useBean id="tabsConfigurator" class="com.mypackage.TabLayoutConfiguratorImpl"/>
    The class has a no-args constructor at least. The useBean tag will work with it. Probably.
    But still, some code just can't be translated into scriptless JSTL.
    Calling methods which take parameters is one of those things.
    In this case you probably want to write a custom tag to work with your tabs
    I would probably look at using custom tags like this:
    <%@ taglib prefix="tab" uri="/WEB-INF/TabLayout.tld"%>
    // tab to create the configurator.
    // either export it as a var, or use other tags only nested within this one
    // so you can get access to the configurator.
    <tab:configure var="configurator">
      <tab:render configurator="${configurator}" tab="${tab}">
    </tab:configure>I don't know exactly what the scriptlet code will be doing. But I think a custom taglib would be the only way to eliminate scriptlet code that you have here.

  • Needed reviews on a bo book-Integrating SAP Business-Objects XI 3.1 tools

    Hi all,
    I am an SAP-BI consultant and I wanted to learn BO. I came across a book by the name of
    Integrating SAP Business-Objects XI 3.1 tools with SAP netweaver. I wanted to know if the
    book starts from the basics of BO or it requires the basic knowledge of BO first..Please advice.
    Thanks in advance.

    Hi Shyan,
    Could you please let me know where i can get this book. Is there any online Link for this book.
    Aappreciate your help on this.
    Thanks
    Rao.

  • Bug with Business Objects 3.1 Client installation. Very annoying indeed.

    I have faced a few issues while developing with the Client installation (which includes the Client Development SDK) of business objects 3.1.
    Some of the code just don't work with the client installation. They give Invalid cast exceptions. The same code will work fine with the server installation.
    For a simple example, consider the following straightforward code to set the destination-
    String query = "Select SI_DEST_SCHEDULEOPTIONS, SI_PROGID "
              + " From CI_SYSTEMOBJECTS Where SI_PARENTID=29 and "
              + " SI_NAME='CrystalEnterprise.DiskUnmanaged'";
            InfoObjects destinationInfoObjects = infostore.Query(query);
            InfoObject infoObject = destinationInfoObjects[1];
            //Set the options for the disk unmanaged destination
            DestinationPlugin destinationPlugin = (DestinationPlugin)infoObject;
            DiskUnmanaged diskUnmanaged = (DiskUnmanaged)destinationPlugin;
            DestinationOptions destinationOptions = diskUnmanaged.ScheduleOptions;
            DiskUnmanagedOptions diskUnmanagedOptions = new DiskUnmanagedOptions(destinationOptions);
            diskUnmanagedOptions.DestinationFiles.Add("C:\\");
            diskUnmanagedOptions.UserName = "your_username";  //Change these according to your logon settings.
            diskUnmanagedOptions.Password = "your_password";
            schedulingInfo = publication.SchedulingInfo;
            schedulingInfo.Destination.SetFromPlugin(diskUnmanaged);
    This code will give an invalid cast exception as follows-
    System.InvalidCastException: Unable to cast object of type 'CrystalDecisions.Enterprise.InfoObject' to type 'CrystalDecisions.Enterprise.DestinationPlugin'.
    This happens at the line -
    DestinationPlugin destinationPlugin = (DestinationPlugin)infoObject;
    Now, this code works fine on a box where the server is installed.
    I have noticed this with a few other areas as well where the code fails with client installation but works on the server. This is really annoying because all the deveopers now have to install the server on their boxes.
    It is actually worse if just the Client Developer SDK is installed (and not the whole client). You would expect that just the SDK installation would be enough for one to do the coding. But doesn't work at all.
    Have others not faced this issue?

    Hi Dan,
    Thanks for your response. However, what I meant by client installation is exactly as what you have said below.
    I start the BusinessObjects Enterprise XI 3.1 Setup, go to custom install, which shows up the following options-
    Client Components
    Web Tier Components
    Server Components
    Database Access
    etc. etc.
    Initially I unselected all, drilled down Client Components and just installed the Developer Components. But the code used to fail with an InvalidCast exception when we used to cast an InfoObject to a Report as following-
    Report report = (Report)infoObjects[1];
    This code used to work fine with earlier installations of business objects.
    This happened with all 3 of us who installed just the Dev components. To get over this we installed the whole Client Components and the above problem got resolved.
    And now we realize that even the whole Client Comp is not enough because it gives the casting problem while doing the destination stuff.

  • S_DEVELOP authorization needed for CRM Web Client in SAP CRM 7.0?

    We implemented an own WebUI component in SAP CRM 2007 and use it in others components (with USAGE).
    After we transport the component in SAP CRM 7.0 we always got an error CX_BSP_DLC_CONFIG_GENERAL_ERR at loading the component. But if we set the permission to SAP_ALL all thing work fine.
    In SAP Note Nr. 1367944 we read:
    "It is not possible to run the CRM Web Client without the S_DEVELOP, activity=03
    authorization because it is needed by the Web Client Framework.
    The S_DEVELOP authorizatin is part of the SAP_CRM_UIU_FRAMEWORK PFCG role, which must
    be assigned to every user."
    "This dependency has been removed in CRM 7.0."
    Do we need to install some other SAP Notes at SAP CRM 7.0?
    Many thanks for advices!
    Handri Gunawan

    Hi Handri,
    I asked my collegue here, who created the note.
    The note is correct, in CRM 7.0 you do not need S_DEVELOP anymomre.
    The error that you have might occur because of another reason.
    Could you track the call stack of this exception?
    And send me back the call stack?
    Regards,
    Steve

  • I have over 200 hours of HD video on 5 different TB Thunderbolt GRaid hard drives. I need to reorganize my projects, moving large files from one drive to another. Advice?

    I have over 200 hours of HD video on 5 different TB Thunderbolt GRaid hard drives. I need to reorganize my projects, moving large files from one drive to another. Advice?

    Do some testing to get your method working right with some less than important footage.
    Copy/paste files where you want then.
    Use the FCE Reconnect feature to tell FCE where the newly copied files reside.
    Make sure the new location and files are working as expected with your Projects.
    Delete the original files if no longer required.
    Al

  • I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    You only need the ODBC driver on each computer. If you are distributing the SQL Toolkit app as an executable and do not install the whole toolkit on each computer, you'll need the SQL Toolkit support files. This is about a dozen files. You can get the list at http://digital.ni.com/public.nsf/websearch/b814be005f9da9258625658700550c75?OpenDocument.

  • Work Folders - Specific Group Policy's that are needed to satisfy domain client security level

    Hi All,
    We have Work Folders successfully set up on our domain. A non domain joined client can connect and gain access to their work folder share without issue.
    I am now in the process of setting up domain connected laptops that will be used by staff. These laptop will have restrictions on them and the users that logon will not have admin privileges.
    The work folder server has the device policies of:
    Encrypt Work Folders
    Automatically lock screen, and require a password
    We are using Windows 8.1 enterprise clients, with the latest patches. If I turn off the "Automatically lock screen...." policy, a domain user can successfully sync their work. If I turn it back on they get the below error:
    "Make sure that your account is an administrator on the PC and that all administrator accounts on this PC have a password."
    I have set the group polices that I believe might effect this message, but have yet to get a successful sync. Could someone give me the exact group policies I would need to set for client to meet the security requirements.
    Minimum password length of 6
    Autolock screen set to be 15 minutes or less
    Maximum password retry of 10 or less

    Hi,
    Work Folders provides the two device policies that administrators can control. The policies are enforced on the Windows 8.1 clients before data sync is allowed.
    The policy settings are not configurable, and they are enforced on the devices running with Windows 8.1 through the EAS Engine.
    Please refer to the article below to troubleshoot the issue:
    Work Folders for Windows 7
    http://blogs.technet.com/b/filecab/archive/2014/04/24/work-folders-for-windows-7.aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Need to set productive client in SAP PI netweaver 7.4

    Dear Experts,
    I need to set new client 100 as productive client in SAP Netweaver 7.4 PI server.
    Please help me finding the link.
    Also i need to patch only Java instance through SUM so how should i proceed in registering system in MOPZ and further steps,please help
    Warm Regards,
    Sumit

    Hi Sumit,
    I need to set new client 100 as productive client in SAP Netweaver 7.4 PI server.
    Please help me finding the link.
    What is the current configuration of Production system and why you want to change the Productive client ?
    Also i need to patch only Java instance through SUM so how should i proceed in registering system in MOPZ and further steps,please help
    Please configure SAP solution in solution manager for your Landscape. Post this use MOPZ functionality to generate required stack file.
    Hope this helps.
    Regards,
    Deepak Kori

  • JMS, Help needed in writing a client code with .bindings file

    Some one is keeping a message in MQSeries in their environment. We need to develop a client code, probably a JMSClient, which will consume the messages from the MQSeries. They have given us a ".bindings" file. The following lines of code is used and we are not able to connect to it. Can somebody help us in completing this task?
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.fscontext.RefFSContextFactory");          
    env.put(Context.PROVIDER_URL, "file:///c:/Temp");
    String QCF = "CPS.ECOMM.QCF";
    String TEST_QUEUE_S = "SYSTEM.JMS.D.CPSI.ECOMM";
    initialContext = new InitialContext(env);
    queueConnectionFactory = (QueueConnectionFactory)initialContext.lookup(QCF);
    queueConnection = queueConnectionFactory.createQueueConnection();
    queueConnection.start();
    queueSession = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
    queue = (Queue)initialContext.lookup(TEST_QUEUE_S);
    QueueReceiver receiver = queueSession.createReceiver(queue);
    Message msg = receiver.receive();
    TextMessage txtMsg = (TextMessage)msg;
    String result1 = txtMsg.getText();
    ....

    The .bindings file is part of the structure expected by the RefFSContextFactory in the directory that provider.utl points to.
    Create a directory containing only the .bindings file and point the PROVIDER_URL at the directory.

  • Need to record VO with moving video

    I'm trying to dub a video - I've gotten all the editing done, and I can extract the audio just fine. My plan was to record a new audio track of VOs and simply swap out each clip. However, I'm trying to sync the VOs with the moving "lips" of a sock puppet, which means I need to see the video moving while I'm recording the new audio. Instead, I get a still shot - I can't fake the timing that well. Is there a way to have the video moving while I record audio? The socks and I thank you in advance.

    Peter,
    I assume you're recording using iMovie and clicking on the red record button in the Audio pane.
    The playhead should move and you should be seeing your video as you record.
    What kind of Mac do you have and with what speed processor?
    Matt

  • What type of qustions i need to ask to client before sap fico prject start

    what type of questions i need to ask to client before sap fico project starts
    helo guys
    i am new here as well i am fresher in sap FICO but my pm put me in project
    soon i am going to my clients place
    what type of questions i need to ask , before my sap fico project start
    what type of data i need to prepare AS IS -TO BE & SAP FI/CO BLUEPRINT START.
    GUYS PULL ME
    PLS
    REGARDS
    SUBU

    Hi Subu
    Initially you need to prepare topics wise questions and in the process the data collection should be from 2 sources i.e. Primary - collecting information directly by interacting with the client and the other one is Secondary - from the documents that you collect from the client.
    After formal introduction during the Kick off meeting never directly jump down to interact with the client you need to patiently observe the day to day business process of the client - department wise for the first few days. Do document all the observations that are made by you, this will help you to analyse the gap between the legacy system and std SAP Process.
    The first and the foremost thing is that we need to see on what flatform all the business process relating to Accounting is maintained i.e the software used to store the legacy data.\
    Now I will mention some of the important points that can be used a check list during your interaction with the client.
    1.We are the consultants who need to freeze the Enterprise Structure first and later on the other module consultants will add their respective enterprise elements to the enterprise structure freezed by us. Therefore this process will by itself will take not less than 1 to 2 months. This process is the Typical phase where a lot of interaction/understanding/experience will come into limelight. So be attentive and observe the process throughly, once the Enterprise Structure is freezed and configured we cannot withdraw from the system.
    2. Codification of the Enterprise Elements play a vital role do follow some naming convention. Here coding can be in 3 forms i.e. pure numeric, alfanumeric or pure alphabets.
    3. Identify the chart of accounts that is maintained.
    4. Grouping process of the GL Account According tos Schedule VI of Companies Act 1956
    5. Customer & Vendor Grouping - payment terms maintained - Down payment if applicable - how the memos maintained.
    6.. Collect all the documents relating to Procurement Process right from indent preparation to billing and followed by payment. This is very useful.
    7. CIN plays a very important role regarding this we will have a seperate session in the days to come.
    This is just a beginning and hope this will help you and as the time comes up do feel free to put up questions and I will clarify for the same.
    Regards
    Murali Kanth Natti

  • Error Message from SLD - "Selected client already has a business system..."

    I have successfully created and test a File to IDOC scenario from a File system to ERP ECC 6.0 (client 101, system name sapdbt02)
    Right now, I creating  another File to IDOC scenario for a different file system to the same ERP ECC 6.0
    At the SLD, I would need to create two new Techncial System and Two new Business System.
    However when I creating a Business system for the ABAP Type for the ERP ECC 6.0, when selected the same client and system name of the first scenario that I have done, I got this error message
    "Selected client already has a business system associated, please select a new client or system"
    I am puzzled that I would need to a configure a new client for the same system ID for another FIle to IDOC scenario
    going to the same ERP system
    Please advise.
    Best Regards
    Freddy Ng

    For example:-
    create business system for R3 system in SLD as suggested by stefan. I assume that u have one R3 system which is either sending or receiving data from XI.
    assign the system to ur scenarios, u can use common IDOC/RFC/XI channel for sending data to R3 system.
    Separate R3 business system is required incase u have to send data to different R3 system.
    If u have different files coming from different File system in that case better to create different business service and use them.
    chirag

  • Report works in Designer client, but not after published to Business Objects server

    Has this happened to anyone else?  I have a couple of reports that work perfectly on my pc in the Designer client.  I can export them to whatever format I need, and they work.  When I save them to the Business Objects server, everything appears to be ok.  The thumbnail on the properties tab shows the correct report with a page full of data.  When I preview and when I schedule the report to run, I get incorrect data.  In one case, I get an empty report.  In another case, I get data, just wrong data and way too much of it.  I've got hundreds of other reports that were developed and published the same way that are working correctly.  Any ideas?  Thanks in advance!

    There may be couple of reasons. What is your data source? Verify the database in the report and check it again. Or to do more crosschecking, Create a simple report using the same database and deploy in BOE.

  • Need Ideas for creating and using Custom Business Object

    Hello Guys,
    I am developing an application which uses a Request->Approve->Create approach for creating Purchase documents.
    Now I am a little puzzled about how to make use of the Business Object BUS2014.
    The application I am developing has its own unique 'Request Number'  (say REQID)  which will point to the Request for Creation of a purchase order.
    Whenever a Request is created (from a Z-Tcode) a workflow needs to be initiated and it has to be sent to the approver.
    The Purchase Document will be created once the approver approves.
    Now my confusion here is, if I use BUS2014, the object will be instantiated only during the final step of the workflow. But I need an instance during the beginning of the Requestor ->Approver negotiations as I am playing with events. These events needs an Object_key.
    How should I proceed here?
    Should I create a new logical Business Object like ZPOREQ where I have the above mentioned REQID as the key?
    And should I have an attribute of type BUS2014 inside the custom BO?
    How will I make use of the methods like BUS2014.Create etc which I may need to create the purchase document?
    Any small direction will be a huge help for me to get used to this wilderness.

    Hi,
    You should continue with the ABAP class idea. The business objects are kind of "obsolete" already, and if there is a need to create a new "object", ABAP classes are the way to go. Business objects are still useful, but I normally use them only when an existing standard business object fulfills the requirements (possibly with slight additions) which is almost never. 
    From my point of view you can use the existing class. Depending on the circumstances I normally have just one class that I use for both workflow and the possible other functionality that is required, but you have to understand that I have this goal in my mind already when starting the development process. As your class most probably has many useful features already (such as you have the header and item data as attributes etc. (if I understood correctly?), these are also useful in in workflow (class attributes will be available in WF container etc.). 
    If you are hesitant to use the same class directly in your workflow, you could also create a new class ZCL_REQUEST_FOR_WF (with the workflow interface), and then simply add your existing class ZCL_WF_REQUEST as an attribute to this new class. Then this new workflow class could include the pure workflow stuff, and your existing class the non-workflow stuff. But this most probably will not make much sense - just implement the if_workflow interface in your existing class (this is just one possibility that you might consider.)
    Regards,
    Karri

Maybe you are looking for

  • CS3 Uninstaller won't run in Lion - how to uninstall manually?

    I migrated from a Snow Leopard Mac to a new Lion Mac (keeping the same username and keychain) and CS3 Web Premium runs fine, except Dreamweaver won't launch (just a blank dialog). I want to uninstall just Dreamweaver (if possible) so I can try reinst

  • Sound blaster audigy 2 zs platinum sound probl

    Ok So let me give you the specs on my computer first,?Windows xp home editionAbit IN9 32 MAX Mobo2 Gigs corsair xms ram2 8800ultra sli gpusLogitech?z-5300 SpeakersSound blaster audigy 2 zs platinum sound card2 Samsung 500 gig HD?I dont believe that m

  • Importing MPEG-2 problems

    I am trying transfer a VHS tape onto a DVD. I have a clip from my WinXP PVR in MPEG-2 format that I am able to open with Quicktime (after buying the separate codec grrr) but it will not import into iMovie. iMovie briefly flashes the "Importing" scree

  • When selecting one cell, multiple cells highlight

    When I am working with Excel 2010, I try to select a single cell however multiple cells get highlighted. It will highlight usually the next 5-6 cells in the same row. It occurs randomly on random cells, but happens about 25% of the time. If I click t

  • Why when it has less apps than my iphone does my ipod touch say it got 4gb on it when synced to itunes ect

    why is my ipod touch showing when synced to itunes that it has 4gb of apps when there are 9 apps on yet my iphone that has the same apps and lots more says it has less than 1gb, can anyone help please as cannot put any music on the ipod touch. thanks