Create XML external file through BIP

Hi All,
I'm trying to create an XML document to send to a printing company.
I've created the XSL template file and uploaded into BIP as an XSL Stylesheet.
The problem I'm having is how to call the stylesheet from within an RTF file, so I can create an XML formatted file to send to the printing company.
Can anyone point me in the right direction?
Thanks, Rod.

Marcus
i'd recommend you create an empty project file in FCP and export it to XML.
use the exported file as resource data, as it provides you with the basic XML project file container.
then you can just add the additional <parent> and <child> elements as required
also highly recommended would be the free XMLLib osax from Satimage, although it would be better if you learn how to do it with the built in libraries
for basic aplescript info, visit http://applescriptsourcebook.com/
cheers
Andy

Similar Messages

  • Help with delivering dynamic text through an external file, through XML?

    I'm struggling to find the best way to deliver dynamic text
    from an external file, through XML, to a Flash file.
    I use small Flash pieces to deliver multiple sets of content
    through a single .swf file. An example is here:
    http://www.esi-intl.com/public/government/federal.asp
    In the .swf file at the bottom, I'm using a three-scene .fla
    file. I'm putting the actionScript in the Actions layer atop each
    frame. Example:
    stop ();
    loadVarsText = new LoadVars();
    loadVarsText.load("fedNews.txt");
    //assign a function which fires when the data is loaded:
    loadVarsText.onLoad = function(success) {
    if (success) {
    trace("done loading");
    //Now that we know the data is loaded,
    //set the text content of the Text Field
    //with the instance name "scroller" equal to the
    //contents of the variable
    scroller.html=true;
    scroller.htmlText = this.var1;
    } else {
    trace("not loaded");
    In that .txt file, I'm putting the information like this:
    var1=<font face="tahoma,verdana,sans-serif" size="11px"
    color="#000000"><b><a href='
    http://www.esi-intl.com/public/classroomtraining/dau.asp'>DAU
    Grants ESI Course CON353
    Equivalency</a></b><br>Advanced Business Solution
    in Contracting (CON 353) is an equivalency for DAU's CON 3535
    course, Advanced Business Solutions for Mission Support. <a
    href='
    http://www.esi-intl.com/public/classroomtraining/dau.asp'><U><font
    color="#996633">Continue</font></U></a></font>
    So much of this is pick-ups from what I've researched in
    Google. I'm looking for a way I can feel more confident in my code,
    and also have that code follow CSS.
    Lastly, I recognize the problems in XML with using single
    quotes / double quotes, and the & symbol. This is one of my
    largest time sucks, and I'd like to find a better way to do this.
    Thank you

    Hi,
    Did you ever find a resolution to this? I'm having a similar
    issue that I can't seem to get multiline dynamic text working in
    CS3.
    The font is embedded but it just displays the first line, and
    then a blank. I'm sure this worked fine in Flash MX.
    Cheers, Ant

  • Create XML entity file

    Hi All
    I am creation the XML file using SAP XML DOM Libarary objects.
    My requirement is to create the EXTERNAL ENTITY file reference using DOCTYPE tag.
    For Example
    <;!DOCTYPE descriptSol [
    <;!ENTITY % references SYSTEM "P_899200_SD01_01.ref">;
    %references
    ]>
    I am using following method to create it
    lo_doc_type                 TYPE REF TO if_ixml_document_type,
    lo_entity_dec               TYPE REF TO if_ixml_entity_decl,
              CALL METHOD go_document->;create_document_type
                EXPORTING
                  name =  'descriptSol'
                RECEIVING
                  rval = lo_doc_type.
              CALL METHOD go_document-&gt;set_document_type
                EXPORTING
                  document_type = lo_doc_type.
              CALL METHOD lo_doc_type->create_ext_entity_decl
                EXPORTING
                  is_parameter_entity = 'X'
                  name                = 'references'
                  notation            = ''
                  public_id           = ''
                  system_id           = 'P_899200_SD01_01.ref'
                RECEIVING
                  rval                = lo_entity_dec
              CALL METHOD lo_doc_type->append_child
                EXPORTING
                  new_child = lo_entity_dec
                RECEIVING
                  rval      = lw_rval.
    The Above code is working and creating following tag
    <;!DOCTYPE descriptSol [
    <!ENTITY % references SYSTEM "P_899200_SD01_01.ref">;
    ]>;
    So % references at end of declaration is missing.
    This type of entity is called as "EXTERNAL (PARSED) PARAMETER ENTITY Declaration".
    Give your suggestions that whether i am using right method to created EXternal entity reference.
    Thanks in advance
    Vineet

    First - you need to have a valid RSS feed to submit to iTunes.
    Second - you should never have spaces in file names
    Third - Dropbox is a bad choice for a podcast host.
    http://www.podcast411.com/podcast101/
    Here is a tutorial that takes you step by step through getting a podcast put together.
    Let me know what questions you have.
    Regards,
    Rob W
    podCast411

  • Create .XML Project File from Scratch

    Hi,
    i am from germany, currently writing my bachelors degree creating an automated video editing solution based on final cut studio (yeeessss ... finally
    I need to write complex final cut pro projects FROM SCRATCH in an EXTERNAL .XML editor using to greatly speed up the workflow. This means i am looking for any help regarding this topic, such as applescripts who can assist me in doing this.
    (Example: Create an Final Cut (.xml) Project with applescript that has already included links to media on an external server, has music in it etc.)
    I already have the "FinalCutPro_XML" reference and the "quickie_slate" Applescript which is a start. Any more tips where to look would be greatly appreciated.
    Thanks in advance!
    Best Regards,
    Markus
    MacBook Pro 17", Mac Mini   Mac OS X (10.4.8)  

    Marcus
    i'd recommend you create an empty project file in FCP and export it to XML.
    use the exported file as resource data, as it provides you with the basic XML project file container.
    then you can just add the additional <parent> and <child> elements as required
    also highly recommended would be the free XMLLib osax from Satimage, although it would be better if you learn how to do it with the built in libraries
    for basic aplescript info, visit http://applescriptsourcebook.com/
    cheers
    Andy

  • How to create a .java file through a j2me program?

    I am trying to develop a small application in j2me which needs dynamic creation of a .class file. For this purpose I tried to create .java file through my j2me code, but i could not do that..I want to know whether a java file can be created on a mobile phone or not..
    I would be grateful to you on your help in this regard..

    ...develop a program xyz.java using j2me which performs the following functionalities:
    1.create a file called abc.java
    2.extract its class file...For +1+ ie to create a file (any file, no matter java or not) from j2me, device need to support File Connection specified in [jsr 75|http://www.jcp.org/en/jsr/detail?id=75]. If you're interested, learn the jsr API on how to create and manage needed file.
    For +2+ described as extract its class file one needs to have java compiler (javac) on device. *) If you're interested, ask for more details at [Java Compiler forum|http://forums.sun.com/forum.jspa?forumID=7]. Also, if the class file is for CLDC then javac needs to support "JDK 1.3-compliant" compilation. To create CLDC classes on device, one also needs to have a preverifier tool. Check this at Java Compiler forum if needed.
    Good luck - I think you'll need a lot of it...
    *) javac on device -- it should not only be present but also provide a j2me API allowing to invoke it for particular java file with needed options. Same applies to preverifier tool.

  • Problem generating XML data file through XSD

    Hello there,
    I'm trying to generate an XML data file as per the below steps:
    Making a normal schema in query transform.
    Mapping desired source column into query schema.
    Right click on query transform and generating XML schema (XSD) in my local system.
    In object library XML file format adding the XSD with schema as a root element.
    Creating target instance from object library XML file.
    In target file specifying file creation path in my local system. 
    After performing above steps and executing the job getting below error.
    Any help on this will be much appreciated.
    Regards,
    Jagari

    I found some code looking at a similar issue - I don't know how to recover other data (in I guess) the rest of the HTML in the code. I need to find a better reference with details and examples.
    I fixed it by changing:
        ssDebug.trace(moreStuff.xliff.file.body.trans-unit); // - error
    to:
       ssDebug.trace(moreStuff.file.body['trans-unit']); //- no error
    with expected output (no error):
    <trans-unit id="001" resname="IDS_ZXP7_JAM_01">
      <source>If, while you are printing, your printer stops, ...</source>
    </trans-unit>
    <trans-unit id="002" resname="IDS_ZXP7_JAM_02">
      <source>look at the Operator Control Panel (OCP) for the fault description.</source>
    </trans-unit>
    <trans-unit id="003" resname="IDS_ZXP7_JAM_03">
      <source>If the fault is a card jam, open and close the Print Cover (or Options Cover).</source>
    </trans-unit>
    <trans-unit id="004" resname="IDS_ZXP7_JAM_04">
      <source>The printer will initialize and move the jammed card to the Reject Bin.</source>
    </trans-unit>
    <trans-unit id="005" resname="IDS_ZXP7_JAM_TITLE">
      <source>Card Jam</source>
    </trans-unit>

  • How to Create a text file through Portal

    Hi,
    Is there any way to create a text file(e.g Excel file) through Portal? Thanks.
    Sumita

    I have a way to do this in VBScript, I don't know if it will work with the portal but the steps are simple. If you can create a text file within portal, try to create it as an html table:
    <table>
    <tr>
    <td>Column Header 1</td>
    <td>Column Header 2</td>
    </tr>
    <tr>
    <td>Value 1</td>
    <td>Value 2</td>
    </tr>
    <tr>
    </tr>
    </table>
    When you create this file save it with XLS extension instead of TXT, create a link to it and voila! it will load Excel and you will have your data well formatted. I found this method rather better than save the file as a CSV. You can also include any html attribute inside the <TD> or <TR> like background color and font type, Excel will keep those attributes.
    I hope this will help
    Arturo

  • Creating xml format file with double dagger ‡ as delimiter

    Hi,
    My source files are delimited with double dagger (‡) and I am using openrowset to load the files to SQL Server. When I am creating the format file by specifying the delimiter as ‡, the format file created has a different delimiter than the specified one.
    The new delimiter appearing in xml format file is ç.
    Any help?
    TIA
    Nitesh Rai- Please mark the post as answered if it answers your question

    How did you create format file?
    Try this method and see if it works
    http://visakhm.blogspot.com/2013/10/generate-format-files-based-on-table.html
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • What is the command to create a jar file through Command Promt?

    Hi,
    I done my java project. Now i need to create a exe or jar file to fully complete it. I decided to create a jar file. Because, It'll support both PC and MAC. I exported my JAR file through eclipse. But that jar file loads without images and icons when it is in other directory. How can i include images folder in a JAR File.
    For ex:
    I have parent folder named "Support". Under this there is 3 subfolder namely
    bin - Classes
    src - java files
    images - image files.
    I need to create jar file to "Support" folder which should contain all the above mentioned sub folders.
    I need to execute this jar file anywhere which should not depend on the above mentioned folders which mean adding the images folder in that created jar file.
    Pls guide me for this problem.
    Thanks in advance
    Regards,
    Mohan

    But that jar file loads without images and icons when it is in other directory.Images should be accessed via a URL rather than using a filename because they will exist as entries in the jar archive not as files. Typically this URL would be obtained by using the Class method [getResource()|http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getResource(java.lang.String)]. There are details in this [Java World article|http://www.javaworld.com/javaworld/javaqa/2002-11/02-qa-1122-resources.html].

  • Create XML format file in bulk insert with a data file with out delimiter

    Hello
    I have a date file with no delimiter like bellow
    0080970393102312072981103378000004329392643958
    0080970393102312072981103378000004329392643958
    I just know 5 first number in a line is for example "ID of bank"
    or 6th and 7th number in a line is for example "ID of employee"
    Could you help me how can I create a XML format file?
    thanks alot

    This is a fixed file format. We need to know the length of each field before creating the format file. Say you have said the first 5 characters are Bank ID and 6th to 7th as Employee ID ... then the XML should look like,
    <?xml version="1.0"?>
    <BCPFORMAT xmlns="http://schemas.microsoft.com/sqlserver/2004/bulkload/format"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <RECORD>
      <FIELD ID="1"xsi:type="CharFixed"LENGTH="5"/>
      <FIELD ID="2"xsi:type="CharFixed"LENGTH="2"/>
      <FIELD ID="3" xsi:type="CharFixed" LENGTH="8"/>
      <FIELD ID="4" xsi:type="CharFixed" LENGTH="14"/>
      <FIELD ID="5" xsi:type="CharFixed" LENGTH="14"/>
      <FIELD ID="6" xsi:type="CharFixed" LENGTH="1"/>
    </RECORD>
    <ROW>
      <COLUMNSOURCE="1"NAME="c1"xsi:type="SQLNCHAR"/>
      <COLUMNSOURCE="2"NAME="c2"xsi:type="SQLNCHAR"/>
      <COLUMN SOURCE="3" NAME="c3" xsi:type="SQLCHAR"/>
      <COLUMN SOURCE="4" NAME="c4" xsi:type="SQLINT"
    />
      <COLUMN SOURCE="5" NAME="c5" xsi:type="SQLINT"
    />
    </ROW>
    </BCPFORMAT>
    Note: Similarly you need to specify the other length as well.
    http://stackoverflow.com/questions/10708985/bulk-insert-from-fixed-format-text-file-ignores-rowterminator
    Regards, RSingh

  • Create an external file

    Is it possible to build a flash programme that will create
    new files that can be accessed or edited. I would like to know all
    the possible ways.

    This is a multi-part message in MIME format.
    ------=_NextPart_000_0019_01C68ADA.8B87E340
    Content-Type: text/plain;
    charset="Windows-1252"
    Content-Transfer-Encoding: quoted-printable
    1. You could place the XML or raw data in the Flash movie or
    in external =
    Flash movies. In the latter case the main Flash movie would
    then load =
    the=20
    external Flash movie and use the data. Again only a skilled
    ambitious =
    person=20
    would attempt the decompiling and analysis process. If the
    external =
    movie is=20
    played they would see nothing since it only has code.
    For desktop Flash implemented application you could deliver
    new quizzes =
    via=20
    updated external Flash movies containing the quiz data.
    2. You could use a server side script that gets an XML
    structure from =
    Flash=20
    that has a unlock value and then the script returns the XML.
    If the =
    script=20
    does not get the correct lock value it returns a blank web
    page or a web =
    page with whatever. You Flash movie XML would then use
    sendAndLoad to=20
    connect to the script and other than the send XML value(s)
    your =
    Actionscript=20
    would be the same.
    Still a real ambitious person could get the unlock code from
    decompiling =
    the=20
    Flash movie with third party tools. If that is an issue, then
    you could=20
    request the unlock code in your Flash movie and change it
    from time to =
    time=20
    in the server side script.
    --=20
    Lon Hosford
    www.lonhosford.com
    Flash, Actionscript and Flash Media Server examples: =
    http://flashexamples.hosfordusa.com
    May many happy bits flow your way!
    "Flash Dhana" <[email protected]> wrote in
    message =
    news:[email protected]...
    Hi all,
    I have one issue. I have many xml files with my lesson, when
    i am =
    delivering=20
    to the client, i use to give all the files. But the xml file
    contains =
    questions=20
    and answers, so user can open the xml file and know the
    answer. is there =
    anyway=20
    to protect the xml file? also i need to get the content to
    flash from =
    the same=20
    file.
    (I am not writing anything in the xml file, just reading
    content from =
    xml file)
    Please suggest.
    ------=_NextPart_000_0019_01C68ADA.8B87E340
    Content-Type: text/html;
    charset="Windows-1252"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=3DContent-Type content=3D"text/html; =
    charset=3Dwindows-1252">
    <META content=3D"MSHTML 6.00.2900.2873"
    name=3DGENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY bgColor=3D#ffffff>
    <DIV><FONT color=3D#008000 size=3D2><FONT
    color=3D#000000 size=3D3>1. =
    You could place=20
    the XML or raw data in the Flash movie or in external
    <BR>Flash movies. =
    In the=20
    latter case the main Flash movie would then load the
    <BR>external Flash =
    movie=20
    and use the data. Again only a skilled ambitious person
    <BR>would =
    attempt the=20
    decompiling and analysis process. If the external movie is
    <BR>played =
    they would=20
    see nothing since it only has code.<BR><BR>For
    desktop Flash implemented =
    application you could deliver new quizzes via
    <BR>updated external Flash =
    movies=20
    containing the quiz data.<BR><BR><BR>2. You
    could use a server side =
    script that=20
    gets an XML structure from Flash <BR>that has a unlock
    value and then =
    the script=20
    returns the XML. If the script <BR>does not get the
    correct lock value =
    it=20
    returns a blank web page or a web <BR>page with
    whatever. You Flash =
    movie XML=20
    would then use sendAndLoad to <BR>connect to the script
    and other than =
    the send=20
    XML value(s) your Actionscript <BR>would be the
    same.<BR><BR>Still a =
    real=20
    ambitious person could get the unlock code from decompiling
    the =
    <BR>Flash movie=20
    with third party tools. If that is an issue, then you could
    <BR>request =
    the=20
    unlock code in your Flash movie and change it from time to
    time <BR>in =
    the=20
    server side
    script.</FONT><BR><BR></FONT></DIV>
    <DIV><BR>-- <BR>Lon
    Hosford<BR><A=20
    href=3D"
    http://www.lonhosford.com">www.lonhosford.com</A><BR>Flash,
    =
    Actionscript=20
    and Flash Media Server examples: <A=20
    href=3D"
    usa.com</A><BR>May=20
    many happy bits flow your way!</DIV>
    <DIV>"Flash Dhana" &lt;<A=20
    href=3D"mailto:[email protected]">[email protected]=
    </A>&gt;=20
    wrote in message <A=20
    href=3D"news:[email protected]">news:e689nv$fvn$1@forums=
    .macromedia.com</A>...</DIV>Hi=20
    all,<BR><BR> I have one issue. I have
    many xml files with my =
    lesson, when i=20
    am delivering <BR>to the client, i use to give all the
    files. But the =
    xml file=20
    contains questions <BR>and answers, so user can open
    the xml file and =
    know the=20
    answer. is there anyway <BR>to protect the xml file?
    also i need to get =
    the=20
    content to flash from the same
    <BR>file.<BR><BR> (I am not writing =
    anything=20
    in the xml file, just reading content from xml
    file)<BR><BR> Please =
    suggest.<BR></BODY></HTML>
    ------=_NextPart_000_0019_01C68ADA.8B87E340--

  • How2 create xml & ent  files from JAVA? (xml that gets data from ent file)

    Is there any API that can make it easy?
    * For parsing XML I use JDOM parser
    I want to create file like this:
    XML file: some.xml
    <?xml version="1.0"?>
    <!DOCTYPE xfat [
    <!ENTITY  d_request SYSTEM  "some.ent">
    ]>
    <!--
    /home/bNUMBER/Programs/XFAT/runxfat some.xml
    -->
    <xfat title = 'Fat Title (some) '>
    <database  filename = 'Some_Data/some.xml'/>
    <snc  filename  = "../snc/snc.xml"/>
    <configuration sp = '../sp/some_only.xml' name='Some_A-H'>
       &d_request;
    </configuration>
    </xfat>and ent file:
    <ddef title    = 'some d def title (some)'>
         <dcalc  snc    = '7_A9'
                meas   = 'm73'
                red    = 'GOOD' binval='MCMS' lug='YES'/>
    </ddef>

    has anyone idea what to search?

  • How create XML example file from DTD

    Hi,
    I'm using for good tips/solution (I didn't find anyone) how to create example xml from existing DTD?
    Best Regards,
    Rafal

    Various tools are available generate an XML document from a DTD.
    http://www.eclipse.org/webtools/community/tutorials/XMLWizards/XMLWizards.html
    http://www.altova.com/products/xmlspy/dtd_editor.html
    http://www.stylusstudio.com/xml_generator.html

  • Create external file ........

    my system config: windows 7 and Oracle sql developer 11g.......
    I can not create any kind of external file ........
    pls help me with an example ,with below complete steps
    1.create directory
    2.grant directory
    3.create with external file location

    923746 wrote:
    my system config: windows 7 and Oracle sql developer 11g.......Are you describing the configuration of the client machine? The server machine? Or are you running both the client and the database server on one machine?
    1.create directory To create a directory object in Oracle
    CREATE DIRECTORY directory_name
        AS '<<path on server to a directory that exists on the server>>'That assumes that the path you specify in the DDL already exists on the database server
    2.grant directory
    GRANT read ON directory_name TO user_name;
    GRANT write ON directory_name TO user_name;
    3.create with external file location
    DECLARE
      l_file utl_file.file_type;
    BEGIN
      l_file := utl_file.fopen( directory_name, file_name, 'w', 32767 );
      utl_file.put_line( l_file, 'Some text' );
      utl_file.fclose( l_file );
    END;Justin

  • Images in the folders of an external file system KM

    Hello,
    We are facing a problem in our KM, the thing is We have created a external file system in our KM, it is green and almost everythings is working fine... In the CM repository we have assigned the "properties" as a repository services, but in the setting of our folders we can not see the tab of rendering within the properties.
    This is our problem without this tab of rendering We can not assign a image for this folder .. And We need to assign imaged to the folders.
    Does anyone know whether we need to add new repository sevices to our file system ? or it is impossible to assign an image to a folder in a external file system within the knowledge management.
    Thanks in advance.
    OLAF

    We have found the reason why we did not have the rendering option for assign images to the folder in a external repository.
    Our guess was good, We should have added a new "repository services" called "layout service".
    Thanks for reading this.

Maybe you are looking for

  • Is OS X Mavericks compatible with HP Photosmart C4280?

    I am waiting to upgrade to Mavricks until I know if my printer will be compatible with Mavericks. I checked the HP website, and there are currently no drivers for my printer. Does this mean that the printer won't be compatible or do I just have to wa

  • Using Mac Mini as DRV

    I'm thinking about getting a new mac mini to use as a media center and DVR. I've found several software programs to record on a mac. EvolutionTV, AlchemyTV, MyTV/x, EyeTV are some of them. Has anybody tried these programs? Any opinions on plusses and

  • Multiple levels escalation for deadline monitoring

    Hi all, We have a business requirement to perform multiple levels escalation in one of the workflow steps. If the approver does not approve the work item(WI) after one day,  a mail notification will be sent to the approver.  A second mail will be sen

  • In Mail, how to view graphical HTML emails?

    I have received an email in graphical HTML format - a series of venues and dates for a band in the form of a grid. It shows up beautifully in webmail, but in Apple Mail it shows uselessly as unformatted and unpunctuated text. Is there any setting in

  • Disabling selection parameters

    Hi ,          I have 3 parameters and without using At selection-screen output. how to disable two of the parameters. frnds plz help. regards, satya