Creating a file in KM with attributes or metada

Hi friends,
I would like to create a document/file in KM but whith some attributes or metadata attached like time, date, contact person, telefon, department....
I'm using the following code to upload a file, but I haven't found any Thread in this Forum about how to attach some metadata or context attributes.
     IPrivateRegistreEntradaView.IFileNodeElement fileelement = wdContext.currentFileNodeElement();
     wdContext.nodeFileNode().bind(fileelement);
     /*Make a simple type of that type*/
     IWDAttributeInfo attInfo = wdContext.nodeFileNode().getNodeInfo().getAttribute("filedata");
     ISimpleTypeModifiable type = attInfo.getModifiableSimpleType();
     /**Following is the code for uploading files**/
     /*Get an object of current Portal user */
     IWDClientUser wdClientUser = WDClientUser.getCurrentUser();
     com.sap.security.api.IUser sapUser = wdClientUser.getSAPUser();
     /*create an ep5 user from the retrieved user*/
      IUser ep5User = WPUMFactory.getUserFactory().getEP5User(sapUser);
      ResourceContext context = new ResourceContext(ep5User);
     /*Give the path to KM in the variable path */
     RID rid = RID.getRID("/documents");
     IResourceFactory factory = ResourceFactory.getInstance();
     ICollection folder = (ICollection) factory.getResource(rid,context);
      /***Using the upload element we can upload the files to a location in the server drive***/
     /*temperory location for writing */
      String location = "give the location here";
      String fileName = location + fileelement.getFilename();
      File file = new File(fileName);
     /*Create an output stream for writing to the temperory location*/
      FileOutputStream out = new FileOutputStream(file);
      out.write(fileelement.getFiledata());
      out.close();
     /*From the temporary location read the file using an input stream*/
      FileInputStream fin = new FileInputStream(fileName);
      fin.read();
     /*Using this input stream we can write to the repository*/
      //Content content = new Content(fileelement.getFiledata(),fileelement.get)
      Content content = new Content(fin,"byte", -1);
      IResource newResource = folder.createResource(fileelement.getFilename(), null, content);
I think the solution could be by modifying the second argument of
IResource newResource = folder.createResource(fileelement.getFilename(), null, content);
This argument is a "IPropertyMap" type and now takes de value "null", but I'm not sure.
Any ideas?
Thanks very much in advance,

Hello Lohitha,
Thanks your interest but that link did not help a lot.
Roberto,
Thanks a lot for the links, the second one really gives a guide for setting up properties in the portal.
But I found it quite more extended that my requirements, eventhought it helps a lot, since i just would like to attach some " attributes o some simple data" to the uploding file.
I've found an option usint IPropertyMap
Map myMap = new HashMap();
String DEPARTAMENT = null;
mapeo.put(DEPARTAMENTO, "HH.RR"); //this is just a example
IPropertyMap myProperties = new PropertyMap(myMap) {
               public int size() {
                    // TODO Auto-generated method stub
                    return 0;
               public boolean isEmpty() {
                    // TODO Auto-generated method stub
                    return false;
//Here we must implement all the metodes of the interface
//then finally call
IResource newResource = folder.createResource(fileelement.getFilename(), myProperties , content);
But I'm not sure it could work, I'm having technical dificulties,
Anybody could tell us any other simple option for creating a file in KM attaching some simple attributes??
Thanks to all.
Ivan,

Similar Messages

  • How can I create a file in iMovie with a lengthy audio file, but only 1 picture?

    Let me state first off that I'm a blind user using the Voiceover screen-reader in OS X.
    Now, I want to upload some audio to Youtube, but they do not allow simple MP3 files. As such, I want to create a file in iMovie with my audio and 1 picture to use as a visual. Within iMovie, I add my audio file, select a picture, but when I publish, the audio is cut off after only a few seconds. Can someone please explain how I can fix this issue so my entire audio clip will play?

    iMovie is a visual medium, so you need to make the duration of your photo at least as long as your voiceover track. You should be able to double click on your photo and then enter a duration.
    See iMovie Help at this link.
    http://help.apple.com/imovie/#mov3a883915
    An MP3 file may work for you, but for best results, use a WAV or AIFF file (uncompressed). You can convert MP3 to AIFF in iTunes. Let me know if you need instructions.

  • Pdf creator is creating corrupt file on Mac with Mountain Lion

    pdf creator is creating corrupt file on Mac with Mountain Lion, how to rectify?

    Please say what PDF creator you have including version
    and how you know they are corrupt

  • Create XML file from ABAP with SOAP Details

    Hi,
    I am new to XML and I am not familiar with JAVA or Web Service. I have searched in SDN and googled for a sample program for creating XML document from ABAP with SOAP details. Unfortunately I couldn't find anything.
    I have a requirement for creating an XML file from ABAP with SOAP details. I have the data in the internal table. There is a Schema which the client provided and the file generated from SAP should be validating against that Schema. Schema contains SOAP details like Envelope, Header & Body.
    My question is can I generate the XML file using CALL TRANSFORMATION in SAP with the SOAP details?
    I have tried to create Transformation (Transaction XSLT_TOOL) in SAP with below code. Also in CALL transformation I am not able to change the encoding to UTF-8. It's always show UTF-16.
    <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sap="http://www.sap.com/sapxsl" version="1.0">
      <xsl:template match="/">
        <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
          <SOAP:Header>
            <CUNS:HeaderInfo>
              <CUNS:InterfaceTypeId>10006</InterfaceTypeId>
              <CUNS:BusinessPartnerID>11223344</BusinessPartnerID>
              <CUNS:SchemaVersion>1.0</SchemaVersion>
              <CUNS:DateTime>sy-datum</DateTime>
            </CUNS:HeaderInfo>
          </SOAP:Header>
          <SOAP:Body>
            <xsl:copy-of select="*"/>
          </SOAP:Body>
        </SOAP:Envelope>
      </xsl:template>
    </xsl:transform>
    In ABAP program, I have written below code for calling above Transformation.
      call transformation ('Z_ID')
           source tab = im_t_output[]
           result xml xml_out.
      call function 'SCMS_STRING_TO_FTEXT'
        exporting
          text      = xml_out
        tables
          ftext_tab = ex_t_xml_data.
    Please help me how to generate XML file with SOAP details from ABAP. If anybody have a sample program, please share with me.
    Is there any easy way to create the XML file in CALL Transformation. Please help.
    Thanks

    Try ABAP forum, as it seems not to be PI related.

  • Creating text file from SQL with adding counter in Filename.

    Hi,
    I have a requirement for creating the Tesxt files from Oracle DB which i can achieve by ODISQLUNLOAD.
    But tricky part is that i want have a file name+ counter such that Counter should start with 1 for the first file of the day, then 2,... and reset to 1 for every new date.
    e.g. file0001, file0002,file0003,file0004,.... file0100 and so on for one day.
    But when i will create a file on next day it should be created as again file0001, file0002,file0003,file0004,.... file0100 and so on.
    I may be able to achieve this using some variables but unable to think how could i achieve this.
    Any help would be appreciated.
    Thanks and Regards,
    Mahesh

    Hi Mahesh,
    If the files are loaded as one batch process, for instance, by executing a single package, you could perform a looping function and store the counter as a variable. It would be very similar to the blog post here: https://blogs.oracle.com/dataintegration/entry/using_variables_in_odi_creatin - but you would be using the #counter variable in your filename. Each day that the package is run, the counter starts at 1.
    Hope this will fit your needs.
    Enjoy!
    Michael R.

  • Create elemntary file on card with applet?

    Can anybody tell me how create and access to elementary file on card with javacard applet?
    Thank you!!

    Can anybody tell me how create and access to elementary file on card with javacard applet?
    Thank you!!

  • Netbeans creating wsdl file having message with more than one part...

    Hi,
    I am using netbeans 6.0.1. I made an xml schema, then I wanted to make an wsdl that uses that schema.
    I wanted to put in a message more parts(3), and it would not let me. Then, i made the message with just one part, and added the other parts afterwards.
    But now, when I try to make a web service from that wsdl, it says that there is no service in the specified wsdl file.
    And if i let that message with just one part, it will make the Web Service.
    here is the xml schema and the wsdl file:
    XML Schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://xml.netbeans.org/schema/Abruf38"
    xmlns:tns="http://xml.netbeans.org/schema/Abruf38"
    elementFormDefault="qualified">
    <xsd:complexType name="FormRequest">
    <xsd:sequence>
    <xsd:element name="newRequest" type="xsd:boolean"/>
    <xsd:element name="requestNumber" type="xsd:int"/>
    <xsd:element name="vehicleClass" type="xsd:string"/>
    <xsd:element name="vehiclesNumber" type="xsd:int"/>
    <xsd:element name="prefferedType" type="xsd:string"/>
    <xsd:element name="kombi" type="xsd:boolean"/>
    <xsd:element name="usageMission" type="xsd:boolean"/>
    <xsd:element name="usageEducation" type="xsd:boolean"/>
    <xsd:element name="usageGeneral" type="xsd:boolean"/>
    <xsd:element name="usageOthers" type="xsd:string"/>
    <xsd:element name="eqVehicle" type="xsd:boolean"/>
    <xsd:element name="eqDangerous" type="xsd:boolean"/>
    <xsd:element name="eqPlaneSpriegel" type="xsd:boolean"/>
    <xsd:element name="eqBegrstll" type="xsd:boolean"/>
    <xsd:element name="eqMSitzBTruck" type="xsd:boolean"/>
    <xsd:element name="eqVerzurrAusst" type="xsd:boolean"/>
    <xsd:element name="eqOthers" type="xsd:string"/>
    <xsd:element name="bringService" type="xsd:boolean"/>
    <xsd:element name="holService" type="xsd:boolean"/>
    <xsd:element name="chauffService" type="xsd:boolean"/>
    <xsd:element name="otherService1" type="xsd:string"/>
    <xsd:element name="otherService1Chk" type="xsd:boolean"/>
    <xsd:element name="otherService2" type="xsd:string"/>
    <xsd:element name="otherService2Chk" type="xsd:boolean"/>
    <xsd:element name="otherService3" type="xsd:string"/>
    <xsd:element name="otherService3Chk" type="xsd:boolean"/>
    <xsd:element name="activity" type="xsd:string"/>
    <xsd:element name="costPayer" type="xsd:string"/>
    <xsd:element name="costCenter" type="xsd:string"/>
    <xsd:element name="vehicleCost" type="xsd:float"/>
    <xsd:element name="chauffServiceCost" type="xsd:float"/>
    <xsd:element name="holBringServiceCost" type="xsd:float"/>
    <xsd:element name="totalCost" type="xsd:float"/>
    <xsd:element name="tripPurpose" type="xsd:string"/>
    <xsd:element name="fixTermin" type="xsd:boolean"/>
    <xsd:element name="justificationFix" type="xsd:string"/>
    <xsd:element name="requestID" type="xsd:string"/>
    <xsd:element name="rentalPeriod" type="tns:RentalPeriod"/>
    <xsd:element name="carPool" type="tns:CarPool"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="CarPool">
    <xsd:sequence>
    <xsd:element name="poolID" type="xsd:string"/>
    <xsd:element name="poolName" type="xsd:string"/>
    <xsd:element name="orgNumber" type="xsd:string"/>
    <xsd:element name="vehicle" maxOccurs="unbounded" type="tns:Vehicle"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="RentalPeriod">
    <xsd:sequence>
    <xsd:element name="rentalPeriodID" type="xsd:string"/>
    <xsd:element name="startDate" type="xsd:date"/>
    <xsd:element name="endDate" type="xsd:date"/>
    <xsd:element name="startTime" type="xsd:time"/>
    <xsd:element name="endTime" type="xsd:time"/>
    <xsd:element name="startLocation" type="xsd:string"/>
    <xsd:element name="endLocation" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Vehicle">
    <xsd:sequence>
    <xsd:element name="vehicleID" type="xsd:string"/>
    <xsd:element name="vehicleClass" type="xsd:string"/>
    <xsd:element name="vehicleRegisterNo" type="xsd:int"/>
    <xsd:element name="vehicleType" type="xsd:string"/>
    <xsd:element name="seatsNumber" type="xsd:int"/>
    <xsd:element name="cost" type="xsd:float"/>
    <xsd:element name="available" type="xsd:boolean"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Contact">
    <xsd:sequence>
    <xsd:element name="contactID" type="xsd:string"/>
    <xsd:element name="contactName" type="xsd:string"/>
    <xsd:element name="telNumber" type="xsd:int"/>
    <xsd:element name="faxNumber" type="xsd:int"/>
    <xsd:element name="loNo" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Person">
    <xsd:sequence>
    <xsd:element name="personID"/>
    <xsd:element name="department" type="xsd:string"/>
    <xsd:element name="serviceNumber" type="xsd:int"/>
    <xsd:element name="contact" type="tns:Contact"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Department">
    <xsd:sequence>
    <xsd:element name="departmentID" type="xsd:string"/>
    <xsd:element name="fundsDepartment" type="xsd:string"/>
    <xsd:element name="mvwdst" type="xsd:int"/>
    <xsd:element name="distributionNumber" type="xsd:int"/>
    <xsd:element name="contact" type="tns:Contact"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="formRequestElement" type="tns:FormRequest"/>
    <xsd:element name="personElement" type="tns:Person"/>
    <xsd:element name="departmentElement" type="tns:Department"/>
    <xsd:element name="vehicle" type="tns:Vehicle"/>
    <xsd:element name="loadFormReturn" type="xsd:boolean"/>
    <xsd:element name="editFormReturn" type="xsd:boolean"/>
    </xsd:schema>
    Wsdl File:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="userWS" targetNamespace="http://j2ee.netbeans.org/wsdl/userWS"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns="http://xml.netbeans.org/schema/Abruf38" xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:tns="http://j2ee.netbeans.org/wsdl/userWS" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <xsd:schema targetNamespace="http://j2ee.netbeans.org/wsdl/userWS">
    <xsd:import namespace="http://xml.netbeans.org/schema/Abruf38" schemaLocation="Abruf38.xsd"/>
    </xsd:schema>
    </types>
    <message name="loadFormRequest">
    <part name="formRequest" element="ns:formRequestElement"/>
    <part name="person" element="ns:personElement"/>
    <part name="department" element="ns:departmentElement"/>
    </message>
    <message name="loadFormReply">
    <part name="retVal" element="ns:loadFormReturn"/>
    </message>
    <portType name="userWSPortType">
    <operation name="loadForm">
    <input name="input1" message="tns:loadFormRequest"></input>
    <output name="output1" message="tns:loadFormReply"/>
    </operation>
    </portType>
    <binding name="userWSBinding" type="tns:userWSPortType">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="loadForm">
    <soap:operation/>
    <input name="input1">
    <soap:body use="literal"/>
    </input>
    <output name="output1">
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="userWSService">
    <port name="userWSPort" binding="tns:userWSBinding">
    <soap:address location="http://localhost:18181/userWSService/userWSPort"/>
    </port>
    </service>
    <plnk:partnerLinkType name="userWS1">
    <!-- A partner link type is automatically generated when a new port type is added. Partner link types are used by BPEL processes.
    In a BPEL process, a partner link represents the interaction between the BPEL process and a partner service. Each partner link is associated with a partner link type.
    A partner link type characterizes the conversational relationship between two services. The partner link type can have one or two roles.-->
    <plnk:role name="userWSPortTypeRole" portType="tns:userWSPortType"/>
    </plnk:partnerLinkType>
    </definitions>
    The message that Netbeans says when trying to put more parts to the message is:
    WS-I Basic Profile Rule R2210: If a document-literal binding in a DESCRIPTION does not specify the parts attribute on a soapbind:body element, the corresponding abstract wsdl:message MUST define zero or one wsdl:parts.
    Please...I am desperate, cause I am pressed by time!
    Can anyone tell me how can I make it work. Cause it is very common to use a Web service operation that has more than ONE parameter.
    I am waiting for your replys!

    Hi,
    Change the <soap:binding style="document"... to <soap:binding style="rpc"... and see if that works.
    I'm not sure how to get <soap:binding style="document"... working yet - I'm not that experienced in web services yet.
    Hope this helps and is not too late.
    Regards,
    Greg Nye

  • How to create PDF files from word with non-selectable content

    Hi folks,
    I am creating a PDF from a newsletter in Word (using print to Adobe PDF).
    I have checked the options available in the printer, but there are none that seem to allow this.
    I want to prevent the recipent from being able to click on obvious graphic objects e.g. signatures, within the newsletter and copy them to clipboard. I appreciate you can do this still with a screen capture, but I want to make it difficult.
    Is this possible?
    TIA

    That looks like it should work, but it doesn't.
    I opened the PDF I had created from Word in Acrobat (X Pro). Went to File > Properties. Selected "Change Settings". I then enabled "Restrict editing...", set a password, set "Printing Allowed" to "none", "Changes Allowed" to "none", and ensured that "Enable copying of text..." was disabled.
    I saved the PDF file, closed Acrobat, opened the PDF in Reader, and I was still able to select text and graphical objects.
    I reopened the PDF in Acrobat, and the document summart still shows everything as allowed. When I click on "show details" (from File > Properties) it shows the correct settings.
    Any ideas?

  • Creating XML-files in ABAP with format ISO-8859-1 after the use of unicode

    Hello,
    We have a problem with XML-files created in z_abap-programma.
    Before the use of unicode the XML-file was of the format: ISO-8859-1.
    After the introducting of unicode the format is UTF-16.
    In the abap-program we are using:
            CALL TRANSFORMATION xls-program
             SOURCE t_vbak = it_vbak
             RESULT XML xmlstring.
            CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
              EXPORTING
                text     = xmlstring
              IMPORTING
                buffer   = lx_xml_as_string.
            CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
              EXPORTING
                buffer        = lx_xml_as_string
              IMPORTING
                output_length = li_xml_size
              TABLES
                binary_tab    = ltb_xml_table.
            CALL METHOD cl_gui_frontend_services=>gui_download
              EXPORTING
                bin_filesize = li_xml_size
                filename     = lc_filename
                filetype     = 'BIN'
              CHANGING
                data_tab     = ltb_xml_table
              EXCEPTIONS
                OTHERS       = 24.
    Is it prossible to create the XML-file with the format ISO-8859-1 after the unicode, please can you explane how to solve this problem.
    Regards,
    Theo Pijlman

    hi theo,
    did you read my thread i wrote some days before ? have a look in my sample coding find   " if_ixml_encoding ..... " there you can set the encoding of character .
    greetz
    tony
    thread:
    Re: abap to xml
    SAP Explanation for Interface if_ixml_encoding :
    http://help.sap.com/saphelp_nw04/helpdata/de/bb/5766a6dca511d4990b00508b6b8b11/content.htm

  • Photoshop CC 2014 crash when opening or creating new files when running with Cintiq 13HD.

    I have a problem where Photoshop CC 2014 crashes when trying to open or create a new file while the Photoshop window is being displayed on my Cintiq 13HD.
    When Photoshop is being displayed on my main monitor it doesn't crash.
    I'm running Windows 7 (64 bit) and have updated my graphics and wacom drivers to their latest versions and Photoshop is completely up to date. (I'm running the 30-day free trial)
    Here's the event log of the crash:
    Faulting application name: Photoshop.exe, version: 15.2.1.257, time stamp: 0x543dbc5e
    Faulting module name: atig6txx.dll, version: 8.14.1.6398, time stamp: 0x54176130
    Exception code: 0xc0000005
    Fault offset: 0x00000000000122b7
    Faulting process id: 0x23dc
    Faulting application start time: 0x01d0030b1092334e
    Faulting application path: D:\Program Files (x86)\Adobe\Adobe Photoshop CC 2014\Photoshop.exe
    Faulting module path: C:\Windows\system32\atig6txx.dll
    Report Id: 61680f48-6efe-11e4-aeeb-bc5ff45851ea

    As you can already see, your ATI/AMD video card drriver is crashing.
    Update the driver from AMD's website to pick up all the bug fixes you are missing.

  • Got problems with creating RTF-files after OSX update

    Hi
    I don't know if this is really a MAC OS problem, but it occurred after I updated to 10.5.2 - so it's a likely suspect.
    Since the update I can't create RTF-files any more with Final Draft, my script writing program. A file is created, but when I try to open it I get an error message that it cannot be found. But the file is there: I can see it and click on it. It just won't open.
    Only today now I got the same error message with a doc-file I downloaded some months ago.
    The only big change I lately made to my Mac was the update to 10.5.2 and I got the new Office 2008 (both are the German versions). Could the problem come from either of them? I contacted Final Draft's support - they didn't know of the problem.
    Maybe someone else in this forum has encountered similar problems?

    Have you tried to Repair Permissions using Disk Utility?
    1. Open Disk Utility in your Applications/Utility folder.
    2. Click on the icon for your boot volume.
    3. Click on the First Aid tab and select Repair Permissions
    4. Click the repair permissions button.
    This is the first thing to try whenever any program goes wonky. It's free, but takes awhile for all the files that have to be checked and changed.

  • Cannot create a file when that file already exists, but should overwrite

    Hi,
    I need the same file name which is at Sender side and when it reaches to Receiver directory without timestamp.
    for eg., Sender side : Yeswanth.txt
    and also receiver side   :  Yeswanth.txt
    but, here it should overwrite the existing file (because, the sender side file name is always constant) at receiver directory when the job schedules for each time.
    Processing parameters i has given on Receiver side:
    File Construction Mode  :  Create
    put file  : Use Temporary File
    and I enabled the Adapter Specific Message Attributes at Sender side and Receiver side.
    Error getting receiver side at communication channel :
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException:
    Yeswanth.txt: Cannot create a file when that file already exists. : com.sap.aii.adapter.file.ftp.FTPEx: 550
    Yeswanth.txt: Cannot create a file when that file already exists.
    Reward points for useful answers.
    Regards,
    Yeswanth.
    Edited by: YeswanthRaj Kumar on May 23, 2008 8:20 AM

    Hi Yeswanth
    Then you can try with a "Add Counter". This will create new file each time with the same name but a counter will be added to the file name at the end specifying the number of times it is created.
    You can also the specify the format to create the counter once select this option u can correspondingly fill the Format and step fields.
    Will this be fine.
    Regards
    Ashmi

  • Cannot create a file Loader Connection for Linux

    Im using ODQ 11.1.1.3 with the server installed on Linux and client on Windows.
    I have created a directory on the server for all my data files. The user (oracle) that starts the scheduler has full read write access to these directories.
    In Metabase Manager I try and create a delimiter loader connection specify the linux directory location (/u02/oracle/data/tss). I get no error from the client and no error in the mtb_server.log file.
    I have looked at the documentation http://download.oracle.com/docs/cd/E17904_01/core.1111/e16453/odpinstalling.htm#BCGDJHIH, what seems strange is that it tells you to create a user and this is how it is accessed but it does not tell you how to link the metabase manager to that user, or am I missing something.
    any help greatly appreciated.
    cheers
    James

    Hi Yeswanth
    Then you can try with a "Add Counter". This will create new file each time with the same name but a counter will be added to the file name at the end specifying the number of times it is created.
    You can also the specify the format to create the counter once select this option u can correspondingly fill the Format and step fields.
    Will this be fine.
    Regards
    Ashmi

  • Create dvd files

    Hello. I would like to know if there is any way to make/manage/create VIDEO_TS files. Or any idea what I should try to look for to find out?

    Hunter78 wrote:
    Hello. I would like to know if there is any way to make/manage/create VIDEO_TS files. Not with Java. You can easily create VIDEO_TS files using any number of DVD-creation utilities. Go search google for them...

  • Identifying relations to simulate M:N relation with attributes

    Hi,
    I'm always using 3.1.4
    In this version, M:N relations don't support attributes. In 3.3 it is supported. But sometimes, it's necessary in a logical model to have an entity which represent the relation. So I can add another relation between this "associative entity" and another entity. Like in Oracle Designer, if i want to create a M:N relation with attributes, I have to create an entity with two identifying relations
    So I created :
    Student, Registration and Stage entities
    Identifying relation between Student and Registration
    Identifying relation between Stage and Registration
    Registration with several attributes. So Registration is an "associative entity".
    But when I do this in DM :
    In Registration entity, there are two unique identifiers
    the first one (which is PUID) is correct, it references the two relations
    The second is incorrect. It should not to exist.
    is it right ?

    3° create entity Registration, with one column : dateRegistration (NOT primary UID)I assume there is a UID created (not set as PK) and it's over dateRegistration attribute
    2° create entity Stage, with 2 columns : Numero (primary UID), code, descriptionyou write 2 columns, but 3 are listed, the number is not important just to confirm that Primary UID is created on Numero attribute.
    So entity Registration has one UID before identifying relationships are created. You need to check setting in "Preferences>Data Modeler>Model>Logical>Use and set first unique key as primary key"
    One Primary UID only exists in Registration in case it's checked, and there is one Primary UID (over both relationships) and one UID over dateRegistration attribute in case it's not checked.
    Philip

Maybe you are looking for