How to merge xsl and xliff?

Hi,
BI Publisher does not refer to xliff when xsl-fo is used as a template,Is there any way to pick up xliff using xsl as template?
Please help
Thanks

for TemplateViwer
may be it's a bug for xsl-fo + xml data + xliff
because for rtf + xml data + xliff working fine
also want to note that TemplateViwer load xliff before processing/merging
[082412_135739006][][STATEMENT] Log Level is changed to STATEMENT
[082412_135739007][oracle.xdo.template.FOProcessor][STATEMENT] FOProcessor.setXLIFF(String) is called with 'c:\tmp\color.xlf'.
[082412_135739007][oracle.xdo.template.FOProcessor][STATEMENT] FOProcessor.setData(InputStream) is called.
...but not used for xsl-fo; but used for rtf
post SR. it's interesting problem :)

Similar Messages

  • How to merge theme and slideshow

    Hello Guys
    I need your help on how I can merge theme and slideshow. I am trying to save the slideshow to an external hard-drive where i store my movies without having to burn it. The options I have are:SAVING AS DISC IMAGE and SAVING AS VIDEO TS_FOLDER.
    If i save my project using either of the two, it saves them as a FOLDER and when you open the folder, there are 2 other folders which are AUDIO _TS and VIDEO_TS. This is where the slide gets SPLIT- result is you have the theme separated from the slide show. This then means that I have to play the theme first and then go on to select the slideshow.
    I just want it to be as simple as just clicking on the slideshow and then it plays the theme and gives me the option to start the slideshow just as it happens to a burned DVD.It will automatically play the theme first.
    Please help!

    Thanks for responding
    I am using an External hard drive which can be connected to a TV. Its one of those you can save all your videos and music ect...Yes the Audio_TS folder is empty.
    Just a bit more info for you-: If I burn a slideshow project with a theme, I can automatically see the theme and the title ect.. and can also click play to start the slideshow.
    But when saved as a DISK IMAGE or VIDEO_TS, It will ONLY start playing the slideshow without showing THEME,TITLE ect..

  • HT204053 how to merge iCloud and Apple IDs?

    How can I merge my iCloud and Apple ID's?

    I just got off the phone with Apple's support (got transferred several times, but they finally transferred me to an "expert" in the security department.
    I'm moving to the east coast, and my current ISP is only local to the California Bay Area, so I need to use a new email address for my AppleID.  I thought the obvious choice would be my icloud.com email address.
    The Apple support "expert" was confused, but eventually said I'd need to create a non-apple email to use as my email address for my existing AppleID if I didn't want two separate ID's.
    My response was "So Apple is recommending that I do NOT use iCloud and I should create an non-Apple email account?"  He said "Unfortunately, yes."
    Come on Apple - you look riduculous.  You're abandoning loyal long time customers by saying either create and manage two AppleID's or don't use "iCloud" so you can have a single AppleID.
    It's time for Apple to step up and fix this ridculous mess.

  • How to merge wireless and ethernet networks?

    I have a TC with one Mac connected through ethernet and the other Mac and iOS devices connecting through wireless. How can I merge the ethernet network and the wireless network so that I can share iTunes libraries between the 2 Macs? Thanks

    Thanks for you help.
    This would take care of the "normal" file sharing between the 2 Mac. But I'm trying to use the iTune feature called Home Sharing, which allow sharing music etc among familly computers that are on the same network, independantly (as far as I understand) of any file sharing set up in the Mac OS. However my experience so far is that the 2 Mac between which I want to apply this Home Sahring feature have to be on the same network. Indeed even if I only have a TC as my router, the 2 Mac have to be on the same wireless network (main or guest). Since one of my Mac is on the ethernet network and the other on the wireless (main) this does not seam to work. I feel that somehow this Home sharing feature looks for the name of the network and make sure that the 2 computers between which I'm trying to enable sharing use the same network (i.e. same name). However the ethernet network does not have a name....
    For now, the solution is to have the ethernet wired Mac to also be connected on the wireless network. I'm just not sure how the OS is handeling the connection to 2 networks (hopefully giving priority to the faster/more reliable ethernet one).

  • How to merge menubar and tab bar?

    Currently, the menubar and the tab bar are separate bars and therefore take up double vertical space.
    How can I merge them so that tabs would show to the right of the menubar?
    Please help.
    Thanks.

    Both the menu items and the tabs are tied to their own dedicated toolbar and can't be moved to another toolbar.
    Both allow other items to be placed on their toolbar and you can use an extension to subsequently hide empty toolbar if you can't do this in Firefox.
    You would need to use an extension that either makes it possible to merge the two toolbars or collapse the menu items in a toolbar button and place that button on the Tab bar.

  • How to merge request and dependent task

    Hello,
    I would like to merge some TOs generate during the last month and I see than I have some object which are missing because they are only present in tasks.
    Is it possible to choose all objects contains in requests and dependant tasks when we have only the requests number?
    Thanks for your answers
    Regards,
    Nico.

    Tasks are designed to be run once. If you want restart functionality, use a service:
    http://docs.oracle.com/javafx/2/api/javafx/concurrent/Service.html
    The sample service I posted in the following thread demonstrates how to do this:
    Multithreading
    Use of Executors is not necessary as a Service encapsulates the execution thread management (though you can set your own executor on the service if you really needed it). All you need to do is make use of the service start, cancel, restart and reset methods as required. If you do use the cancel method, then you need to make sure that your service is properly interrupt aware for the cancel to function as you expect.

  • How to merge PDF and html using vba

    I've successfuly implemented code to merge multiple PDFs.  However when pointing to an HTML file, my code seems to leave it out and continue to merge the rest of the PDF files.  What am I doing wrong with my code?
    Dim objCAcroPDDocDestination As acrobat.AcroPDDoc
    Dim objCAcroPDDocSource As acrobat.AcroPDDoc
    dateFormat = Format(Now, "mmddyy")
    dateformat2 = Format(Now, "mm-dd-yyyy")
    Dim sourcefile As String
    'Initialize the objects
    Set objCAcroPDDocDestination = CreateObject("AcroExch.PDDoc")
    Set objCAcroPDDocSource = CreateObject("AcroExch.PDDoc")
    'Open Destination, all other documents will be added to this and saved with
    'a new filename
    objCAcroPDDocDestination.Open ("location\Daily.pdf")
    'Do your loop here to open subsequent documents that you want to add
    'Do
      'Open the source document that will be added to the destination
       'objCAcroPDDocSource.Open (location & "07-" & "032613" & ".pdf")
      For count = 2 To 13
        If count < 10 And count <> 5 Then
            objCAcroPDDocSource.Open (location & "0" & count & "-" & dateFormat & ".pdf")
        Else
            objCAcroPDDocSource.Open (location & count & "-" & dateFormat & ".pdf")
        End If
        If count = 5 Then
            objCAcroPDDocSource.Open (location & "0" & count & "-" & dateFormat & ".html")
        End If
        If objCAcroPDDocDestination.InsertPages(objCAcroPDDocDestination.GetNumPages - 1, objCAcroPDDocSource, 0, objCAcroPDDocSource.GetNumPages, 0) Then
        Else
            '0 problem
        End If
        objCAcroPDDocSource.Close
      Next count
    'loop
    objCAcroPDDocDestination.Save 1, location & dateformat2 & "-Daily.pdf"
    objCAcroPDDocDestination.Close
    Set objCAcroPDDocSource = Nothing
    Set objCAcroPDDocDestination = Nothing

    Since I could open an .html file using Abode Acrobat 9 Pro, I thought I'd be able to pass .html to the .open() method. Am I going about this the wrong way? I have the option to select all files in a particular folder and combine them (.html and .pdf).  Does anyone know what method is called when I do this?  I have an option to "Combine Supported Files in Acrobat" when I right click on a group of files.

  • How to merge exchange and imcloud contacts

    I am using outlook at work and I sync my mail, calendar and calendar with my ipad through exchange.
    I activated icloud to have my contacts and calendar synchronized on my iphone, but the info of my outlook are not synchronized.
    Is there anyway to merge the icloud and exchange data?

    iCloud only syncs contacts in your iCloud account, not your exchange account.  You would have to copy or move your exchange account contacts to your iCloud account in order to have them sync with iCloud.  Unfortunately, you can't export them from Outlook in a compatible format to allow you to import them to iCloud.  You could, however, try using an app like Speed Names to do this on your phone.

  • How to merge FB and Microsoft account

    I'm a mac user, using latest OS. I have Skype with my FB account and also with my microsoft account [e-mail removed for privacy and security] I can't merge them. I follow instructions which imperfectly describe windows.

    Hello I am Alex I am using skype

  • How to merge standard and Custom BADI into one BADI..

    Hello all,
    I have two BADI's.
    1) standard BADI
    2) Custom BADI
    I need to merge these two into a single BADI. Is that Possible.
    If yes how to move forward, because I am new to BADI.
    Waiting for reply.
    Subba

    Solved...created a new implementation for this...

  • QT 7.1.5: How to merge Video and Audio tracks?

    I have a movie without a sound track and a mp3-file which I want to merge. I know that both should have the same length.
    First I opened the audio file, selected all, copied it - then opened the video file, selected all and pasted it. Sounds good and functioned properly.
    Trying to start the movie on another Macintosh, QT asks for the mp3-file. What went wrong, what to do?
    Greetings from the middle of Germany
    Herbert

    You failed to save the new file as "self-contained".
    You should use Save As and check the box for self-contained.

  • Stepper motor 8SMC1-USBhF and power meter PM100D: how to merge the two VIs into one and make a XY graph of the current position and the power

    Hi there,
    I have a stepper motor (8SMC1-USBhF) and a power meter (PM100D). I want to measure the power while the stepper motor is moving, and obtain an XY graph with the current position on x axis and the power on y axis. So I just merged the two VIs together by copying and pasting, and created local variables for current position and readout value, and changed them to read, and then linked them to the XY graph, but apparently it doesnt work.
    So could you please instruct me how to merge them and obtain an XY graph appropriately?
    Attached are the two VIs.
    Thank you!
    Attachments:
    PM100D Simple Example.vi ‏42 KB
    StepperMotor.vi ‏97 KB

    Hello,
    The XY graph requires that each datapoint on the X axis corresponds to a datapoint on the Y axis.  To create XY data you will need to creat two arrays of X data and Y data with the same amount of elements then cluster the two arrays together to wire into the XY graph.  As an example take a look at the VI snippet below.  Is there a specific error being thrown?
    Regards,
    Isaac S.
    Applications Engineer
    National Instruments

  • Merging labview and mathscript array question tia sal2

    Greetings,
    I really like mathscript functionality it’s just taking a
    while to learn how to merge labview and mathscript together.  I can get an XY graph out which plots the
    correct wave function (thanks to the forums help) the problem is going from 1-D
    Array of cluster 2 elements to 1-D of waveform Double so I can get a sound representation
    of the waveform. 
    Anyone have any suggestions.
    Tia sal2
    Attachments:
    mathscript formula to sound with waveform graph.vi ‏248 KB

    Sorry not sure what happened internet gremlins maybe...here's the vi and graphic image
    Second try Hopefully this will work
    Attachments:
    mathscript formula waveform graph.vi ‏1 KB
    image_of_mathscript_to_labview.jpg ‏108 KB

  • Merge rpd and webcat

    Hi All,
    Can someone give me the pointers where I can know how we merge rpd and webcat.
    Thanks a lot in advance.
    Regards,
    Amrit

    Hi,
    To merge the repositories follow steps in the below link.
    http://oraclebizint.wordpress.com/2008/03/24/oracle-bi-ee-101332-merging-repositories-substitute-for-import-from-repository-2-way-merge-with-no-parent-part-2/
    To merge Wecatalogs use the catalog manager. copy from old catalog to New catalog.

  • I have two iTunes accounts, one for music and another for audiobooks.  I want to merge them and maintain only one iTunes account.  How do I do it?

    I have two iTunes accounts, one for music and another for audiobooks.  I want to merge them and maintain only one iTunes account.  How do I do it?

    You cannot.

Maybe you are looking for

  • Problem in MSS - Create Requisition

    Hi All, We implementing E Recruitment on EHP4 sp4. we are facing a strange issue in the MSS-Create requisition request scenario. We are using standard HCM process HR_MSSRCF_REQUISITION. MSS user is able to create a requisition and send to his manager

  • Outer Join without Outer Join

    I'm trying to do is learn how to do an outer join without specifying right, left or full outer join. Why? Performance reasons mostly and to gain a better understanding of Oracle. Thanks, Charles.

  • LR2 How to select one person in a picture

    New to LR and I'm trying to select just one person in a picture and remove everything else.  What tool do I use or should I use Photoshop thanks Mike

  • Dynamic Handling of HR Data

    I am new to HR and old to ABAP which means that I am not good (yet) with field-symbols or OO so I am having a bit of trouble figuring out how to do what I want to do.  Unicode is not helping me either.  Could someone please help me streamline the fol

  • About:config return a white page

    Hi, In my safari 3.1, when i open about:config page, the résult is a white page. What can i do to correct this ?