How do I convert staruml data model diagram into XML DB datamodel

I'm trying to find out if i could convert starUML data model diagram into XML DB datamodel. I'm planning to use Jdev for the same. Let me if it is possible

satrUML does support XMI export. I tried that and tried importing it in JDev and results in error as follows :
"Mandatory type property of type property has not been set"
file:/D:/LCM/LCM-SDF-DataModel.xml failed to import
Any pointers ? Thx

Similar Messages

  • Convert binary data (TIFF image) into XML - how ?

    Hi,
    I have the following requirement:
    1. A document is scanned and a TIFF image is saved in a directory
    2. The File adapter picks up the image file and sends into XI
    3. The binary data is converted into XML so a Web Service can be called (this web service will store the image in a database application)
    <b>The part I am struggling with is the convert of the incoming binary data into a XML format document which will allow the Web Service to be called.</b>
    Graphical mapping cannot be used therefore I am left with 3 options:
    1. XSLT mapping
    2. Java mapping
    3. ABAP mapping
    Can anyone suggest the best option to use in these circumstances and provide some sample snippet of code on how to do it.
    I am alright at XSLT mapping but this is beyond me and Java mapping is completely new to me as I have very limited Java knowledge.
    Thanks for your help
    Colin.

    Hi Colin
    Look for the below link
    https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10dd67dd-a42b-2a10-2785-91c40ee56c0b
    <b>***Reward point if helpfull</b>
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10dd67dd-a42b-2a10-2785-91c40ee56c0b">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10dd67dd-a42b-2a10-2785-91c40ee56c0b</a>

  • How can i convert the data from mutiple-table to the other database(MSSQL)?

    Dears,
    How can i convert the data from mutiple-table to the other database such as MS-SQL?
    I have a third party system based on MS-SQL 2000.
    Now we want to make a integration between SAP R/3(Oracle) and SQL server.
    When my user releases the purchase order in R/3, the application we coded will convert the releated data to the temp database on the SQL server.
    But i don't know which tools will help me reach the purpose.  BAPI, LSMW, IDoc... ???
    Would anybody tell me which way is better and how to do?
    Thanks a lot!
    Kevin Wang

    Hello Kevin,
    The question to use which method depend on your detail requirements. If you use BAPI, you need to find which Bapi can provide the data you want. Bapi normally use as a function called by external system. So you need to develop an external program like VB/Java to call this Bapi and move it to SQL. LSMW is use when you want to upload data from an external system to SAP. So it does not serve your requirement. Idoc can be use to export data to an external system. Again like Bapi, you need to find what Idoc can provide the data you want. However, it does not any programming from the external system. If I were you, based on your requirements, I think writing an Abap program that read the data you want and download it to NT/SQL server will be faster and easier.

  • Converting .rdf data model to xml output thru conc program

    Dear Members :
    I am trying to convert .rdf data model(Reports 10g) into XML tag, by creating Concurrent Program Report Definition, setting output type as XML.But when running the CP, getting following error:
    XML Parsing Error: XML declaration not well-formed
    Location: http://oel4.localdomain:8000/OA_CGI/FNDWRR.exe?temp_id=2393533895
    Line Number 1, Column 31:<?xml version="1.0" encoding="&Encoding"?>
    All I want is save output in Oracle Apps (11i) as .XML to be used later for XML publisher, in MS Word. The above procedure should have worked fine, as seen, in other posts.
    Any clue, please ?
    Thanks in advance.
    Atanu
    =================================================
    It's solved by changing xml prolog value to <?xml version="1.0"?>. This is closed issue - thanks.
    Edited by: user11184124 on Sep 19, 2010 11:29 AM

    OK, figured it out... when you double click on the field to add the ../, you actually need to click on Add Help Text and add the ../ here

  • How do i convert a portion of day into a time?

    How do i convert a portion of day into a time, without dividing and modding the number myself?
    For example, i calculated solar noon UTC to be .733409047. Adding that to the date gives the correct answer:
    SQL> SELECT TO_DATE('1/1/2012', 'DD/MM/YYYY') + .733409047 FROM Dual;
    TO_DATE('1/1/2012',
    01/01/2012 17:36:07
    A few questions, to actually understand this.
    Is .733409047 implicitly converted? If so, to what datatype?
    If i want HH:MM:SS does it need to be converted to a date, and then TO_CHAR? Or can the decimal be directly converted?
    I'm currently trying to understand INTERVAL.
    SQL> select interval '.5' day from dual;
    select interval '.5' day from dual
    ERROR at line 1:
    ORA-01867: the interval is invalid
    So, i'm obviously misunderstanding it. Can it be used here?

    Hi,
    Brian Tkatch wrote:
    How do i convert a portion of day into a time, without dividing and modding the number myself?
    For example, i calculated solar noon UTC to be .733409047. Adding that to the date gives the correct answer:
    SQL> SELECT TO_DATE('1/1/2012', 'DD/MM/YYYY') + .733409047 FROM Dual;
    TO_DATE('1/1/2012',
    01/01/2012 17:36:07
    A few questions, to actually understand this.
    Is .733409047 implicitly converted? If so, to what datatype?No, there is no conversion going on here, just Date Arithmetic .
    In Oracle, if d is a DATE and n is a NUMBER (not necessarily an integer, and not necessarily positive), d+n is the DATE that is n days later than d.
    If i want HH:MM:SS does it need to be converted to a date, and then TO_CHAR? Or can the decimal be directly converted?Sorry, I don't understand. Are you saying that you want to do something like date arithmetic, but instead of using a number like .733409047 (meaning about .73 of a day), you want to pass a string like '17:36:07' (meaning 17 hours, 36 minutes and 7 seconds)? If so, INTERVAL DAY TO SECOND is probably your best bet. (It looks like you're already thinking along these lines.)
    I'm currently trying to understand INTERVAL.
    SQL> select interval '.5' day from dual;
    select interval '.5' day from dual
    ERROR at line 1:
    ORA-01867: the interval is invalid
    So, i'm obviously misunderstanding it. Can it be used here?You can only use integers like that. If you want to use any number, then use date arithmetic to add to (or subtract from) a DATE, or use NUMTIDSINTERVAL to produce an INTERVAL DAY TO SECOND:
    SELECT     NUMTODSINTERVAL (.733409047, 'DAY')     AS intrvl
    FROM     dual;Output:
    INTRVL
    +000000000 17:36:06.541660800 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements), maybe about 5 rows, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using.

  • How can I convert a PDF/A file into a PDF file with Acrobat Pro X?

    How can I convert a PDF/A file into a PDF file with Acrobat Pro X? I'd like to modifiy the file which I have only as a PDF/A.

    There's two answers if you want to modify the file:
    You can temporarily turn off PDF/A Mode in your preferences, so they don't open as read-only. The problem would be if you do something to the file that violated the PDF/A standard, so you should always run a Preflight check afterwards to make sure.
    If you want to remove the PDF/A header tag, use Preflight again - it's on the Print Production Panel in Acrobat X Pro (which may be hidden, use the options menu on the Tools Pane to show it). There's a profile called "Remove PDF/A information" - choose this and press Analyze and Fix. Nothing else about the file will be altered but when you save and reopen it all the editing tools will become active.

  • How do I convert a WHOLE PDF file into jpeg on LION?

    how do I convert a WHOLE PDF file into jpeg on LION?  I know how to open it in Preview but there is no longer an option through Print and if I export it only allows one page at a time and I need 223 pages...

    Use this Automator Action:

  • How can I convert a secure pdf document into word?

    How can I convert a secure pdf document into word?

    Hi,
    Please refer to below mentioned article:
    http://forums.adobe.com/docs/DOC-1515
    ~PRanav

  • How do I convert a shockwave object file into a mp4 or avi video?

    How do I convert a shockwave object file into a mp4 or avi video?  Do you know of any software that converts that type of file?  

    The M4V format is a video file format developed by Apple and is very close to the MP4 format. The differences are the optional Apple's DRM copyright protection, and the treatment of AC3 (Dolby Digital) audio which is not standardized for the MP4 container.
    If your M4V video is not unprotected M4V files and without AC3 audio. It may be recognized and played by other video players by changing the file extension from ".m4v" to "mp4".
    So you can try to change the file extension and check if it works. If it doesn't work, try Leawo video converter(for windows or mac) and convert m4v to mp4 format.

  • How do i convert my scanned jpg images into word

    How do i convert my scanned jpg images into word

    No, Acrobat Pro is expensive
    95% of all the professional scanned in books are in PDF, the entire structure and countless years of work have gone into Acrobat being not just the "best" standard for scanned books, but really the ONLY standard for them.
    Yes, many many little programs can convert to PDF after you have them in a file, or even from Safari you can "print as PDF" or "save as PDF"
    however it just saves them as PDF, and you can use Acrobat READER for free,....
    but Reader is just that, a reader, you cannot do pro editing, scale down the file size etc etc, signatures, portfolios etc.
    Ive got a 42 Terabyte collection of PDF books,.....Ive spent too much time staring at PDF books   LoL.

  • Howe to I convert my I Tune files into MP3 or WAV files

    how to i convert my I Tune files into MP or WAV files

    Hi Bodenlaube,
    Thanks for visiting Apple Support Communities.
    See the tips in this article for help:
    iTunes: How to convert a song to a different file format
    http://support.apple.com/kb/HT1550
    Cheers,
    Jeremy

  • How does one convert an HP/Adobe scan into editable WordPerfect?

    How does one convert an HP/Adobe scan into editable WordPerfect? 
    The writer does not understand computer-eze.  Please explain in simple English.

    You can try using Adobe ExportPDF (https://www.acrobat.com/exportpdf/en/home.html) though it only produces Microsoft Word files. If WordPerfect can import .docx files, that will work. Note that the ability for ExportPDF to convert the file depends on the quality of the scan. If it's hard for ExportPDF to interpret the scan due to smudges, fuzziness, etc., it cannot do a very good job.

  • How to seperate Power Pivot Data Model and Power Pivot Report from Single Workbook.

    HI  Team,
    Initially, We have created Power Pivot report in workbook, containing Source Data Model as well.
    Now, we want to convert workbook having model as Shared Data Model, and all report needs to be part of single workbook.
    I want to implement one of the below solution, but know how to do it.
    1. Separate and Export all Power Pivot report sheet into single Excel Workbook such that it will have all report sheets.
    2. Use Same Model as it is and delete reports from existing one after export to new excel workbook.
    OR
    Is there is any other way to avoid re-creation of reports again? I want to use same report but instead of Embedded Excel data source, I want to use shared data Source in excel.

    One option is to use one workbook as the data source(model) and other workbooks for the reports.  This works in the stand alone Excel and SharePoint versions of Power BI, but not yet in O365 Power BI version.
    There is no export functionality. You would have to copy the workbook and update data source references. I have never tried it, but in theory it should work :).
    Brad Syputa, Microsoft Reporting Services This posting is provided "AS IS" with no warranties.
    Hi Michael,
    Yes your answer is partially correct..thanks for reply, I am working on Power Pivot reports on SharePoint.
    However, below issues observed.
    1. There is No Export Functionality ( as you told)
    2. We can not copy report sheet from workbook1 (which has Data Model) to Workbook2 ( only for report) using Control + C (copy) and Control + V (paste) option.
    Or Move Power Pivot Table ..
    So, solution can be (as you said, unfortunately I tried it already but dint worked)
    1. Copied workbook with New Name - Workbook2.
    2. Go to Data -> I tried to change connection setting -> to use shared Data Model -> I could create new Pivot table using shared Data Model
    But, Still I could use earlier designed Power Pivot tables as it is, to point to shared data model.
    I don't want to re-design entire report. As my project workbook has plenty reports.... :)

  • Open Toad Data Modeler diagram with SQL Data Modeler

    hi, I've made a diagram with TOAD Data Modeler in Windows. Now I'm working with Linux, so I need a portable application to work with. Oracle SQL Data Modeler seems to be the solution to my problems, but I can't open/import my TOAD's diagrams into SQL Data Modeler.
    Anyone knows how to do it?
    Thanks in advance,
    Neuquino
    Edited by: Neuquino2 on Nov 1, 2010 1:30 PM

    Hi Neuquino,
    there is no import from TOAD Data Modeler. You can generate DDL script with TOAD DM and import that script.
    Philip

  • How to print ERD from Data Modeler Tool

    Hello Everyone,
    I have an oracle 10g DB and I want to create its ERD. I was able to export the tables using Data Modeler tools but I cannot find the option to arrange these table on pages and then print them. How can I do that? It's a very basic requirement and I am sure it must be here somewhere but I can't seem to find it.
    Regards,
    Afraz Ali

    Hi Afraz,
    there is no support for arranging tables on pages. For printing - use "File>Print" or "File>Print Diagram".
    Philip

Maybe you are looking for

  • Uploading data from a view in legacy system to SAP

    Hi, I am developing a custom table in sap. The data in this table will be loaded from a view which exists in the clients legacy system (Oracle db).There will be no middleware for the data transfer. How can this be done in SAP? Can anybody provide a d

  • Agent Encode error

    I run "agent.sh encode SUNOPSIS" and I get to see this error A JDK is required to execute Web Services with OracleDI. You are currently using a JRE. java.sql.SQLException: Driver must be specified at com.sunopsis.sql.SnpsConnection.a(SnpsConnection.j

  • SVG problems

    Recently I've encountered a few problems while working with Edge Animate. Firstly, I was importing SVG Files into Edge that I'd created in Illustrator. This was going fine until Edge stopped responding to my request of adding more SVG files. No error

  • How to deploy app level JMS resource using DeployerRuntime?

    I have an app level (described in the app, not global) JMS module. And inside this module I have several different resources.           Here is my question: when using weblogic.management.deploy.DeployerRuntime (or WLST) what syntax should I use in c

  • Rather a simple issue

    Hi I would like to know if it is possible to change the icon of the drive which is showing up in the desktop. Instead of the harddrive kind of image I would like to keep a different icon for Macintosh HD as well as for the Windows drive. I think it i