Data model recommendation

I'm working on modeling some database tables for several
existing small
applications that are on three different access databases
that I'm now
supporting. The three access databases aren't normalized and
do not run
efficiently. So, I'm migrating these databases under one
enterprise
solution.i.e. SQL Server
The three databases are used to hold "latest news" or "what's
new" items for
three separate websites, but really fall under the same
umbrella. The three
sites are all within the same company and all link to one
another and have
many of the same features. The "latest news" areas hold the
following
pieces of data:
Title
Description
Full-length article of text
or
a link to a PDF file, word document, excel spreadsheet or zip
file
or
a URL to an existing page within the site that was recently
updated
So, the format of the "latest news" section will include
"The Title of the item"
"A brief description of the item"
and a "link to read the full article of text" or "a link to
the file" or "a
link to an existing page in the site"
I'm looking to construct the database using the following
tables:
CREATE TABLE LatestNews
id int [IDENTITY (1,1)][NOT NULL][PRIMARY KEY],
title varchar(50) [NOT NULL],
description varchar(100) [NOT NULL],
bodytext varchar(8000) [NULL], --what data type can I use to
hold more than
8000 characters?
Filename int [NULL],
URL int [NULL],
Group int [NOT NULL]
CREATE TABLE Filenames
id int [IDENTITY (1,1)][NOT NULL][PRIMARY KEY],
filename varchar(100) [NOT NULL],
CREATE TABLE HyperLinks
id int [IDENTITY (1,1)][NOT NULL][PRIMARY KEY],
URL varchar(100) [NOT NULL],
CREATE TABLE Group
id int [IDENTITY (1,1)][NOT NULL][PRIMARY KEY],
groupname varchar(50) [NOT NULL],
I'm going to give each group manager their own admin page to
add their
"latest news" items, update items or delete items.
I was interested in any suggestions or problems with the
database structure
I'm setting up. Any thoughts on ways to improve it, normalize
the database
properly and perform in the best way possible.
If I can provide any additional information, please let me
know.
Thanks in advance for any help and suggestions.

Hello Anzy.
why do I need
data:lo_myclas type ref to cl_irm.
lo_myclass = wd_comp_controller->lo_irm .
Could'nt I acess the methods also directly via
wd_comp_controller->lo_irm->method(  )   ?
Is it just a shorter way to write it down?
Kind regards.
Carola

Similar Messages

  • Some observations on my first use of Data Modeler Beta

    First of all, I can see this tool has a lot of promise.
    I hope Oracle keeps at it, it could turn into a real winner if all the features I see being worked on mature.
    Thanks!
    Here are a few observations on things that I found non-obvious or tedious to do.
    1. When designing an entity, I want to give it a name, a definition, attributes and keys. I want that process to be quick and require the minimum amount of mouse-clicking/navigation fiddling as possible. The current way of defining the attribute's datatype and size is painfully slow. I have to click to get a pop-up. Then I have to click to choose from a set of categories. Then I have to click on a dropdown list. If I try to use the down-arrow on the dropdown list, it works, but not if I go past the one I want. The up-arrow won't take me backwards in the list, so more clicking. It's just a nasty, slow interface to do a simple task that I have to do a thousand times in a data model. If I need to change the size of something, back I go thru the entire process all over again.
    That makes it doubly slow to work in the most natural way, which is to list the attributes and the datatypes, then come back and refine the sizes once the model is maturing and relatively stable.
    2. Adding an additional attribute requires a mouse click instead of a down-arrow. That means I have to take my hands off the keyboard to add a new attribute. Maybe there is some short-cut key that does that, but I have better things to do than memorize non-standard keyboard mappings. Make the down/up arrows works as they should.
    3. Adding the comment that describes the attributes is not quite as slow, but still requires more keystrokes/mouse movements than it should. It's hard enough to get developers to document their attributes, don't discourage them.
    4. I can't see the list of attributes, data types, sizes, key/mandatory settings, and the comment at one time while editing the entity. Makes it harder to grasp what all the attributes mean at a glance, which slows down the modeling and the comprehension of an existing model.
    5. All the entities I created had primary keys with columns in them. But when I tried to have it build a physical model, it complained that some relationships had no columns in them. For the life of me, I couldn't figure out how to fix that. Never had that problem in any other case tool.
    6. Getting it to generate DDL was awkward to find. Make it something obvious, like a button on the toolbar that says "Generate DDL".
    7. Apostrophes in the Comments in RDBMS are not escaped, so the generated DDL won't run.
    8. For the ease of use/speed of use testing on high-volume key tasks, make the developers do the task 1000 times in a row. Make them use long names that require typing, not table A with columns c1, c2 and c3. Long before they get to iteration 1000 they will have many ideas on how to make that task easier and faster to do.
    9. Make developers use names of things that are the maximum length allowed. For example, for a table name in oracle, the max length of the name is 30 characters. The name of one testing table should be AMMMMMMMMMMMMMMMMMMMMMMMMMMMMZ. That's a capital A followed by 28 capital M's and a capital Z. For numbers, use the pattern 1555559. If the developers can't see the A and Z or 1 and 9 in the display area for the name in the default layout for the window, they did the display layout wrong. For places where the text can be really long, choose a "supported visible length" for that field and enter data in the pattern AMMMMMMMMMMMMMMMQMMMMMMMMZ, where Q is placed at the supported visible length. if the A and Q don't show, the layout is wrong.
    10. SQL Developer has quite a few truly gooberish UI interaction designs and I can see some of that carrying over to the Data Modeler tool. I really recommend getting a windows UI expert to design the ui interface, not a java expert. I've seen a lot of very productive windows user interfaces and extremely few java interfaces suitable for high-speed data entry. Give the UI expert the authority to tell the java programmers "I don't want to hear about java coding internals - make the user interface perform this way." I think the technical limitations in java UIs are much less than the mindset limitations I've seen in all to many programmers. That, and making the developers use their code 1000 times in a row to perform key tasks will cause the UI to get streamlined considerably.
    Thanks, and keep up the good work!

    Dear David,
    Again thank you for your valuable and highly appreciated feedback. Find included a more elaborated answer to your observations:
    *1. When designing an entity, I want to give it a name, a definition, attributes and keys.*
    In the new Early Adopter Release, a "SQL developer like" property window has been added for Entities and Tables. For each attribute/column you will have the ability to add name, datatype, Primary Key, Mandatory and comment from one and the same screen
    *2. Adding an additional attribute requires a mouse click instead of a down-arrow.*
    An enhancement request has been created
    *3. Adding the comment that describes the attributes is not quite as slow, but still requires more keystrokes/mouse movements than it should.*
    In the new Early Adopter Release, a "SQL developer like" property window has been added for Entities and Tables. For each attribute/column you will have the ability to add name, datatype, PK, M and comment from one and the same screen
    *4. I can't see the list of attributes, data types, sizes, key/mandatory settings, and the comment at one time while editing the entity. Makes it harder to grasp what all the attributes mean at a glance, which slows down the modeling and the comprehension of an existing model.*
    See former answers. For meaning of attributes you can also use the Glossary and Naming Standardization facilities: see Tools Option menu, Glossary and General Options for naming standards
    *5. All the entities I created had primary keys with columns in them. But when I tried to have it build a physical model, it complained that some relationships had no columns in them. For the life of me, I couldn't figure out how to fix that. Never had that problem in any other case tool.*
    A Bug report has been created. Issue will most probably be solved in the nexr Early Adopter release
    *6. Getting it to generate DDL was awkward to find. Make it something obvious, like a button on the toolbar that says "Generate DDL".*
    An enhancement request has been created.
    *7. Apostrophes in the Comments in RDBMS are not escaped, so the generated DDL won't run.*
    A bug report has been created
    *8. For the ease of use/speed of use testing on high-volume key tasks, make the developers do the task 1000 times in a row. Make them use long names that require typing, not table A with columns c1, c2 and c3. Long before they get to iteration 1000 they will have many ideas on how to make that task easier and faster to do.*
    I aplogize, but I don't understand clearly what you want to say with the use/speed of use here.
    *9. Make developers use names of things that are the maximum length allowed.*
    Our relational model is for use for not just Oracle, but also DB2, SQL Server and in the future maybe other database systems. Whicjh means that we can't taylor it to just one of these database systems. However you can set maxinum name lenghts by clicking right on the diagram and select Model Properties and here you can set naming Options. Here you can also use the Glossary and Naming Standardization facilities: see Tools Option menu, Glossary and General Options for naming standards
    *10. SQL Developer has quite a few truly gooberish UI interaction designs and I can see some of that carrying over to the Data Modeler tool.*
    Fully agree. As you will see in our next Early Adopter release we have started to use SQL Developer like UI objects.
    Edited by: René De Vleeschauwer on 17-nov-2008 1:58

  • CM14 BI Publisher - modifying an existing Data Model, the Graphic View in Query Builder does not display

    I am trying to edit the default forms/reports that come with CM14, trying to edit the data model, data set, (to get to the old Infomaker style graphic view) , the Query model does not display (error the list of tables is too long..) Oracle tell me the limit is 60,  there are not 60 tables referenced in any CM report.
    Does this Query builder view work at all on any report?
    (bigger question, we are moving from CM12, should we move to CM13 which works with infomaker?)
    Thanks,
    Paul L

    Kurt, thanks for your replies.
    A couple of notes/clarifications.
    1.     You are correct that BI works better in Firefox--I have observed issues with the BI display when using IE.  I would recommend using Firefox too.
    2.     You are correct about the way to get to the Query Builder to see a graphical view of data tables.  There are basically two issues with this that I mentioned, but will re-iterate:
    a.  If you have an EXISTING query in the data set, then click the "Query Builder" button, this will remove the existing query that's there, it will NOT display the existing query in the query builder.  Query Builder works only to create a NEW query from scratch.
    b.  Query builder is limited to selecting 60 fields max in your query.  If you are creating a large report with many tables, you may find that 60 fields is not enough.  For that you will have to work in the SQL edit screen rather than using the query builder.
    I would impress on anyone developing CM14 reports that they become familiar with the database schema and relationships to avoid problems when developing your BI reports.  You should be able to find the tables and joins documentation in the knowledgebase.

  • Cannot edit data model after upgrading to 10.1.3.4.1

    Hi,
    I've recently upgraded from 10.1.3.4 to 10.1.3.4.1 running under Tomcat 6.
    But now I cannot work with data models anymore. When I click on 'New' while Report > Data Model is selected, a new model is created but I cannot work with it.
    While editing an existing report, clicking on a data model does nothing. In IE8, I can see the following error message:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)
    Timestamp: Sun, 13 Sep 2009 10:12:06 UTC
    Message: 'ds_fixed_schema' is null or not an object
    Line: 746
    Char: 5
    Code: 0
    URI: http://...:8080/xmlpserver/js/xdoeditor/datasetpanel.js
    Any help would be greatly appreciated.

    I dont think BIP is certified on IE8 yet. would recommend either dropping back a version or using FF
    Tim

  • Beginners guide to PowerPivot data models

    Hi,
    I've been using PowerPivot for a little while now but have finally given into the fact that my lack of knowledge about data modelling is causing me all kinds of problems.
    I'm looking for recommendations on where I should start learning about data modelling for Powerpivot (and other software e.g. Tablea, Chartio etc). By data modelling I mean how I should best organise all the data that I want to analyse which is coming fomr
    multiple sources. In my case my primary sources right now are:
    Our main MySQL database
    Google Analytics Data
    Google Adwords data
    MailChimp data
    Various excels
    I have bought two books - "Dax Formulas for PowerPivot" which is great but sparse on data modelling information and "Microsoft Excel 2013 - Building Data Models with PowerPivot" which looks excellent but starts of at I believe too advanced
    a level.
    Where should a beginner with no experience of data modelling, but intermediate/advanced experience of Excel go to learn skills for PowerPivot Data modelling?
    By far the main issues is that our MySQL databases are expansive and include hundreds of tables across multiple databases and we need to be able to utilise data from all of them. I imagine that I somehow need to come up with a intermediary layer between
    the Databases and Powerpivot which extracts and flattens the main data into fewer more important tables, but would have no idea how to do this.
    Also to be clear, I am not looking at ways of modelling the MySQL database itself - our developers are happy with the database relationships etc, it just the modelling of that data within PowerPivot and how to best import that data.
    Recommendations would be absolutely brilliant, its a fantastic product but right now I'm struggling to make the most of it.

    Thanks for the recommendations, I am aware of the last two of those and
    http://www.powerpivotpro.com/ in particular has proved very useful (TechNet less so). 
    I will take a look at SQLBI in more detail but from a very casual browse it seems like this too is targeted more at experienced users. There paid courses may definitely prove useful though.
    I think what I'm getting at is that there are probably an increasing number of people like myself who have fallen into PowerPivot without a traditional background in databases and data modelling. In my case I have a small business of
    15 employees and we were using Excel and PivotTables to do some basic analysis before soon discovering that our data was too complicated and that I needed something. PowerPivot definitely seems to solve that issue and I'm having much
    better success now than I was without. I also feel quite competent with DAX and actually building tables from the PowerPivot data model.
    What I'm lacking in is the very first step of cleaning and preparing raw data for import and then importing it into Powerpivot and setting up a efficient model. I have to be honest that your links above did bring
    PowerQuery to my attention and it seems like a brilliant tool and one of the missing links. I would however still like to see a beginners guide to data import and model set-up as I don't think I've yet come across one either in book or
    online form which explains the fundamentals well.
     

  • Issue in creating a custom data model from BP

    Hi Team
    We have a requirement to create a custom data model by copying data model BP. I have successfully created new data model ZP . I have copied the UI for searching from BP. Issue is when i search a business partner  ideally it should not display any entries because i have just created the data model, But it is taking entries from BP and getting displayed. Please let me know how to map data model to search UI. I dont see option USMD_MODEL here

    Hi Imran,
    actually that is not an issue but a designed feature. I'm afraid that you need to re-think your whole project. The explanations is rather simple:
    Data model BP in MDG is a so called Re-Use Area data modell. This means that active data (records that are currently not stored in a change request) are saved in existing SAP ERP data base tables like BUT000 for the business partner master data and LFA1 or KNA1 for Vendor or Customer master data.
    If you copy data model BP to ZP you still refer to the same active area. You will always find the same active objects - no matter which data model you are actually using for the user interface. The only difference wil occur for objects being currently processed in a change request. In that case a separation between BP and ZP is possible. But this won't help to solve your issue.
    From SAP side I can only recommend not to copy BP but to find a different way of integrating your project needs into BP.
    Best regards
    Michael

  • Domains usage in SQL Developer data MODELER

    Hi,
    I'm trying to understand how to use Domains in Oracle SQL Developer Data Modeler. We use version 3.1.3 .  before I used Toad Modeler  where domains are just part of your main design.
    Oracle data modeler has some different concept.
    let's assume I'm working on 2 designs:  DesignA and DesignB that include relational models.
    DesignA and Design B should use domains but list of domains in design A is very different than in design B.
    Default domain file is located on c: drive where SqlModeler is installed. It is obviously unacceptable , so I need to change Default System Type directory in preferences.
    And of course I want to have different domain directories for DESIGN A and DESIGN B.
    So when I open design A then I changed   Default System Type directory  let's say to x:\AAA.   Then i close design A and open Design B and change Default System Type directory to x:\BBB
    I checked folders AAA and BBB and they  have necessary XML files there:  defaultdomains.xml, defaultRFDBSSites and so on....
    Now questions:
    can I rename defaultdomains.xls to something else like AAAdomains.xls?  Domain administration can edit any domain file with any name , but how  can I associate certain domain file with my design?  My wish , when I open my design , then corresponding domain file will be open automatically.  Is it possible?
    If I open 2 designs in Sql Modeler and switch between designs  then corresponding domain files should be changed automatically as well.  Currently   I shouldn't forget to change default System Type directory every time when I switch models.  Is it the only way to handle it?
    Thanks
    vitaliy

    Hi Vitaliy,
    We use version 3.1.3
    I recommend always to use the latest version. If you don't want to use beta (DM 4.0 EA is out) you can use DM 3.3.
    Otherwise Oracle SQL Developer Data Modeler supports two types of domains:
    1) DM installation domains - those in file defaultdomains.xml
    2) Design level domains - they are stored in design directories and are visible to particular design only. They can be created in following ways:
    2.1 Manually - there is a property "Domains file" and you id it's not set "defaultdomains" domain will become design level domain and will be stored in file with provided name (without .xml extension)
    You can change later the file for design level domains, however you cannot change file for domain already in defaultdomains.xml.
    2.2 Using types to domains wizard you can generate design level domains
    2.3 Design level domains are created during import of  DDL files (controlled in preferences)
    2.4 You can import domains from specific file with domains using "File>Import>Domains" - you need to rename the source file if it's named defaultdomains.xml otherwise you'll get domains as installation domains
    If the list with domains is too long you can define  a list with preferred domains (or/and logical types) in "Preferences>Data Modeler>Model" and you can use shorter list in Table/Entity dialog if check "Preferred" check box next to "Type:" combo box.
    If I open 2 designs in Sql Modeler and switch between designs  then corresponding domain files should be changed automatically as well
    If you open 2 designs in one instance of DM they will use the same file with default domains i.e. you'll lose domains in one of design depending of setting for "system data type directory". You need to go with design level domains.
    Philip

  • Data Modeler V3 EA1 versus V2.0?

    I'm working on a large maintenance project to customize a number of complex applications (~500 tables in total) that have their logical and physical models stored in Designer 10g. If we were to migrate to SQL Developer Data Modeler for this project, would version 2.0 be suitable? Or is there enough missing functionality (as compared to Designer) that would make it unsuitable for a large, complex maintenance project?
    I assume that version 3.0 EA1 is not ready for use on a mission-critical project. Correct?
    I'd appreciate any suggestions that you might have.
    Thanks.

    Hi,
    you can try both versions. Data Modeler 3.0 is in beta phase and it's not recommended to use it for production. There is a bug in 3.0 EA1 and you cannot import from non versioned Designer repository.
    v. 3.0 comes with integrated versioning support and improved functionality in different areas including import from Designer repository and management of large diagrams.
    Philip

  • How to consume data model adf library in view project?

    Hello,
    I am using Jdev 11.1.1.6.
    I have a Jdev workspace containing business component (entity objects, view objects and application module exposing the VOs). This workspace is deployed to an ADF Library. This library is packaged with DB connection details.
    I have another Jdev workspace that needs to consume this Data Model ADF Library. This workspace is basically just the view layer (no business components at all).
    I have added the Data Model ADF Library to it's view project and it is showing application module and VOs under Data Controls.
    My question is : How is this view project going to connect to DB at runtime?
    Can it use the connection from packaged Data Model ADF Libabry? If yes, how?
    or Do I need to create a business project under this view workspace, just for connection purpose? if yes then what is the use of including connections during ADF Library creation?
    Thanks,
    Jai

    Hi,
    it will use the connection in the ADF library. I recommend though that you not save database connect information in the ADF library. Instead:
    - define the ADF BC model to use JDBC data sources
    - In the ADF library, configure it to only contain the data source name
    - In the view project (the workspace) configure the database connection exposed by the library
    When the library is imported, check Application Resources --> Connections and right click on the imported connection name to configure it
    Frank

  • SQL Data Modeler Terms and Definitions

    Hello All,
    I am new to using the SQL Data Modeler and I was wondering if someone could point me to a list of definitions of terms that are used throughout the SQL Data Modeler interface. The help documentation does not seem to define most of the terms that are used in the product.
    Thanks in advance,
    Craig

    The Oracle SQL Developer Data Modeler help and the Data Modeler User's Guide, which shares content with the help, don't contain a glossary or list of terms. If the terms you're looking for are Oracle Database terms (such as definitions of tables and other database objects), the SQL Developer help and its user's guide do include brief definitions (in the Database Objects topic).
    For other kinds of terms, the Data Modeler help does point to the Object Management Group (OMG) site, and perhaps the OMG Terms and Acronyms page ( http://www.omg.org/gettingstarted/terms_and_acronyms.htm) might help you. However, there's no guarantee that those definitions will completely apply to the Oracle SQL Developer Data Modeler tool.
    For definitions or explanations of specific terms of interest, I recommend searching for (or using the Table of Contents to find) the relevant topics. You can also ask about specific terms or about terms in general in the Data Modeler discussion forum: SQL Developer Data Modeler forum: SQL Developer Data Modeler

  • Service doesn't update after data model updating

    Hello, dear experts!
    I have a question.
    I created OData Service and all is OK.
    After that I have updated data model. MPC methods have been changed with my new updates. But I can't see new service metadata document, browser displays old version of it. And service works in the way like old version of data model is actual.
    I don’t understand this behavior.
    In the book “OData and SAP NetWeaver Gateway” I have read that it is not “waterfall” approach in Gateway, which means that we can make changes in all 3 service creation phases (data model definition, service implementation and service maintenance) in the order we want.
    I tried regenerate runtime objects and reactivate service, clear browser cache, but it didn’t help.
    I put external breakpoint into DEFINE method of the MPC class and send some requests to server, but debugger doesn’t open. It looks like some kind of server cache.
    I think it is incorrect behavior. What would you recommend?
    Thanks in advance,
    Ihar

    This feature is available from SP7
    Go the the link below and search for "Reloads the service metadata for the annotation models."
    Activate and Maintain Services - SAP NetWeaver Gateway - SAP Library

  • R12 - Data Model

    Hi,
    Is there any place where we can see the data model in the R12 compare to previous releases. We are upgrading to R12. There custom process (data coming from legacy systems), forms and reports. I have found that RA_CUSTOMERS view not exists in R12. The changes like this I want to know at one place or any other sites you recommend to go through for me.
    Regards/Prasanth

    Hi,
    Since you're upgrading to R12, the following link should be able to provide you info on the data model in R12. Click the following link and go to Oracle Applications upgrade guide (R11i to R12)
    http://download.oracle.com/docs/cd/B40089_05/current/html/docset.html
    >
    Is there any place where we can see the data model in
    the R12 compare to previous releases. We are
    upgrading to R12. There custom process (data coming
    from legacy systems), forms and reports. I have
    found that RA_CUSTOMERS view not exists in R12. The
    changes like this I want to know at one place or any
    other sites you recommend to go through for me.
    Regards/PrasanthHi,
    Since you're upgrading from

  • Oracle Spatial RDF data model and database edition

    Hi: Can some one please let me know the Oracle edition that support the RDF data mdoel.
    According to my understaning it is Oracle 10g Enterprsie edition, with the Spatial option. If this is true; is installing the enterprise edition will already give me the Spatial option? or do I have to isntall the Spatial data model as a seperate module. Besides this is installing the Spatial data model already give the RDF capability, or again RDF is a sepeare module that need to be installed seperately?
    Thanks in advance
    Regards,
    Rashid.

    Hi Axel,
    You could use the download of Oracle 10g available on OTN at http://www.oracle.com/technology/tech/semantic_technologies/index.html. This can be used free for development, but not for deployment. As long as you use it just for development during your thesis and do not deploy it in a production environment it should be OK to use the free download.
    Along with the free download we recommend also using the patch (RDF specific patch for 10.2.0.1 database) that is available by clicking on 'software' on the same page.
    Melli

  • Oracle Data Modeling

    Hello, I download Oracle datamodeling-1.5.1-525 and I create a logical model of my future database. My database have about 127 entities, 974 attributes and 233 relations.
    I want generate ddl sentences in oracle and generate my oracle scheme in my database (Oracle SE 10G R2). I tried to create a relational model throught to Designer -> Engineer to Relational Model (Ctrl-Mayus-F) but nothing happend. The program does not anything, no errors no models, nothing.
    Can anyone help me, please?
    Thanks you very much!!!
    PD: Excuseme, but I'm Spanish and my English is horrible.

    Hi Roberto,
    do you still use build 525? You can try the latest version here [http://www.oracle.com/technology/products/database/datamodeler/index.html] . Please pay attention to "release notes" and remark there - "Note for designs created with earlier versions of Data Modeler – persistence has changed and it’s strongly recommended that you use the “Save As” functionality to create new version of designs".
    New version will resolve possible inconsistencies and you can engineer to relational model.
    Philip

  • SSM Data Model

    Hi,
    Can anyone tell me where I can find the data model for the relational tables on SSM?
    Thanks in advance
    Cliff Stinson

    Cliff,
    Did you just want to know where the data resides in SSM or were you looking to pull that data for other uses?
    You can open up PAS, select a data model and use the DataView tab to see the data loaded within that model. Consulting the PAS help section, in the IDQL tab you can enter commands to show the structure of the model, dimensions, variables, etc.
    Consider SSM a data consumer rather than a data provider. Loading data into SSM means creating a data model and a file layout that will match the external source. Although there is a connector available to bring data in from SAP BW, it's one-way. 
    With SSM 7.5, there is the ability to use web services to make SSM data available primarily to other BusinessObjects applications like Xcelsius for dashboarding purposes.
    It is not recommended that you change or modify tables in SSM since that can serious affect the performance and usage of the application.
    Regards,
    Bob

Maybe you are looking for

  • Memory Upgrade on ASA5520

    Just bought an ASA5520, opened the box to upgrade the memory to 2 GB to support 8.3, and discovered that the unit only has 1 memory module slot.  I thought all the ASA5520 units came with 4 slot?  There are hole patterns for the other 3 slots, but no

  • My iPod Touch is not working with Bose SoundDock.  How can I fix it?

    My iPod Touch is not working with Bose DoundDock Series II.  Can anyone suggest how I can get these 2 to work together?

  • Upgrading: From PC to Mac

    Hey folks. I am thinking of getting a Mac soon, and was curious about the best way to carry Flash over. I currently have Flash 8 for Windows, and was curious if there was any way to get it running for a Mac, besides just outright buying a new copy of

  • Dynamic graphc changes in ES2 using Javascript

    Hi, We are in the process of making template documents which our 12 offices will use. What we initially wanted to do was have a graphic box and a dropdownlist on the front page which would allow the user to select their office and have the graphic ch

  • How do I cancel BT Sport

    Hello Community, I have the luxury of receiving BT Sport FREE via SKY due to me being a long standing Broadband customer with BT. Being in my senior years and always looking to reduce costs, I may decide to leave BT when my present contract expires o