DM 2.0 (584)  can a subview contain/display physical objects e.g. snapshots

The problem that I have is that I want to have a subview which displays/shows snapshots. I cannot figure a way to get them selected and then create a subview. Nor can I find a way to add those snapshots to an existing subview.
Is it possible to put snapshots into a subview in either v2.0 or v3.0 Data Modeler? (or other physical objects such as sequences?) What are other users doing to organize dozens of snapshots in a single model?
TIA-
Harold

Hi Harold,
physical objects cannot be put on diagram. The case with snapshot is little bit different - you can create table in relational model and then in physical you can set its property "Implements as Materialized View" to point to snapshot.
Philip

Similar Messages

  • Entity Bean can only use container-managed transaction demarcation?

    In <<Designing Enterprise Application with J2EE 2nd>>
    Section 2.3.3.3 Enterprise Bean Transactions,it says:Entity beans can only use container-managed transaction demarcation.
    That means,i can not get UserTransaction from EJBContext.
    Is that true?

    Yes this is the requirement of the specs. Your ejb code generator should give you the error if you use usertransaction.
    --Ashwani                                                                                                                                                                                                                                                                   

  • Can inbound Idoc Contain .PDF attachment?

    Hi there,
    I have a requirement where there is a need to create an Inbound Idoc in the CRM system containing a .PDF file attachment.
    1) Can and IDOC contain file attachments?
    2) If yes which segment woult contain it, or how it should be attached.
    The inbound idoc would be created from an XI system.
    Regards,
    Kiran

    Kiran,
    Its not going to be easy. If you plan to use that then
    1. Either you need to have two different interfaces one for the IDOC and one for PDF or design your interface to split that and send as two different messages to R/3.
    2. Moreover do you want to maintain the PDF as it is in R/3? If that is the case, then you might have to write some Custom RFC which can read the PDF and upload the same and attach the doc.
    Regards,
    Ravi
    Note : Please mark the helpful answers

  • Are there any command can list all container and XML doc which in DB

    When I use BDB XML shell,
    are there any command can list all container or xml document which in database,
    maybe like command dir(in windows), can list all exist directory and file.
    Thank very much.
    Henry Wang

    Hi Henry,
    When I use BDB XML shell,
    are there any command can list all container or xml
    document which in database,
    maybe like command dir(in windows), can list all
    exist directory and file.If you type "help" in the dbxml shell you'll get a list of all the commands available. As you will observe, you can use the "getDocuments" command to retrieve all the documents within a container. You will have to open the container first.
    If you want to list all the files within a directory you'll need to simply use the command prompt's "dir" (naming all your containers within a directory in the <container_name.dbxml> would allow you get the list by running a "dir *.dbxml" command).
    Not sure that this is what you really want, but if you would like to keep track of all the containers within a directory, or other directories, you can use a container with a special role, that of a catalogue, to hold the list of all created containers on disk, and eventually other specific information.
    Regards,
    Andrei

  • Can a .jsp contain more then one jsp:forward page

    Can a .jsp contain more then one jsp:forward page if it's conditional.
    ie. if condition true
    forward to pageA
    else
    forward to pageB?
    Thank you.

    gimbal2,
    Thanks for the response. I did try it and I got a
    compile error. I just realized that the error was
    regarding a different issue.
    JJIn that case, it would have been appropriate to post the actual problem.

  • How can I disable warning: "This page contains some SWF objects..."

    "This page contains some SWF objects that may not work properly in the most recent version of IE..."
    Is there a way to suppress this warning?! I'm doing a find and replace on an old web site, which does not pay well! and this pops up on every page. I have to click on it to continue every time. Making me mad.
    Thanks

    Thanks for answering. In my case that won't work because I'm doing a global find and replace of some text.
    I agree though, that process would eliminate the message when I have to come back to edit the site again. It's just the thought of many dozens of pages that would need it and to be honest, I'm really not feeling that motivated to do all the up front work right now
    Like I said, there should have been a setting for this...

  • StreamCorruptedException: does not contain a serialized object?

    Can someone tell me why am I getting this exception:
    C:\javapr>java FetchObject
    Couldn't retrieve binary data: java.io.StreamCorruptedException: InputStream
    does not contain a serialized object
    java.io.StreamCorruptedException: InputStream does
    not contain a serialized object
    at java.io.ObjectInputStream.readStreamHeader
    (ObjectInputStream.java:849)
    at java.io.ObjectInputStream.<init>
    (ObjectInputStream.java:168)
    at FetchObject.main(FetchObject.java:23)
    import java.sql.*;
    import java.util.*;
    import java.io.*;
    class FetchObject implements Serializable {
        public static void main (String[] args) {
            try {
                String driver = "oracle.jdbc.driver.OracleDriver";
                Class.forName(driver);
                String url = "jdbc:oracle:thin:@mymachine:1521:homedeva";
                Connection conn = DriverManager.getConnection(url,"cnn","cnn");
                FetchObject i = new FetchObject();
                    // Select related
                    try
                         byte[] recdBlob = i.selectBlob( 1 , conn ); 
                         ByteArrayInputStream bytes = new ByteArrayInputStream(recdBlob);
                         ObjectInputStream deserialize = new ObjectInputStream( bytes );
              Employee x = (Employee)deserialize.readObject();
                    catch( Exception ex )
                  System.err.println("Couldn't retrieve binary data: " + ex);
                  ex.printStackTrace();
         catch( Exception ex )
              ex.printStackTrace();
        public byte[] selectBlob( int id, Connection conn )
         byte[] returndata = null;
         try
              Statement stmt = conn.createStatement();
              String sql = "SELECT id, rowdata FROM blobs WHERE id = " + id;
              ResultSet rs = stmt.executeQuery(sql);
              if ( rs.next() )
                           try
                               ByteArrayOutputStream baos = new ByteArrayOutputStream(1024);
                               BufferedInputStream bis = new BufferedInputStream( rs.getBinaryStream("rowdata") );
                             byte[] bindata = new byte[4096];
                               int bytesread = 0;
                               if ( !rs.wasNull() )
                                       if ( (bytesread = bis.read(bindata,0,bindata.length)) != -1 )
                                          baos.write(bindata,0,bytesread);
                                returndata = baos.toByteArray();
                             baos.flush();
                                bis.close();
                       catch ( Exception ex )
                            System.err.println("Problem retrieving binary data: " + ex);
                        rs.close();
                         stmt.close();  
               catch ( Exception ex )
                    System.err.println("Couldn't retrieve binary data: " + ex);
            return returndata;
    import java.io.*;
    class Employee implements Serializable
         private String lastName;
         private String firstName;
         public Employee(String lastName, String firstName)
              this.lastName = lastName; 
              this.firstName = firstName;
    }

    To clarify I have stored an Employee Object as a Blob in the Oracle database and am attempting to retreive the
    Employee Object from this Blob.
    Thanks

  • How can i export the structures of objects

    hi ,
    i need to export all the objects of the all the users (exclude the data)
    the priviledges , functions , tables , procedures, dblinks , synonyms , packages etc ..
    what's the commands to do that
    pls advise
    tks & rgds

    Hi ,
    i have managed to export successfully 1 table but when i sees the output of the file it seems that are many special characters
    i have specify the file as .sql but when i try to open the .sql file it shows as below
    EXPORT:V08.01.07
    mart1
    RTABLES
    2048
    0
    28
    0
                                                    Tue Jan 23 13:59:36 2007c:\test.sql                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     d    `!
    #G#G#A°G ƒ                                          d    `!
    #G###A°# ƒ  ™                                         +00:00 8.1.6
    TABLE "TBL1"
    CREATE TABLE "TBL1" ("OLDVALUE" VARCHAR2(10), "NEWVALUE" VARCHAR2(10))  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 LOGGING STORAGE(INITIAL 10485760 NEXT 10485760 MINEXTENTS 1 MAXEXTENTS 40000 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "DATA"
    EXIT
    EXIT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 this is my export statement
    EXP mart1/[email protected] file=c:\test.sql log=c:\test1.log tables=mytbl ROWS=N INDEXES=Ycan this only be removed when using the IMP ?
    my purpose is to just have a backup especially for self-created tables & objects and i do not want to import every single objects that are exported just selective objects , basically what i need is a file that does not contains those special characters where i can see clear what are the objects for me to manually create
    tks & rgds

  • I have  a singleton that contains my data object. How to refresh components

    I have a singleton that contains my data object. This
    singleton data is used to populate comboboxes and datagrids across
    various custom components that are children of the main
    application. These components can manipulate the singleton. When
    these changes are made to the singleton what do I have to do to get
    this data to refresh across the componets that use its data?

    I assume that your mail app on your iPad/iPhone is Apple Mail.  You can open a MS Word/Excel document in Adobe Reader for iOS and convert it to PDF at a time.
    In Mail, long press (press & hold) an attachment icon.
    Select "Open in Adobe Reader".
    Follow the instructions shown in Adobe Reader to subscribe to a paid service called "Adobe PDF Pack" to convert the document to PDF.
    Please note that Adobe Reader for iOS itself is a free app but the subscription for the Word/Excel to PDF conversion is a paid service (i.e. not free).
    In case you have any questions about Adobe PDF Pack, here's the user forum.
    Adobe PDF Pack

  • How can I hide scrollbars in gui objects?

    Hello,
    I want to hide the scrollbars of a gui container but I can not find a way to do it.
    If you know how to do it in gui container or other objects please let me know.
    Thanks in advanced,
    Udi dekel.

    hi udi,
    go to your screen layout,
    on the attributes screen disable check boxes for vertical and hoizantal scrolls,
    then u dont get the scroll bars on the screen.
    reward points if helpful.
    regards,
    seshu.

  • Object library invalid or contains references to object definitions that could not be found problem

    Hello,
    Yesterday I got the following error on the server: "object library invalid or contains references to object definitions that could not be found problem".
    I found this documentation, followed the steps and all was OK on the server:
    http://support.microsoft.com/kb/2703186/en-us
    https://social.msdn.microsoft.com/Forums/office/en-US/e94f2fc3-71f1-4dad-bbf1-37f906e28e8e/object-library-invalid-or-contains-references-to-object-definitions-that-could-not-be-found?forum=exceldev
    Our server is used to do batch processing for refreshing our excel's. This morning, after the excel's got refreshed on the server, I've got this error on the
    client computers (everything works fine on the server computer). I did the steps above on the client computers, but the problem still persists.
    It looks like there is a difference in version between server and client.
    If I do the refreshing on the same computer there is no problem. But when the server does the refreshing and I try to open it on a different computer, I get this error.
    The security update has been removed from the computer, but I can't use my excel's anymore.
    Does any one have some advice for me?
    Best regards,
    Wouter

    Hi Wouter,
    Thanks for the further explaintation.
    According to the description, the issue seems that the Workboook on the client side(with lower Excel version) couldn't run the VBA after it opened by server(higher version Excel application).
    If I understood correctly, that sounds that the issue is relative to the specific version of Excel product or the updates.
    I suggest you contacting Microsoft support to raise an incident so that our engineer could work closely with him to identify the root cause and resolve this issue as soon as possible.
    If the support engineer determines that the issue is the result of a bug the service request will be a no-charge case and you won't be charged.
    Please visit the below link to see the various paid support options that are available to better meet your needs.
    http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone
    Regards & Fei
    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.
    Click
    HERE to participate the survey.

  • Object library invalid or contains references to object definitions that could not be found

    I have an excel macro application. It works ok in my machine. Whenever I send it to my colleague and he opens the file and save and send it back to me, I get the below error. But, it is working
    ok in my colleague machine.
    Compile error:
    Object library invalid or contains references to object definitions that could not be found
    Looks like some recent windows update is causing this issue. I tried to delete the temporary file from the command prompt as mentioned in some of the forums using the below command. But, still it
    is not working.
    DEL /S /A:H /A:-H *.EXD
    Even tried to uninstall the recent windows update on both of our machines, but still the issue is not resolved. It is working ok in his machine, but I get the compile error. Please share your thoughts.
    Thanks.
    Below are the references available in the excel macro application. There is no missing reference error on both of our machines. We both are using Excel 2010 32 bit. My OS is windows 7 64 bit and
    my college is having windows 7 32 bit.
    Visual Basic For Applications
    Microsoft Excel 14.0 Object Library
    Microsoft Forms 2.0 Object Library
    Microsoft Office 14.0 Object Library
    OLE Automation
    Microsoft ActiveX Data Objects 2.6 Library
    Microsoft Visual Basic for Applications Extensibility 5.3
    Microsoft XML, v6.0

    "Looks like some recent windows update is causing this issue. I tried to delete the temporary file from the command prompt as mentioned in some of the forums
    using the below command"
    I've heard some cases that even deleting EXD files and running the FixIt tools, ActiveX controls weren't working.
    Can you confirm if you can insert ActiveX controls in your worksheet, please?
    (Developer tab >> Insert button >> any ActiveX control of your choice)
    Felipe Costa Gualberto - http://www.ambienteoffice.com.br

  • Browser can resolve, access, and display JPEG image, but ImageIcon can't.

    I've got this weird problem that only happens with images accessed through a customer's VPN:
    Microsloth Internet Imploder can resolve, access, and display a JPG image from a VPN URL, in the general form:
    http://intranet/part?FOOBAR.JPG which the browser apparently transmogrifies into
    http://mogrify.foo.com/images/scripts/cgi/detail.cgi?FOOBAR.JPG(as Jack Webb often said, the names have been changed to protect the innocent)
    Firefox can also resove, access, and display the image.
    But an ImageIcon, when fed either URL, quietly fails to get anything, No errors, no exceptions, but no image, either.
    The application, if it detects the failure of ImageIcon to come up with the image, somehow (not my code) defers to "Windoze Image and Fax Viewer," which locks up trying to resolve, access, and display the image.
    What could possibly be going on here?

    I'd love to have the luxury of saying, "You lost me at Windoze." Then again, to paraphrase a running gag from Airplane!, it looks like I picked the wrong week to quit hemlock.
    As my final message on my other thread on this topic indicates, the problem is that even though the URL ends in JPG, the server isn't really serving up a JPEG, but rather, an HTML page containing the JPEG.
    Knowing this, a solution (of sorts) presented itself: if the URL doesn't produce a displayable ImageIcon, try constructing a JEditorPane on the URL. The results aren't exactly pretty, and you do have to try the ImageIcon first, but it does work.
    JHHL

  • This page contains some SWF objects that may not work properly...

    Hello Guys
    I bought this menu made by f-source into my page:
    http://beta.asphalt-driveway-sealing.com/, it's working fine except I got this message each time I am opening my file with dreamweaver CS4: 'this page contains some SWF objects that may not work properly in the most recent versions of Internet Explorer. Dreamweaver cannot  convert them to the new SWF markups. Please delete each of them and insert again' and what I did but still got this message
    the developer told me that: "I previous versions of Dreamweaver you could disable the Active
    Content Converter http://f-source.com/before_insert/
    In CS4 there is no such option."
    Please let me know what can I do then.
    Many Thanks, T&T

    Hi
    CS4 uses a 'nested' type of object code to insert swf/flv files, which is more compliant than previous code. Obviously the f-source extension is not cs4 compliant if it is changing this, (the message indicates it is doing so) and is something you should pursue via there support department. However even though it is giving you this message it should still work on live pages.
    PZ
    www.pziecina.com

  • Can't able to create callable object using UI pattern in CAF

    Hello
    I made one interface using object Selection UI pattern for one of my entity services. Now i am trying to make a callable object using this and i also have been successfully created it. But when I test this callable object, I got these error messages.
    1. Could not load execution container: Cannot access object class loader for deployable object sap.com/cafcoregpuivisibleco~container.
    2. Could not load execution container: ComponentUsage(container): Active component must exist when getting interface controller. (Hint: Have you forgotten to create it with createComponent()? Should the lifecycle control of the component usage be "createOnDemand"?
    Please tell me the problem

    Hi Saurabh,
    It seems you found a bug. The problem is that runtime library reference to sap.com/cafruntimeuicouplingapilib library from sap.com/cafcoregpuivisibleco~container dc is misspelled.
    So, I don't know whether or not according CSN is already created but I can propose you a solution.
    1. Unpack the cafcoregpuivisibleco~container archive from CAFKM0X_0.sca sca.
    2. Unpack sap.comcafcoregpuivisiblecocontainer.wda archive.
    3. Open the PORTAL-INF\portalapp.xml file and change the following entry of library reference:
    <property name="LibrariesReference" value="sap.com/cafruntimeuicopulingapilib" />
    to
    <property name="LibrariesReference"    value="sap.com/cafruntimeuicouplingapilib"/>And pack
    it pack it again in correct order(for ex.:
    jar.exe -Mcvf sap.comcafcoregpuivisiblecocontainer.wda .
    jar.exe -Mcvf sap.comcafcoregpuivisiblecocontainer.sda .
    And finally deploy it to your server instance and enjoy.
    Best regards,
    Aliaksei

Maybe you are looking for

  • Error while running a query

    Hi All, My BEx query runs fine. But when i add a key figure, say XYZ, then i get an error saying "The sum or average aggregate operation cannot take a nvarchar data type as an argument" Note that the key figure i am using is a standard key figure. Ki

  • Mac Mini won't boot from dvd

    I just picked up a used Mac Mini and the previous owner didn't wipe the hard drive. He did include the original install disks in the package, though. I inserted the install disk & it says that OS X Tiger can't be installed on the mini (currently it i

  • New Windows Setup Can Be Synced To Only the Last Used Windows Installation?

    Hello, I have found out that Windows allows you to synchronize only with the last used Windows installation and does not allow you to choose to which of your Windows installations you want to synchronize. Why is that? Here's my experience. 1. I insta

  • Picture on Apple TV too big for screen

    I'm a new user of Apple TV.  Can get picture but no sound.  I'm trying to turn off the Dolby Digital but the writing goes off the screen so I can't tell when it is off.  Any ideas?

  • Is there anyway to create a template that has automatic page numbering

    We have a template that we have to create, each page on the template has to have a page number.  We do a lot of edits and the pages change for example the page may start out as page 1 and after editing it is page 10.  Are there any codes I could use