Export BW Project in HTML

Hi SAP Gurus,
Could you let me know how is it possible to export bw project in a html file.
I went in metadata repository /extra /export BW.
But we upload many files where link between each other doesn't work correctly.
Can we optimize this extraction ?!
Thanks

That's too bad, even though I recognize that DPS tools are for creating digital magazine publications, thus html is not really a requirement. I'm seeking another workflow to do this. Any suggestions? I wish to embrace html 5 and avoid using flash.
Thanks!

Similar Messages

  • Error while exporting LSMW Project

    Hi friends,
    while exporting LSMW project, one error file : "sapfewdll_01_0003_00_2024_1636.err.trc" gets created with the following MSG -
    Error(03.10.06 13:40:23.278): Data sent from backend exceeds buffer size!
    Please Help
    Regards
    Sonal

    http://www.javamonamour.org/2011/11/updated-version-of-importpy-and.html
    click on build.xml and you will see the right jars

  • How to export HD-project to .avi including HD-quality and timecodes

    Hi,
    I have an iMovie HD 6 project that I have imported from my Sony HDR-HC3 HD video camera. The project is a HD-1080i-25 project. I want to export this project to an AVI keeping the HD quality (same quality as the DV-tape). What settings should I use to make this happen? I don’t want to export it as a QuickTime .mov file but as an .AVI file that I am able to play in a media player that supports HD. I also want to keep the 16:9 format and timecodes. One other purpose with this file is as a backup (if the DV-tape should be damaged) so it must be possible to import it into iMovie again if that should be necessary.
    Is all this possible?
    Thanks in advance.
    Jarle

    Your best option is to export to .dv using the Full Quality DV preset. It will preserve all quality including the timecode.
    On the other hand the Expert export settinngs of iMovie 5 and 6 are buggy because exporting via the expert settings as a DV stream or .avi deinterlaces video and loses the timestamp!!
    Workarounds: Export .dv via the Full Quality preset (this is more convenient anyway). Exporting as .dv (or DV-encoded .avi) via QuickTime Player Pro also preserves interlacing and timecode.
    http://www.sjoki.uta.fi/~shmhav/iMovieHD_6_bugs.html#expertsettings
    If you export via QuickTime Player Pro, then use the following settings:
    Export: Movie to DV Stream
    DV Format: DV
    Video format: PAL (I am European)
    Scan: Interlaced (notice that this option only sets the corresponding flag -- it does not do ANYTHING else to the video!)
    Aspect Ratio: 16:9 (this options also sets the corresponding flag so other apps can properly treat the file)
    Audio Format Rate: 48.000 kHz (I believe there is not much difference between locked vs unlocked audio -- unlocked seems to be the default)

  • Help me about exporting a project in eclipse???

    I have a really basic Java question - I'm building an application using
    Eclipse that makes use of a couple of libraries that are located in
    external JAR files. I've added them as external JARs( I use the quaqua.jar to set look and feel for my application) to my project, and everything works fine in Eclipse. My programcompiles and access those libraries as expected. However, when I export my project as a JAR file, and try to execute it outside of Eclipse, it gives me an error telling me that it can't find those libraries. The GUI of my application lose,it return to the default GUI of Java application.How
    should I proceed? I can import the source code of those libraries into my
    project, and then it works fine during export, but it bloats my code and
    is really unncessary as I won't be altering any of that code. Is there a
    better way (i.e. A way to tell Eclipse to include those external JARs in
    my JAR during export, or something?) I would definately appreciate any
    guidance, as you have already surmised I am a bit of a beginner at all
    this. Thanks!

    This is a good example why beginners should not use an IDE until they know about path,classpath and packages. You have to change the manifest file when exporting.
    http://java.sun.com/docs/books/tutorial/deployment/jar/index.html
    EDIT: what Rene said.

  • Exporting JOGL project in Eclipse to an executable jar file

    I'm currently using Eclipse on Windows as my IDE and I've gotten [JOGL |https://jogl.dev.java.net/] to work on it, however if I try to export the project (I've just got a simple example that runs perfectly through eclipse) to an jar file (either the JAR or Runnable JAR option) the jar file doesn't do anything. If I go to the command line and type "java -jar <the jar file> -Djava.library.path=<where the library files are>" it gives this error:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no jogl in java.library.path
            at java.lang.ClassLoader.loadLibrary(Unknown Source)
            at java.lang.Runtime.loadLibrary0(Unknown Source)
            at java.lang.System.loadLibrary(Unknown Source)
            at com.sun.opengl.impl.NativeLibLoader.loadLibraryInternal(NativeLibLoader.java:189)
            at com.sun.opengl.impl.NativeLibLoader.access$000(NativeLibLoader.java:49)
            at com.sun.opengl.impl.NativeLibLoader$DefaultAction.loadLibrary(NativeLibLoader.java:80)
            at com.sun.opengl.impl.NativeLibLoader.loadLibrary(NativeLibLoader.java:103)
            at com.sun.opengl.impl.NativeLibLoader.access$200(NativeLibLoader.java:49)
            at com.sun.opengl.impl.NativeLibLoader$1.run(NativeLibLoader.java:111)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sun.opengl.impl.NativeLibLoader.loadCore(NativeLibLoader.java:109)
            at com.sun.opengl.impl.windows.WindowsGLDrawableFactory.<clinit>(WindowsGLDrawableFactory.java:60)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Unknown Source)
            at javax.media.opengl.GLDrawableFactory.getFactory(GLDrawableFactory.java:106)
            at Snippet209.main(Snippet209.java:75)Clearly I'm missing something. I want to make a jar file that I can send to an arbitrary computer and it will run the JOGL program with no extra steps (or at least as few as possible). Any help would be greatly appreciated with some Duke stars ;-)

    Ok, sounds like it would work, although I've never done much with loading libraries like you describe, so I could use some extra notes on it.
    I got this code from here and followed the instructions on there too to get JOGL to work with Eclipse:
    * Copyright (c) 2000, 2005 IBM Corporation and others. All rights reserved.
    * This program and the accompanying materials are made available under the
    * terms of the Eclipse Public License v1.0 which accompanies this distribution,
    * and is available at http://www.eclipse.org/legal/epl-v10.html Contributors:
    * IBM Corporation - initial API and implementation
    * SWT OpenGL snippet: use JOGL to draw to an SWT GLCanvas For a list of all SWT
    * example snippets see http://www.eclipse.org/swt/snippets/
    * @since 3.2
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import javax.media.opengl.GL;
    import javax.media.opengl.GLContext;
    import javax.media.opengl.GLDrawableFactory;
    import javax.media.opengl.glu.GLU;
    import org.eclipse.swt.SWT;
    import org.eclipse.swt.graphics.Rectangle;
    import org.eclipse.swt.layout.FillLayout;
    import org.eclipse.swt.opengl.GLCanvas;
    import org.eclipse.swt.opengl.GLData;
    import org.eclipse.swt.widgets.Composite;
    import org.eclipse.swt.widgets.Display;
    import org.eclipse.swt.widgets.Event;
    import org.eclipse.swt.widgets.Listener;
    import org.eclipse.swt.widgets.Shell;
    public class Snippet209
         static void drawTorus(GL gl, float r, float R, int nsides, int rings)
              float ringDelta = 2.0f * (float) Math.PI / rings;
              float sideDelta = 2.0f * (float) Math.PI / nsides;
              float theta = 0.0f, cosTheta = 1.0f, sinTheta = 0.0f;
              for (int i = rings - 1; i >= 0; i--)
                   float theta1 = theta + ringDelta;
                   float cosTheta1 = (float) Math.cos(theta1);
                   float sinTheta1 = (float) Math.sin(theta1);
                   gl.glBegin(GL.GL_QUAD_STRIP);
                   float phi = 0.0f;
                   for (int j = nsides; j >= 0; j--)
                        phi += sideDelta;
                        float cosPhi = (float) Math.cos(phi);
                        float sinPhi = (float) Math.sin(phi);
                        float dist = R + r * cosPhi;
                        gl.glNormal3f(cosTheta1 * cosPhi, -sinTheta1 * cosPhi, sinPhi);
                        gl.glVertex3f(cosTheta1 * dist, -sinTheta1 * dist, r * sinPhi);
                        gl.glNormal3f(cosTheta * cosPhi, -sinTheta * cosPhi, sinPhi);
                        gl.glVertex3f(cosTheta * dist, -sinTheta * dist, r * sinPhi);
                   gl.glEnd();
                   theta = theta1;
                   cosTheta = cosTheta1;
                   sinTheta = sinTheta1;
         public static void main(String[] args)
              final Display display = new Display();
              Shell shell = new Shell(display);
              shell.setLayout(new FillLayout());
              Composite comp = new Composite(shell, SWT.NONE);
              comp.setLayout(new FillLayout());
              GLData data = new GLData();
              data.doubleBuffer = true;
              final GLCanvas canvas = new GLCanvas(comp, SWT.NONE, data);
              canvas.setCurrent();
              final GLContext context = GLDrawableFactory
                        .getFactory().createExternalGLContext();
              canvas.addListener(SWT.Resize, new Listener()
                   public void handleEvent(Event event)
                        Rectangle bounds = canvas.getBounds();
                        float fAspect = (float) bounds.width / (float) bounds.height;
                        canvas.setCurrent();
                        context.makeCurrent();
                        GL gl = context.getGL();
                        gl.glViewport(0, 0, bounds.width, bounds.height);
                        gl.glMatrixMode(GL.GL_PROJECTION);
                        gl.glLoadIdentity();
                        GLU glu = new GLU();
                        glu.gluPerspective(45.0f, fAspect, 0.5f, 400.0f);
                        gl.glMatrixMode(GL.GL_MODELVIEW);
                        gl.glLoadIdentity();
                        context.release();
              context.makeCurrent();
              GL gl = context.getGL();
              gl.glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
              gl.glColor3f(1.0f, 0.0f, 0.0f);
              gl.glHint(GL.GL_PERSPECTIVE_CORRECTION_HINT, GL.GL_NICEST);
              gl.glClearDepth(1.0);
              gl.glLineWidth(2);
              gl.glEnable(GL.GL_DEPTH_TEST);
              context.release();
              shell.setText("SWT/JOGL Example");
              shell.setSize(640, 480);
              shell.open();
              display.asyncExec(new Runnable()
                   int     rot     = 0;
                   public void run()
                        if (!canvas.isDisposed())
                             canvas.setCurrent();
                             context.makeCurrent();
                             GL gl = context.getGL();
                             gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
                             gl.glClearColor(.3f, .5f, .8f, 1.0f);
                             gl.glLoadIdentity();
                             gl.glTranslatef(0.0f, 0.0f, -10.0f);
                             float frot = rot;
                             gl.glRotatef(0.15f * rot, 2.0f * frot, 10.0f * frot, 1.0f);
                             gl.glRotatef(0.3f * rot, 3.0f * frot, 1.0f * frot, 1.0f);
                             rot++;
                             gl.glPolygonMode(GL.GL_FRONT_AND_BACK, GL.GL_LINE);
                             gl.glColor3f(0.9f, 0.9f, 0.9f);
                             drawTorus(
                                       gl, 1, 1.9f + ((float) Math.sin((0.004f * frot))),
                                       15, 15);
                             canvas.swapBuffers();
                             context.release();
                             display.asyncExec(this);
              while (!shell.isDisposed())
                   if (!display.readAndDispatch())
                        display.sleep();
              display.dispose();
    }I have set up a project in eclipse with that file in the default package. I have created a libs/ folder in the project and I have the following files in it:
    gluegen-rt.dll
    gluegen-rt.jar
    jogl.dll
    jogl.jar
    jogl_awt.dll
    jogl_cg.dll
    swt.jarMy project is using the 3 jar files as libraries and I don't need to explicitly say anything about the dll files.

  • Exporting HD project to DV format

    I have edited a project in HD...footage was shot using a SONY HVR-Z1U camera. I want to export the project in a DV format. What is the best way to do this? None of the manuals I have really addresses this. Currently, a finished DV project is saved as a Quicktime movie before it is imported into DVD Studio Pro. Any help is appreciated.
    Thank you.
    Thom Sullivan
    Comcast - Walnut Creek, CA

    If I read you correctly, you want to create an SD DVD from your HDV video? If so, be aware that this may take a LONG time. I usually let it go overnight, otherwise I look at the progress bar ever half hour! Anyway...
    First save as QT reference movie. Import that movie into DVDSP. Use the 90 min best setting. Result will be an SD letterboxed video.
    Conversely, you could also take the ref movie into compressor if you want to tweak the settings more than DVDSP will allow. Then import the movie from compressor into DVDSP.
    If you'll look at Ken Stone's website http://www.kenstone.net/fcphomepage/fcp_homepageindex.html
    I believe he has some good step by steps there.
    --Bob

  • Exporting Crystal Report to HTML is not working in Windows 7

    Hi Sir,
    I am trying to export Crystal Report to HTML format using VB.NET code. Functionality is working fine at Windows XP Environment (Save to Disk, Open an Application and Email Attachment). But the same functionality is not working at Windows 7 Environment (both 32-Bit as well as 64-Bit).
    Below is the code to Exporting Crystal Report to HTML in VB.NET.
    Dim CrDiskFileDestinationOptions As New DiskFileDestinationOptions
    Dim CrFormatTypeOptions          As New HTMLFormatOptions
    Dim vFormat As Integer
    Dim CrExportOptions As New ExportOptions
    Dim vRdReport As New ReportDocument
    Dim sfd As SaveFileDialog
    Dim vFileName As String = Nothing
    vRdReport = vRptSource
    sfd = New SaveFileDialog
    If Not (vRptPath = "") Then
        sfd.InitialDirectory = vRptPath
    End If
    sfd.Filter = "Webpage, Complete(.htm;.htm)|.htm|Web Archive, Single file(.mht)|.mht|Webpage, HTML only(.htm;.html)|.html"
    If sfd.ShowDialog = DialogResult.OK Then
        ' Set the disk file options.
         CrDiskFileDestinationOptions.DiskFileName = sfd.FileName.ToString()
    Else
         Return
    End If
    CrExportOptions = vRdReport.ExportOptions
    CrFormatTypeOptions.HTMLFileName = vFileName
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLHasPageNavigator = True
    CrFormatTypeOptions.UsePageRange = True
    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.HTML32
                        .DestinationOptions = CrDiskFileDestinationOptions.DiskFileName
                        .FormatOptions = CrFormatTypeOptions
    End With
    vRdReport.Export()
    Catch ex As Exception
            MsgBox(ex.ToString)
    End Try
    Code working fine at Windows XP, But it is not woking in Windows 7 environment.
    Please can anyone share your valuable thoughts or ideas reg. this.
    Thanks in Advance
    Deivanayaga Perumal D.

    user13509659 wrote:
    Run this code to reproduce the issue.Which issue?
    It looks like inheritance is broken in the component hierarchy for JFrame in Windows 7 JDK 1.6.0_23-b05. The only thing remotely related to inheritance in your code snippet is the WindowListener, which does little. See camickr's advice about built-in exit management.
    EDIT - using the post title as a clue, I realize you may be talking about the component hierarchy, and whether the contentPane's background is visible through the upper layers. Instead of guessing, I'd prefer you describe your "issue" accurately (observed vs expected behavior).
    Edited by: jduprez on Feb 10, 2011 1:01 PM

  • Help needed  while exporting crystal reports to HTML file format using java

    Help needed  while exporting crystal reports to HTML file format using java api(not using crystalviewer).i want to download the
    html file of the report
    thanks

    the ReportExportFormat class does not have HTML format, it has got to be XML. Export to HTML is available from CR Designer only.
    Edited by: Aasavari Bhave on Jan 24, 2012 11:37 AM

  • I am using Iphoto 11 ver 9.4.3 on mac using oxs 10.8.5 i want to export calendar projects to an external hard drive. what is the easiest way to do this? i have tried export and import but it didn't seem to work.

    I am using Iphoto 11 ver 9.4.3 on mac using oxs 10.8.5 i want to export calendar projects to an external hard drive. my goal is to store them in an external hard drive so it doesn't use up memory on the mac hard drive. is it possible to copy the specific projects without copying the entire library? what is the easiest way to do this? i have tried export and import but it didn't seem to work.

    What do you not understand?
    You can duplicate the iPhoto library (command - D ) and delete everything except the project and its photos from the copy and move that
    Or
    However the calendar takes very little space - it is simpy database entries - it is the photos in the calendar that take space - and for most people you would wnat to keep those photos in your library
    you can use a photo in 50 calendars and it still is only one photo in your library - as I explained calenders do not exist as such - they are simply database entries telling iPhotop how to display the calendar - they take almost no space at all
    LN

  • When I Try To Export My Project, Nothing Happens

    So during editing in Final Cut Pro X I noticed that there were a couple of hiccups in my movie, but scrolling over these events didn't reveal a problem. I decided to see if it was a processing problem by exporting my project. I went up to File, clicked on Share, clicked on Apple Devices 720p, clicked on Next in the window that came up, titled the project, set it to save to the desktop, clicked Save... And then nothing happened. I checked my desktop for the file but there was nothing there. I've tried saving the file to several different places but when I click Save nothing happens and the file isn't in the place it should be if it had been saved. FCPX is working fine in all other regards but it's just not exporting this project. I've checked and I don't have any broken pieces of footage. The only possible thing I can think of is the song I'm using is one I purchased off of iTunes, so maybe it won't let me export if the song is protected by iTunes, but that seems like a stretch. Any help is appreciated.

    Nevermind, I solved the problem. FCPX isn't showing me that it's rendering or whatever it's doing, but after about ten minutes the files show up. Still, any idea why it gives no indication that it's working?

  • How to export the report in HTML format for desktop application

    Hi,
    i have wrote the JRC desktop application to export the report and i am able to export it in PDF and other formats as mentioned in "ReportExportFormat" API.
    i would like to know is there any API there which can export the report in HTML format.
    i know it would be possible with web based application of JRC, but how can i do it in desktop application?

    There's no mechanism for static HTML pages that displays the report.
    You can use the CrystalReportViewer DHTML viewer, but that's 'interactive'.
    Sincerely,
    Ted Ueda

  • How can I export a project on an external drive in the latest version of iMovie?

    Before the latest release of iMovie I easily managed to export a project on an external usb drive and re-import such project on a different Mac... In the latest iMovie version, however, I cannot see my drive any more..
    So, how can I export a project on an external drive in the latest version of iMovie?
    Thank you in advance

    I'm not sure this is the best way, but you could create a new iMovie Library, move your project to that Library, then close the library. Then move the Library to your USB drive. Then, on the other Mac, in iMovie open the Library.

  • How is the best way to export my project with clips and videos?

    I would like to save my project and export the project with clips and videos included. What is the best way to do it?

    Can you clarify:
    clips and video
    Seems as though you want to retain the original media?
    Export as a Master File to get a good quality export file of your Timeline.
    Al

  • Unable to Export iMovie project in everyway I have attempted for the past 2 weeks. Please Help! Due date coming up!

    I've unable to Export iMovie project in everyway I have attempted for the past 2 weeks.I have a late 2012 iMac with 8gb of RAM and 700 gb of free space on the hard drive. The video I am trying to export is 48 mins long with most of the source footage from a NIkon D3100 and several other cammcorders. I've been exporting with Apple Intermediate codec because that was the only one that has work so far but it only worked once and since then I have had to make changes to the project and now I'm unable to get it to work. For all Quicktime exports in H.264 or AIC (my prefered format for this export since I figured it'd offer the highest quality when I import it into Encore for making a dvd out of it) Which just stops exporting in the last few minutes without explination as to why or it crashes and quits. It either leaves a partial file or nothing at all. When I do "export movie" I get a "not enough memory Heap zone error"
    I don't know what to do any help would be greatly appreciated!
    By the way I happen to have Adobe CS6 Production Premium but didn't know how to use it as well when starting the project and now really regret not using it because it appears to be 10x more stable and capable of handling all the tasks I want it to do.

    Hi
    Error -108 memFullErr  Ran out of memory [not enough room in heap zone]
    Turn off - TimeMachine usually works - re-try.
    (the Application down in the Dock - not the Device)
    But this can mean many thing's - My first thought is
    Free Space on Start-Up hard disk. How much ? (other disks do not count)
    AppleMan1958
    Are your event clips in h.264? If so, you can solve this by Right clicking on your Event Name and choose "Optimize Media". You can choose Full for 1080P or Large for 960P according to your preference.
    After you have optimized your Event, you should be able to Share with no problem.
    Lennart Thelander
    -108 mean you are running out of (free) RAM.
    Try restarting the computer just prior to sharing. That frees up RAM.
    from mynameisearl
    Final Entry
    Ok - after much cutting, trial and error and days of work I have never really established a root cause for the -108 error. Nothing I did resolved the issue to the orginal project.
    The only work around I have found is to split the Original Project into two.
    What I found was that anything around the 60 mins mark and above just failed to render in HD and showed the -108 error.
    What worked for me was creating two project files - one around 57mins long - the other a part 2 - around 17 mins long. All using exactly the same source clips, photo's, music and transitions as the orginal.
    This now works. I guess having it split in two makes it a little easier to work with as I wont have to keep rendering the first part which does not change but really wish Apple would throw some light on this.
    Anyway - I hope all of the above at least proves useful for others.
    Good Luck

  • Error 27 when trying to export final project

    I'm working on a brand new macbook Pro 15inch, 16gb ram and using FCP X 10.1.1 but when I go to export my project (25gb) I am getting an error 27 msg a couple of minutes into the export.  Can you please tell me what the cause may be and how to rectify it?
    Thankin you,
    Mitaka27

    Sorry I should have been more explicit.  I'm trying to export a master and details are as follows
    Sorry about that.
    Mitaka27

Maybe you are looking for

  • Missing fields in Goods Receipt PO from SAP SDK after upgrade

    Hi there, I am using VB.net 2003 with SAP 2005 PL 20 and SQL 2005 We have upgraded the Patch level of SAP 2005 from Patch Level 4 to Patch Level 20. After the upgrade I executed the same source on the new Patch level the SDK didn't pick up existing f

  • [Forum FAQ]How to customize Windows 7 & Windows 8.1 dual boot menu

    Scenario 1: When you install Windows 8.1 on Windows 7 based computer, the default boot option is Windows 8.1 boot options menu which is shown as Figure 1: If you want to use the old Windows 7 boot menu, follow these steps: Start the computer and then

  • Acrobat x stopped working....

    A few days ago while viewing a .PDF Acrobat Pro X abruptly disappeared.  Since then, it will no longer start under any circumstance.  Win 7 x64 Tried the following.     1.)  Control Panel, Programs, Programs and Features, Adobe Acrobat X Pro - Englis

  • HT201303 I'd like to reset my security answer cuz I forgot it.

    I'd like to reset my security answer cuz I forgot it.

  • PS CS4 Applic. Frame has artifacts on Mac

    When I open an image in Photoshop CS4 in Window < Application Frame, using a Mac with 10.5.6 & 10.5.7, there are weird artifacts that show up in the background area. If I zoom in and back out, they will go away. But how do I get rid of them all toget